From be932b3c5a2c422a91a27ec79270164524ceea58 Mon Sep 17 00:00:00 2001 From: Lucas Randazzo Date: Tue, 29 Mar 2022 19:43:15 +0200 Subject: [PATCH 1/9] Proto: add sqrt to saturated arithmetic --- .../lib_protocol/saturation_repr.ml | 5 +++++ .../lib_protocol/saturation_repr.mli | 3 +++ .../lib_protocol/test/unit/test_saturation.ml | 18 ++++++++++++++++++ 3 files changed, 26 insertions(+) diff --git a/src/proto_alpha/lib_protocol/saturation_repr.ml b/src/proto_alpha/lib_protocol/saturation_repr.ml index abdbb379d3e2..4494c9c45ef5 100644 --- a/src/proto_alpha/lib_protocol/saturation_repr.ml +++ b/src/proto_alpha/lib_protocol/saturation_repr.ml @@ -157,6 +157,11 @@ let erem x y = x mod y let ediv x y = x / y +let sqrt x = + of_int_opt x + |> Option.map (fun x -> Z.of_int x |> Z.sqrt |> Z.to_int) + |> saturate_if_undef + let t_to_z_exn z = match of_z_opt z with | None -> diff --git a/src/proto_alpha/lib_protocol/saturation_repr.mli b/src/proto_alpha/lib_protocol/saturation_repr.mli index d937abc29813..b95399d5f4fa 100644 --- a/src/proto_alpha/lib_protocol/saturation_repr.mli +++ b/src/proto_alpha/lib_protocol/saturation_repr.mli @@ -162,6 +162,9 @@ val ediv : 'a t -> _ t -> 'a t [Division_by_zero]. *) val erem : _ t -> 'b t -> 'b t +(** [sqrt x] returns the square root of x, rounded down. *) +val sqrt : _ t -> 'a t + (** [of_int_opt x] returns [Some x] if [x >= 0] and [x < saturated], and [None] otherwise. *) val of_int_opt : int -> may_saturate t option diff --git a/src/proto_alpha/lib_protocol/test/unit/test_saturation.ml b/src/proto_alpha/lib_protocol/test/unit/test_saturation.ml index afce1f84dd36..f0d2898d7522 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_saturation.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_saturation.ml @@ -160,6 +160,23 @@ let shift_left () = (ok_int ((1 lsl 62) - 2), 0); ]) +let sqrt () = + Saturation_repr.( + fail_unless (sqrt saturated = saturated) (err "sqrt saturated <> saturated") + >>=? fun () -> + fail_unless (sqrt zero = zero) (err "sqrt zero <> zero") >>=? fun () -> + fail_unless (sqrt one = one) (err "sqrt one <> one") >>=? fun () -> + fail_unless (sqrt (ok_int 4) = ok_int 2) (err "sqrt 4 <> 2") >>=? fun () -> + fail_unless + (sqrt (ok_int 5) = ok_int 2) + (err "sqrt 5 <> 2 (sqrt should round down)") + >>=? fun () -> + let safe_squared = ok_int ((1 lsl 31) - 1) in + let r = mul safe_squared safe_squared in + fail_unless + (sqrt r = safe_squared) + (err "sqrt (2 ^ 31 - 1) * (2 ^ 31 - 1) <> (2 ^ 31 - 1)")) + let of_z_opt () = fail_unless (Saturation_repr.(of_z_opt (Z.succ (Z.of_int max_int))) = None) @@ -206,6 +223,7 @@ let tests = Tztest.tztest "Multiplication (fast version)" `Quick mul_fast; Tztest.tztest "Shift left" `Quick shift_left; Tztest.tztest "Scale fast" `Quick scale_fast; + Tztest.tztest "Square root" `Quick sqrt; Tztest.tztest "Conversion from Z" `Quick of_z_opt; Tztest.tztest "Encoding through z" -- GitLab From bac51b259eadfb78b5fcf84dd2b877ca4bd01469 Mon Sep 17 00:00:00 2001 From: Yoshihiro Imai Date: Thu, 31 Mar 2022 01:04:53 +0900 Subject: [PATCH 2/9] Proto: update gas storage consumption --- src/proto_alpha/lib_protocol/storage_functors.ml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/src/proto_alpha/lib_protocol/storage_functors.ml b/src/proto_alpha/lib_protocol/storage_functors.ml index 658e8702ecee..3c4d9bd4c364 100644 --- a/src/proto_alpha/lib_protocol/storage_functors.ml +++ b/src/proto_alpha/lib_protocol/storage_functors.ml @@ -377,9 +377,8 @@ module Make_indexed_carbonated_data_storage_INTERNAL let len_key i = I.to_path i [len_name] let consume_mem_gas c key = - C.consume_gas - c - (Storage_costs.read_access ~path_length:(List.length key) ~read_bytes:0) + let path_length = List.length @@ C.absolute_key c key in + C.consume_gas c (Storage_costs.read_access ~path_length ~read_bytes:0) let existing_size c i = C.find c (len_key i) >|= function @@ -389,13 +388,10 @@ module Make_indexed_carbonated_data_storage_INTERNAL let consume_read_gas get c i = let len_key = len_key i in get c len_key >>=? fun len -> + let path_length = List.length @@ C.absolute_key c len_key in Lwt.return ( decode_len_value len_key len >>? fun read_bytes -> - let cost = - Storage_costs.read_access - ~path_length:(List.length len_key) - ~read_bytes - in + let cost = Storage_costs.read_access ~path_length ~read_bytes in C.consume_gas c cost ) (* For the future: here, we bill a generic cost for encoding the value @@ -992,9 +988,8 @@ module Make_indexed_subcontext (C : Raw_context.T) (I : INDEX) : let data_name = data_name :: N.name - let path_length = List.length N.name + 1 - let consume_mem_gas c = + let path_length = List.length (Raw_context.absolute_key c N.name) + 1 in Raw_context.consume_gas c (Storage_costs.read_access ~path_length ~read_bytes:0) @@ -1005,6 +1000,7 @@ module Make_indexed_subcontext (C : Raw_context.T) (I : INDEX) : | Some len -> decode_len_value len_name len >|? fun len -> (len, true) let consume_read_gas get c = + let path_length = List.length (Raw_context.absolute_key c N.name) + 1 in get c len_name >>=? fun len -> Lwt.return ( decode_len_value len_name len >>? fun read_bytes -> -- GitLab From 213394863140bb3c82f26ba0868174d7939778d7 Mon Sep 17 00:00:00 2001 From: Lucas Randazzo Date: Tue, 5 Apr 2022 15:46:58 +0200 Subject: [PATCH 3/9] Proto: update parse/unparse address gas consumption --- src/proto_alpha/lib_protocol/michelson_v1_gas.ml | 8 +------- src/proto_alpha/lib_protocol/michelson_v1_gas.mli | 4 ---- src/proto_alpha/lib_protocol/script_ir_translator.ml | 10 ++++++---- 3 files changed, 7 insertions(+), 15 deletions(-) diff --git a/src/proto_alpha/lib_protocol/michelson_v1_gas.ml b/src/proto_alpha/lib_protocol/michelson_v1_gas.ml index 624f3e235363..10ec9e0a26a7 100644 --- a/src/proto_alpha/lib_protocol/michelson_v1_gas.ml +++ b/src/proto_alpha/lib_protocol/michelson_v1_gas.ml @@ -1664,7 +1664,7 @@ module Cost_of = struct let contract_optimized = key_hash_optimized (* Reasonable approximation *) - let contract_readable = key_hash_readable + let contract_readable = Gas.(S.safe_int 2 *@ key_hash_readable) let bls12_381_g1 = atomic_step_cost cost_DECODING_BLS_G1 @@ -1697,9 +1697,6 @@ module Cost_of = struct let timestamp_readable = atomic_step_cost cost_TIMESTAMP_READABLE_DECODING - (* Reasonable estimate. *) - let contract = Gas.(S.safe_int 2 *@ public_key_readable) - (** TODO: https://gitlab.com/tezos/tezos/-/issues/2340 Refine the gas model *) let tx_rollup_l2_address = bls12_381_g1 @@ -1811,9 +1808,6 @@ module Cost_of = struct let unit = Gas.free - (* Reasonable estimate. *) - let contract = Gas.(S.safe_int 2 *@ public_key_readable) - (** TODO: https://gitlab.com/tezos/tezos/-/issues/2340 Refine the gas model *) let tx_rollup_l2_address = bls12_381_g1 diff --git a/src/proto_alpha/lib_protocol/michelson_v1_gas.mli b/src/proto_alpha/lib_protocol/michelson_v1_gas.mli index 4628d23b3650..2eb3ba23c14f 100644 --- a/src/proto_alpha/lib_protocol/michelson_v1_gas.mli +++ b/src/proto_alpha/lib_protocol/michelson_v1_gas.mli @@ -443,8 +443,6 @@ module Cost_of : sig val timestamp_readable : Gas.cost - val contract : Gas.cost - val tx_rollup_l2_address : Gas.cost val contract_exists : Gas.cost @@ -497,8 +495,6 @@ module Cost_of : sig val unit : Gas.cost - val contract : Gas.cost - val tx_rollup_l2_address : Gas.cost val operation : bytes -> Gas.cost diff --git a/src/proto_alpha/lib_protocol/script_ir_translator.ml b/src/proto_alpha/lib_protocol/script_ir_translator.ml index 68fd39b62595..259745f394bd 100644 --- a/src/proto_alpha/lib_protocol/script_ir_translator.ml +++ b/src/proto_alpha/lib_protocol/script_ir_translator.ml @@ -414,9 +414,9 @@ let unparse_timestamp ~loc ctxt mode t = | Some s -> ok (String (loc, s), ctxt)) let unparse_address ~loc ctxt mode {destination; entrypoint} = - Gas.consume ctxt Unparse_costs.contract >|? fun ctxt -> match mode with | Optimized | Optimized_legacy -> + Gas.consume ctxt Unparse_costs.contract_optimized >|? fun ctxt -> let bytes = Data_encoding.Binary.to_bytes_exn Data_encoding.(tup2 Destination.encoding Entrypoint.value_encoding) @@ -424,6 +424,7 @@ let unparse_address ~loc ctxt mode {destination; entrypoint} = in (Bytes (loc, bytes), ctxt) | Readable -> + Gas.consume ctxt Unparse_costs.contract_readable >|? fun ctxt -> let notation = Destination.to_b58check destination ^ Entrypoint.to_address_suffix entrypoint @@ -432,10 +433,10 @@ let unparse_address ~loc ctxt mode {destination; entrypoint} = let unparse_tx_rollup_l2_address ~loc ctxt mode (tx_address : tx_rollup_l2_address) = - Gas.consume ctxt Unparse_costs.contract >|? fun ctxt -> let tx_address = Indexable.to_value tx_address in match mode with | Optimized | Optimized_legacy -> + Gas.consume ctxt Unparse_costs.contract_optimized >|? fun ctxt -> let bytes = Data_encoding.Binary.to_bytes_exn Tx_rollup_l2_address.encoding @@ -443,6 +444,7 @@ let unparse_tx_rollup_l2_address ~loc ctxt mode in (Bytes (loc, bytes), ctxt) | Readable -> + Gas.consume ctxt Unparse_costs.contract_readable >|? fun ctxt -> let b58check = Tx_rollup_l2_address.to_b58check tx_address in (String (loc, b58check), ctxt) @@ -2305,7 +2307,7 @@ let parse_address ctxt : Script.node -> (address * context) tzresult = in function | Bytes (loc, bytes) as expr (* As unparsed with [Optimized]. *) -> ( - Gas.consume ctxt Typecheck_costs.contract >>? fun ctxt -> + Gas.consume ctxt Typecheck_costs.contract_optimized >>? fun ctxt -> match Data_encoding.Binary.of_bytes_opt Data_encoding.(tup2 Destination.encoding Entrypoint.value_encoding) @@ -2318,7 +2320,7 @@ let parse_address ctxt : Script.node -> (address * context) tzresult = @@ Invalid_syntactic_constant (loc, strip_locations expr, "a valid address")) | String (loc, s) (* As unparsed with [Readable]. *) -> - Gas.consume ctxt Typecheck_costs.contract >>? fun ctxt -> + Gas.consume ctxt Typecheck_costs.contract_readable >>? fun ctxt -> (match String.index_opt s '%' with | None -> ok (s, Entrypoint.default) | Some pos -> -- GitLab From 79d82b2b410a4122d652d1ae0e51686987c18e52 Mon Sep 17 00:00:00 2001 From: Lucas Randazzo Date: Fri, 25 Mar 2022 14:28:37 +0100 Subject: [PATCH 4/9] Proto/Gas: Gas for J --- .../lib_protocol/carbonated_map_costs.ml | 14 +- .../lib_protocol/michelson_v1_gas.ml | 236 +++++++++--------- .../lib_protocol/michelson_v1_gas.mli | 2 +- .../lib_protocol/script_interpreter_defs.ml | 4 +- .../lib_protocol/script_ir_translator.ml | 2 +- src/proto_alpha/lib_protocol/ticket_costs.ml | 25 +- 6 files changed, 131 insertions(+), 152 deletions(-) diff --git a/src/proto_alpha/lib_protocol/carbonated_map_costs.ml b/src/proto_alpha/lib_protocol/carbonated_map_costs.ml index edb970793ae6..5f94d49b9f1e 100644 --- a/src/proto_alpha/lib_protocol/carbonated_map_costs.ml +++ b/src/proto_alpha/lib_protocol/carbonated_map_costs.ml @@ -28,9 +28,7 @@ module S = Saturation_repr (** This is a good enough approximation *) let log2 x = S.safe_int (1 + S.numbits x) -(** TODO: https://gitlab.com/tezos/tezos/-/issues/2062 - Plugin benchmarked gas. - Collect benchmark from [Carbonated_map_benchmarks.Find_benchmark]. +(** Collect benchmark from [Carbonated_map_benchmarks.Find_benchmark]. The model is similar to the gas model as from [Michelson_v1_gas.map_get]. The user is responsible for providing the [compare_key_cost] which depends @@ -43,10 +41,10 @@ let log2 x = S.safe_int (1 + S.numbits x) *) let find_cost ~compare_key_cost ~size = let open Gas in - let intercept = S.safe_int 80 in + let intercept = S.safe_int 50 in let size = S.safe_int size in let compare_cost = log2 size *@ compare_key_cost in - let traversal_overhead = log2 size *@ S.safe_int 10 in + let traversal_overhead = log2 size *@ S.safe_int 2 in intercept +@ compare_cost +@ traversal_overhead (** @@ -62,11 +60,9 @@ let find_cost ~compare_key_cost ~size = let update_cost ~compare_key_cost ~size = Gas.(S.safe_int 2 *@ find_cost ~compare_key_cost ~size) -(** TODO: https://gitlab.com/tezos/tezos/-/issues/2062 - Plugin benchmarked gas. - Collect benchmark from [Carbonated_map_benchmarks.Fold_benchmark]. +(** Collect benchmark from [Carbonated_map_benchmarks.Fold_benchmark]. The cost of producing a list of elements is linear in the size of the map and does not depend on the size of the elements nor keys. *) -let fold_cost ~size = Gas.(S.safe_int 100 *@ S.safe_int size) +let fold_cost ~size = Gas.(S.safe_int 50 +@ (S.safe_int 24 *@ S.safe_int size)) diff --git a/src/proto_alpha/lib_protocol/michelson_v1_gas.ml b/src/proto_alpha/lib_protocol/michelson_v1_gas.ml index 10ec9e0a26a7..e90457877268 100644 --- a/src/proto_alpha/lib_protocol/michelson_v1_gas.ml +++ b/src/proto_alpha/lib_protocol/michelson_v1_gas.ml @@ -55,24 +55,24 @@ module Cost_of = struct (* model N_IAbs_int *) (* Approximating 0.065045 x term *) - let cost_N_IAbs_int size = S.safe_int (25 + (size lsr 4)) + let cost_N_IAbs_int size = S.safe_int (20 + (size lsr 4)) (* model N_IAdd_bls12_381_fr *) (* when benchmarking, compile bls12-381 without ADX *) - let cost_N_IAdd_bls12_381_fr = S.safe_int 45 + let cost_N_IAdd_bls12_381_fr = S.safe_int 30 (* model N_IAdd_bls12_381_g1 *) (* when benchmarking, compile bls12-381 without ADX *) - let cost_N_IAdd_bls12_381_g1 = S.safe_int 925 + let cost_N_IAdd_bls12_381_g1 = S.safe_int 900 (* model N_IAdd_bls12_381_g2 *) (* when benchmarking, compile bls12-381 without ADX *) - let cost_N_IAdd_bls12_381_g2 = S.safe_int 2_520 + let cost_N_IAdd_bls12_381_g2 = S.safe_int 2_470 let cost_linear_op_int size1 size2 = let open S_syntax in let v0 = S.safe_int (Compare.Int.max size1 size2) in - S.safe_int 55 + ((v0 lsr 4) + (v0 lsr 7)) + S.safe_int 35 + ((v0 lsr 4) + (v0 lsr 7)) (* model N_IAdd_int *) (* Approximating 0.078154 x term *) @@ -97,17 +97,17 @@ module Cost_of = struct let cost_N_IAddress = S.safe_int 10 (* model N_IAmount *) - let cost_N_IAmount = S.safe_int 15 + let cost_N_IAmount = S.safe_int 10 (* model N_IAnd *) - let cost_N_IAnd = S.safe_int 20 + let cost_N_IAnd = S.safe_int 10 (* model N_IAnd_int_nat *) (* Approximating 0.076804 x 2 x term *) let cost_N_IAnd_int_nat size1 size2 = let open S_syntax in let v0 = S.safe_int (Compare.Int.min size1 size2) in - S.safe_int 50 + ((v0 lsr 3) + (v0 lsr 6)) + S.safe_int 35 + ((v0 lsr 3) + (v0 lsr 6)) (* model N_IAnd_nat *) (* Approximating 0.076804 x term *) @@ -116,10 +116,10 @@ module Cost_of = struct let cost_N_IAnd_nat size1 size2 = let open S_syntax in let v0 = S.safe_int (Compare.Int.min size1 size2) in - S.safe_int 50 + ((v0 lsr 4) + (v0 lsr 7)) + S.safe_int 35 + ((v0 lsr 4) + (v0 lsr 7)) (* model N_IApply *) - let cost_N_IApply = S.safe_int 160 + let cost_N_IApply = S.safe_int 140 (* model N_IBlake2b *) (* Approximating 1.120804 x term *) @@ -129,7 +129,7 @@ module Cost_of = struct S.safe_int 430 + v0 + (v0 lsr 3) (* model N_IBytes_size *) - let cost_N_IBytes_size = S.safe_int 15 + let cost_N_IBytes_size = S.safe_int 10 (* model N_ICar *) let cost_N_ICar = S.safe_int 10 @@ -174,14 +174,14 @@ module Cost_of = struct let cost_N_IComb_get size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 30 + (v0 lsr 1) + (v0 lsr 4) + S.safe_int 20 + (v0 lsr 1) + (v0 lsr 4) (* model N_IComb_set *) (* Approximating 1.287531 x term *) let cost_N_IComb_set size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 40 + (v0 + (v0 lsr 2) + (v0 lsr 5)) + S.safe_int 20 + (v0 + (v0 lsr 2) + (v0 lsr 5)) (* Model N_ICompare *) (* Approximating 0.024413 x term *) @@ -195,26 +195,26 @@ module Cost_of = struct let cost_N_IConcat_bytes_pair size1 size2 = let open S_syntax in let v0 = S.safe_int size1 + S.safe_int size2 in - S.safe_int 65 + (v0 lsr 4) + S.safe_int 45 + (v0 lsr 4) (* model N_IConcat_string_pair *) (* Approximating 0.061402 x term *) let cost_N_IConcat_string_pair size1 size2 = let open S_syntax in let v0 = S.safe_int size1 + S.safe_int size2 in - S.safe_int 65 + (v0 lsr 4) + S.safe_int 45 + (v0 lsr 4) (* model N_ICons_list *) - let cost_N_ICons_list = S.safe_int 15 + let cost_N_ICons_list = S.safe_int 10 (* model N_ICons_none *) - let cost_N_ICons_none = S.safe_int 15 + let cost_N_ICons_none = S.safe_int 10 (* model N_ICons_pair *) - let cost_N_ICons_pair = S.safe_int 15 + let cost_N_ICons_pair = S.safe_int 10 (* model N_ICons_some *) - let cost_N_ICons_some = S.safe_int 15 + let cost_N_ICons_some = S.safe_int 10 (* model N_IConst *) let cost_N_IConst = S.safe_int 10 @@ -234,17 +234,17 @@ module Cost_of = struct let cost_N_IDig size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 60 + ((S.safe_int 6 * v0) + (v0 lsr 1) + (v0 lsr 2)) + S.safe_int 30 + ((S.safe_int 6 * v0) + (v0 lsr 1) + (v0 lsr 2)) (* model N_IDip *) - let cost_N_IDip = S.safe_int 15 + let cost_N_IDip = S.safe_int 10 (* model N_IDipN *) - (* Approximating 1.708122 x term *) + (* Approximating 2.740571 x term *) let cost_N_IDipN size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 45 + (v0 + (v0 lsr 1) + (v0 lsr 3)) + S.safe_int 30 + ((S.safe_int 2 * v0) + (v0 lsr 1) + (v0 lsr 3)) (* model N_IView *) let cost_N_IView = S.safe_int 1460 @@ -257,14 +257,14 @@ module Cost_of = struct let cost_N_IDropN size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 60 + (S.safe_int 2 * v0) + (v0 lsr 1) + (v0 lsr 3) + S.safe_int 30 + (S.safe_int 2 * v0) + (v0 lsr 1) + (v0 lsr 3) (* model N_IDug *) (* Approximating 6.718396 x term *) let cost_N_IDug size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 60 + ((S.safe_int 6 * v0) + (v0 lsr 1) + (v0 lsr 2)) + S.safe_int 35 + ((S.safe_int 6 * v0) + (v0 lsr 1) + (v0 lsr 2)) (* model N_IDup *) let cost_N_IDup = S.safe_int 10 @@ -278,11 +278,11 @@ module Cost_of = struct let cost_div_int size1 size2 = let q = size1 - size2 in - if Compare.Int.(q < 0) then S.safe_int 140 + if Compare.Int.(q < 0) then S.safe_int 105 else let open S_syntax in let v0 = S.safe_int q * S.safe_int size2 in - S.safe_int 140 + (v0 lsr 10) + (v0 lsr 11) + (v0 lsr 13) + S.safe_int 105 + (v0 lsr 10) + (v0 lsr 11) + (v0 lsr 13) (* model N_IEdiv_int *) (* Approximating 0.001591 x term *) @@ -293,13 +293,13 @@ module Cost_of = struct let cost_N_IEdiv_nat = cost_div_int (* model N_IEdiv_tez *) - let cost_N_IEdiv_tez = S.safe_int 140 + let cost_N_IEdiv_tez = S.safe_int 80 (* model N_IEdiv_teznat *) - let cost_N_IEdiv_teznat = S.safe_int 140 + let cost_N_IEdiv_teznat = S.safe_int 70 (* model N_IEmpty_big_map *) - let cost_N_IEmpty_big_map = S.safe_int 15 + let cost_N_IEmpty_big_map = S.safe_int 10 (* model N_IEmpty_map *) let cost_N_IEmpty_map = S.safe_int 220 @@ -308,25 +308,25 @@ module Cost_of = struct let cost_N_IEmpty_set = S.safe_int 220 (* model N_IEq *) - let cost_N_IEq = S.safe_int 15 + let cost_N_IEq = S.safe_int 10 (* model N_IExec *) - let cost_N_IExec = S.safe_int 15 + let cost_N_IExec = S.safe_int 10 (* model N_IFailwith *) (* let cost_N_IFailwith = S.safe_int 105 *) (* model N_IGe *) - let cost_N_IGe = S.safe_int 15 + let cost_N_IGe = S.safe_int 10 (* model N_IGt *) - let cost_N_IGt = S.safe_int 15 + let cost_N_IGt = S.safe_int 10 (* model N_IHalt *) - let cost_N_IHalt = S.safe_int 15 + let cost_N_IHalt = S.safe_int 10 (* model N_IHash_key *) - let cost_N_IHash_key = S.safe_int 655 + let cost_N_IHash_key = S.safe_int 605 (* model N_IIf *) let cost_N_IIf = S.safe_int 10 @@ -341,20 +341,20 @@ module Cost_of = struct let cost_N_IIf_none = S.safe_int 10 (* model N_IOpt_map *) - let cost_opt_map = S.safe_int 15 + let cost_opt_map = S.safe_int 10 (* model N_IImplicit_account *) let cost_N_IImplicit_account = S.safe_int 10 (* model N_IInt_bls12_381_z_fr *) (* when benchmarking, compile bls12-381 without ADX *) - let cost_N_IInt_bls12_381_z_fr = S.safe_int 125 + let cost_N_IInt_bls12_381_z_fr = S.safe_int 115 (* model N_IInt_nat *) - let cost_N_IInt_nat = S.safe_int 15 + let cost_N_IInt_nat = S.safe_int 10 (* model N_IIs_nat *) - let cost_N_IIs_nat = S.safe_int 15 + let cost_N_IIs_nat = S.safe_int 10 (* model N_IKeccak *) (* Approximating 8.276352 x term *) @@ -367,22 +367,22 @@ module Cost_of = struct let cost_N_ILambda = S.safe_int 10 (* model N_ILe *) - let cost_N_ILe = S.safe_int 15 + let cost_N_ILe = S.safe_int 10 (* model N_ILeft *) - let cost_N_ILeft = S.safe_int 15 + let cost_N_ILeft = S.safe_int 10 (* model N_ILevel *) - let cost_N_ILevel = S.safe_int 15 + let cost_N_ILevel = S.safe_int 10 (* model N_IList_iter *) - let cost_N_IList_iter _ = S.safe_int 25 + let cost_N_IList_iter _ = S.safe_int 20 (* model N_IList_map *) - let cost_N_IList_map _ = S.safe_int 25 + let cost_N_IList_map _ = S.safe_int 20 (* model N_IList_size *) - let cost_N_IList_size = S.safe_int 15 + let cost_N_IList_size = S.safe_int 10 (* model N_ILoop *) let cost_N_ILoop = S.safe_int 10 @@ -395,66 +395,66 @@ module Cost_of = struct let cost_N_ILsl_nat size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 60 + ((v0 lsr 4) + (v0 lsr 5) + (v0 lsr 6)) + S.safe_int 40 + ((v0 lsr 4) + (v0 lsr 5) + (v0 lsr 6)) (* model N_ILsr_nat *) (* Approximating 0.115565 x term *) let cost_N_ILsr_nat size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 60 + ((v0 lsr 4) + (v0 lsr 5) + (v0 lsr 6)) + S.safe_int 45 + ((v0 lsr 4) + (v0 lsr 5) + (v0 lsr 6)) (* model N_ILt *) - let cost_N_ILt = S.safe_int 15 + let cost_N_ILt = S.safe_int 10 (* model N_IMap_get *) (* Approximating 0.048359 x term *) let cost_N_IMap_get size1 size2 = let open S_syntax in let v0 = size1 * log2 size2 in - S.safe_int 110 + (v0 lsr 5) + (v0 lsr 6) + S.safe_int 45 + (v0 lsr 5) + (v0 lsr 6) (* model N_IMap_get_and_update *) (* Approximating 0.145661 x term *) let cost_N_IMap_get_and_update size1 size2 = let open S_syntax in let v0 = size1 * log2 size2 in - S.safe_int 135 + (v0 lsr 3) + (v0 lsr 6) + S.safe_int 75 + (v0 lsr 3) + (v0 lsr 6) (* model N_IMap_iter *) (* Approximating 7.621331 x term *) let cost_N_IMap_iter size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 70 + (S.safe_int 7 * v0) + (v0 lsr 1) + (v0 lsr 3) + S.safe_int 50 + (S.safe_int 7 * v0) + (v0 lsr 1) + (v0 lsr 3) (* model N_IMap_map *) (* Approximating 7.46280485884 x term *) let cost_N_IMap_map size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 265 + ((S.safe_int 7 * v0) + (v0 lsr 1)) + S.safe_int 50 + ((S.safe_int 7 * v0) + (v0 lsr 1)) (* model N_IMap_mem *) (* Approximating 0.048446 x term *) let cost_N_IMap_mem size1 size2 = let open S_syntax in let v0 = size1 * log2 size2 in - S.safe_int 110 + (v0 lsr 5) + (v0 lsr 6) + S.safe_int 45 + (v0 lsr 5) + (v0 lsr 6) (* model N_IMap_size *) - let cost_N_IMap_size = S.safe_int 15 + let cost_N_IMap_size = S.safe_int 10 (* model N_IMap_update *) (* Approximating 0.097072 x term *) let cost_N_IMap_update size1 size2 = let open S_syntax in let v0 = size1 * log2 size2 in - S.safe_int 130 + (v0 lsr 4) + (v0 lsr 5) + S.safe_int 55 + (v0 lsr 4) + (v0 lsr 5) (* model N_IMul_bls12_381_fr *) (* when benchmarking, compile bls12-381 without ADX *) - let cost_N_IMul_bls12_381_fr = S.safe_int 65 + let cost_N_IMul_bls12_381_fr = S.safe_int 45 (* model N_IMul_bls12_381_fr_z *) (* Approximating 1.059386 x term *) @@ -462,7 +462,7 @@ module Cost_of = struct let cost_N_IMul_bls12_381_fr_z size1 = let open S_syntax in let v0 = S.safe_int size1 in - S.safe_int 330 + v0 + (v0 lsr 4) + S.safe_int 265 + v0 + (v0 lsr 4) (* model N_IMul_bls12_381_g1 *) (* when benchmarking, compile bls12-381 without ADX *) @@ -478,13 +478,13 @@ module Cost_of = struct let cost_N_IMul_bls12_381_z_fr size1 = let open S_syntax in let v0 = S.safe_int size1 in - S.safe_int 330 + v0 + (v0 lsr 4) + S.safe_int 265 + v0 + (v0 lsr 4) let cost_mul size1 size2 = let open S_syntax in let a = S.add (S.safe_int size1) (S.safe_int size2) in let v0 = a * log2 a in - S.safe_int 100 + (v0 lsr 1) + (v0 lsr 2) + (v0 lsr 4) + S.safe_int 55 + (v0 lsr 1) + (v0 lsr 2) + (v0 lsr 4) (* model N_IMul_int *) (* Approximating 0.857931 x term *) @@ -502,27 +502,27 @@ module Cost_of = struct (* model N_INeg_bls12_381_fr *) (* when benchmarking, compile bls12-381 without ADX *) - let cost_N_INeg_bls12_381_fr = S.safe_int 45 + let cost_N_INeg_bls12_381_fr = S.safe_int 25 (* model N_INeg_bls12_381_g1 *) (* when benchmarking, compile bls12-381 without ADX *) - let cost_N_INeg_bls12_381_g1 = S.safe_int 60 + let cost_N_INeg_bls12_381_g1 = S.safe_int 50 (* model N_INeg_bls12_381_g2 *) (* when benchmarking, compile bls12-381 without ADX *) - let cost_N_INeg_bls12_381_g2 = S.safe_int 85 + let cost_N_INeg_bls12_381_g2 = S.safe_int 70 (* model N_INeg *) (* Approximating 0.066076 x term *) let cost_N_INeg size = let open S_syntax in - S.safe_int 40 + (S.safe_int size lsr 4) + S.safe_int 25 + (S.safe_int size lsr 4) (* model N_INeq *) - let cost_N_INeq = S.safe_int 15 + let cost_N_INeq = S.safe_int 10 (* model N_INil *) - let cost_N_INil = S.safe_int 15 + let cost_N_INil = S.safe_int 10 (* model N_INot *) let cost_N_INot = S.safe_int 10 @@ -532,17 +532,13 @@ module Cost_of = struct let cost_N_INot_int size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 50 + ((v0 lsr 4) + (v0 lsr 7)) + S.safe_int 25 + ((v0 lsr 4) + (v0 lsr 7)) (* model N_INow *) - let cost_N_INow = S.safe_int 15 + let cost_N_INow = S.safe_int 10 (* model N_IMin_block_time *) - let cost_N_IMin_block_time = - (* TODO: #2504 - Benchmark MIN_BLOCK_TIME instruction to get an accurate Gas cost. - *) - S.safe_int 30 + let cost_N_IMin_block_time = S.safe_int 20 (* model N_IOpen_chest *) (* 612000 + chest * 19 + time * 19050 *) @@ -553,7 +549,7 @@ module Cost_of = struct S.safe_int 612_000 + (S.safe_int 19 * v0) + (S.safe_int 19050 * v1) (* model N_IOr *) - let cost_N_IOr = S.safe_int 15 + let cost_N_IOr = S.safe_int 10 (* model N_IOr_nat *) (* Approximating 0.075758 x term *) @@ -565,45 +561,44 @@ module Cost_of = struct S.add (S.safe_int 450_000) (S.mul (S.safe_int 342_500) (S.safe_int size)) (* model N_IRead_ticket *) - let cost_N_IRead_ticket = S.safe_int 15 + let cost_N_IRead_ticket = S.safe_int 10 (* model N_IRight *) - let cost_N_IRight = S.safe_int 15 + let cost_N_IRight = S.safe_int 10 (* model N_ISapling_empty_state *) - let cost_N_ISapling_empty_state = S.safe_int 15 + let cost_N_ISapling_empty_state = S.safe_int 10 (* model N_ISapling_verify_update *) - (* Approximating 1.27167 x term *) - (* Approximating 38.72115 x term *) let cost_N_ISapling_verify_update size1 size2 bound_data = let open S_syntax in let v1 = S.safe_int size1 in - let v0 = S.safe_int size2 in - let bd = S.safe_int bound_data in - S.safe_int 84_050 + (v1 + (v1 lsr 2)) + (S.safe_int 39 * v0) + (bd lsr 2) + let v2 = S.safe_int size2 in + cost_N_IBlake2b bound_data + S.safe_int 310_000 + + (S.safe_int 5_575_000 * v1) + + (S.safe_int 5_075_000 * v2) (* model N_ISelf_address *) - let cost_N_ISelf_address = S.safe_int 15 + let cost_N_ISelf_address = S.safe_int 10 (* model N_ISelf *) - let cost_N_ISelf = S.safe_int 15 + let cost_N_ISelf = S.safe_int 10 (* model N_ISender *) - let cost_N_ISender = S.safe_int 15 + let cost_N_ISender = S.safe_int 10 (* model N_ISet_delegate *) - let cost_N_ISet_delegate = S.safe_int 40 + let cost_N_ISet_delegate = S.safe_int 30 (* model N_ISet_iter *) (* Approximating 7.633555 x term *) let cost_N_ISet_iter size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 70 + (S.safe_int 7 * v0) + (v0 lsr 1) + (v0 lsr 3) + S.safe_int 50 + (S.safe_int 7 * v0) + (v0 lsr 1) + (v0 lsr 3) (* model N_ISet_size *) - let cost_N_ISet_size = S.safe_int 15 + let cost_N_ISet_size = S.safe_int 10 (* model N_ISha256 *) (* Approximating 4.763264 x term *) @@ -627,23 +622,23 @@ module Cost_of = struct (* Approximating 0.065752 x term *) let cost_N_ISlice_bytes size = let open S_syntax in - S.safe_int 40 + (S.safe_int size lsr 4) + S.safe_int 25 + (S.safe_int size lsr 4) (* model N_ISlice_string *) (* Approximating 0.065688 x term *) let cost_N_ISlice_string size = let open S_syntax in - S.safe_int 40 + (S.safe_int size lsr 4) + S.safe_int 25 + (S.safe_int size lsr 4) (* model N_ISource *) - let cost_N_ISource = S.safe_int 15 + let cost_N_ISource = S.safe_int 10 (* model N_ISplit_ticket *) (* Approximating 0.132362 x term *) let cost_N_ISplit_ticket size1 size2 = let open S_syntax in let v1 = S.safe_int (Compare.Int.max size1 size2) in - S.safe_int 55 + (v1 lsr 3) + S.safe_int 40 + (v1 lsr 3) (* model N_IString_size *) let cost_N_IString_size = S.safe_int 15 @@ -653,7 +648,7 @@ module Cost_of = struct let cost_N_ISub_int = cost_linear_op_int (* model N_ISub_tez *) - let cost_N_ISub_tez = S.safe_int 20 + let cost_N_ISub_tez = S.safe_int 15 (* model N_ISub_tez_legacy *) let cost_N_ISub_tez_legacy = S.safe_int 20 @@ -666,7 +661,7 @@ module Cost_of = struct let cost_N_ISwap = S.safe_int 10 (* model N_ITicket *) - let cost_N_ITicket = S.safe_int 15 + let cost_N_ITicket = S.safe_int 10 (* model N_ITotal_voting_power *) let cost_N_ITotal_voting_power = S.safe_int 370 @@ -688,17 +683,17 @@ module Cost_of = struct let cost_N_IVoting_power = S.safe_int 530 (* model N_IXor *) - let cost_N_IXor = S.safe_int 20 + let cost_N_IXor = S.safe_int 15 (* model N_IXor_nat *) (* Approximating 0.075601 x term *) let cost_N_IXor_nat = cost_linear_op_int (* model N_KCons *) - let cost_N_KCons = S.safe_int 15 + let cost_N_KCons = S.safe_int 10 (* model N_KIter *) - let cost_N_KIter = S.safe_int 20 + let cost_N_KIter = S.safe_int 10 (* model N_KList_enter_body *) (* Approximating 1.672196 x term *) @@ -707,49 +702,49 @@ module Cost_of = struct | [] -> let open S_syntax in let v0 = S.safe_int size_ys in - S.safe_int 40 + (v0 + (v0 lsr 1) + (v0 lsr 3)) - | _ :: _ -> S.safe_int 70 + S.safe_int 25 + (v0 + (v0 lsr 1) + (v0 lsr 3)) + | _ :: _ -> S.safe_int 25 (* model N_KList_exit_body *) - let cost_N_KList_exit_body = S.safe_int 30 + let cost_N_KList_exit_body = S.safe_int 10 (* model N_KLoop_in *) - let cost_N_KLoop_in = S.safe_int 15 + let cost_N_KLoop_in = S.safe_int 10 (* model N_KLoop_in_left *) - let cost_N_KLoop_in_left = S.safe_int 15 + let cost_N_KLoop_in_left = S.safe_int 10 (* model N_KMap_enter_body *) - let cost_N_KMap_enter_body = S.safe_int 165 + let cost_N_KMap_enter_body = S.safe_int 80 (* model N_KNil *) - let cost_N_KNil = S.safe_int 20 + let cost_N_KNil = S.safe_int 10 (* model N_KReturn *) - let cost_N_KReturn = S.safe_int 15 + let cost_N_KReturn = S.safe_int 10 (* model N_KView_exit *) let cost_N_KView_exit = S.safe_int 20 (* model N_KMap_head *) - let const_N_KMap_head = S.safe_int 20 + let cost_N_KMap_head = S.safe_int 20 (* model N_KUndip *) - let cost_N_KUndip = S.safe_int 15 + let cost_N_KUndip = S.safe_int 10 (* model DECODING_BLS_FR *) (* when benchmarking, compile bls12-381 without ADX, see https://gitlab.com/dannywillems/ocaml-bls12-381/-/blob/71d0b4d467fbfaa6452d702fcc408d7a70916a80/README.md#install *) - let cost_DECODING_BLS_FR = S.safe_int 150 + let cost_DECODING_BLS_FR = S.safe_int 120 (* model DECODING_BLS_G1 *) (* when benchmarking, compile bls12-381 without ADX *) - let cost_DECODING_BLS_G1 = S.safe_int 65_300 + let cost_DECODING_BLS_G1 = S.safe_int 54_600 (* model DECODING_BLS_G2 *) (* when benchmarking, compile bls12-381 without ADX *) - let cost_DECODING_BLS_G2 = S.safe_int 73_300 + let cost_DECODING_BLS_G2 = S.safe_int 69_000 (* model B58CHECK_DECODING_CHAIN_ID *) let cost_B58CHECK_DECODING_CHAIN_ID = S.safe_int 1_600 @@ -901,26 +896,27 @@ module Cost_of = struct S.safe_int 16630 + (v0 lsr 3) (* model TIMESTAMP_READABLE_DECODING *) - let cost_TIMESTAMP_READABLE_DECODING = S.safe_int 100 + (* Approximating 0.354278 x term *) + let cost_TIMESTAMP_READABLE_DECODING ~bytes = + let open S_syntax in + let b = S.safe_int bytes in + let v0 = S.mul (S.sqrt b) b in + S.safe_int 800 + ((v0 lsr 2) + (v0 lsr 3)) (* model TIMESTAMP_READABLE_ENCODING *) - let cost_TIMESTAMP_READABLE_ENCODING = S.safe_int 820 + let cost_TIMESTAMP_READABLE_ENCODING = S.safe_int 100 (* model CHECK_PRINTABLE *) let cost_CHECK_PRINTABLE size = let open S_syntax in S.safe_int 14 + (S.safe_int 10 * S.safe_int size) - (* TODO: https://gitlab.com/tezos/tezos/-/issues/2264 - Rerun benchmarks due to faster gas monad. - With the the redesign of the gas-monad this needs to be benchmarked again. - *) (* model TY_EQ This is the estimated cost of one iteration of ty_eq, extracted and copied manually from the parameter fit for the TY_EQ benchmark (the model is parametric on the size of the type, which we don't have access to in O(1)). *) - let cost_TY_EQ = S.safe_int 220 + let cost_TY_EQ = S.safe_int 60 (* model TYPECHECKING_CODE This is the cost of one iteration of parse_instr, extracted by hand from the @@ -1526,7 +1522,7 @@ module Cost_of = struct let view_exit = atomic_step_cost cost_N_KView_exit - let map_head = atomic_step_cost const_N_KMap_head + let map_head = atomic_step_cost cost_N_KMap_head let undip = atomic_step_cost cost_N_KUndip @@ -1695,7 +1691,9 @@ module Cost_of = struct let unit = free - let timestamp_readable = atomic_step_cost cost_TIMESTAMP_READABLE_DECODING + let timestamp_readable s = + atomic_step_cost + (cost_TIMESTAMP_READABLE_DECODING ~bytes:(String.length s)) (** TODO: https://gitlab.com/tezos/tezos/-/issues/2340 Refine the gas model *) diff --git a/src/proto_alpha/lib_protocol/michelson_v1_gas.mli b/src/proto_alpha/lib_protocol/michelson_v1_gas.mli index 2eb3ba23c14f..bfad3e7b770b 100644 --- a/src/proto_alpha/lib_protocol/michelson_v1_gas.mli +++ b/src/proto_alpha/lib_protocol/michelson_v1_gas.mli @@ -441,7 +441,7 @@ module Cost_of : sig val unit : Gas.cost - val timestamp_readable : Gas.cost + val timestamp_readable : string -> Gas.cost val tx_rollup_l2_address : Gas.cost diff --git a/src/proto_alpha/lib_protocol/script_interpreter_defs.ml b/src/proto_alpha/lib_protocol/script_interpreter_defs.ml index ef27d1cf2773..12fc3baf2248 100644 --- a/src/proto_alpha/lib_protocol/script_interpreter_defs.ml +++ b/src/proto_alpha/lib_protocol/script_interpreter_defs.ml @@ -563,10 +563,10 @@ let transfer (ctxt, sc) gas amount location parameters_ty parameters destination >>=? fun (parameters, lazy_storage_diff, ctxt) -> unparse_data ctxt Optimized parameters_ty parameters >>=? fun (unparsed_parameters, ctxt) -> - Gas.consume ctxt (Script.strip_locations_cost unparsed_parameters) - >>?= fun ctxt -> craft_transfer_parameters ctxt parameters_ty unparsed_parameters destination >>?= fun (unparsed_parameters, ctxt) -> + Gas.consume ctxt (Script.strip_locations_cost unparsed_parameters) + >>?= fun ctxt -> let transaction = let parameters = Script.lazy_expr (Micheline.strip_locations unparsed_parameters) diff --git a/src/proto_alpha/lib_protocol/script_ir_translator.ml b/src/proto_alpha/lib_protocol/script_ir_translator.ml index 259745f394bd..ef520d06b763 100644 --- a/src/proto_alpha/lib_protocol/script_ir_translator.ml +++ b/src/proto_alpha/lib_protocol/script_ir_translator.ml @@ -2189,7 +2189,7 @@ let parse_timestamp ctxt : -> ok (Script_timestamp.of_zint v, ctxt) | String (loc, s) as expr (* As unparsed with [Readable]. *) -> ( - Gas.consume ctxt Typecheck_costs.timestamp_readable >>? fun ctxt -> + Gas.consume ctxt (Typecheck_costs.timestamp_readable s) >>? fun ctxt -> match Script_timestamp.of_string s with | Some v -> ok (v, ctxt) | None -> diff --git a/src/proto_alpha/lib_protocol/ticket_costs.ml b/src/proto_alpha/lib_protocol/ticket_costs.ml index 0e3fccf94b89..ec9693adb1e5 100644 --- a/src/proto_alpha/lib_protocol/ticket_costs.ml +++ b/src/proto_alpha/lib_protocol/ticket_costs.ml @@ -27,29 +27,14 @@ open Alpha_context module S = Saturation_repr module Constants = struct - (* TODO: #2508 - Fill in real benchmarked values. - Need to create benchmark and fill in values. - *) - let cost_collect_tickets_step = S.safe_int 360 + let cost_collect_tickets_step = S.safe_int 60 - (* TODO: #2499 - Fill in real benchmarked values. - Need to create benchmark and fill in values. - *) - let cost_has_tickets_of_ty type_size = S.mul (S.safe_int 20) type_size + let cost_has_tickets_of_ty type_size = + S.add (S.safe_int 10) (S.mul (S.safe_int 6) type_size) - (* TODO: #2498 - Fill in real benchmarked values. - Need to create benchmark and fill in values. - *) - let cost_compare_ticket_hash = S.safe_int 100 + let cost_compare_ticket_hash = S.safe_int 10 - (* TODO: #2520 - Fill in real benchmarked values. - Need to create benchmark and fill in values. - *) - let cost_compare_key_contract = S.safe_int 100 + let cost_compare_key_contract = S.safe_int 10 end let consume_gas_steps ctxt ~step_cost ~num_steps = -- GitLab From efbeb3f0f6aa44c8019d2accdde697509efd6bec Mon Sep 17 00:00:00 2001 From: Lucas Randazzo Date: Thu, 31 Mar 2022 18:25:58 +0200 Subject: [PATCH 5/9] Proto: Update gas tests --- .../lib_protocol/test/integration/gas/test_gas_costs.ml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/proto_alpha/lib_protocol/test/integration/gas/test_gas_costs.ml b/src/proto_alpha/lib_protocol/test/integration/gas/test_gas_costs.ml index ec6da065c02c..1998bc4e5b13 100644 --- a/src/proto_alpha/lib_protocol/test/integration/gas/test_gas_costs.ml +++ b/src/proto_alpha/lib_protocol/test/integration/gas/test_gas_costs.ml @@ -198,8 +198,7 @@ let all_parsing_costs = ("parse_data_cycle", parse_data_cycle); ("bool", bool); ("parsing_unit", unit); - ("timestamp_readable", timestamp_readable); - ("contract", contract); + ("timestamp_readable", timestamp_readable "dummy"); ("contract_exists", contract_exists); ("proof_argument", proof_argument 42); ] @@ -224,7 +223,6 @@ let all_unparsing_costs = ("unparse_instr_cycle", unparse_instr_cycle); ("unparse_data_cycle", unparse_data_cycle); ("unparsing_unit", unit); - ("contract", contract); ("operation", operation dummy_bytes); ] -- GitLab From 4a6c91ee7939ee78b6f2c5011f2f465c85f59037 Mon Sep 17 00:00:00 2001 From: Lucas Randazzo Date: Thu, 31 Mar 2022 19:12:44 +0200 Subject: [PATCH 6/9] Tests: Update gas regression --- ...ate_contract_from_contract_origination.out | 6 +- ...ginate_contract_from_contract_transfer.out | 12 +- ...::test_self_address_originate_receiver.out | 6 +- ...er::test_self_address_originate_sender.out | 12 +- ...ddressTransfer::test_send_self_address.out | 14 +- ...ck::test_typecheck[attic--accounts.tz].out | 2 +- ...echeck::test_typecheck[attic--add1.tz].out | 2 +- ...k::test_typecheck[attic--add1_list.tz].out | 2 +- ...st_typecheck[attic--after_strategy.tz].out | 2 +- ...heck::test_typecheck[attic--always.tz].out | 2 +- ...heck::test_typecheck[attic--append.tz].out | 2 +- ...ck::test_typecheck[attic--at_least.tz].out | 2 +- ...eck::test_typecheck[attic--auction.tz].out | 2 +- ...::test_typecheck[attic--bad_lockup.tz].out | 2 +- ...est_typecheck[attic--big_map_union.tz].out | 2 +- ...t_typecheck[attic--cadr_annotation.tz].out | 2 +- ...heck::test_typecheck[attic--concat.tz].out | 2 +- ...test_typecheck[attic--conditionals.tz].out | 2 +- ...::test_typecheck[attic--cons_twice.tz].out | 2 +- ...ck::test_typecheck[attic--cps_fact.tz].out | 2 +- ...typecheck[attic--create_add1_lists.tz].out | 2 +- ...st_typecheck[attic--data_publisher.tz].out | 2 +- ...ck::test_typecheck[attic--dispatch.tz].out | 2 +- ...check::test_typecheck[attic--empty.tz].out | 2 +- ...:test_typecheck[attic--fail_amount.tz].out | 2 +- ...heck::test_typecheck[attic--faucet.tz].out | 2 +- ...eck::test_typecheck[attic--forward.tz].out | 2 +- ...ypecheck::test_typecheck[attic--id.tz].out | 2 +- ...est_typecheck[attic--infinite_loop.tz].out | 2 +- ...st_typecheck[attic--insertion_sort.tz].out | 2 +- ...est_typecheck[attic--int_publisher.tz].out | 2 +- ...:test_typecheck[attic--king_of_tez.tz].out | 2 +- ...echeck[attic--list_of_transactions.tz].out | 2 +- ...check::test_typecheck[attic--queue.tz].out | 2 +- ...::test_typecheck[attic--reduce_map.tz].out | 2 +- ...::test_typecheck[attic--reentrancy.tz].out | 2 +- ...k::test_typecheck[attic--reservoir.tz].out | 2 +- ...pecheck[attic--scrutable_reservoir.tz].out | 2 +- ..._typecheck[attic--spawn_identities.tz].out | 2 +- ...eck::test_typecheck[macros--assert.tz].out | 2 +- ...est_typecheck[macros--assert_cmpeq.tz].out | 2 +- ...est_typecheck[macros--assert_cmpge.tz].out | 2 +- ...est_typecheck[macros--assert_cmpgt.tz].out | 2 +- ...est_typecheck[macros--assert_cmple.tz].out | 2 +- ...est_typecheck[macros--assert_cmplt.tz].out | 2 +- ...st_typecheck[macros--assert_cmpneq.tz].out | 2 +- ...::test_typecheck[macros--assert_eq.tz].out | 2 +- ...::test_typecheck[macros--assert_ge.tz].out | 2 +- ...::test_typecheck[macros--assert_gt.tz].out | 2 +- ...::test_typecheck[macros--assert_le.tz].out | 2 +- ...::test_typecheck[macros--assert_lt.tz].out | 2 +- ...:test_typecheck[macros--assert_neq.tz].out | 2 +- ..._typecheck[macros--big_map_get_add.tz].out | 2 +- ...test_typecheck[macros--big_map_mem.tz].out | 2 +- ...:test_typecheck[macros--build_list.tz].out | 2 +- ...st_typecheck[macros--carn_and_cdrn.tz].out | 2 +- ...ck::test_typecheck[macros--compare.tz].out | 2 +- ...st_typecheck[macros--compare_bytes.tz].out | 2 +- ...::test_typecheck[macros--guestbook.tz].out | 2 +- ...ypecheck[macros--macro_annotations.tz].out | 2 +- ...est_typecheck[macros--map_caddaadr.tz].out | 2 +- ...test_typecheck[macros--max_in_list.tz].out | 2 +- ...echeck::test_typecheck[macros--min.tz].out | 2 +- ...:test_typecheck[macros--pair_macro.tz].out | 2 +- ...est_typecheck[macros--set_caddaadr.tz].out | 2 +- ...st_typecheck[macros--take_my_money.tz].out | 2 +- ...est_typecheck[macros--unpair_macro.tz].out | 2 +- ...eck[mini_scenarios--authentication.tz].out | 2 +- ...ini_scenarios--big_map_entrypoints.tz].out | 2 +- ...heck[mini_scenarios--big_map_magic.tz].out | 2 +- ...check[mini_scenarios--big_map_read.tz].out | 2 +- ...heck[mini_scenarios--big_map_store.tz].out | 2 +- ...heck[mini_scenarios--big_map_write.tz].out | 2 +- ...ck[mini_scenarios--create_contract.tz].out | 2 +- ..._scenarios--create_contract_simple.tz].out | 2 +- ...ck[mini_scenarios--default_account.tz].out | 2 +- ...cenarios--execution_order_appender.tz].out | 2 +- ..._scenarios--execution_order_caller.tz].out | 2 +- ..._scenarios--execution_order_storer.tz].out | 2 +- ...eck[mini_scenarios--fa12_reference.tz].out | 2 +- ...k[mini_scenarios--generic_multisig.tz].out | 2 +- ..._typecheck[mini_scenarios--groth16.tz].out | 2 +- ...ypecheck[mini_scenarios--hardlimit.tz].out | 2 +- ...ck[mini_scenarios--legacy_multisig.tz].out | 2 +- ...t_typecheck[mini_scenarios--lockup.tz].out | 2 +- ...eck[mini_scenarios--lqt_fa12.mligo.tz].out | 2 +- ...check[mini_scenarios--multiple_en2.tz].out | 2 +- ...rios--multiple_entrypoints_counter.tz].out | 2 +- ...mini_scenarios--originate_contract.tz].out | 2 +- ..._scenarios--parameterized_multisig.tz].out | 2 +- ...t_typecheck[mini_scenarios--replay.tz].out | 2 +- ..._scenarios--reveal_signed_preimage.tz].out | 2 +- ...i_scenarios--self_address_receiver.tz].out | 2 +- ...ini_scenarios--self_address_sender.tz].out | 2 +- ...scenarios--ticket_builder_fungible.tz].out | 2 +- ...arios--ticket_builder_non_fungible.tz].out | 2 +- ..._scenarios--ticket_wallet_fungible.tz].out | 2 +- ...narios--ticket_wallet_non_fungible.tz].out | 2 +- ...pecheck[mini_scenarios--tzip4_view.tz].out | 2 +- ...[mini_scenarios--vote_for_delegate.tz].out | 2 +- ...[mini_scenarios--weather_insurance.tz].out | 2 +- ...est_typecheck[mini_scenarios--xcat.tz].out | 2 +- ...ypecheck[mini_scenarios--xcat_dapp.tz].out | 2 +- ..._typecheck[non_regression--bug_262.tz].out | 2 +- ..._typecheck[non_regression--bug_843.tz].out | 2 +- ...echeck[non_regression--pairk_annot.tz].out | 2 +- ...check::test_typecheck[opcodes--abs.tz].out | 2 +- ...check::test_typecheck[opcodes--add.tz].out | 2 +- ...ypecheck[opcodes--add_bls12_381_fr.tz].out | 2 +- ...ypecheck[opcodes--add_bls12_381_g1.tz].out | 2 +- ...ypecheck[opcodes--add_bls12_381_g2.tz].out | 2 +- ...check[opcodes--add_delta_timestamp.tz].out | 2 +- ...check[opcodes--add_timestamp_delta.tz].out | 2 +- ...k::test_typecheck[opcodes--address.tz].out | 2 +- ...eck[opcodes--amount_after_fib_view.tz].out | 2 +- ...des--amount_after_nonexistent_view.tz].out | 2 +- ...pecheck[opcodes--amount_after_view.tz].out | 2 +- ...check::test_typecheck[opcodes--and.tz].out | 2 +- ...test_typecheck[opcodes--and_binary.tz].out | 2 +- ...t_typecheck[opcodes--and_logical_1.tz].out | 2 +- ...k::test_typecheck[opcodes--balance.tz].out | 2 +- ...ck[opcodes--balance_after_fib_view.tz].out | 2 +- ...es--balance_after_nonexistent_view.tz].out | 2 +- ...echeck[opcodes--balance_after_view.tz].out | 2 +- ...typecheck[opcodes--big_map_mem_nat.tz].out | 2 +- ...echeck[opcodes--big_map_mem_string.tz].out | 2 +- ...typecheck[opcodes--big_map_to_self.tz].out | 2 +- ...bls12_381_fr_push_bytes_not_padded.tz].out | 2 +- ...eck[opcodes--bls12_381_fr_push_nat.tz].out | 2 +- ...check[opcodes--bls12_381_fr_to_int.tz].out | 2 +- ...eck[opcodes--bls12_381_fr_to_mutez.tz].out | 2 +- ...echeck[opcodes--bls12_381_fr_z_int.tz].out | 2 +- ...echeck[opcodes--bls12_381_fr_z_nat.tz].out | 2 +- ...echeck[opcodes--bls12_381_z_fr_int.tz].out | 2 +- ...echeck[opcodes--bls12_381_z_fr_nat.tz].out | 2 +- ...eck::test_typecheck[opcodes--bytes.tz].out | 2 +- ...check::test_typecheck[opcodes--car.tz].out | 2 +- ...check::test_typecheck[opcodes--cdr.tz].out | 2 +- ...::test_typecheck[opcodes--chain_id.tz].out | 2 +- ..._typecheck[opcodes--chain_id_store.tz].out | 2 +- ...typecheck[opcodes--check_signature.tz].out | 2 +- ...::test_typecheck[opcodes--comb-get.tz].out | 2 +- ...t_typecheck[opcodes--comb-literals.tz].out | 2 +- ...test_typecheck[opcodes--comb-set-2.tz].out | 2 +- ...::test_typecheck[opcodes--comb-set.tz].out | 2 +- ...heck::test_typecheck[opcodes--comb.tz].out | 2 +- ...k::test_typecheck[opcodes--compare.tz].out | 2 +- ...ypecheck[opcodes--compare_big_type.tz].out | 2 +- ...pecheck[opcodes--compare_big_type2.tz].out | 2 +- ...est_typecheck[opcodes--comparisons.tz].out | 2 +- ...st_typecheck[opcodes--concat_hello.tz].out | 2 +- ...echeck[opcodes--concat_hello_bytes.tz].out | 2 +- ...est_typecheck[opcodes--concat_list.tz].out | 2 +- ...heck::test_typecheck[opcodes--cons.tz].out | 2 +- ...st_typecheck[opcodes--contains_all.tz].out | 2 +- ...::test_typecheck[opcodes--contract.tz].out | 2 +- ...typecheck[opcodes--create_contract.tz].out | 2 +- ...[opcodes--create_contract_rootname.tz].out | 2 +- ...odes--create_contract_rootname_alt.tz].out | 2 +- ...opcodes--create_contract_with_view.tz].out | 2 +- ...typecheck[opcodes--diff_timestamps.tz].out | 2 +- ...ck::test_typecheck[opcodes--dig_eq.tz].out | 2 +- ...heck::test_typecheck[opcodes--dign.tz].out | 2 +- ...check::test_typecheck[opcodes--dip.tz].out | 2 +- ...heck::test_typecheck[opcodes--dipn.tz].out | 2 +- ...eck::test_typecheck[opcodes--dropn.tz].out | 2 +- ...heck::test_typecheck[opcodes--dugn.tz].out | 2 +- ...eck::test_typecheck[opcodes--dup-n.tz].out | 2 +- ...heck::test_typecheck[opcodes--ediv.tz].out | 2 +- ...test_typecheck[opcodes--ediv_mutez.tz].out | 2 +- ...:test_typecheck[opcodes--empty_map.tz].out | 2 +- ...est_typecheck[opcodes--exec_concat.tz].out | 2 +- ...eck::test_typecheck[opcodes--first.tz].out | 2 +- ...ck[opcodes--get_and_update_big_map.tz].out | 2 +- ...echeck[opcodes--get_and_update_map.tz].out | 2 +- ...pecheck[opcodes--get_big_map_value.tz].out | 2 +- ...t_typecheck[opcodes--get_map_value.tz].out | 2 +- ...[opcodes--hash_consistency_checker.tz].out | 2 +- ...::test_typecheck[opcodes--hash_key.tz].out | 2 +- ...est_typecheck[opcodes--hash_string.tz].out | 2 +- ...echeck::test_typecheck[opcodes--if.tz].out | 2 +- ...k::test_typecheck[opcodes--if_some.tz].out | 2 +- ...check::test_typecheck[opcodes--int.tz].out | 2 +- ...:test_typecheck[opcodes--iter_fail.tz].out | 2 +- ...ck::test_typecheck[opcodes--keccak.tz].out | 2 +- ...test_typecheck[opcodes--left_right.tz].out | 2 +- ...eck::test_typecheck[opcodes--level.tz].out | 2 +- ...est_typecheck[opcodes--list_concat.tz].out | 2 +- ...pecheck[opcodes--list_concat_bytes.tz].out | 2 +- ...k::test_typecheck[opcodes--list_id.tz].out | 2 +- ...est_typecheck[opcodes--list_id_map.tz].out | 2 +- ...:test_typecheck[opcodes--list_iter.tz].out | 2 +- ..._typecheck[opcodes--list_map_block.tz].out | 2 +- ...:test_typecheck[opcodes--list_size.tz].out | 2 +- ...t_typecheck[opcodes--loop_failwith.tz].out | 2 +- ...:test_typecheck[opcodes--loop_left.tz].out | 2 +- ...echeck[opcodes--loop_left_failwith.tz].out | 2 +- ...k::test_typecheck[opcodes--map_car.tz].out | 2 +- ...ck::test_typecheck[opcodes--map_id.tz].out | 2 +- ...::test_typecheck[opcodes--map_iter.tz].out | 2 +- ...k::test_typecheck[opcodes--map_map.tz].out | 2 +- ...echeck[opcodes--map_map_sideeffect.tz].out | 2 +- ...est_typecheck[opcodes--map_mem_nat.tz].out | 2 +- ..._typecheck[opcodes--map_mem_string.tz].out | 2 +- ...::test_typecheck[opcodes--map_size.tz].out | 2 +- ...ck[opcodes--merge_comparable_pairs.tz].out | 2 +- ...check::test_typecheck[opcodes--mul.tz].out | 2 +- ...ypecheck[opcodes--mul_bls12_381_fr.tz].out | 2 +- ...ypecheck[opcodes--mul_bls12_381_g1.tz].out | 2 +- ...ypecheck[opcodes--mul_bls12_381_g2.tz].out | 2 +- ...st_typecheck[opcodes--mul_overflow.tz].out | 2 +- ...eck::test_typecheck[opcodes--munch.tz].out | 2 +- ...eck[opcodes--mutez_to_bls12_381_fr.tz].out | 2 +- ...check::test_typecheck[opcodes--neg.tz].out | 2 +- ...ypecheck[opcodes--neg_bls12_381_fr.tz].out | 2 +- ...ypecheck[opcodes--neg_bls12_381_g1.tz].out | 2 +- ...ypecheck[opcodes--neg_bls12_381_g2.tz].out | 2 +- ...heck::test_typecheck[opcodes--none.tz].out | 2 +- ...heck::test_typecheck[opcodes--noop.tz].out | 2 +- ...check::test_typecheck[opcodes--not.tz].out | 2 +- ...test_typecheck[opcodes--not_binary.tz].out | 2 +- ...echeck::test_typecheck[opcodes--or.tz].out | 2 +- ...:test_typecheck[opcodes--or_binary.tz].out | 2 +- ...pecheck[opcodes--originate_big_map.tz].out | 2 +- ...test_typecheck[opcodes--packunpack.tz].out | 2 +- ..._typecheck[opcodes--packunpack_rev.tz].out | 2 +- ...echeck[opcodes--packunpack_rev_cty.tz].out | 2 +- ...k::test_typecheck[opcodes--pair_id.tz].out | 2 +- ...t_typecheck[opcodes--pairing_check.tz].out | 2 +- ...eck::test_typecheck[opcodes--pexec.tz].out | 2 +- ...k::test_typecheck[opcodes--pexec_2.tz].out | 2 +- ...eck::test_typecheck[opcodes--proxy.tz].out | 2 +- ...k::test_typecheck[opcodes--ret_int.tz].out | 2 +- ...k::test_typecheck[opcodes--reverse.tz].out | 2 +- ...st_typecheck[opcodes--reverse_loop.tz].out | 2 +- ...check[opcodes--sapling_empty_state.tz].out | 2 +- ...heck::test_typecheck[opcodes--self.tz].out | 2 +- ...st_typecheck[opcodes--self_address.tz].out | 2 +- ...codes--self_address_after_fib_view.tz].out | 2 +- ...elf_address_after_nonexistent_view.tz].out | 2 +- ...k[opcodes--self_address_after_view.tz].out | 2 +- ...check[opcodes--self_after_fib_view.tz].out | 2 +- ...codes--self_after_nonexistent_view.tz].out | 2 +- ...typecheck[opcodes--self_after_view.tz].out | 2 +- ...odes--self_with_default_entrypoint.tz].out | 2 +- ...heck[opcodes--self_with_entrypoint.tz].out | 2 +- ...ck::test_typecheck[opcodes--sender.tz].out | 2 +- ...eck[opcodes--sender_after_fib_view.tz].out | 2 +- ...des--sender_after_nonexistent_view.tz].out | 2 +- ...pecheck[opcodes--sender_after_view.tz].out | 2 +- ...k::test_typecheck[opcodes--set_car.tz].out | 2 +- ...k::test_typecheck[opcodes--set_cdr.tz].out | 2 +- ...st_typecheck[opcodes--set_delegate.tz].out | 2 +- ...ck::test_typecheck[opcodes--set_id.tz].out | 2 +- ...::test_typecheck[opcodes--set_iter.tz].out | 2 +- ...test_typecheck[opcodes--set_member.tz].out | 2 +- ...::test_typecheck[opcodes--set_size.tz].out | 2 +- ...heck::test_typecheck[opcodes--sets.tz].out | 2 +- ...heck::test_typecheck[opcodes--sha3.tz].out | 2 +- ...ck::test_typecheck[opcodes--shifts.tz].out | 2 +- ...eck::test_typecheck[opcodes--slice.tz].out | 2 +- ...est_typecheck[opcodes--slice_bytes.tz].out | 2 +- ...ck::test_typecheck[opcodes--slices.tz].out | 2 +- ...ck::test_typecheck[opcodes--source.tz].out | 2 +- ...est_typecheck[opcodes--split_bytes.tz].out | 2 +- ...st_typecheck[opcodes--split_string.tz].out | 2 +- ...echeck[opcodes--store_bls12_381_fr.tz].out | 2 +- ...echeck[opcodes--store_bls12_381_g1.tz].out | 2 +- ...echeck[opcodes--store_bls12_381_g2.tz].out | 2 +- ...est_typecheck[opcodes--store_input.tz].out | 2 +- ...:test_typecheck[opcodes--store_now.tz].out | 2 +- ...ck::test_typecheck[opcodes--str_id.tz].out | 2 +- ...check[opcodes--sub_timestamp_delta.tz].out | 2 +- ...ck::test_typecheck[opcodes--subset.tz].out | 2 +- ...est_typecheck[opcodes--tez_add_sub.tz].out | 2 +- ...test_typecheck[opcodes--ticket_bad.tz].out | 2 +- ...ypecheck[opcodes--ticket_big_store.tz].out | 2 +- ...est_typecheck[opcodes--ticket_join.tz].out | 2 +- ...est_typecheck[opcodes--ticket_read.tz].out | 2 +- ...st_typecheck[opcodes--ticket_split.tz].out | 2 +- ..._typecheck[opcodes--ticket_store-2.tz].out | 2 +- ...st_typecheck[opcodes--ticket_store.tz].out | 2 +- ...test_typecheck[opcodes--ticketer-2.tz].out | 2 +- ...::test_typecheck[opcodes--ticketer.tz].out | 2 +- ...typecheck[opcodes--transfer_amount.tz].out | 2 +- ...typecheck[opcodes--transfer_tokens.tz].out | 2 +- ...ck::test_typecheck[opcodes--uncomb.tz].out | 2 +- ...ck::test_typecheck[opcodes--unpair.tz].out | 2 +- ...--unpair_field_annotation_mismatch.tz].out | 2 +- ..._typecheck[opcodes--update_big_map.tz].out | 2 +- ...:test_typecheck[opcodes--utxo_read.tz].out | 2 +- ...eck::test_typecheck[opcodes--utxor.tz].out | 2 +- ...::test_typecheck[opcodes--view_fib.tz].out | 2 +- ...eck[opcodes--view_mutual_recursion.tz].out | 2 +- ...est_typecheck[opcodes--view_op_add.tz].out | 2 +- ...ypecheck[opcodes--view_op_constant.tz].out | 2 +- ...test_typecheck[opcodes--view_op_id.tz].out | 2 +- ...[opcodes--view_op_nonexistent_addr.tz].out | 2 +- ...[opcodes--view_op_nonexistent_func.tz].out | 2 +- ...pcodes--view_op_test_step_contants.tz].out | 2 +- ...p_toplevel_inconsistent_input_type.tz].out | 2 +- ..._toplevel_inconsistent_output_type.tz].out | 2 +- ...::test_typecheck[opcodes--view_rec.tz].out | 2 +- ...pecheck[opcodes--view_toplevel_lib.tz].out | 2 +- ...st_typecheck[opcodes--voting_power.tz].out | 2 +- ...check::test_typecheck[opcodes--xor.tz].out | 2 +- ...tion::test_big_map_origination_literal.out | 6 +- ...s.TestContractOnchainLevel::test_level.out | 22 +- ...ontractOnchainOpcodes::test_init_proxy.out | 6 +- ...tractOnchainOpcodes::test_set_delegate.out | 24 +- ...TestContractOnchainOpcodes::test_slice.out | 6 +- ...ef0e55c43a9a857214d8761e67b.7da5c9014e.out | 14 +- ...estContractOnchainOpcodes::test_source.out | 38 +- ...ntractOnchainOpcodes::test_split_bytes.out | 30 +- ...tractOnchainOpcodes::test_split_string.out | 30 +- ...ntractOnchainOpcodes::test_store_input.out | 44 +- ...trace_origination[compare_big_type.tz].out | 12 +- ...race_origination[compare_big_type2.tz].out | 12 +- ...ctOnchainOpcodes::test_transfer_amount.out | 18 +- ...ctOnchainOpcodes::test_transfer_tokens.out | 46 +- ...(Some 4) {})-\"hello\"-(Pa.f6092ac5d6.out" | 18 +- ...(Some 5) { Elt \"hello\" 4.0427752f13.out" | 18 +- ...(Some 5) { Elt \"hello\" 4.0793dc66d5.out" | 18 +- ...None { Elt \"1\" 1 ; .df114499b8.out" | 18 +- ...None { Elt \"1\" 1 ; .f9bea98de9.out" | 18 +- ...None { Elt \"hello\" 4 })-.1db12cd837.out" | 18 +- ...None {})-\"hello\"-(Pair N.6fc7d0acf2.out" | 18 +- ..." \"one\" ; Elt \"2\" \"tw.524c5459f8.out" | 26 +- ...ello\" \"hi\" } None)-\"\".33eba403e7.out" | 26 +- ...hello\" \"hi\" } None)-\"h.a5cd1005c9.out" | 26 +- ...one\" ; Elt \"2\" \"two\" .6f3d35b151.out" | 18 +- ...one\" ; Elt \"2\" \"two\" .76aeaa0706.out" | 24 +- ...one\" ; Elt \"2\" \"two\" .7e7197f248.out" | 24 +- ...one\" ; Elt \"2\" \"two\" .7ef2c415a7.out" | 24 +- ...one\" ; Elt \"2\" \"two\" .b688cc94a7.out" | 24 +- ...one\" ; Elt \"2\" \"two\" .c68db221ed.out" | 24 +- ...TestContractOpcodes::test_balance[0.5].out | 10 +- ...s.TestContractOpcodes::test_balance[0].out | 10 +- ...estContractOpcodes::test_balance[1000].out | 10 +- ...s.TestContractOpcodes::test_balance[1].out | 10 +- ...stContractOpcodes::test_balance[1e-06].out | 10 +- ...s.TestContractOpcodes::test_balance[5].out | 10 +- ...Opcodes::test_balance[8000000000000.0].out | 10 +- ... \"two\" }) )-(Right (Righ.7492e8cdea.out" | 52 +- ... \"two\" }))-(Left Unit)-(.21b30dd90f.out" | 26 +- ... \"two\" }))-(Right (Left .2873ef610c.out" | 20 +- ... \"two\" }))-(Right (Left .8a6f480005.out" | 20 +- ... \"two\" }))-(Right (Right.d336ca1903.out" | 50 +- ...Pair \"foo\" \"bar\" } { P.7f2ee47600.out" | 80 +- ...tContractOpcodes::test_check_signature.out | 70 +- ...tract_input_output[abs.tz-Unit-0-Unit].out | 24 +- ....tz-Unit-12039123919239192312931-Unit].out | 24 +- ...act_input_output[abs.tz-Unit-948-Unit].out | 24 +- ...ct_input_output[add.tz-Unit-Unit-Unit].out | 136 ++-- ...r 0x00 0x00-(Some 0x0000000.3c2de60480.out | 14 +- ...r 0x01 0x00-(Some 0x0100000.12b2c1172b.out | 14 +- ...r 0x010000 0x00-(Some 0x010.0e44fc6f40.out | 14 +- ...r 0x010000 0x010000-(Some 0.7e0ed229a3.out | 14 +- ...air -100 100)-(Some \"1970.7c1b1e4e5b.out" | 22 +- ...air 0 \"1970-01-01T00:00:0.528ed42c01.out" | 22 +- ...air 100 100)-(Some \"1970-.6566111ad2.out" | 22 +- ...air \"1970-01-01T00:00:00Z.72c424f3da.out" | 22 +- ...air 100 -100)-(Some \"1970.7c4b12e9aa.out" | 22 +- ...air 100 100)-(Some \"1970-.af32743640.out" | 22 +- ...dhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" | 12 +- ...-None-(Pair False False)-(Some False)].out | 18 +- ...z-None-(Pair False True)-(Some False)].out | 18 +- ...z-None-(Pair True False)-(Some False)].out | 18 +- ....tz-None-(Pair True True)-(Some True)].out | 18 +- ...t_output[and_binary.tz-Unit-Unit-Unit].out | 74 +- ...l_1.tz-False-(Pair False False)-False].out | 12 +- ...al_1.tz-False-(Pair False True)-False].out | 12 +- ...al_1.tz-False-(Pair True False)-False].out | 12 +- ...ical_1.tz-False-(Pair True True)-True].out | 12 +- ...put[balance.tz-111-Unit-4000000000000].out | 10 +- ...lt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out | 24 +- ...lt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out | 24 +- ...lt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out | 24 +- ...lt 1 0 } None)-1-(Pair 4 (S.73700321f8.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-1.1182eca937.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-2.1eead33885.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out | 24 +- ...lt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out | 24 +- ...air {} None)-1-(Pair 4 (Some False))0].out | 24 +- ...air {} None)-1-(Pair 4 (Some False))1].out | 24 +- ... \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" | 24 +- ... \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" | 24 +- ... \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" | 24 +- ... \"foo\" 0 } None)-\"foo\".968709d39d.out" | 24 +- ... \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" | 24 +- ... None)-\"bar\"-(Pair 4 (Some False))].out" | 24 +- ...padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out | 12 +- ...e-Unit-(Some 0x100000000000.d1219ca789.out | 12 +- ...utput[bls12_381_fr_to_int.tz-0-0x00-0].out | 10 +- ...utput[bls12_381_fr_to_int.tz-0-0x01-1].out | 10 +- ...8db8e57af88d9576acd181b89f2.7a85c336ff.out | 10 +- ...9e8abf8dc324a010007addde986.b821eb26b3.out | 10 +- ...ut[bls12_381_fr_to_mutez.tz-0-0x10-16].out | 20 +- ...000000000000000000000000000.0accef5bef.out | 10 +- ...000000000000000000000000000.0ecc537252.out | 10 +- ...000000000000000000000000000.2229b767cd.out | 10 +- ...000000000000000000000000000.2ff549b46b.out | 10 +- ...000000000000000000000000000.bf8a711be6.out | 10 +- ...000000000000000000000000000.d41cbb044b.out | 10 +- ...a5ad0a633e4880d2296f08ec5c1.a50412e458.out | 10 +- ...cd0fa853810e356f1eb79721e80.f3a349c4a7.out | 10 +- ...be1766f92cd82c5e5135c374a03.1b9676e4c2.out | 10 +- ...be1766f92cd82c5e5135c374a03.e966dc6de5.out | 10 +- ...000000000000000000000000000.964835cc43.out | 10 +- ...000000000000000000000000000.b25ea709fb.out | 10 +- ...000000000000000000000000000.eae36753ea.out | 10 +- ...000000000000000000000000000.ee57dac8f7.out | 10 +- ...a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out | 10 +- ...cd0fa853810e356f1eb79721e80.bd5800f6b8.out | 10 +- ...be1766f92cd82c5e5135c374a03.00e897789a.out | 10 +- ...be1766f92cd82c5e5135c374a03.a4697eaa13.out | 10 +- ...000000000000000000000000000.0177355bbf.out | 12 +- ...000000000000000000000000000.744166c609.out | 12 +- ...000000000000000000000000000.9f3c5cdc6a.out | 12 +- ...000000000000000000000000000.a54cb341ba.out | 12 +- ...000000000000000000000000000.b0dc584c94.out | 12 +- ...000000000000000000000000000.bddcad090c.out | 12 +- ...a5ad0a633e4880d2296f08ec5c1.92c153eb47.out | 12 +- ...cd0fa853810e356f1eb79721e80.290ab49d11.out | 12 +- ...be1766f92cd82c5e5135c374a03.69f3589a06.out | 12 +- ...be1766f92cd82c5e5135c374a03.fee3c5cf43.out | 12 +- ...000000000000000000000000000.1bccc033e8.out | 12 +- ...000000000000000000000000000.40958700fe.out | 12 +- ...000000000000000000000000000.6c62b03d78.out | 12 +- ...000000000000000000000000000.d23f269341.out | 12 +- ...a5ad0a633e4880d2296f08ec5c1.927f808504.out | 12 +- ...cd0fa853810e356f1eb79721e80.0c114c956a.out | 12 +- ...be1766f92cd82c5e5135c374a03.03c4f38e68.out | 12 +- ...be1766f92cd82c5e5135c374a03.8ed19cfdd9.out | 12 +- ...input_output[car.tz-0-(Pair 34 17)-34].out | 10 +- ...input_output[cdr.tz-0-(Pair 34 17)-17].out | 10 +- ...prcVkpaWU\")-Unit-(Some \".8420090f97.out" | 12 +- ...770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" | 12 +- ...None-Unit-(Some \"NetXdQprcVkpaWU\")].out" | 12 +- ...mb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out | 82 +- ... Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" | 22 +- ...r 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out | 24 +- ...omb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out | 14 +- ...nput_output[compare.tz-Unit-Unit-Unit].out | 358 ++++----- ...; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out | 200 ++--- ...-{ \"World!\" }-{ \"Hello World!\" }].out" | 16 +- ..."test2\" }-{ \"Hello test1.c27e8c3ee6.out" | 22 +- ...input_output[concat_hello.tz-{}-{}-{}].out | 10 +- ...}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out | 22 +- ...hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out | 16 +- ...output[concat_hello_bytes.tz-{}-{}-{}].out | 10 +- ...; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" | 86 +- ...\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" | 68 +- ...t_output[concat_list.tz-\"\"-{}-\"\"].out" | 14 +- ...ns.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out | 10 +- ..._output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out | 10 +- ...act_input_output[cons.tz-{}-10-{ 10 }].out | 10 +- ...ir { \"A\" } { \"B\" })-(Some False)].out" | 100 +-- ...\"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" | 244 +++--- ...\"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" | 266 +++---- ...air { \"B\" } { \"B\" })-(Some True)].out" | 100 +-- ...ir { \"c\" } { \"B\" })-(Some False)].out" | 100 +-- ..._all.tz-None-(Pair {} {})-(Some True)].out | 38 +- ...wnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" | 18 +- ...Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" | 24 +- ...970-01-01T00:03:20Z\" \"19.90e9215d17.out" | 20 +- ...t[diff_timestamps.tz-111-(Pair 0 0)-0].out | 20 +- ...[diff_timestamps.tz-111-(Pair 0 1)--1].out | 20 +- ...t[diff_timestamps.tz-111-(Pair 1 0)-1].out | 20 +- ...r 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out | 748 +++++++++--------- ... 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out | 748 +++++++++--------- ...air (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out | 30 +- ...p.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out | 20 +- ...z-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out | 20 +- ...air (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out | 42 +- ...air (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out | 18 +- ...air (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out | 26 +- ..._input_output[dup-n.tz-Unit-Unit-Unit].out | 82 +- ... None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out | 70 +- ... None)-(Pair 10 -3)-(Pair (.3caea50555.out | 70 +- ... None)-(Pair 10 0)-(Pair No.f9448c04fb.out | 70 +- ... None)-(Pair 10 (Left 0))-(Left None)].out | 22 +- ...air 10 (Left 10))-(Left (So.f782cc1dec.out | 22 +- ...air 10 (Left 3))-(Left (Som.016b4db96c.out | 22 +- ...one)-(Pair 10 (Right 0))-(Right None)].out | 22 +- ...air 10 (Right 10))-(Right (.e705a30e07.out | 22 +- ...air 10 (Right 3))-(Right (S.44485eda6a.out | 22 +- ...air 5 (Right 10))-(Right (S.8ab987af15.out | 22 +- ...-{}-Unit-{ Elt \"hello\" \"world\" }].out" | 18 +- ...t[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" | 28 +- ...oncat.tz-\"?\"-\"test\"-\"test_abc\"].out" | 28 +- ...tput[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out | 18 +- ...act_input_output[first.tz-111-{ 4 }-4].out | 18 +- ...me 4) {})-\"hello\"-(Pair .161d86cef6.out" | 18 +- ...me 5) { Elt \"hello\" 4 }).684ab7e326.out" | 18 +- ...me 5) { Elt \"hello\" 4 }).d49817fb83.out" | 18 +- ...e { Elt \"1\" 1 ; .6900b1da14.out" | 18 +- ...e { Elt \"1\" 1 ; .bca0ede8be.out" | 18 +- ... { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" | 18 +- ...ir None {})-\"hello\"-(Pair None {})].out" | 18 +- ... \"1\" \"one\" ; .bc4127094e.out" | 24 +- ..."hello\" \"hi\" })-\"\"-(P.0c03056487.out" | 24 +- ...\"hello\" \"hi\" })-\"hell.cc45544c66.out" | 24 +- ...nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" | 12 +- ...2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" | 12 +- ...xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" | 12 +- ...-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" | 12 +- ..._output[if.tz-None-False-(Some False)].out | 16 +- ...ut_output[if.tz-None-True-(Some True)].out | 16 +- ....tz-\"?\"-(Some \"hello\")-\"hello\"].out" | 12 +- ...ut_output[if_some.tz-\"?\"-None-\"\"].out" | 14 +- ...t_input_output[int.tz-None-0-(Some 0)].out | 12 +- ...t_input_output[int.tz-None-1-(Some 1)].out | 12 +- ...t_output[int.tz-None-9999-(Some 9999)].out | 12 +- ...c20776f726c6421-(Some 0xb6e.34c02678c9.out | 12 +- ...Left \"X\")-(Left True)-(Right True)].out" | 14 +- ...ft \"X\")-(Right \"a\")-(Left \"a\")].out" | 14 +- ...ract_input_output[level.tz-111-Unit-1].out | 10 +- ...{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" | 14 +- ...ut[list_concat.tz-\"abc\"-{}-\"abc\"].out" | 14 +- ...tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out | 14 +- ..._output[list_concat_bytes.tz-0x-{}-0x].out | 14 +- ...b-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out | 14 +- ...list_concat_bytes.tz-0xabcd-{}-0xabcd].out | 14 +- ... ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" | 8 +- ... ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 8 +- ...input_output[list_id.tz-{\"\"}-{}-{}].out" | 8 +- ... ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" | 16 +- ... ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 16 +- ...t_output[list_id_map.tz-{\"\"}-{}-{}].out" | 10 +- ...tput[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out | 26 +- ...tput[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out | 26 +- ...}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out | 92 +-- ...}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out | 92 +-- ...ut_output[list_map_block.tz-{0}-{}-{}].out | 20 +- ...ze.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out | 10 +- ...tput[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out | 10 +- ...input_output[list_size.tz-111-{ 1 }-1].out | 10 +- ...ct_input_output[list_size.tz-111-{}-0].out | 10 +- ... ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 120 +-- ...put_output[loop_left.tz-{\"\"}-{}-{}].out" | 36 +- ...0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out | 8 +- ...[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out | 8 +- ...[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out | 8 +- ... Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out | 94 +-- ...-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out | 94 +-- ...foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" | 42 +- ...lt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" | 30 +- ...ract_input_output[map_map.tz-{}-10-{}].out | 18 +- ... 1 } None)-1-(Pair { Elt 0 .7396e5f090.out | 24 +- ... 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out | 24 +- ... 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out | 24 +- ... 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out | 24 +- ... 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out | 24 +- ...air {} None)-1-(Pair {} (Some False))].out | 24 +- ...ar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" | 24 +- ...ar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" | 24 +- ...ar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" | 24 +- ...oo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" | 24 +- ...oo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" | 24 +- ...None)-\"bar\"-(Pair {} (Some False))].out" | 24 +- ... \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" | 10 +- ...\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" | 10 +- ...ut[map_size.tz-111-{ Elt \"a\" 1 }-1].out" | 10 +- ...act_input_output[map_size.tz-111-{}-0].out | 10 +- ...ct_input_output[mul.tz-Unit-Unit-Unit].out | 108 +-- ...0-257-0x0101000000000000000.be11332c7f.out | 24 +- ...2-16-0x10000000000000000000.8230fb4fac.out | 24 +- ...act_input_output[neg.tz-0-(Left -2)-2].out | 14 +- ...ract_input_output[neg.tz-0-(Left 0)-0].out | 14 +- ...act_input_output[neg.tz-0-(Left 2)--2].out | 14 +- ...act_input_output[neg.tz-0-(Right 0)-0].out | 14 +- ...ct_input_output[neg.tz-0-(Right 2)--2].out | 14 +- ...nput_output[none.tz-Some 10-Unit-None].out | 10 +- ..._output[not.tz-None-False-(Some True)].out | 12 +- ..._output[not.tz-None-True-(Some False)].out | 12 +- ...not_binary.tz-None-(Left -8)-(Some 7)].out | 16 +- ...not_binary.tz-None-(Left -9)-(Some 8)].out | 16 +- ...not_binary.tz-None-(Left 0)-(Some -1)].out | 16 +- ...not_binary.tz-None-(Left 7)-(Some -8)].out | 16 +- ...not_binary.tz-None-(Left 8)-(Some -9)].out | 16 +- ...ot_binary.tz-None-(Right 0)-(Some -1)].out | 16 +- ...ot_binary.tz-None-(Right 7)-(Some -8)].out | 16 +- ...ot_binary.tz-None-(Right 8)-(Some -9)].out | 16 +- ...-None-(Pair False False)-(Some False)].out | 20 +- ...tz-None-(Pair False True)-(Some True)].out | 20 +- ...tz-None-(Pair True False)-(Some True)].out | 20 +- ....tz-None-(Pair True True)-(Some True)].out | 20 +- ...or_binary.tz-None-(Pair 0 8)-(Some 8)].out | 14 +- ..._binary.tz-None-(Pair 14 1)-(Some 15)].out | 14 +- ..._binary.tz-None-(Pair 15 4)-(Some 15)].out | 14 +- ...r_binary.tz-None-(Pair 4 8)-(Some 12)].out | 14 +- ...or_binary.tz-None-(Pair 7 7)-(Some 7)].out | 14 +- ...or_binary.tz-None-(Pair 8 0)-(Some 8)].out | 14 +- ... (Pair 1 (Pair \"foobar\".368bdfd73a.out" | 282 +++---- ... (Pair 1 (Pair \"foobar\".735d9ae802.out" | 282 +++---- ...ir \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" | 342 ++++---- ...ir \"edpkuBknW28nW72KG6RoH.4e20b52378.out" | 342 ++++---- ...alse False)-(Some (Pair False False))].out | 10 +- ... False True)-(Some (Pair False True))].out | 10 +- ... True False)-(Some (Pair True False))].out | 10 +- ...ir True True)-(Some (Pair True True))].out | 10 +- ...ntract_input_output[pexec.tz-14-38-52].out | 28 +- ... 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out | 148 ++-- ...utput[ret_int.tz-None-Unit-(Some 300)].out | 12 +- ... ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 26 +- ...input_output[reverse.tz-{\"\"}-{}-{}].out" | 14 +- ... ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 76 +- ..._output[reverse_loop.tz-{\"\"}-{}-{}].out" | 28 +- ...tput[sapling_empty_state.tz-{}-Unit-0].out | 10 +- ...output[self_address.tz-Unit-Unit-Unit].out | 32 +- ..._default_entrypoint.tz-Unit-Unit-Unit].out | 34 +- ...entrypoint.tz-Unit-Left (Left 0)-Unit].out | 70 +- ...Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" | 28 +- ..."hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" | 28 +- ...lo\" 0)-\"world\"-(Pair \"world\" 0)].out" | 28 +- ...ir \"hello\" 0)-1-(Pair \"hello\" 1)].out" | 26 +- ... \"hello\" 500)-3-(Pair \"hello\" 3)].out" | 26 +- ..."hello\" 7)-100-(Pair \"hello\" 100)].out" | 26 +- ... ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 8 +- ...; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" | 8 +- ...tract_input_output[set_id.tz-{}-{}-{}].out | 8 +- ..._iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out | 30 +- ..._input_output[set_iter.tz-111-{ 1 }-1].out | 18 +- ...act_input_output[set_iter.tz-111-{}-0].out | 14 +- ..."World\" } None)-\"\"-(Pai.3d2044726e.out" | 36 +- ...)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" | 36 +- ... None)-\"Hi\"-(Pair {} (Some False))].out" | 36 +- ...ze.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out | 10 +- ...utput[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out | 10 +- ..._input_output[set_size.tz-111-{ 1 }-1].out | 10 +- ...act_input_output[set_size.tz-111-{}-0].out | 10 +- ...0776f726c6421-(Some 0xf345a.a07ae9dddf.out | 12 +- ...ts.tz-None-(Left (Pair 0 0))-(Some 0)].out | 18 +- ...ts.tz-None-(Left (Pair 0 1))-(Some 0)].out | 18 +- ...ts.tz-None-(Left (Pair 1 2))-(Some 4)].out | 18 +- ....tz-None-(Left (Pair 15 2))-(Some 60)].out | 18 +- ...s.tz-None-(Left (Pair 8 1))-(Some 16)].out | 18 +- ...s.tz-None-(Right (Pair 0 0))-(Some 0)].out | 18 +- ...s.tz-None-(Right (Pair 0 1))-(Some 0)].out | 18 +- ...s.tz-None-(Right (Pair 1 2))-(Some 0)].out | 18 +- ....tz-None-(Right (Pair 15 2))-(Some 3)].out | 18 +- ...s.tz-None-(Right (Pair 8 1))-(Some 4)].out | 18 +- ...ut_output[slice.tz-None-Pair 0 0-None].out | 18 +- ...tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" | 20 +- ...slice.tz-Some \"Foo\"-Pair 0 10-None].out" | 20 +- ...-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" | 20 +- ...z-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" | 20 +- ...[slice.tz-Some \"Foo\"-Pair 1 3-None].out" | 20 +- ...slice.tz-Some \"Foo\"-Pair 10 5-None].out" | 20 +- ...FooFooFooFooFooFooFooFooFo.c508d67bb0.out" | 20 +- ...put[slice_bytes.tz-None-Pair 0 1-None].out | 18 +- ...s.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out | 20 +- ...tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out | 20 +- ...z-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out | 20 +- ...z-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out | 20 +- ...-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out | 20 +- ..._bytes.tz-Some 0xaabbcc-Pair 1 3-None].out | 20 +- ...aabbccaabbccaabbccaabbccaab.df5895de85.out | 20 +- ...d.tz-None-\"Hello\"-(Some \"Hello\")].out" | 10 +- ..._id.tz-None-\"abcd\"-(Some \"abcd\")].out" | 10 +- ...r 100 -100)-\"1970-01-01T00:03:20Z\"].out" | 20 +- ...ir 100 100)-\"1970-01-01T00:00:00Z\"].out" | 20 +- ...Pair 100 200000000000000000.3db82d2c25.out | 20 +- ...00000 1000000)-(Some (Pair .b461aa042b.out | 46 +- ...10000 1010000)-(Some (Pair .1e8cf7679c.out | 46 +- ...t_output[uncomb.tz-0-(Pair 1 4 2)-142].out | 24 +- ...input_output[unpair.tz-Unit-Unit-Unit].out | 318 ++++---- ...dpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" | 20 +- ...Pair False False)-(Some (Left False))].out | 20 +- ... (Pair False True)-(Some (Left True))].out | 20 +- ... (Pair True False)-(Some (Left True))].out | 20 +- ... (Pair True True)-(Some (Left False))].out | 20 +- ...one-Right (Pair 0 0)-(Some (Right 0))].out | 20 +- ...one-Right (Pair 0 1)-(Some (Right 1))].out | 20 +- ...one-Right (Pair 1 0)-(Some (Right 1))].out | 20 +- ...one-Right (Pair 1 1)-(Some (Right 0))].out | 20 +- ...-Right (Pair 42 21)-(Some (Right 63))].out | 20 +- ...-Right (Pair 42 63)-(Some (Right 21))].out | 20 +- ...s::test_hash_consistency_michelson_cli.out | 2 +- ...pcodes.TestContractOpcodes::test_level.out | 10 +- ..._opcodes.TestContractOpcodes::test_now.out | 10 +- ...s.TestContractOpcodes::test_packunpack.out | 58 +- ...roveTransferRemove::test_add_liquidity.out | 16 +- ...ddApproveTransferRemove::test_approval.out | 12 +- ...TransferRemove::test_approved_transfer.out | 12 +- ...roveTransferRemove::test_call_approve1.out | 12 +- ...roveTransferRemove::test_call_approve2.out | 12 +- ...roveTransferRemove::test_call_approve3.out | 12 +- ...TransferRemove::test_call_mint_or_burn.out | 12 +- ...eTransferRemove::test_remove_liquidity.out | 18 +- ..._baking.TestTrades::test_add_liquidity.out | 16 +- ...uidity_baking.TestTrades::test_buy_tok.out | 16 +- ..._baking.TestTrades::test_call_approve1.out | 12 +- ..._baking.TestTrades::test_call_approve2.out | 12 +- ..._baking.TestTrades::test_call_approve3.out | 12 +- ...ing.TestTrades::test_call_mint_or_burn.out | 12 +- ...idity_baking.TestTrades::test_sell_tok.out | 18 +- ...idity_baking.TestTrades::test_transfer.out | 12 +- tests_python/tests_alpha/test_contract.py | 4 +- .../tests_alpha/test_multiple_transfers.py | 4 +- tezt/_regressions/hash_data/good.out | 28 +- tezt/_regressions/run_views.out | 104 +-- tezt/_regressions/sc_rollup_inbox.out | 120 +-- .../sc_rollup_inbox_of_rollup_node_basic.out | 24 +- ...box_of_rollup_node_handles_chain_reorg.out | 48 +- .../sc_rollup_inbox_of_rollup_node_stops.out | 48 +- .../_regressions/tx_rollup_batch_encoding.out | 24 +- .../tx_rollup_finalize_commitment_future.out | 24 +- ...tx_rollup_finalize_commitment_no_batch.out | 12 +- ...llup_finalize_commitment_no_commitment.out | 24 +- ..._rollup_finalize_too_recent_commitment.out | 36 +- .../tx_rollup_limit_empty_batch.out | 24 +- .../tx_rollup_limit_maximum_size_batch.out | 24 +- .../tx_rollup_limit_maximum_size_inbox.out | 252 +++--- .../_regressions/tx_rollup_rpc_commitment.out | 36 +- tezt/_regressions/tx_rollup_rpc_inbox.out | 24 +- ..._rollup_rpc_pending_bonded_commitments.out | 36 +- tezt/_regressions/tx_rollup_rpc_state.out | 12 +- 721 files changed, 7112 insertions(+), 7112 deletions(-) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestOriginateContractFromContract::test_originate_contract_from_contract_origination.out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestOriginateContractFromContract::test_originate_contract_from_contract_origination.out index c90bd64b8f82..aca108d8d6ea 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestOriginateContractFromContract::test_originate_contract_from_contract_origination.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestOriginateContractFromContract::test_originate_contract_from_contract_origination.out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestOriginateContractFromContract::test_originate_contract_from_contract_origination Node is bootstrapped. -Estimated gas: 1428.262 units (will add 100 for safety) +Estimated gas: 1425.542 units (will add 100 for safety) Estimated storage: 350 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000476 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1529 + Gas limit: 1526 Storage limit: 370 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000476 @@ -41,7 +41,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 93 bytes Paid storage size diff: 93 bytes - Consumed gas: 1428.262 + Consumed gas: 1425.542 Balance updates: [CONTRACT_HASH] ... -ꜩ0.02325 storage fees ........................... +ꜩ0.02325 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestOriginateContractFromContract::test_originate_contract_from_contract_transfer.out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestOriginateContractFromContract::test_originate_contract_from_contract_transfer.out index 4de97de5291d..cd7e57f8065d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestOriginateContractFromContract::test_originate_contract_from_contract_transfer.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestOriginateContractFromContract::test_originate_contract_from_contract_transfer.out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestOriginateContractFromContract::test_originate_contract_from_contract_transfer Node is bootstrapped. -Estimated gas: 3468.749 units (will add 100 for safety) +Estimated gas: 3525.107 units (will add 100 for safety) Estimated storage: 295 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000606 + Fee to the baker: ꜩ0.000612 Expected counter: [EXPECTED_COUNTER] - Gas limit: 3569 + Gas limit: 3626 Storage limit: 315 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000606 - payload fees(the block proposer) ....... +ꜩ0.000606 + [CONTRACT_HASH] ... -ꜩ0.000612 + payload fees(the block proposer) ....... +ꜩ0.000612 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -26,7 +26,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 93 bytes - Consumed gas: 2064.682 + Consumed gas: 2121.040 Internal operations: Origination: From: [CONTRACT_HASH] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestSelfAddressTransfer::test_self_address_originate_receiver.out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestSelfAddressTransfer::test_self_address_originate_receiver.out index aa1af02e6906..95cea9146f6b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestSelfAddressTransfer::test_self_address_originate_receiver.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestSelfAddressTransfer::test_self_address_originate_receiver.out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestSelfAddressTransfer::test_self_address_originate_receiver Node is bootstrapped. -Estimated gas: 1421.376 units (will add 100 for safety) +Estimated gas: 1420.416 units (will add 100 for safety) Estimated storage: 340 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000463 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1522 + Gas limit: 1521 Storage limit: 360 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000463 @@ -39,7 +39,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 83 bytes Paid storage size diff: 83 bytes - Consumed gas: 1421.376 + Consumed gas: 1420.416 Balance updates: [CONTRACT_HASH] ... -ꜩ0.02075 storage fees ........................... +ꜩ0.02075 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestSelfAddressTransfer::test_self_address_originate_sender.out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestSelfAddressTransfer::test_self_address_originate_sender.out index 09b8f93a9b5c..faa5414123bc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestSelfAddressTransfer::test_self_address_originate_sender.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestSelfAddressTransfer::test_self_address_originate_sender.out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestSelfAddressTransfer::test_self_address_originate_sender Node is bootstrapped. -Estimated gas: 1421.372 units (will add 100 for safety) +Estimated gas: 1419.932 units (will add 100 for safety) Estimated storage: 339 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000462 + Fee to the baker: ꜩ0.000461 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1522 + Gas limit: 1520 Storage limit: 359 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000462 - payload fees(the block proposer) ....... +ꜩ0.000462 + [CONTRACT_HASH] ... -ꜩ0.000461 + payload fees(the block proposer) ....... +ꜩ0.000461 Origination: From: [CONTRACT_HASH] Credit: ꜩ0 @@ -39,7 +39,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 82 bytes Paid storage size diff: 82 bytes - Consumed gas: 1421.372 + Consumed gas: 1419.932 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0205 storage fees ........................... +ꜩ0.0205 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestSelfAddressTransfer::test_send_self_address.out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestSelfAddressTransfer::test_send_self_address.out index ba446f3e7d4a..5a003102117d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestSelfAddressTransfer::test_send_self_address.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestSelfAddressTransfer::test_send_self_address.out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestSelfAddressTransfer::test_send_self_address Node is bootstrapped. -Estimated gas: 5195.785 units (will add 100 for safety) +Estimated gas: 4696.907 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000824 + Fee to the baker: ꜩ0.000774 Expected counter: [EXPECTED_COUNTER] - Gas limit: 5296 + Gas limit: 4797 Storage limit: 0 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000824 - payload fees(the block proposer) ....... +ꜩ0.000824 + [CONTRACT_HASH] ... -ꜩ0.000774 + payload fees(the block proposer) ....... +ꜩ0.000774 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -27,7 +27,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 82 bytes - Consumed gas: 3991.559 + Consumed gas: 3493.817 Internal operations: Transaction: Amount: ꜩ0 @@ -37,6 +37,6 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 83 bytes - Consumed gas: 1204.226 + Consumed gas: 1203.090 Injected block at minimal timestamp diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out index 78d3fffbf7be..efadeeacdb0c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--accounts.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/accounts.tz] Well typed -Gas remaining: 1039925.145 units remaining +Gas remaining: 1039932.345 units remaining { parameter (or (key_hash %Initialize) (pair %Withdraw (key %from) (pair (mutez %withdraw_amount) (signature %sig)))) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out index 69764ae7d11d..222978e61737 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/add1.tz] Well typed -Gas remaining: 1039996.134 units remaining +Gas remaining: 1039996.774 units remaining { parameter int ; storage int ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out index 6f603286efc7..daaa2778764c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--add1_list.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/add1_list.tz] Well typed -Gas remaining: 1039995.173 units remaining +Gas remaining: 1039995.973 units remaining { parameter (list int) ; storage (list int) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out index f13f72ec5d7c..1745652f1a79 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--after_strategy.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/after_strategy.tz] Well typed -Gas remaining: 1039989.643 units remaining +Gas remaining: 1039991.083 units remaining { parameter nat ; storage (pair (pair nat bool) timestamp) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out index 74eb39855ad4..36959d0b9bec 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--always.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/always.tz] Well typed -Gas remaining: 1039994.981 units remaining +Gas remaining: 1039995.941 units remaining { parameter nat ; storage (pair nat bool) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out index 48da5f096289..fc9ad53fe200 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--append.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/append.tz] Well typed -Gas remaining: 1039991.379 units remaining +Gas remaining: 1039993.459 units remaining { parameter (pair (list int) (list int)) ; storage (list int) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out index 1edabcf2fee5..a5f50ffee07d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--at_least.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/at_least.tz] Well typed -Gas remaining: 1039992.950 units remaining +Gas remaining: 1039993.750 units remaining { parameter unit ; storage mutez ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out index 1593cd1d0ff3..e068ac17c6e3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--auction.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/auction.tz] Well typed -Gas remaining: 1039972.258 units remaining +Gas remaining: 1039974.178 units remaining { parameter key_hash ; storage (pair timestamp (pair mutez key_hash)) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out index 26cf17375650..3ef3297da4fb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--bad_lockup.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/bad_lockup.tz] Well typed -Gas remaining: 1039972.793 units remaining +Gas remaining: 1039974.873 units remaining { parameter unit ; storage (pair timestamp (pair address address)) ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out index 40cc293d5a61..34f4ccc0a6a5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--big_map_union.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/big_map_union.tz] Well typed -Gas remaining: 1039983.939 units remaining +Gas remaining: 1039987.459 units remaining { parameter (list (pair string int)) ; storage (pair (big_map string int) unit) ; code { UNPAPAIR ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out index dac6731e01ed..f2e67ba31334 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cadr_annotation.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/cadr_annotation.tz] Well typed -Gas remaining: 1039994.745 units remaining +Gas remaining: 1039995.385 units remaining { parameter (pair (pair %p1 unit (string %no_name)) bool) ; storage unit ; code { CAR @param diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out index 6a9d4a3facb1..73dc09633c71 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--concat.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/concat.tz] Well typed -Gas remaining: 1039992.618 units remaining +Gas remaining: 1039993.578 units remaining { parameter string ; storage string ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out index e010c993068f..182eab40c6fd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--conditionals.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/conditionals.tz] Well typed -Gas remaining: 1039989.496 units remaining +Gas remaining: 1039990.456 units remaining { parameter (or string (option int)) ; storage string ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out index 61910b17a867..a6c2095f31d5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cons_twice.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/cons_twice.tz] Well typed -Gas remaining: 1039992.638 units remaining +Gas remaining: 1039993.758 units remaining { parameter nat ; storage (list nat) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out index 7a05c513e419..6ba3681d5479 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--cps_fact.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/cps_fact.tz] Well typed -Gas remaining: 1039973.149 units remaining +Gas remaining: 1039975.869 units remaining { storage nat ; parameter nat ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out index 7e31cd0adc57..9f96a6db9d53 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--create_add1_lists.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/create_add1_lists.tz] Well typed -Gas remaining: 1039986.470 units remaining +Gas remaining: 1039989.990 units remaining { parameter unit ; storage address ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out index 5f21c0a53776..a22f6514ba1f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--data_publisher.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/data_publisher.tz] Well typed -Gas remaining: 1039974.524 units remaining +Gas remaining: 1039975.804 units remaining { parameter (pair signature (pair string nat)) ; storage (pair (pair key nat) string) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out index a02e29dd8d1e..6b1191e60bf0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--dispatch.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/dispatch.tz] Well typed -Gas remaining: 1039979.486 units remaining +Gas remaining: 1039983.006 units remaining { parameter (or string (pair string (lambda unit string))) ; storage (pair string (map string (lambda unit string))) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out index a85b93fa0f52..6af222cd59df 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--empty.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/empty.tz] Well typed -Gas remaining: 1039997.267 units remaining +Gas remaining: 1039997.907 units remaining { parameter unit ; storage unit ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out index 6a87e49d2f4d..8dfef0ca8dc7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--fail_amount.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/fail_amount.tz] Well typed -Gas remaining: 1039992.147 units remaining +Gas remaining: 1039992.947 units remaining { parameter unit ; storage unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out index 5ad05a7ce276..aba6a67382d1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--faucet.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/faucet.tz] Well typed -Gas remaining: 1039986.830 units remaining +Gas remaining: 1039987.950 units remaining { parameter key_hash ; storage timestamp ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out index 3d717bb246ab..4bb7efc84781 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--forward.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/forward.tz] Well typed -Gas remaining: 1039634.172 units remaining +Gas remaining: 1039668.732 units remaining { parameter (or string nat) ; storage (pair (pair nat (pair mutez mutez)) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out index e16eb48f7116..c91d66d98105 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--id.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/id.tz] Well typed -Gas remaining: 1039997.267 units remaining +Gas remaining: 1039997.907 units remaining { parameter string ; storage string ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out index 3cadca40c340..4cfc7a5e1aa3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--infinite_loop.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/infinite_loop.tz] Well typed -Gas remaining: 1039994.665 units remaining +Gas remaining: 1039995.465 units remaining { parameter unit ; storage unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out index 7dd48a160061..23e757328d44 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--insertion_sort.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/insertion_sort.tz] Well typed -Gas remaining: 1039971.505 units remaining +Gas remaining: 1039976.625 units remaining { parameter (list int) ; storage (list int) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out index be420737b5f1..c7cef3aebac9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--int_publisher.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/int_publisher.tz] Well typed -Gas remaining: 1039967.523 units remaining +Gas remaining: 1039969.923 units remaining { parameter (option (pair signature int)) ; storage (pair key int) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out index ef5a0759ec41..0ab50667f22a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--king_of_tez.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/king_of_tez.tz] Well typed -Gas remaining: 1039971.047 units remaining +Gas remaining: 1039974.087 units remaining { parameter key_hash ; storage (pair timestamp (pair mutez key_hash)) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out index 192b717db240..9f7a77b1b9a4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--list_of_transactions.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/list_of_transactions.tz] Well typed -Gas remaining: 1039982.122 units remaining +Gas remaining: 1039985.482 units remaining { parameter unit ; storage (list address) ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out index ffce16bbaace..2bfb2caef50f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--queue.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/queue.tz] Well typed -Gas remaining: 1039952.504 units remaining +Gas remaining: 1039958.584 units remaining { parameter (option string) ; storage (pair (option string) (pair (pair nat nat) (map nat string))) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out index b12810ef5d26..aeedbf70fdb1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reduce_map.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/reduce_map.tz] Well typed -Gas remaining: 1039975.926 units remaining +Gas remaining: 1039978.486 units remaining { parameter (pair (lambda int int) (list int)) ; storage (list int) ; code { DIP { NIL int /* [ list int ] */ } diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out index 26d95bc92b92..cbf13b436298 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reentrancy.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/reentrancy.tz] Well typed -Gas remaining: 1039981.752 units remaining +Gas remaining: 1039983.352 units remaining { parameter unit ; storage (pair address address) ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out index 07f1f10d3eae..eea9dbd5ed16 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--reservoir.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/reservoir.tz] Well typed -Gas remaining: 1039963.237 units remaining +Gas remaining: 1039968.997 units remaining { parameter unit ; storage (pair (pair (timestamp %T) (mutez %N)) (pair (address %A) (address %B))) ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out index 50c6a40c70d9..1c9d26c06466 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--scrutable_reservoir.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/scrutable_reservoir.tz] Well typed -Gas remaining: 1039876.691 units remaining +Gas remaining: 1039888.691 units remaining { parameter unit ; storage (pair string diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out index 9f477fa3dd56..253fa1e6a881 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[attic--spawn_identities.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[attic/spawn_identities.tz] Well typed -Gas remaining: 1039971.200 units remaining +Gas remaining: 1039976.320 units remaining { parameter nat ; storage (list address) ; code { /* [ pair string string ] */ diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out index aa15244dcd2e..e491eaf22aa4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert.tz] Well typed -Gas remaining: 1039994.573 units remaining +Gas remaining: 1039995.213 units remaining { parameter bool ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out index 846bae98a266..cd510499c1e2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpeq.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpeq.tz] Well typed -Gas remaining: 1039990.676 units remaining +Gas remaining: 1039991.476 units remaining { parameter (pair int int) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out index 2b3cea6f1c6c..2626723bacc4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpge.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpge.tz] Well typed -Gas remaining: 1039990.676 units remaining +Gas remaining: 1039991.476 units remaining { parameter (pair int int) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out index ad6bb1ac9649..d65962c62404 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpgt.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpgt.tz] Well typed -Gas remaining: 1039990.676 units remaining +Gas remaining: 1039991.476 units remaining { parameter (pair int int) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out index 36ad2136d548..5d505268f7a8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmple.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmple.tz] Well typed -Gas remaining: 1039990.676 units remaining +Gas remaining: 1039991.476 units remaining { parameter (pair int int) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out index 6f118050fbd7..617bd22773bf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmplt.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmplt.tz] Well typed -Gas remaining: 1039990.676 units remaining +Gas remaining: 1039991.476 units remaining { parameter (pair int int) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out index 1074fab56ea5..d3019e3550cd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_cmpneq.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_cmpneq.tz] Well typed -Gas remaining: 1039990.676 units remaining +Gas remaining: 1039991.476 units remaining { parameter (pair int int) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out index f50cda99d240..fcdee496bcc5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_eq.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_eq.tz] Well typed -Gas remaining: 1039990.923 units remaining +Gas remaining: 1039991.723 units remaining { parameter (pair int int) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out index c830756ba187..ae365373f1e3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_ge.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_ge.tz] Well typed -Gas remaining: 1039990.923 units remaining +Gas remaining: 1039991.723 units remaining { parameter (pair int int) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out index d1ef6bd676dd..93c98feb607e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_gt.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_gt.tz] Well typed -Gas remaining: 1039990.923 units remaining +Gas remaining: 1039991.723 units remaining { parameter (pair int int) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out index 5c9142933c80..50e829fa322a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_le.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_le.tz] Well typed -Gas remaining: 1039990.923 units remaining +Gas remaining: 1039991.723 units remaining { parameter (pair int int) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out index cd7132002fd3..d2db3c4ffe44 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_lt.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_lt.tz] Well typed -Gas remaining: 1039990.923 units remaining +Gas remaining: 1039991.723 units remaining { parameter (pair int int) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out index ee74f643533c..afe1cbd811f8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--assert_neq.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/assert_neq.tz] Well typed -Gas remaining: 1039990.923 units remaining +Gas remaining: 1039991.723 units remaining { parameter (pair int int) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out index b267e0d74607..cc3d25976404 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_get_add.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/big_map_get_add.tz] Well typed -Gas remaining: 1039968.666 units remaining +Gas remaining: 1039971.066 units remaining { parameter (pair (pair %set_pair int (option int)) (pair %check_pair int (option int))) ; storage (pair (big_map int int) unit) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out index 5e0952d8f8ac..c5248e74e699 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--big_map_mem.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/big_map_mem.tz] Well typed -Gas remaining: 1039982.471 units remaining +Gas remaining: 1039984.071 units remaining { parameter (pair int bool) ; storage (pair (big_map int unit) unit) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out index ae6c0ea324e7..444d537869b3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--build_list.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/build_list.tz] Well typed -Gas remaining: 1039982.791 units remaining +Gas remaining: 1039984.871 units remaining { parameter nat ; storage (list nat) ; code { CAR @counter diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out index 8c1238fd9eae..e08752a58a5d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--carn_and_cdrn.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/carn_and_cdrn.tz] Well typed -Gas remaining: 1039963.184 units remaining +Gas remaining: 1039964.624 units remaining { parameter (pair nat nat nat unit) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out index a237a39ff280..a7a4b0775e72 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/compare.tz] Well typed -Gas remaining: 1039968.322 units remaining +Gas remaining: 1039970.722 units remaining { parameter (pair mutez mutez) ; storage (list bool) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out index 8978929af908..cd6233b88217 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--compare_bytes.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/compare_bytes.tz] Well typed -Gas remaining: 1039968.322 units remaining +Gas remaining: 1039970.722 units remaining { parameter (pair bytes bytes) ; storage (list bool) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out index 1c111b04fdd0..8b85a68338aa 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--guestbook.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/guestbook.tz] Well typed -Gas remaining: 1039986.383 units remaining +Gas remaining: 1039988.143 units remaining { parameter string ; storage (map address (option string)) ; code { UNPAIR @message @guestbook diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out index c6896b36a7dc..b8a11069aba5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--macro_annotations.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/macro_annotations.tz] Well typed -Gas remaining: 1039992.402 units remaining +Gas remaining: 1039993.362 units remaining { parameter unit ; storage (pair (unit %truc) unit) ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out index a83c3b51b238..2cfb52f9d84e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--map_caddaadr.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/map_caddaadr.tz] Well typed -Gas remaining: 1039964.206 units remaining +Gas remaining: 1039966.766 units remaining { parameter unit ; storage (pair (pair nat (pair nat (pair (pair (pair (nat %p) (mutez %value)) nat) nat))) nat) ; code { MAP_CDADDAADR @new_storage %value diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out index 27893a7e2524..3d1e8efa4b55 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--max_in_list.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/max_in_list.tz] Well typed -Gas remaining: 1039985.981 units remaining +Gas remaining: 1039987.741 units remaining { parameter (list int) ; storage (option int) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out index 962d0fa3738e..60e727d196f2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--min.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/min.tz] Well typed -Gas remaining: 1039990.871 units remaining +Gas remaining: 1039991.831 units remaining { parameter (pair int int) ; storage int ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out index 4cbabdcb2ecf..30ce0dba4fa9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--pair_macro.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/pair_macro.tz] Well typed -Gas remaining: 1039988.218 units remaining +Gas remaining: 1039988.858 units remaining { parameter unit ; storage unit ; code { UNIT diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out index 62a65bc59f8e..51ddc75b1799 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--set_caddaadr.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/set_caddaadr.tz] Well typed -Gas remaining: 1039968.110 units remaining +Gas remaining: 1039970.670 units remaining { parameter mutez ; storage (pair (pair nat (pair nat (pair (pair (pair (nat %p) (mutez %value)) nat) nat))) nat) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out index f90685682e42..a6c6daa011ac 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--take_my_money.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/take_my_money.tz] Well typed -Gas remaining: 1039992.790 units remaining +Gas remaining: 1039993.750 units remaining { parameter key_hash ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out index 1d2fe26c5b24..9a2a0a685964 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[macros--unpair_macro.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[macros/unpair_macro.tz] Well typed -Gas remaining: 1039976.490 units remaining +Gas remaining: 1039977.130 units remaining { parameter (unit :param_unit) ; storage (unit :u1) ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out index 84f7a47c8a73..8c4d7c57c49e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--authentication.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/authentication.tz] Well typed -Gas remaining: 1039978.716 units remaining +Gas remaining: 1039979.836 units remaining { parameter (pair (lambda unit (list operation)) signature) ; storage (pair (nat %counter) key) ; code { UNPPAIPAIR ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out index 249a76bdf260..f9e978d8a253 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_entrypoints.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_entrypoints.tz] Well typed -Gas remaining: 1039940.196 units remaining +Gas remaining: 1039953.156 units remaining { storage (pair (big_map string nat) (big_map string nat)) ; parameter (or (unit %default diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out index 0e204390f218..68896cac20ac 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_magic.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_magic.tz] Well typed -Gas remaining: 1039941.750 units remaining +Gas remaining: 1039954.710 units remaining { storage (or (pair (big_map string string) (big_map string string)) unit) ; parameter (or (unit %swap) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out index fb6af71493cc..ec6db73a1857 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_read.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_read.tz] Well typed -Gas remaining: 1039993.434 units remaining +Gas remaining: 1039994.234 units remaining { storage nat ; parameter (big_map nat nat) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out index 6360722435d9..03a288add64c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_store.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_store.tz] Well typed -Gas remaining: 1039995.896 units remaining +Gas remaining: 1039996.856 units remaining { storage (big_map nat nat) ; parameter unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out index 2314efe7a47b..bbde2d802194 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--big_map_write.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/big_map_write.tz] Well typed -Gas remaining: 1039994.022 units remaining +Gas remaining: 1039994.982 units remaining { storage unit ; parameter (big_map nat nat) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out index 54b58211665f..0bbfef0a5409 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/create_contract.tz] Well typed -Gas remaining: 1039968.837 units remaining +Gas remaining: 1039973.157 units remaining { parameter (option address) ; storage unit ; code { /* [ pair string string ] */ diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out index 6a09a9aed8c5..98008905cba8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--create_contract_simple.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/create_contract_simple.tz] Well typed -Gas remaining: 1039989.249 units remaining +Gas remaining: 1039991.809 units remaining { parameter unit ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out index 6bae2d8ba1a2..ad621ed13f2a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--default_account.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/default_account.tz] Well typed -Gas remaining: 1039992.790 units remaining +Gas remaining: 1039993.750 units remaining { parameter key_hash ; storage unit ; code { DIP { UNIT /* [ unit ] */ } diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out index 621174989a07..feeae3bafa24 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_appender.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/execution_order_appender.tz] Well typed -Gas remaining: 1039989.364 units remaining +Gas remaining: 1039990.644 units remaining { parameter unit ; storage (pair address string) ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out index 435c3e2e782e..6919564b00ed 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_caller.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/execution_order_caller.tz] Well typed -Gas remaining: 1039991.291 units remaining +Gas remaining: 1039992.571 units remaining { parameter unit ; storage (list address) ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out index 48c6bb61f757..0c361e6bbf93 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--execution_order_storer.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/execution_order_storer.tz] Well typed -Gas remaining: 1039996.340 units remaining +Gas remaining: 1039996.980 units remaining { parameter string ; storage string ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out index f7704cda2314..1e2c2ecd86f5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--fa12_reference.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/fa12_reference.tz] Well typed -Gas remaining: 1039229.258 units remaining +Gas remaining: 1039348.458 units remaining { parameter (or (or (or (pair %transfer (address :from) (pair (address :to) (nat :value))) (pair %approve (address :spender) (nat :value))) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out index fb816429240a..09b4d94d9d2e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/generic_multisig.tz] Well typed -Gas remaining: 1039928.351 units remaining +Gas remaining: 1039939.551 units remaining { parameter (or (unit %default) (pair %main diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out index c49ca5e6fe9e..26ffe844b246 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--groth16.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/groth16.tz] Well typed -Gas remaining: 1039478.027 units remaining +Gas remaining: 1039536.287 units remaining { storage unit ; parameter (pair (pair (bls12_381_fr %input_x) (bls12_381_fr %input_y)) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out index 249282a0a2c7..e0fad67b90cb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--hardlimit.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/hardlimit.tz] Well typed -Gas remaining: 1039991.583 units remaining +Gas remaining: 1039992.383 units remaining { parameter unit ; storage int ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out index 3bbcd5e4a08b..ca405ddaf2d1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--legacy_multisig.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/legacy_multisig.tz] Well typed -Gas remaining: 1039930.991 units remaining +Gas remaining: 1039943.151 units remaining { parameter (pair (pair :payload (nat %counter) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out index c9137027d4df..f3a7dc23bded 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lockup.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/lockup.tz] Well typed -Gas remaining: 1039981.235 units remaining +Gas remaining: 1039982.995 units remaining { parameter unit ; storage (pair timestamp (pair mutez address)) ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out index 83fdc99cac3b..c7f25c1ef006 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--lqt_fa12.mligo.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/lqt_fa12.mligo.tz] Well typed -Gas remaining: 1039662.882 units remaining +Gas remaining: 1039737.442 units remaining { parameter (or (or (or (pair %approve (address %spender) (nat %value)) (pair %getAllowance diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out index c2c13dbeca65..f8d0cb1b86fa 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_en2.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/multiple_en2.tz] Well typed -Gas remaining: 1039921.252 units remaining +Gas remaining: 1039927.812 units remaining { parameter unit ; storage (option address) ; code { SENDER diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out index 0b3e3c204bbb..a3c307014ce0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--multiple_entrypoints_counter.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/multiple_entrypoints_counter.tz] Well typed -Gas remaining: 1039923.962 units remaining +Gas remaining: 1039930.522 units remaining { parameter unit ; storage (option address) ; code { SENDER diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out index 8f13a37b1f77..66fe903450c8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--originate_contract.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/originate_contract.tz] Well typed -Gas remaining: 1039988.320 units remaining +Gas remaining: 1039991.040 units remaining { parameter unit ; storage unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out index a64f06f06be8..b0d17439bd1d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--parameterized_multisig.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/parameterized_multisig.tz] Well typed -Gas remaining: 1039928.103 units remaining +Gas remaining: 1039940.583 units remaining { storage (pair bool (pair (map nat (pair bool bool)) (pair key key))) ; parameter (or nat (pair signature nat)) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out index 902e300c2c57..d46c2729c873 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--replay.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/replay.tz] Well typed -Gas remaining: 1039989.740 units remaining +Gas remaining: 1039990.860 units remaining { parameter unit ; storage unit ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out index 75ddcc06dedf..2493d8930f42 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--reveal_signed_preimage.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/reveal_signed_preimage.tz] Well typed -Gas remaining: 1039977.336 units remaining +Gas remaining: 1039978.776 units remaining { parameter (pair bytes signature) ; storage (pair bytes key) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_receiver.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_receiver.tz].out index f00cbadabca5..42eea3e3c551 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_receiver.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_receiver.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/self_address_receiver.tz] Well typed -Gas remaining: 1039991.719 units remaining +Gas remaining: 1039992.679 units remaining { parameter (lambda unit address) ; storage unit ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_sender.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_sender.tz].out index 14a58732171f..ac66182f1794 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_sender.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--self_address_sender.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/self_address_sender.tz] Well typed -Gas remaining: 1039991.879 units remaining +Gas remaining: 1039993.319 units remaining { parameter (contract (lambda unit address)) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out index 7b30f749d943..f141ec01c1c4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_fungible.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_builder_fungible.tz] Well typed -Gas remaining: 1039973.685 units remaining +Gas remaining: 1039975.765 units remaining { parameter (or (ticket %burn unit) (pair %mint (contract %destination (ticket unit)) (nat %amount))) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out index 18e09368f4c2..667656f92844 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_builder_non_fungible.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_builder_non_fungible.tz] Well typed -Gas remaining: 1039970.718 units remaining +Gas remaining: 1039973.278 units remaining { parameter (or (ticket %burn nat) (contract %mint_destination (ticket nat))) ; storage (pair (address %manager) (nat %counter)) ; code { AMOUNT diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out index a67566db44fa..2b052116193d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_fungible.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_wallet_fungible.tz] Well typed -Gas remaining: 1039936.026 units remaining +Gas remaining: 1039942.906 units remaining { parameter (or (ticket %receive unit) (pair %send (contract %destination (ticket unit)) (nat %amount) (address %ticketer))) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out index ab9cea0b9396..71bc639ba991 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--ticket_wallet_non_fungible.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/ticket_wallet_non_fungible.tz] Well typed -Gas remaining: 1039952.622 units remaining +Gas remaining: 1039959.342 units remaining { parameter (or (ticket %receive nat) (pair %send (contract %destination (ticket nat)) (address %ticketer) (nat %id))) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--tzip4_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--tzip4_view.tz].out index 28c899865c48..0d4f3112d893 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--tzip4_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--tzip4_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/tzip4_view.tz] Well typed -Gas remaining: 1039984.179 units remaining +Gas remaining: 1039986.099 units remaining { parameter (or (pair %view_const unit (contract nat)) (pair %view_add (pair int int) (contract int))) ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out index c645ea6f7bd7..b61c8e53a529 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--vote_for_delegate.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/vote_for_delegate.tz] Well typed -Gas remaining: 1039933.671 units remaining +Gas remaining: 1039944.871 units remaining { parameter (option key_hash) ; storage (pair (pair %mgr1 (address %addr) (option %key key_hash)) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out index 38f9e1b140e5..32b0beb3b5e4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--weather_insurance.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/weather_insurance.tz] Well typed -Gas remaining: 1039960.200 units remaining +Gas remaining: 1039963.560 units remaining { parameter (pair (signature %signed_weather_data) (nat :rain %actual_level)) ; storage (pair (pair (address %under_key) (address %over_key)) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out index de37fea144a0..2895e770cbe9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/xcat.tz] Well typed -Gas remaining: 1039965.793 units remaining +Gas remaining: 1039966.823 units remaining { parameter bytes ; storage unit ; code { CAR @preimage diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out index 904ec5a78968..9cf5e12fc1cc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--xcat_dapp.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/xcat_dapp.tz] Well typed -Gas remaining: 1039911.852 units remaining +Gas remaining: 1039922.572 units remaining { parameter (or (pair %fund (address %dest) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out index 3d406c545a7c..4720c1f26eab 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_262.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[non_regression/bug_262.tz] Well typed -Gas remaining: 1039994.949 units remaining +Gas remaining: 1039995.909 units remaining { parameter unit ; storage unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out index f54adc8db41d..093a84cd4ba5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--bug_843.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[non_regression/bug_843.tz] Well typed -Gas remaining: 1039347.149 units remaining +Gas remaining: 1039990.549 units remaining { parameter never ; storage (pair address (lambda unit unit)) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out index b569215ee030..9b427b2445b1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[non_regression--pairk_annot.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[non_regression/pairk_annot.tz] Well typed -Gas remaining: 1039992.198 units remaining +Gas remaining: 1039993.318 units remaining { parameter unit ; storage unit ; code { SENDER diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out index a112b754b8d0..4b5929e0386d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--abs.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/abs.tz] Well typed -Gas remaining: 1039991.794 units remaining +Gas remaining: 1039992.594 units remaining { parameter nat ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out index 96ae56d4b842..f23187262478 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/add.tz] Well typed -Gas remaining: 1039944.723 units remaining +Gas remaining: 1039943.723 units remaining { parameter unit ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out index 57132f0aa12c..c58a7575dac1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_fr.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_bls12_381_fr.tz] Well typed -Gas remaining: 1039995.329 units remaining +Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_fr bls12_381_fr) ; storage (option bls12_381_fr) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out index 2a9525014b37..6c48c0c0a575 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g1.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_bls12_381_g1.tz] Well typed -Gas remaining: 1039995.329 units remaining +Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g1 bls12_381_g1) ; storage (option bls12_381_g1) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out index 6c61074094fc..fb086bee9f5e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_bls12_381_g2.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_bls12_381_g2.tz] Well typed -Gas remaining: 1039995.329 units remaining +Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g2 bls12_381_g2) ; storage (option bls12_381_g2) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out index 97c142b4a3ca..e0ee4f21b7b7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_delta_timestamp.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_delta_timestamp.tz] Well typed -Gas remaining: 1039993.598 units remaining +Gas remaining: 1039994.398 units remaining { parameter (pair int timestamp) ; storage (option timestamp) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out index 3bad19cb989b..9e67f070de40 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--add_timestamp_delta.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/add_timestamp_delta.tz] Well typed -Gas remaining: 1039993.598 units remaining +Gas remaining: 1039994.398 units remaining { parameter (pair timestamp int) ; storage (option timestamp) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out index 9037cc408cd8..6dafccd3b4c2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--address.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/address.tz] Well typed -Gas remaining: 1039995.954 units remaining +Gas remaining: 1039996.754 units remaining { parameter (contract unit) ; storage (option address) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out index 6dab0575031f..bab889e7fccc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_fib_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/amount_after_fib_view.tz] Well typed -Gas remaining: 1039985.607 units remaining +Gas remaining: 1039986.567 units remaining { parameter address ; storage mutez ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out index 2ee88f7fe021..2da78b9c572b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_nonexistent_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/amount_after_nonexistent_view.tz] Well typed -Gas remaining: 1039985.815 units remaining +Gas remaining: 1039986.775 units remaining { parameter address ; storage mutez ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out index 4a525f9baadf..1c7c62137e83 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--amount_after_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/amount_after_view.tz] Well typed -Gas remaining: 1039985.432 units remaining +Gas remaining: 1039986.392 units remaining { parameter address ; storage mutez ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out index 12f4855827ca..17928dded762 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/and.tz] Well typed -Gas remaining: 1039994.393 units remaining +Gas remaining: 1039995.193 units remaining { parameter (pair :param (bool %first) (bool %second)) ; storage (option bool) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out index e55d20d732c6..23fb473c1a2f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_binary.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/and_binary.tz] Well typed -Gas remaining: 1039971.036 units remaining +Gas remaining: 1039972.316 units remaining { parameter unit ; storage unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out index 73fe19cce803..f32d466a2599 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--and_logical_1.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/and_logical_1.tz] Well typed -Gas remaining: 1039996.174 units remaining +Gas remaining: 1039996.814 units remaining { parameter (pair bool bool) ; storage bool ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out index 54bc171a1755..8fc0f466e497 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance.tz] Well typed -Gas remaining: 1039996.803 units remaining +Gas remaining: 1039997.443 units remaining { parameter unit ; storage mutez ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out index 0ec9c49abe00..02bbe5aa50e3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_fib_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance_after_fib_view.tz] Well typed -Gas remaining: 1039985.607 units remaining +Gas remaining: 1039986.567 units remaining { parameter address ; storage mutez ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out index 3642c58517bf..3fc7feb1ae8f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_nonexistent_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance_after_nonexistent_view.tz] Well typed -Gas remaining: 1039985.815 units remaining +Gas remaining: 1039986.775 units remaining { parameter address ; storage mutez ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out index be6fdfb5fc91..0782043d9961 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--balance_after_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/balance_after_view.tz] Well typed -Gas remaining: 1039985.432 units remaining +Gas remaining: 1039986.392 units remaining { parameter address ; storage mutez ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out index b5b64d9fe336..1e27896c771d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_nat.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/big_map_mem_nat.tz] Well typed -Gas remaining: 1039991.894 units remaining +Gas remaining: 1039993.494 units remaining { parameter nat ; storage (pair (big_map nat nat) (option bool)) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out index 8c673b81b3fc..680fe2920f8c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_mem_string.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/big_map_mem_string.tz] Well typed -Gas remaining: 1039991.894 units remaining +Gas remaining: 1039993.494 units remaining { parameter string ; storage (pair (big_map string nat) (option bool)) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out index bed9ce3261bc..1ba9473d0aeb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/big_map_to_self.tz] Well typed -Gas remaining: 1039984.347 units remaining +Gas remaining: 1039987.387 units remaining { parameter (or (pair %have_fun (big_map string nat) unit) (unit %default)) ; storage (big_map string nat) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out index f15d0e9baaa9..29ee7d242603 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_bytes_not_padded.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_push_bytes_not_padded.tz] Well typed -Gas remaining: 1039995.606 units remaining +Gas remaining: 1039996.436 units remaining { parameter unit ; storage (option bls12_381_fr) ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out index 598d1fdf43d5..157f317a6377 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_push_nat.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_push_nat.tz] Well typed -Gas remaining: 1039995.606 units remaining +Gas remaining: 1039996.436 units remaining { parameter unit ; storage (option bls12_381_fr) ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out index dd14b051ce8d..a674efcf3429 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_int.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_to_int.tz] Well typed -Gas remaining: 1039996.803 units remaining +Gas remaining: 1039997.443 units remaining { parameter bls12_381_fr ; storage int ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out index 0c345677e378..c5b28f8c640c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_to_mutez.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_to_mutez.tz] Well typed -Gas remaining: 1039992.954 units remaining +Gas remaining: 1039993.594 units remaining { parameter bls12_381_fr ; storage mutez ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out index a8ea2adf58a2..88107da091e9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_int.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_z_int.tz] Well typed -Gas remaining: 1039996.803 units remaining +Gas remaining: 1039997.443 units remaining { parameter int ; storage bls12_381_fr ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out index b5556ae1c34c..ff016e1bf008 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_fr_z_nat.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_fr_z_nat.tz] Well typed -Gas remaining: 1039996.803 units remaining +Gas remaining: 1039997.443 units remaining { parameter nat ; storage bls12_381_fr ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out index 0481a27c264d..39858d8e0ef7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_int.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_z_fr_int.tz] Well typed -Gas remaining: 1039996.340 units remaining +Gas remaining: 1039996.980 units remaining { parameter int ; storage bls12_381_fr ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out index cdc8bcc73a9a..4c7c327425f3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bls12_381_z_fr_nat.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bls12_381_z_fr_nat.tz] Well typed -Gas remaining: 1039996.340 units remaining +Gas remaining: 1039996.980 units remaining { parameter nat ; storage bls12_381_fr ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out index c0bee3c0729c..9cbb80e8d0b0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--bytes.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/bytes.tz] Well typed -Gas remaining: 1039997.267 units remaining +Gas remaining: 1039997.907 units remaining { parameter bytes ; storage unit ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out index 320069d54a27..a80fcc1e17d7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--car.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/car.tz] Well typed -Gas remaining: 1039996.637 units remaining +Gas remaining: 1039997.277 units remaining { parameter (pair (nat :l) (nat :r)) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out index 410cd3fc8699..72a54fce4f4d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cdr.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/cdr.tz] Well typed -Gas remaining: 1039996.637 units remaining +Gas remaining: 1039997.277 units remaining { parameter (pair (nat :l) (nat :r)) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out index 326a438aa6d7..2257bd15562b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/chain_id.tz] Well typed -Gas remaining: 1039996.340 units remaining +Gas remaining: 1039996.980 units remaining { parameter unit ; storage unit ; code { CHAIN_ID diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out index ad2141b90732..52cba52c7af7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--chain_id_store.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/chain_id_store.tz] Well typed -Gas remaining: 1039996.037 units remaining +Gas remaining: 1039996.837 units remaining { parameter unit ; storage (option chain_id) ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out index 945f42bbcd9a..b3cea351c8a0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--check_signature.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/check_signature.tz] Well typed -Gas remaining: 1039988.024 units remaining +Gas remaining: 1039988.984 units remaining { parameter key ; storage (pair signature string) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out index 1e47e5749e86..d643521b5e26 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-get.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-get.tz] Well typed -Gas remaining: 1039964.212 units remaining +Gas remaining: 1039965.652 units remaining { parameter (pair nat nat nat unit) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out index 7f5e78409446..da32ffc23977 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-literals.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-literals.tz] Well typed -Gas remaining: 1039992.630 units remaining +Gas remaining: 1039993.270 units remaining { parameter unit ; storage unit ; code { PUSH (list (pair nat nat nat nat)) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out index df7efb635d7d..6437940e01ea 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set-2.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-set-2.tz] Well typed -Gas remaining: 1039989.821 units remaining +Gas remaining: 1039991.581 units remaining { parameter (pair nat nat nat unit) ; storage (option (pair int nat string bytes)) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out index 973309367c3b..621bc67410b0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb-set.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb-set.tz] Well typed -Gas remaining: 1039990.023 units remaining +Gas remaining: 1039991.623 units remaining { parameter unit ; storage (pair nat nat nat unit) ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out index 043e92b3f557..33a614d10559 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comb.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/comb.tz] Well typed -Gas remaining: 1039993.734 units remaining +Gas remaining: 1039995.014 units remaining { parameter unit ; storage (pair nat nat nat) ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out index 5903bc5bbb36..2fba21f3dfc2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/compare.tz] Well typed -Gas remaining: 1039832.943 units remaining +Gas remaining: 1039834.573 units remaining { parameter unit ; storage unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out index 7ad9cbf20a52..0675e7a6c41a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/compare_big_type.tz] Well typed -Gas remaining: 1038270.787 units remaining +Gas remaining: 1038761.987 units remaining { parameter unit ; storage unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out index f21bdcefdb4d..de0a5938a660 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--compare_big_type2.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/compare_big_type2.tz] Well typed -Gas remaining: 1037992.958 units remaining +Gas remaining: 1038565.918 units remaining { parameter unit ; storage unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out index 93155db081a0..44dec393dbed 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--comparisons.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/comparisons.tz] Well typed -Gas remaining: 1039972.732 units remaining +Gas remaining: 1039977.212 units remaining { parameter (list int) ; storage (list (list bool)) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out index e63917515ef6..bae595c675f0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/concat_hello.tz] Well typed -Gas remaining: 1039995.099 units remaining +Gas remaining: 1039995.899 units remaining { parameter (list string) ; storage (list string) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out index 6aff3cefe222..374e345a0901 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_hello_bytes.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/concat_hello_bytes.tz] Well typed -Gas remaining: 1039995.173 units remaining +Gas remaining: 1039995.973 units remaining { parameter (list bytes) ; storage (list bytes) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out index eaae9a64bc62..6631b345ac05 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--concat_list.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/concat_list.tz] Well typed -Gas remaining: 1039991.417 units remaining +Gas remaining: 1039992.537 units remaining { parameter (list string) ; storage string ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out index 4d5b4200cb0c..634b39c02ff2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--cons.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/cons.tz] Well typed -Gas remaining: 1039996.280 units remaining +Gas remaining: 1039997.240 units remaining { parameter int ; storage (list int) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out index 4597157387c8..b02e5d9d8740 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contains_all.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/contains_all.tz] Well typed -Gas remaining: 1039972.367 units remaining +Gas remaining: 1039974.767 units remaining { parameter (pair (list string) (list string)) ; storage (option bool) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out index 9b1a354a4d29..3c1118a535fb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--contract.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/contract.tz] Well typed -Gas remaining: 1039993.550 units remaining +Gas remaining: 1039994.190 units remaining { parameter address ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out index 3d022a4fb79e..479a2c109ba3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract.tz] Well typed -Gas remaining: 1039988.704 units remaining +Gas remaining: 1039991.584 units remaining { parameter unit ; storage (option address) ; code { /* [ pair unit unit ] */ diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out index fef637c9b41a..e73ce156d14a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract_rootname.tz] Well typed -Gas remaining: 1039988.704 units remaining +Gas remaining: 1039991.584 units remaining { parameter unit ; storage (option address) ; code { /* [ pair unit unit ] */ diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out index 450cfd2bca40..a7491c7452cc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_rootname_alt.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract_rootname_alt.tz] Well typed -Gas remaining: 1039988.704 units remaining +Gas remaining: 1039991.584 units remaining { parameter unit ; storage (option address) ; code { /* [ pair unit unit ] */ diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out index ab29a0f8fe7b..c5047af5fab7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--create_contract_with_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/create_contract_with_view.tz] Well typed -Gas remaining: 1039987.576 units remaining +Gas remaining: 1039990.616 units remaining { parameter unit ; storage (option address) ; code { /* [ pair unit unit ] */ diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out index ff4b824e48a4..9a1ae97964bf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--diff_timestamps.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/diff_timestamps.tz] Well typed -Gas remaining: 1039994.373 units remaining +Gas remaining: 1039995.013 units remaining { parameter (pair timestamp timestamp) ; storage int ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out index e0c28a15aa2b..4f6cc983204c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dig_eq.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/dig_eq.tz] Well typed -Gas remaining: 1039899.367 units remaining +Gas remaining: 1039905.287 units remaining { parameter (pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat) ; storage unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out index 7eb0edf56cea..8e7603635c8b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dign.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/dign.tz] Well typed -Gas remaining: 1039991.580 units remaining +Gas remaining: 1039992.220 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out index 7333f45ae023..78dad8a4dced 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dip.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/dip.tz] Well typed -Gas remaining: 1039993.958 units remaining +Gas remaining: 1039994.918 units remaining { parameter (pair nat nat) ; storage (pair nat nat) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out index d6d5a4a44411..bfb77247f1bf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dipn.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/dipn.tz] Well typed -Gas remaining: 1039990.690 units remaining +Gas remaining: 1039991.330 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out index 866acca93dea..98f625ea044d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dropn.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/dropn.tz] Well typed -Gas remaining: 1039993.947 units remaining +Gas remaining: 1039994.587 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out index be823b7e5a1a..ff31b2338918 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dugn.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/dugn.tz] Well typed -Gas remaining: 1039992.076 units remaining +Gas remaining: 1039992.716 units remaining { parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out index 5a0cf931252f..e4e550d05a57 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--dup-n.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/dup-n.tz] Well typed -Gas remaining: 1039965.992 units remaining +Gas remaining: 1039967.432 units remaining { parameter unit ; storage unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out index 22bc94ccf549..00118a23766d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ediv.tz] Well typed -Gas remaining: 1039978.198 units remaining +Gas remaining: 1039981.718 units remaining { parameter (pair int int) ; storage (pair (option (pair int nat)) diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out index 3eb9d8ee8e5f..e839b8df7655 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ediv_mutez.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ediv_mutez.tz] Well typed -Gas remaining: 1039987.261 units remaining +Gas remaining: 1039990.621 units remaining { parameter (pair mutez (or mutez nat)) ; storage (or (option (pair nat mutez)) (option (pair mutez mutez))) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out index fa5519822e3a..a97bd198689a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--empty_map.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/empty_map.tz] Well typed -Gas remaining: 1039993.086 units remaining +Gas remaining: 1039994.366 units remaining { storage (map string string) ; parameter unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out index e1136e251fb5..39d0f8fd1675 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--exec_concat.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/exec_concat.tz] Well typed -Gas remaining: 1039991.097 units remaining +Gas remaining: 1039992.377 units remaining { parameter string ; storage string ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out index b870c0049f20..585f84ab47cb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--first.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/first.tz] Well typed -Gas remaining: 1039994.458 units remaining +Gas remaining: 1039995.098 units remaining { parameter (list nat) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out index 64cbd74dce0d..4f92f78bbcfe 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_big_map.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_and_update_big_map.tz] Well typed -Gas remaining: 1039993.030 units remaining +Gas remaining: 1039994.790 units remaining { parameter string ; storage (pair (option nat) (big_map string nat)) ; code { UNPAPAIR ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out index a399201374c9..bbd675998228 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_and_update_map.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_and_update_map.tz] Well typed -Gas remaining: 1039993.090 units remaining +Gas remaining: 1039994.850 units remaining { parameter string ; storage (pair (option nat) (map string nat)) ; code { UNPAPAIR ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out index f7e442486c19..af58b25cf254 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_big_map_value.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_big_map_value.tz] Well typed -Gas remaining: 1039990.479 units remaining +Gas remaining: 1039992.079 units remaining { parameter string ; storage (pair (big_map string string) (option string)) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out index 738252442ed1..4b3125f532a5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--get_map_value.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/get_map_value.tz] Well typed -Gas remaining: 1039991.007 units remaining +Gas remaining: 1039992.607 units remaining { parameter string ; storage (pair (option string) (map string string)) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out index 708e74488eaf..7d0d0412dbb6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_consistency_checker.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/hash_consistency_checker.tz] Well typed -Gas remaining: 1039995.929 units remaining +Gas remaining: 1039996.569 units remaining { parameter (pair mutez (pair timestamp int)) ; storage bytes ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out index a264bbc85ae4..5c3ab8bc5445 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_key.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/hash_key.tz] Well typed -Gas remaining: 1039996.037 units remaining +Gas remaining: 1039996.837 units remaining { parameter key ; storage (option key_hash) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out index 1d1de3f9d3d5..c41a88c4a551 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--hash_string.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/hash_string.tz] Well typed -Gas remaining: 1039996.340 units remaining +Gas remaining: 1039996.980 units remaining { parameter string ; storage bytes ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out index 98bfeff38a3f..57d41c27b5d1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/if.tz] Well typed -Gas remaining: 1039994.330 units remaining +Gas remaining: 1039995.290 units remaining { parameter bool ; storage (option bool) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out index 8b08a2d5ec5e..d71c9e92b968 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--if_some.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/if_some.tz] Well typed -Gas remaining: 1039995.219 units remaining +Gas remaining: 1039996.019 units remaining { parameter (option string) ; storage string ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out index f15c4ec76cce..44b4d7e7976d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--int.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/int.tz] Well typed -Gas remaining: 1039996.037 units remaining +Gas remaining: 1039996.837 units remaining { parameter nat ; storage (option int) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out index 1908b7dacd7c..34a1afe6b463 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--iter_fail.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/iter_fail.tz] Well typed -Gas remaining: 1039996.234 units remaining +Gas remaining: 1039996.874 units remaining { parameter (set nat) ; storage unit ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out index 4acc9ec37267..9113c9eb14f7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--keccak.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/keccak.tz] Well typed -Gas remaining: 1039996.037 units remaining +Gas remaining: 1039996.837 units remaining { storage (option bytes) ; parameter bytes ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out index fc31ac5a8cf8..a557ee99aadd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--left_right.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/left_right.tz] Well typed -Gas remaining: 1039994.130 units remaining +Gas remaining: 1039995.570 units remaining { parameter (or bool string) ; storage (or string bool) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out index fb05172d33b8..b4b0f256924f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--level.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/level.tz] Well typed -Gas remaining: 1039996.803 units remaining +Gas remaining: 1039997.443 units remaining { parameter unit ; storage nat ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out index 4dcfe2d8542f..ca9b80ec030a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_concat.tz] Well typed -Gas remaining: 1039995.574 units remaining +Gas remaining: 1039996.374 units remaining { parameter (list string) ; storage string ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out index 70cfda9b4464..d4b6edf5adec 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_concat_bytes.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_concat_bytes.tz] Well typed -Gas remaining: 1039995.574 units remaining +Gas remaining: 1039996.374 units remaining { parameter (list bytes) ; storage bytes ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out index f6a546b1ab77..11c0c0620474 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_id.tz] Well typed -Gas remaining: 1039996.880 units remaining +Gas remaining: 1039997.680 units remaining { parameter (list string) ; storage (list string) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out index accc65e203af..891c713b0dc2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_id_map.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_id_map.tz] Well typed -Gas remaining: 1039996.174 units remaining +Gas remaining: 1039996.974 units remaining { parameter (list string) ; storage (list string) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out index a4f4c5f7d417..0eb0de09882a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_iter.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_iter.tz] Well typed -Gas remaining: 1039994.793 units remaining +Gas remaining: 1039995.593 units remaining { parameter (list int) ; storage int ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out index 4ba9faa600c8..b1f437f73b06 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_map_block.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_map_block.tz] Well typed -Gas remaining: 1039990.664 units remaining +Gas remaining: 1039991.624 units remaining { parameter (list int) ; storage (list int) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out index d93117b2c73d..eb8820d7da09 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--list_size.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/list_size.tz] Well typed -Gas remaining: 1039996.720 units remaining +Gas remaining: 1039997.360 units remaining { parameter (list int) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out index 9cf5eef02158..7a66b1a96320 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_failwith.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/loop_failwith.tz] Well typed -Gas remaining: 1039996.317 units remaining +Gas remaining: 1039996.957 units remaining { parameter bool ; storage unit ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out index 9e1ec7ab5b97..8c49d980f743 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/loop_left.tz] Well typed -Gas remaining: 1039983.876 units remaining +Gas remaining: 1039987.396 units remaining { parameter (list string) ; storage (list string) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out index 7182ae06996f..ebcc0c45d0c4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--loop_left_failwith.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/loop_left_failwith.tz] Well typed -Gas remaining: 1039996.076 units remaining +Gas remaining: 1039996.716 units remaining { parameter (or string nat) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out index 0840adf76dfc..5d56e3456ef2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_car.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_car.tz] Well typed -Gas remaining: 1039990.103 units remaining +Gas remaining: 1039991.063 units remaining { parameter bool ; storage (pair (bool %b) (nat %n)) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out index d467decad1cc..6029321d9b3f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_id.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_id.tz] Well typed -Gas remaining: 1039996.494 units remaining +Gas remaining: 1039997.454 units remaining { parameter (map nat nat) ; storage (map nat nat) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out index 3220e4b1e0b7..ab812eb070b6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_iter.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_iter.tz] Well typed -Gas remaining: 1039985.509 units remaining +Gas remaining: 1039986.949 units remaining { parameter (map (int :k) (int :e)) ; storage (pair (int :k) (int :e)) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out index e88ae3f05146..855ac0c93f92 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_map.tz] Well typed -Gas remaining: 1039992.454 units remaining +Gas remaining: 1039993.574 units remaining { parameter nat ; storage (map string nat) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out index b0bfcafecea7..161ee34517a4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_map_sideeffect.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_map_sideeffect.tz] Well typed -Gas remaining: 1039986.934 units remaining +Gas remaining: 1039988.534 units remaining { parameter nat ; storage (pair (map string nat) nat) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out index c7b7f76e84b6..2c1c31465fd3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_nat.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_mem_nat.tz] Well typed -Gas remaining: 1039991.954 units remaining +Gas remaining: 1039993.554 units remaining { parameter nat ; storage (pair (map nat nat) (option bool)) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out index e741df944cef..45dfee8ce6b3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_mem_string.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_mem_string.tz] Well typed -Gas remaining: 1039991.954 units remaining +Gas remaining: 1039993.554 units remaining { parameter string ; storage (pair (map string nat) (option bool)) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out index 4e5ff13c44eb..7dd28059de11 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--map_size.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/map_size.tz] Well typed -Gas remaining: 1039996.637 units remaining +Gas remaining: 1039997.277 units remaining { parameter (map string nat) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out index e2ae68ec7613..4f6b611188f2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--merge_comparable_pairs.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/merge_comparable_pairs.tz] Well typed -Gas remaining: 1039990.293 units remaining +Gas remaining: 1039992.053 units remaining { parameter (set (pair (nat %n) (pair %p (string %s) (int %i)))) ; storage nat ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out index 30f48b2b3301..aeeb040d83a1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul.tz] Well typed -Gas remaining: 1039959.301 units remaining +Gas remaining: 1039960.901 units remaining { parameter unit ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out index 934d44cc7f5b..fb1a454780c2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_fr.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_bls12_381_fr.tz] Well typed -Gas remaining: 1039995.329 units remaining +Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_fr bls12_381_fr) ; storage (option bls12_381_fr) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out index e4c03bde3422..f834391d86b4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g1.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_bls12_381_g1.tz] Well typed -Gas remaining: 1039995.329 units remaining +Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g1 bls12_381_fr) ; storage (option bls12_381_g1) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out index 2aa5b65aa2c1..7343005496c0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_bls12_381_g2.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_bls12_381_g2.tz] Well typed -Gas remaining: 1039995.329 units remaining +Gas remaining: 1039996.129 units remaining { parameter (pair bls12_381_g2 bls12_381_fr) ; storage (option bls12_381_g2) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out index 928f99a937c6..7f4b85955de0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mul_overflow.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/mul_overflow.tz] Well typed -Gas remaining: 1039991.544 units remaining +Gas remaining: 1039992.344 units remaining { parameter (or unit unit) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out index 408c77702291..7d21e9a6ae9c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--munch.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/munch.tz] Well typed -Gas remaining: 1039996.425 units remaining +Gas remaining: 1039997.065 units remaining { parameter (or (bytes %bytes) (or (lambda %lambda unit unit) (or (nat %nat) (list %list_nat nat)))) ; storage unit ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out index 37edec9875bc..50a8bbfa37f8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--mutez_to_bls12_381_fr.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/mutez_to_bls12_381_fr.tz] Well typed -Gas remaining: 1039991.653 units remaining +Gas remaining: 1039992.323 units remaining { parameter mutez ; storage bls12_381_fr ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out index f6165c43af14..a3637885e066 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg.tz] Well typed -Gas remaining: 1039995.361 units remaining +Gas remaining: 1039996.161 units remaining { parameter (or int nat) ; storage int ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out index 2b4b2cd34c4a..a9348050d70b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_fr.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg_bls12_381_fr.tz] Well typed -Gas remaining: 1039996.037 units remaining +Gas remaining: 1039996.837 units remaining { parameter bls12_381_fr ; storage (option bls12_381_fr) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out index 6731ef323362..5ee7c4f37b28 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g1.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg_bls12_381_g1.tz] Well typed -Gas remaining: 1039996.037 units remaining +Gas remaining: 1039996.837 units remaining { parameter bls12_381_g1 ; storage (option bls12_381_g1) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out index 7d143177dd82..1c223992c659 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--neg_bls12_381_g2.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/neg_bls12_381_g2.tz] Well typed -Gas remaining: 1039996.037 units remaining +Gas remaining: 1039996.837 units remaining { parameter bls12_381_g2 ; storage (option bls12_381_g2) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out index ee7c3d95717f..70a1a20bdf59 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--none.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/none.tz] Well typed -Gas remaining: 1039996.417 units remaining +Gas remaining: 1039997.217 units remaining { parameter unit ; storage (option nat) ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out index 9b6744eac461..5926b862fafb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--noop.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/noop.tz] Well typed -Gas remaining: 1039997.267 units remaining +Gas remaining: 1039997.907 units remaining { parameter unit ; storage unit ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out index 736a7ad2f66e..7be3b252952f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/not.tz] Well typed -Gas remaining: 1039996.037 units remaining +Gas remaining: 1039996.837 units remaining { parameter bool ; storage (option bool) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out index 3fd8b510e4be..5e7b499cd7e6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--not_binary.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/not_binary.tz] Well typed -Gas remaining: 1039994.585 units remaining +Gas remaining: 1039995.545 units remaining { parameter (or int nat) ; storage (option int) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out index 7cf3920c6281..5cd48794dfdf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/or.tz] Well typed -Gas remaining: 1039993.625 units remaining +Gas remaining: 1039994.425 units remaining { parameter (pair bool bool) ; storage (option bool) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out index d678551abb59..694082cb0295 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--or_binary.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/or_binary.tz] Well typed -Gas remaining: 1039995.329 units remaining +Gas remaining: 1039996.129 units remaining { parameter (pair nat nat) ; storage (option nat) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out index 24196000717d..d6735214e84a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--originate_big_map.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/originate_big_map.tz] Well typed -Gas remaining: 1039996.374 units remaining +Gas remaining: 1039997.334 units remaining { parameter (big_map int int) ; storage (big_map int int) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out index af9e0fa761fc..d13fbcf20a7b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/packunpack.tz] Well typed -Gas remaining: 1039986.390 units remaining +Gas remaining: 1039987.190 units remaining { parameter (pair (pair (pair string (list int)) (set nat)) bytes) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out index 9656d1b93188..0c4909b2e2c7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/packunpack_rev.tz] Well typed -Gas remaining: 1039885.614 units remaining +Gas remaining: 1039887.694 units remaining { parameter (pair int nat string bytes mutez bool key_hash timestamp address) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out index fa8d73ac9b5c..10334fe4f70c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--packunpack_rev_cty.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/packunpack_rev_cty.tz] Well typed -Gas remaining: 1039871.738 units remaining +Gas remaining: 1039873.978 units remaining { parameter (pair key unit diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out index 94da0387de94..1703886d84eb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pair_id.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/pair_id.tz] Well typed -Gas remaining: 1039995.649 units remaining +Gas remaining: 1039996.769 units remaining { parameter (pair bool bool) ; storage (option (pair bool bool)) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out index 9e3d820ae309..fe0facaac890 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pairing_check.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/pairing_check.tz] Well typed -Gas remaining: 1039995.709 units remaining +Gas remaining: 1039996.509 units remaining { parameter (list (pair bls12_381_g1 bls12_381_g2)) ; storage (option bool) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out index ca033fd489d2..43eb45c3ac22 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/pexec.tz] Well typed -Gas remaining: 1039992.874 units remaining +Gas remaining: 1039993.994 units remaining { parameter nat ; storage nat ; code { LAMBDA diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out index d5bee849665f..55f78459d497 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--pexec_2.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/pexec_2.tz] Well typed -Gas remaining: 1039986.241 units remaining +Gas remaining: 1039988.161 units remaining { parameter int ; storage (list int) ; code { UNPAIR @p @s diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out index 13484ffe93f8..bd02073df421 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--proxy.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/proxy.tz] Well typed -Gas remaining: 1039994.321 units remaining +Gas remaining: 1039995.281 units remaining { parameter (contract unit) ; storage unit ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out index 374afe8533fc..9ab07fdafd01 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ret_int.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ret_int.tz] Well typed -Gas remaining: 1039995.756 units remaining +Gas remaining: 1039996.556 units remaining { parameter unit ; storage (option nat) ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out index b981ed5fd164..8b6787533531 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/reverse.tz] Well typed -Gas remaining: 1039994.173 units remaining +Gas remaining: 1039995.453 units remaining { parameter (list string) ; storage (list string) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out index 90deb8d0ee62..a2597ad1eb59 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--reverse_loop.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/reverse_loop.tz] Well typed -Gas remaining: 1039987.683 units remaining +Gas remaining: 1039990.243 units remaining { parameter (list string) ; storage (list string) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out index 4c086d8ba2f0..5ae52e2a6e85 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sapling_empty_state.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sapling_empty_state.tz] Well typed -Gas remaining: 1039996.757 units remaining +Gas remaining: 1039997.397 units remaining { parameter unit ; storage (sapling_state 8) ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out index a29b4743e526..10340384aa8e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self.tz] Well typed -Gas remaining: 1039996.305 units remaining +Gas remaining: 1039996.945 units remaining { parameter unit ; storage address ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out index 717a13df2cb7..3581748013b2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address.tz] Well typed -Gas remaining: 1039988.949 units remaining +Gas remaining: 1039990.069 units remaining { parameter unit ; storage unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out index cd5019522f12..c7482aa4e2a1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_fib_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address_after_fib_view.tz] Well typed -Gas remaining: 1039985.607 units remaining +Gas remaining: 1039986.567 units remaining { parameter address ; storage address ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out index 746018980266..8ade68532e41 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_nonexistent_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address_after_nonexistent_view.tz] Well typed -Gas remaining: 1039986.090 units remaining +Gas remaining: 1039987.050 units remaining { parameter address ; storage address ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out index 617936b48252..ca0689305c1c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_address_after_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_address_after_view.tz] Well typed -Gas remaining: 1039985.432 units remaining +Gas remaining: 1039986.392 units remaining { parameter address ; storage address ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out index 50e71453dcfd..a421d64e9a20 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_fib_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_after_fib_view.tz] Well typed -Gas remaining: 1039985.100 units remaining +Gas remaining: 1039986.060 units remaining { parameter address ; storage address ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out index f9c758e8fca9..27aa64ccecbe 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_nonexistent_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_after_nonexistent_view.tz] Well typed -Gas remaining: 1039985.492 units remaining +Gas remaining: 1039986.452 units remaining { parameter address ; storage address ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out index bdb76a06c34f..8e241af750e0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_after_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_after_view.tz] Well typed -Gas remaining: 1039984.926 units remaining +Gas remaining: 1039985.886 units remaining { parameter address ; storage address ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out index 21d88f835dd5..7a1a17350934 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_with_default_entrypoint.tz] Well typed -Gas remaining: 1039987.880 units remaining +Gas remaining: 1039988.680 units remaining { parameter (or (or (nat %A) (bool %B)) (or %maybe_C (unit %default) (string %C))) ; storage unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out index 4c3ee75544bf..5eb502d55896 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_with_entrypoint.tz] Well typed -Gas remaining: 1039965.501 units remaining +Gas remaining: 1039970.621 units remaining { parameter (or (or (nat %A) (bool %B)) (or %maybe_C (unit %Z) (string %C))) ; storage unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out index f266979f0d2e..e4dbed4dcfad 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender.tz] Well typed -Gas remaining: 1039996.803 units remaining +Gas remaining: 1039997.443 units remaining { parameter unit ; storage address ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out index ae57014a5da9..fef792b0d708 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_fib_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender_after_fib_view.tz] Well typed -Gas remaining: 1039985.607 units remaining +Gas remaining: 1039986.567 units remaining { parameter address ; storage address ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out index f6f3014bed5e..a9eca92f717c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_nonexistent_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender_after_nonexistent_view.tz] Well typed -Gas remaining: 1039986.090 units remaining +Gas remaining: 1039987.050 units remaining { parameter address ; storage address ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out index 85d670b17904..7685d458cd1b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sender_after_view.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sender_after_view.tz] Well typed -Gas remaining: 1039985.432 units remaining +Gas remaining: 1039986.392 units remaining { parameter address ; storage address ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out index c35a50514883..f5d1aac00406 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_car.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_car.tz] Well typed -Gas remaining: 1039991.314 units remaining +Gas remaining: 1039992.274 units remaining { parameter string ; storage (pair (string %s) (nat %n)) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out index 8f0613744184..46379662badb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_cdr.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_cdr.tz] Well typed -Gas remaining: 1039991.782 units remaining +Gas remaining: 1039992.742 units remaining { parameter nat ; storage (pair (string %s) (nat %n)) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out index 421679abb6e9..0c0a969ae21c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_delegate.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_delegate.tz] Well typed -Gas remaining: 1039995.476 units remaining +Gas remaining: 1039996.276 units remaining { parameter (option key_hash) ; storage unit ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out index 06ee5f76c931..c37018214751 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_id.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_id.tz] Well typed -Gas remaining: 1039996.880 units remaining +Gas remaining: 1039997.680 units remaining { parameter (set string) ; storage (set string) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out index 7be78c7ad6f1..0c771bd7a6dd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_iter.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_iter.tz] Well typed -Gas remaining: 1039994.793 units remaining +Gas remaining: 1039995.593 units remaining { parameter (set int) ; storage int ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out index 06b1fd28911d..c36c34c152bf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_member.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_member.tz] Well typed -Gas remaining: 1039988.400 units remaining +Gas remaining: 1039989.840 units remaining { parameter string ; storage (pair (set string) (option bool)) ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out index da56a47991e0..a791706f7f08 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--set_size.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/set_size.tz] Well typed -Gas remaining: 1039996.720 units remaining +Gas remaining: 1039997.360 units remaining { parameter (set int) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out index 8ff33abfb71f..9423dfa7d714 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sets.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sets.tz] Well typed -Gas remaining: 1038012.810 units remaining +Gas remaining: 1039942.190 units remaining { parameter unit ; storage unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out index 6cc41f18a4f6..11ef6be9c934 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sha3.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sha3.tz] Well typed -Gas remaining: 1039996.037 units remaining +Gas remaining: 1039996.837 units remaining { storage (option bytes) ; parameter bytes ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out index 07199a261f82..4b614d952ffd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--shifts.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/shifts.tz] Well typed -Gas remaining: 1039993.299 units remaining +Gas remaining: 1039994.259 units remaining { parameter (or (pair nat nat) (pair nat nat)) ; storage (option nat) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out index 9852bd98dc1c..3760e12a6137 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/slice.tz] Well typed -Gas remaining: 1039992.627 units remaining +Gas remaining: 1039993.747 units remaining { parameter (pair nat nat) ; storage (option string) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out index acfe24dfaba6..62005cd96426 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slice_bytes.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/slice_bytes.tz] Well typed -Gas remaining: 1039992.627 units remaining +Gas remaining: 1039993.747 units remaining { parameter (pair nat nat) ; storage (option bytes) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out index 67d46ea071cc..d461e0ceb7a1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--slices.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/slices.tz] Well typed -Gas remaining: 1039935.257 units remaining +Gas remaining: 1039936.697 units remaining { parameter (pair bytes signature) ; storage key ; code { DUP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out index 5988f8799723..3acb11602f8b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--source.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/source.tz] Well typed -Gas remaining: 1039996.803 units remaining +Gas remaining: 1039997.443 units remaining { parameter unit ; storage address ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out index 046f01cc6310..5407d6df615d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_bytes.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/split_bytes.tz] Well typed -Gas remaining: 1039970.057 units remaining +Gas remaining: 1039973.097 units remaining { parameter bytes ; storage (list bytes) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out index fe0abf63c8a3..a41c387c8037 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--split_string.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/split_string.tz] Well typed -Gas remaining: 1039970.057 units remaining +Gas remaining: 1039973.097 units remaining { parameter string ; storage (list string) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out index 0ce379704283..45cc05c575ea 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_fr.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_bls12_381_fr.tz] Well typed -Gas remaining: 1039996.500 units remaining +Gas remaining: 1039997.300 units remaining { parameter bls12_381_fr ; storage (option bls12_381_fr) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out index 221602a62b81..596b66bf91b5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g1.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_bls12_381_g1.tz] Well typed -Gas remaining: 1039996.500 units remaining +Gas remaining: 1039997.300 units remaining { parameter bls12_381_g1 ; storage (option bls12_381_g1) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out index 5296f8c2d283..fa8c6a0a8a0c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_bls12_381_g2.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_bls12_381_g2.tz] Well typed -Gas remaining: 1039996.500 units remaining +Gas remaining: 1039997.300 units remaining { parameter bls12_381_g2 ; storage (option bls12_381_g2) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out index 63ada8111cee..bf27cb0ea0c7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_input.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_input.tz] Well typed -Gas remaining: 1039997.267 units remaining +Gas remaining: 1039997.907 units remaining { parameter string ; storage string ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out index 84a7ccf3899e..8d8aee87a059 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--store_now.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/store_now.tz] Well typed -Gas remaining: 1039996.803 units remaining +Gas remaining: 1039997.443 units remaining { parameter unit ; storage timestamp ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out index ebe457e16a8e..cc4bfa0b435f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--str_id.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/str_id.tz] Well typed -Gas remaining: 1039996.500 units remaining +Gas remaining: 1039997.300 units remaining { parameter string ; storage (option string) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out index 1e2fc89bc90b..5272610193ae 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--sub_timestamp_delta.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/sub_timestamp_delta.tz] Well typed -Gas remaining: 1039994.373 units remaining +Gas remaining: 1039995.013 units remaining { parameter (pair timestamp int) ; storage timestamp ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out index 79400d7b938f..57186a64f41e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--subset.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/subset.tz] Well typed -Gas remaining: 1039984.961 units remaining +Gas remaining: 1039986.401 units remaining { parameter (pair (set string) (set string)) ; storage bool ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out index e00f14c16632..ca6ae30d4c2c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--tez_add_sub.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/tez_add_sub.tz] Well typed -Gas remaining: 1039986.225 units remaining +Gas remaining: 1039987.345 units remaining { parameter (pair mutez mutez) ; storage (option (pair mutez mutez)) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out index dfadec2cbd6b..b497a28c3d9b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_bad.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_bad.tz] Well typed -Gas remaining: 1039996.963 units remaining +Gas remaining: 1039997.763 units remaining { parameter unit ; storage (ticket nat) ; code { CDR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out index 95a2d194dafc..614e9d15c766 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_big_store.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_big_store.tz] Well typed -Gas remaining: 1039992.430 units remaining +Gas remaining: 1039994.030 units remaining { parameter nat ; storage (big_map unit (ticket nat)) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out index 105a8cf55771..932c47ce9e62 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_join.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_join.tz] Well typed -Gas remaining: 1039991.063 units remaining +Gas remaining: 1039992.503 units remaining { parameter (ticket nat) ; storage (option (ticket nat)) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out index 9b518b2320ac..9af95550a12a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_read.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_read.tz] Well typed -Gas remaining: 1039984.150 units remaining +Gas remaining: 1039985.110 units remaining { parameter (ticket nat) ; storage address ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out index c5b65922c7be..59a6a9227397 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_split.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_split.tz] Well typed -Gas remaining: 1039978.358 units remaining +Gas remaining: 1039979.318 units remaining { parameter (ticket nat) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out index f9409f9c0882..6a01f19ffc49 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store-2.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_store-2.tz] Well typed -Gas remaining: 1039996.494 units remaining +Gas remaining: 1039997.454 units remaining { parameter (option (ticket nat)) ; storage (option (ticket nat)) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out index 2d268f8eee43..2be5e46cabd2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticket_store.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticket_store.tz] Well typed -Gas remaining: 1039996.114 units remaining +Gas remaining: 1039997.074 units remaining { parameter (ticket nat) ; storage (option (ticket nat)) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out index 37bdafc1c8f1..3f2733a8c9db 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer-2.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticketer-2.tz] Well typed -Gas remaining: 1039987.194 units remaining +Gas remaining: 1039988.314 units remaining { parameter (pair (pair address nat) nat) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out index 3e14e5a603ec..311f05d59d2d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--ticketer.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/ticketer.tz] Well typed -Gas remaining: 1039987.710 units remaining +Gas remaining: 1039988.830 units remaining { parameter address ; storage nat ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out index bb136dfd5911..997311e4e023 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_amount.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/transfer_amount.tz] Well typed -Gas remaining: 1039996.803 units remaining +Gas remaining: 1039997.443 units remaining { parameter unit ; storage mutez ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out index 9d58fef3a5b6..1e16540629a0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--transfer_tokens.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/transfer_tokens.tz] Well typed -Gas remaining: 1039993.170 units remaining +Gas remaining: 1039994.130 units remaining { parameter (contract unit) ; storage unit ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out index a2184775c101..e6e8381b59bc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--uncomb.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/uncomb.tz] Well typed -Gas remaining: 1039992.541 units remaining +Gas remaining: 1039993.181 units remaining { parameter (pair nat nat nat) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out index 8ffcdbce78d8..2a760fc990b4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/unpair.tz] Well typed -Gas remaining: 1039903.879 units remaining +Gas remaining: 1039904.519 units remaining { parameter (unit :param_unit) ; storage (unit :u1) ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out index 51456482ac14..d33dfb66c0a3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--unpair_field_annotation_mismatch.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/unpair_field_annotation_mismatch.tz] Well typed -Gas remaining: 1039993.045 units remaining +Gas remaining: 1039993.685 units remaining { parameter (unit :param_unit) ; storage (unit :u1) ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out index bfbac44cce76..b48a55d680d5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--update_big_map.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/update_big_map.tz] Well typed -Gas remaining: 1039991.231 units remaining +Gas remaining: 1039993.471 units remaining { storage (pair (big_map string string) unit) ; parameter (map string (option string)) ; code { UNPAPAIR ; diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out index 963772716386..159513f3c53e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxo_read.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/utxo_read.tz] Well typed -Gas remaining: 1039984.190 units remaining +Gas remaining: 1039985.150 units remaining { parameter (pair (ticket nat) nat) ; storage address ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out index 3675169d674b..36da626697da 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--utxor.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/utxor.tz] Well typed -Gas remaining: 1039966.683 units remaining +Gas remaining: 1039968.923 units remaining { parameter (pair address address) ; storage nat ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out index 590912e0ae72..b673a5c76d19 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_fib.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_fib.tz] Well typed -Gas remaining: 1039993.990 units remaining +Gas remaining: 1039994.630 units remaining { parameter (pair nat address) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out index f41d7a56e5de..81c87067496d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_mutual_recursion.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_mutual_recursion.tz] Well typed -Gas remaining: 1039992.695 units remaining +Gas remaining: 1039993.335 units remaining { parameter (pair nat address) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out index bf4ddbc5db55..96f47218f710 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_add.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_add.tz] Well typed -Gas remaining: 1039993.770 units remaining +Gas remaining: 1039994.410 units remaining { parameter (pair nat address) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out index 50989bad3caa..42f933a9cd0e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_constant.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_constant.tz] Well typed -Gas remaining: 1039993.750 units remaining +Gas remaining: 1039994.390 units remaining { parameter (pair nat address) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out index f63595e87513..cc23989db041 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_id.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_id.tz] Well typed -Gas remaining: 1039992.989 units remaining +Gas remaining: 1039993.949 units remaining { parameter (pair nat address) ; storage (pair nat nat) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out index 644d5603f526..da5972dbc68a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_addr.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_nonexistent_addr.tz] Well typed -Gas remaining: 1039342.059 units remaining +Gas remaining: 1039986.259 units remaining { parameter (pair nat address) ; storage bool ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out index dabad0ace439..6b534bfc9727 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_nonexistent_func.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_nonexistent_func.tz] Well typed -Gas remaining: 1039993.059 units remaining +Gas remaining: 1039993.859 units remaining { parameter (pair nat address) ; storage bool ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out index 49344d4359a3..f39c6d21d586 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_test_step_contants.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_test_step_contants.tz] Well typed -Gas remaining: 1039992.390 units remaining +Gas remaining: 1039994.470 units remaining { parameter address ; storage (option (pair (pair mutez mutez) (pair (pair address address) address))) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out index b15e69394e47..ae8f0dcab812 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_input_type.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_toplevel_inconsistent_input_type.tz] Well typed -Gas remaining: 1039993.119 units remaining +Gas remaining: 1039993.919 units remaining { parameter (pair int address) ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out index 9ca270c4dd2a..bb364e0d0ab8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_op_toplevel_inconsistent_output_type.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_op_toplevel_inconsistent_output_type.tz] Well typed -Gas remaining: 1039993.119 units remaining +Gas remaining: 1039993.919 units remaining { parameter (pair nat address) ; storage bool ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out index f43ce20dee6e..d8a77bc835a6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_rec.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_rec.tz] Well typed -Gas remaining: 1039987.736 units remaining +Gas remaining: 1039988.536 units remaining { parameter unit ; storage unit ; view "loop" diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out index 2171282d8a6f..7da661cfaa71 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--view_toplevel_lib.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/view_toplevel_lib.tz] Well typed -Gas remaining: 1039943.603 units remaining +Gas remaining: 1039947.763 units remaining { parameter nat ; storage nat ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out index ec0b0777e8f6..6b83cc27c699 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--voting_power.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/voting_power.tz] Well typed -Gas remaining: 1039994.233 units remaining +Gas remaining: 1039995.193 units remaining { parameter key ; storage (pair nat nat) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out index f70dba64c63a..e13b20b58af7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--xor.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/xor.tz] Well typed -Gas remaining: 1039990.984 units remaining +Gas remaining: 1039992.584 units remaining { parameter (or (pair bool bool) (pair nat nat)) ; storage (option (or bool nat)) ; code { CAR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractBigMapOrigination::test_big_map_origination_literal.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractBigMapOrigination::test_big_map_origination_literal.out index 6310b5a1b939..04663d53beb5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractBigMapOrigination::test_big_map_origination_literal.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractBigMapOrigination::test_big_map_origination_literal.out @@ -1,7 +1,7 @@ tests_alpha/test_contract_onchain_opcodes.py::TestContractBigMapOrigination::test_big_map_origination_literal Node is bootstrapped. -Estimated gas: 1642.832 units (will add 100 for safety) +Estimated gas: 1641.797 units (will add 100 for safety) Estimated storage: 403 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000461 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1743 + Gas limit: 1742 Storage limit: 423 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000461 @@ -36,7 +36,7 @@ This sequence of operations was run: New map(4) of type (big_map int int) Set map(4)[0] to 0 Paid storage size diff: 146 bytes - Consumed gas: 1642.832 + Consumed gas: 1641.797 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0365 storage fees ........................... +ꜩ0.0365 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainLevel::test_level.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainLevel::test_level.out index dbaee1136ade..e8df94461881 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainLevel::test_level.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainLevel::test_level.out @@ -1,7 +1,7 @@ tests_alpha/test_contract_onchain_opcodes.py::TestContractOnchainLevel::test_level Node is bootstrapped. -Estimated gas: 1409.664 units (will add 100 for safety) +Estimated gas: 1409.024 units (will add 100 for safety) Estimated storage: 300 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -33,7 +33,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 43 bytes Paid storage size diff: 43 bytes - Consumed gas: 1409.664 + Consumed gas: 1409.024 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01075 storage fees ........................... +ꜩ0.01075 @@ -47,7 +47,7 @@ Contract memorized as level. Injected block at minimal timestamp Injected block at minimal timestamp Node is bootstrapped. -Estimated gas: 2050.718 units (will add 100 for safety) +Estimated gas: 2109.490 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -58,13 +58,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000468 + Fee to the baker: ꜩ0.000473 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2151 + Gas limit: 2210 Storage limit: 0 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000468 - payload fees(the block proposer) ....... +ꜩ0.000468 + [CONTRACT_HASH] ... -ꜩ0.000473 + payload fees(the block proposer) ....... +ꜩ0.000473 Transaction: Amount: ꜩ500 From: [CONTRACT_HASH] @@ -72,7 +72,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: 4 Storage size: 40 bytes - Consumed gas: 2050.718 + Consumed gas: 2109.490 Balance updates: [CONTRACT_HASH] ... -ꜩ500 [CONTRACT_HASH] ... +ꜩ500 @@ -89,7 +89,7 @@ Injected block at minimal timestamp Injected block at minimal timestamp 4 Node is bootstrapped. -Estimated gas: 1203.505 units (will add 100 for safety) +Estimated gas: 1202.917 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -102,7 +102,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000383 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1304 + Gas limit: 1303 Storage limit: 0 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000383 @@ -114,7 +114,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: 7 Storage size: 40 bytes - Consumed gas: 1203.505 + Consumed gas: 1202.917 Balance updates: [CONTRACT_HASH] ... -ꜩ500 [CONTRACT_HASH] ... +ꜩ500 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_init_proxy.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_init_proxy.out index fc46d0f7f99f..5ea4438f0f17 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_init_proxy.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_init_proxy.out @@ -1,7 +1,7 @@ tests_alpha/test_contract_onchain_opcodes.py::TestContractOnchainOpcodes::test_init_proxy Node is bootstrapped. -Estimated gas: 1414.942 units (will add 100 for safety) +Estimated gas: 1413.982 units (will add 100 for safety) Estimated storage: 312 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000438 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1515 + Gas limit: 1514 Storage limit: 332 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000438 @@ -39,7 +39,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 55 bytes Paid storage size diff: 55 bytes - Consumed gas: 1414.942 + Consumed gas: 1413.982 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01375 storage fees ........................... +ꜩ0.01375 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_set_delegate.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_set_delegate.out index 2a9be46083b7..cde8912d7412 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_set_delegate.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_set_delegate.out @@ -1,7 +1,7 @@ tests_alpha/test_contract_onchain_opcodes.py::TestContractOnchainOpcodes::test_set_delegate Node is bootstrapped. -Estimated gas: 1412.789 units (will add 100 for safety) +Estimated gas: 1411.989 units (will add 100 for safety) Estimated storage: 308 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000434 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1513 + Gas limit: 1512 Storage limit: 328 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000434 @@ -33,7 +33,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 51 bytes Paid storage size diff: 51 bytes - Consumed gas: 1412.789 + Consumed gas: 1411.989 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01275 storage fees ........................... +ꜩ0.01275 @@ -48,7 +48,7 @@ Injected block at minimal timestamp Injected block at minimal timestamp none Node is bootstrapped. -Estimated gas: 3057.146 units (will add 100 for safety) +Estimated gas: 3115.714 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -59,13 +59,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000612 + Fee to the baker: ꜩ0.000618 Expected counter: [EXPECTED_COUNTER] - Gas limit: 3158 + Gas limit: 3216 Storage limit: 0 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 + [CONTRACT_HASH] ... -ꜩ0.000618 + payload fees(the block proposer) ....... +ꜩ0.000618 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -74,7 +74,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 51 bytes - Consumed gas: 2057.146 + Consumed gas: 2115.714 Internal operations: Delegation: Contract: [CONTRACT_HASH] @@ -85,7 +85,7 @@ This sequence of operations was run: Injected block at minimal timestamp [CONTRACT_HASH] (known as bootstrap5) Node is bootstrapped. -Estimated gas: 2203.600 units (will add 100 for safety) +Estimated gas: 2202.968 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -98,7 +98,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000486 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2304 + Gas limit: 2303 Storage limit: 0 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000486 @@ -111,7 +111,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 51 bytes - Consumed gas: 1203.600 + Consumed gas: 1202.968 Internal operations: Delegation: Contract: [CONTRACT_HASH] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_slice.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_slice.out index 2cc224a5e139..d5d8af30ddf6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_slice.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_slice.out @@ -1,7 +1,7 @@ tests_alpha/test_contract_onchain_opcodes.py::TestContractOnchainOpcodes::test_slice Node is bootstrapped. -Estimated gas: 1879.474 units (will add 100 for safety) +Estimated gas: 1878.034 units (will add 100 for safety) Estimated storage: 835 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.001028 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1980 + Gas limit: 1979 Storage limit: 855 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.001028 @@ -73,7 +73,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 578 bytes Paid storage size diff: 578 bytes - Consumed gas: 1879.474 + Consumed gas: 1878.034 Balance updates: [CONTRACT_HASH] ... -ꜩ0.1445 storage fees ........................... +ꜩ0.1445 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_slice_success[(Pair 0xe009ab79e8b84ef0e55c43a9a857214d8761e67b.7da5c9014e.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_slice_success[(Pair 0xe009ab79e8b84ef0e55c43a9a857214d8761e67b.7da5c9014e.out index 42ca56653a44..83eff2f42706 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_slice_success[(Pair 0xe009ab79e8b84ef0e55c43a9a857214d8761e67b.7da5c9014e.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_slice_success[(Pair 0xe009ab79e8b84ef0e55c43a9a857214d8761e67b.7da5c9014e.out @@ -1,7 +1,7 @@ tests_alpha/test_contract_onchain_opcodes.py::TestContractOnchainOpcodes::test_slice_success[(Pair 0xe009ab79e8b84ef0e55c43a9a857214d8761e67b75ba63500a5694fb2ffe174acc2de22d01ccb7259342437f05e1987949f0ad82e9f32e9a0b79cb252d7f7b8236ad728893f4e7150742eefdbeda254970f9fcd92c6228c178e1a923e5600758eb83f2a05edd0be7625657901f2ba81eaf145d003dbef78e33f43a32a3788bdf0501000000085341554349535345 "spsig1PPUFZucuAQybs5wsqsNQ68QNgFaBnVKMFaoZZfi1BtNnuCAWnmL9wVy5HfHkR6AeodjVGxpBVVSYcJKyMURn6K1yknYLm")] Node is bootstrapped. -Estimated gas: 3962.434 units (will add 100 for safety) +Estimated gas: 4049.953 units (will add 100 for safety) Estimated storage: 257 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000914 + Fee to the baker: ꜩ0.000922 Expected counter: [EXPECTED_COUNTER] - Gas limit: 4063 + Gas limit: 4150 Storage limit: 277 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000914 - payload fees(the block proposer) ....... +ꜩ0.000914 + [CONTRACT_HASH] ... -ꜩ0.000922 + payload fees(the block proposer) ....... +ꜩ0.000922 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -29,14 +29,14 @@ This sequence of operations was run: Updated storage: [OPERATION_HASH]48f709699019725ba Storage size: 578 bytes - Consumed gas: 2542.434 + Consumed gas: 2599.953 Internal operations: Transaction: Amount: ꜩ1000 From: [CONTRACT_HASH] To: [CONTRACT_HASH] This transaction was successfully applied - Consumed gas: 1420 + Consumed gas: 1450 Balance updates: [CONTRACT_HASH] ... -ꜩ1000 [CONTRACT_HASH] ... +ꜩ1000 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_source.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_source.out index 2e4c88afa6d4..458492ee7036 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_source.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_source.out @@ -1,7 +1,7 @@ tests_alpha/test_contract_onchain_opcodes.py::TestContractOnchainOpcodes::test_source Node is bootstrapped. -Estimated gas: 2070.517 units (will add 100 for safety) +Estimated gas: 1416.647 units (will add 100 for safety) Estimated storage: 322 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000528 + Fee to the baker: ꜩ0.000462 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2171 + Gas limit: 1517 Storage limit: 342 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000528 - payload fees(the block proposer) ....... +ꜩ0.000528 + [CONTRACT_HASH] ... -ꜩ0.000462 + payload fees(the block proposer) ....... +ꜩ0.000462 Origination: From: [CONTRACT_HASH] Credit: ꜩ1000 @@ -33,7 +33,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 65 bytes Paid storage size diff: 65 bytes - Consumed gas: 2070.517 + Consumed gas: 1416.647 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01625 storage fees ........................... +ꜩ0.01625 @@ -46,7 +46,7 @@ New contract [CONTRACT_HASH] originated. Contract memorized as source. Injected block at minimal timestamp Node is bootstrapped. -Estimated gas: 2711.837 units (will add 100 for safety) +Estimated gas: 2110.829 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -57,13 +57,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.00053 + Fee to the baker: ꜩ0.00047 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2812 + Gas limit: 2211 Storage limit: 0 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.00053 - payload fees(the block proposer) ....... +ꜩ0.00053 + [CONTRACT_HASH] ... -ꜩ0.00047 + payload fees(the block proposer) ....... +ꜩ0.00047 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -71,14 +71,14 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c Storage size: 65 bytes - Consumed gas: 2711.837 + Consumed gas: 2110.829 Injected block at minimal timestamp "[CONTRACT_HASH]" [CONTRACT_HASH] Node is bootstrapped. -Estimated gas: 4341.893 units (will add 100 for safety) +Estimated gas: 3775.704 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -89,13 +89,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000739 + Fee to the baker: ꜩ0.000682 Expected counter: [EXPECTED_COUNTER] - Gas limit: 4442 + Gas limit: 3876 Storage limit: 0 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000739 - payload fees(the block proposer) ....... +ꜩ0.000739 + [CONTRACT_HASH] ... -ꜩ0.000682 + payload fees(the block proposer) ....... +ꜩ0.000682 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -104,7 +104,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 55 bytes - Consumed gas: 3128.113 + Consumed gas: 2572.502 Internal operations: Transaction: Amount: ꜩ0 @@ -113,7 +113,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c Storage size: 65 bytes - Consumed gas: 1213.780 + Consumed gas: 1203.202 Injected block at minimal timestamp "[CONTRACT_HASH]" diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_split_bytes.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_split_bytes.out index cf6a39a01b6d..9bf7bcff9969 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_split_bytes.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_split_bytes.out @@ -1,7 +1,7 @@ tests_alpha/test_contract_onchain_opcodes.py::TestContractOnchainOpcodes::test_split_bytes Node is bootstrapped. -Estimated gas: 1470.552 units (will add 100 for safety) +Estimated gas: 1467.512 units (will add 100 for safety) Estimated storage: 511 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000643 + Fee to the baker: ꜩ0.000642 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1571 + Gas limit: 1568 Storage limit: 531 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000643 - payload fees(the block proposer) ....... +ꜩ0.000643 + [CONTRACT_HASH] ... -ꜩ0.000642 + payload fees(the block proposer) ....... +ꜩ0.000642 Origination: From: [CONTRACT_HASH] Credit: ꜩ1000 @@ -55,7 +55,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 254 bytes Paid storage size diff: 254 bytes - Consumed gas: 1470.552 + Consumed gas: 1467.512 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0635 storage fees ........................... +ꜩ0.0635 @@ -68,7 +68,7 @@ New contract [CONTRACT_HASH] originated. Contract memorized as split_bytes. Injected block at minimal timestamp Node is bootstrapped. -Estimated gas: 2097.863 units (will add 100 for safety) +Estimated gas: 2153.591 units (will add 100 for safety) Estimated storage: 18 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -79,13 +79,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000481 + Fee to the baker: ꜩ0.000487 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2198 + Gas limit: 2254 Storage limit: 38 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000481 - payload fees(the block proposer) ....... +ꜩ0.000481 + [CONTRACT_HASH] ... -ꜩ0.000487 + payload fees(the block proposer) ....... +ꜩ0.000487 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -95,7 +95,7 @@ This sequence of operations was run: Updated storage: { 0xaa ; 0xbb ; 0xcc } Storage size: 272 bytes Paid storage size diff: 18 bytes - Consumed gas: 2097.863 + Consumed gas: 2153.591 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0045 storage fees ........................... +ꜩ0.0045 @@ -103,7 +103,7 @@ This sequence of operations was run: Injected block at minimal timestamp { 0xaa ; 0xbb ; 0xcc } Node is bootstrapped. -Estimated gas: 1207.932 units (will add 100 for safety) +Estimated gas: 1206.580 units (will add 100 for safety) Estimated storage: 18 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -116,7 +116,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000392 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1308 + Gas limit: 1307 Storage limit: 38 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000392 @@ -130,7 +130,7 @@ This sequence of operations was run: Updated storage: { 0xaa ; 0xbb ; 0xcc ; 0xdd ; 0xee ; 0xff } Storage size: 290 bytes Paid storage size diff: 18 bytes - Consumed gas: 1207.932 + Consumed gas: 1206.580 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0045 storage fees ........................... +ꜩ0.0045 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_split_string.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_split_string.out index 22796d4abeed..e5695026fdf4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_split_string.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_split_string.out @@ -1,7 +1,7 @@ tests_alpha/test_contract_onchain_opcodes.py::TestContractOnchainOpcodes::test_split_string Node is bootstrapped. -Estimated gas: 1470.552 units (will add 100 for safety) +Estimated gas: 1467.512 units (will add 100 for safety) Estimated storage: 511 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000643 + Fee to the baker: ꜩ0.000642 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1571 + Gas limit: 1568 Storage limit: 531 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000643 - payload fees(the block proposer) ....... +ꜩ0.000643 + [CONTRACT_HASH] ... -ꜩ0.000642 + payload fees(the block proposer) ....... +ꜩ0.000642 Origination: From: [CONTRACT_HASH] Credit: ꜩ1000 @@ -55,7 +55,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 254 bytes Paid storage size diff: 254 bytes - Consumed gas: 1470.552 + Consumed gas: 1467.512 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0635 storage fees ........................... +ꜩ0.0635 @@ -68,7 +68,7 @@ New contract [CONTRACT_HASH] originated. Contract memorized as split_string. Injected block at minimal timestamp Node is bootstrapped. -Estimated gas: 2097.907 units (will add 100 for safety) +Estimated gas: 2153.655 units (will add 100 for safety) Estimated storage: 18 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -79,13 +79,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000481 + Fee to the baker: ꜩ0.000487 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2198 + Gas limit: 2254 Storage limit: 38 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000481 - payload fees(the block proposer) ....... +ꜩ0.000481 + [CONTRACT_HASH] ... -ꜩ0.000487 + payload fees(the block proposer) ....... +ꜩ0.000487 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -95,7 +95,7 @@ This sequence of operations was run: Updated storage: { "a" ; "b" ; "c" } Storage size: 272 bytes Paid storage size diff: 18 bytes - Consumed gas: 2097.907 + Consumed gas: 2153.655 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0045 storage fees ........................... +ꜩ0.0045 @@ -103,7 +103,7 @@ This sequence of operations was run: Injected block at minimal timestamp { "a" ; "b" ; "c" } Node is bootstrapped. -Estimated gas: 1207.976 units (will add 100 for safety) +Estimated gas: 1206.644 units (will add 100 for safety) Estimated storage: 18 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -116,7 +116,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000392 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1308 + Gas limit: 1307 Storage limit: 38 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000392 @@ -130,7 +130,7 @@ This sequence of operations was run: Updated storage: { "a" ; "b" ; "c" ; "d" ; "e" ; "f" } Storage size: 290 bytes Paid storage size diff: 18 bytes - Consumed gas: 1207.976 + Consumed gas: 1206.644 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0045 storage fees ........................... +ꜩ0.0045 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_store_input.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_store_input.out index 0817c4707c0f..7a2d10175ba3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_store_input.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_store_input.out @@ -1,7 +1,7 @@ tests_alpha/test_contract_onchain_opcodes.py::TestContractOnchainOpcodes::test_store_input Node is bootstrapped. -Estimated gas: 1420.040 units (will add 0 for safety) +Estimated gas: 1450.040 units (will add 0 for safety) Estimated storage: 257 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000396 + Fee to the baker: ꜩ0.000399 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1421 + Gas limit: 1451 Storage limit: 277 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000396 - payload fees(the block proposer) ....... +ꜩ0.000396 + [CONTRACT_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 Transaction: Amount: ꜩ1000 From: [CONTRACT_HASH] To: [CONTRACT_HASH] This transaction was successfully applied - Consumed gas: 1420.040 + Consumed gas: 1450.040 Balance updates: [CONTRACT_HASH] ... -ꜩ1000 [CONTRACT_HASH] ... +ꜩ1000 @@ -33,7 +33,7 @@ This sequence of operations was run: Injected block at minimal timestamp Node is bootstrapped. -Estimated gas: 1420.040 units (will add 0 for safety) +Estimated gas: 1450.040 units (will add 0 for safety) Estimated storage: 257 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -44,19 +44,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000396 + Fee to the baker: ꜩ0.000399 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1421 + Gas limit: 1451 Storage limit: 277 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000396 - payload fees(the block proposer) ....... +ꜩ0.000396 + [CONTRACT_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 Transaction: Amount: ꜩ2000 From: [CONTRACT_HASH] To: [CONTRACT_HASH] This transaction was successfully applied - Consumed gas: 1420.040 + Consumed gas: 1450.040 Balance updates: [CONTRACT_HASH] ... -ꜩ2000 [CONTRACT_HASH] ... +ꜩ2000 @@ -67,7 +67,7 @@ Injected block at minimal timestamp 1000 ꜩ 2000 ꜩ Node is bootstrapped. -Estimated gas: 1408.666 units (will add 100 for safety) +Estimated gas: 1408.026 units (will add 100 for safety) Estimated storage: 298 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -99,7 +99,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 41 bytes Paid storage size diff: 41 bytes - Consumed gas: 1408.666 + Consumed gas: 1408.026 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01025 storage fees ........................... +ꜩ0.01025 @@ -112,7 +112,7 @@ New contract [CONTRACT_HASH] originated. Contract memorized as store_input. Injected block at minimal timestamp Node is bootstrapped. -Estimated gas: 2050.403 units (will add 100 for safety) +Estimated gas: 2109.180 units (will add 100 for safety) Estimated storage: 7 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -123,13 +123,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000484 + Fee to the baker: ꜩ0.000489 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2151 + Gas limit: 2210 Storage limit: 27 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000484 - payload fees(the block proposer) ....... +ꜩ0.000484 + [CONTRACT_HASH] ... -ꜩ0.000489 + payload fees(the block proposer) ....... +ꜩ0.000489 Transaction: Amount: ꜩ100 From: [CONTRACT_HASH] @@ -139,7 +139,7 @@ This sequence of operations was run: Updated storage: "abcdefg" Storage size: 48 bytes Paid storage size diff: 7 bytes - Consumed gas: 2050.403 + Consumed gas: 2109.180 Balance updates: [CONTRACT_HASH] ... -ꜩ0.00175 storage fees ........................... +ꜩ0.00175 @@ -150,7 +150,7 @@ Injected block at minimal timestamp 200 ꜩ "abcdefg" Node is bootstrapped. -Estimated gas: 1203.683 units (will add 100 for safety) +Estimated gas: 1203.100 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -176,7 +176,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: "xyz" Storage size: 44 bytes - Consumed gas: 1203.683 + Consumed gas: 1203.100 Balance updates: [CONTRACT_HASH] ... -ꜩ100 [CONTRACT_HASH] ... +ꜩ100 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_trace_origination[compare_big_type.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_trace_origination[compare_big_type.tz].out index e8c378794369..0683c288fea6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_trace_origination[compare_big_type.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_trace_origination[compare_big_type.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract_onchain_opcodes.py::TestContractOnchainOpcodes::test_trace_origination[compare_big_type.tz] Node is bootstrapped. -Estimated gas: 3432.650 units (will add 100 for safety) +Estimated gas: 2941.450 units (will add 100 for safety) Estimated storage: 385 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000713 + Fee to the baker: ꜩ0.000664 Expected counter: [EXPECTED_COUNTER] - Gas limit: 3533 + Gas limit: 3042 Storage limit: 405 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000713 - payload fees(the block proposer) ....... +ꜩ0.000713 + [CONTRACT_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 Origination: From: [CONTRACT_HASH] Credit: ꜩ1000 @@ -78,7 +78,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 128 bytes Paid storage size diff: 128 bytes - Consumed gas: 3432.650 + Consumed gas: 2941.450 Balance updates: [CONTRACT_HASH] ... -ꜩ0.032 storage fees ........................... +ꜩ0.032 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_trace_origination[compare_big_type2.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_trace_origination[compare_big_type2.tz].out index e765a4fc0e4c..747165d29e14 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_trace_origination[compare_big_type2.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_trace_origination[compare_big_type2.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract_onchain_opcodes.py::TestContractOnchainOpcodes::test_trace_origination[compare_big_type2.tz] Node is bootstrapped. -Estimated gas: 3758.394 units (will add 100 for safety) +Estimated gas: 3185.434 units (will add 100 for safety) Estimated storage: 393 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000753 + Fee to the baker: ꜩ0.000696 Expected counter: [EXPECTED_COUNTER] - Gas limit: 3859 + Gas limit: 3286 Storage limit: 413 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000753 - payload fees(the block proposer) ....... +ꜩ0.000753 + [CONTRACT_HASH] ... -ꜩ0.000696 + payload fees(the block proposer) ....... +ꜩ0.000696 Origination: From: [CONTRACT_HASH] Credit: ꜩ1000 @@ -82,7 +82,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 136 bytes Paid storage size diff: 136 bytes - Consumed gas: 3758.394 + Consumed gas: 3185.434 Balance updates: [CONTRACT_HASH] ... -ꜩ0.034 storage fees ........................... +ꜩ0.034 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_transfer_amount.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_transfer_amount.out index 043d22827a2a..385b35913d48 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_transfer_amount.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_transfer_amount.out @@ -1,7 +1,7 @@ tests_alpha/test_contract_onchain_opcodes.py::TestContractOnchainOpcodes::test_transfer_amount Node is bootstrapped. -Estimated gas: 1409.517 units (will add 100 for safety) +Estimated gas: 1408.877 units (will add 100 for safety) Estimated storage: 297 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000421 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1510 + Gas limit: 1509 Storage limit: 317 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000421 @@ -33,7 +33,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 40 bytes Paid storage size diff: 40 bytes - Consumed gas: 1409.517 + Consumed gas: 1408.877 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01 storage fees ........................... +ꜩ0.01 @@ -46,7 +46,7 @@ New contract [CONTRACT_HASH] originated. Contract memorized as transfer_amount. Injected block at minimal timestamp Node is bootstrapped. -Estimated gas: 2050.683 units (will add 100 for safety) +Estimated gas: 2109.455 units (will add 100 for safety) Estimated storage: 4 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -57,13 +57,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000468 + Fee to the baker: ꜩ0.000473 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2151 + Gas limit: 2210 Storage limit: 24 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000468 - payload fees(the block proposer) ....... +ꜩ0.000468 + [CONTRACT_HASH] ... -ꜩ0.000473 + payload fees(the block proposer) ....... +ꜩ0.000473 Transaction: Amount: ꜩ500 From: [CONTRACT_HASH] @@ -72,7 +72,7 @@ This sequence of operations was run: Updated storage: 500000000 Storage size: 44 bytes Paid storage size diff: 4 bytes - Consumed gas: 2050.683 + Consumed gas: 2109.455 Balance updates: [CONTRACT_HASH] ... -ꜩ0.001 storage fees ........................... +ꜩ0.001 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_transfer_tokens.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_transfer_tokens.out index b2eea4597340..7bd37a521413 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_transfer_tokens.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_onchain_opcodes.TestContractOnchainOpcodes::test_transfer_tokens.out @@ -1,7 +1,7 @@ tests_alpha/test_contract_onchain_opcodes.py::TestContractOnchainOpcodes::test_transfer_tokens Node is bootstrapped. -Estimated gas: 1408.580 units (will add 100 for safety) +Estimated gas: 1407.940 units (will add 100 for safety) Estimated storage: 295 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000419 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1509 + Gas limit: 1508 Storage limit: 315 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000419 @@ -31,7 +31,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 38 bytes Paid storage size diff: 38 bytes - Consumed gas: 1408.580 + Consumed gas: 1407.940 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0095 storage fees ........................... +ꜩ0.0095 @@ -44,7 +44,7 @@ New contract [CONTRACT_HASH] originated. Contract memorized as test_transfer_account1. Injected block at minimal timestamp Node is bootstrapped. -Estimated gas: 1408.580 units (will add 100 for safety) +Estimated gas: 1407.940 units (will add 100 for safety) Estimated storage: 295 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -57,7 +57,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000419 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1509 + Gas limit: 1508 Storage limit: 315 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000419 @@ -74,7 +74,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 38 bytes Paid storage size diff: 38 bytes - Consumed gas: 1408.580 + Consumed gas: 1407.940 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0095 storage fees ........................... +ꜩ0.0095 @@ -87,7 +87,7 @@ New contract [CONTRACT_HASH] originated. Contract memorized as test_transfer_account2. Injected block at minimal timestamp Node is bootstrapped. -Estimated gas: 1418.057 units (will add 100 for safety) +Estimated gas: 1417.097 units (will add 100 for safety) Estimated storage: 323 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -100,7 +100,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000449 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1519 + Gas limit: 1518 Storage limit: 343 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000449 @@ -127,7 +127,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 66 bytes Paid storage size diff: 66 bytes - Consumed gas: 1418.057 + Consumed gas: 1417.097 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -143,7 +143,7 @@ Injected block at minimal timestamp [CONTRACT_HASH] Node is bootstrapped. -Estimated gas: 5180.056 units (will add 100 for safety) +Estimated gas: 4683.067 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -154,13 +154,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000826 + Fee to the baker: ꜩ0.000776 Expected counter: [EXPECTED_COUNTER] - Gas limit: 5281 + Gas limit: 4784 Storage limit: 0 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000826 - payload fees(the block proposer) ....... +ꜩ0.000826 + [CONTRACT_HASH] ... -ꜩ0.000776 + payload fees(the block proposer) ....... +ꜩ0.000776 Transaction: Amount: ꜩ100 From: [CONTRACT_HASH] @@ -169,7 +169,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 66 bytes - Consumed gas: 3976.511 + Consumed gas: 3480.265 Balance updates: [CONTRACT_HASH] ... -ꜩ100 [CONTRACT_HASH] ... +ꜩ100 @@ -181,7 +181,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 38 bytes - Consumed gas: 1203.545 + Consumed gas: 1202.802 Balance updates: [CONTRACT_HASH] ... -ꜩ100 [CONTRACT_HASH] ... +ꜩ100 @@ -191,7 +191,7 @@ Injected block at minimal timestamp [CONTRACT_HASH] Node is bootstrapped. -Estimated gas: 4327.029 units (will add 100 for safety) +Estimated gas: 3771 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -202,13 +202,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.00074 + Fee to the baker: ꜩ0.000685 Expected counter: [EXPECTED_COUNTER] - Gas limit: 4428 + Gas limit: 3871 Storage limit: 0 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.00074 - payload fees(the block proposer) ....... +ꜩ0.00074 + [CONTRACT_HASH] ... -ꜩ0.000685 + payload fees(the block proposer) ....... +ꜩ0.000685 Transaction: Amount: ꜩ100 From: [CONTRACT_HASH] @@ -217,7 +217,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 66 bytes - Consumed gas: 3123.484 + Consumed gas: 2568.198 Balance updates: [CONTRACT_HASH] ... -ꜩ100 [CONTRACT_HASH] ... +ꜩ100 @@ -229,7 +229,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 38 bytes - Consumed gas: 1203.545 + Consumed gas: 1202.802 Balance updates: [CONTRACT_HASH] ... -ꜩ100 [CONTRACT_HASH] ... +ꜩ100 diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 4) {})-\"hello\"-(Pa.f6092ac5d6.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 4) {})-\"hello\"-(Pa.f6092ac5d6.out" index 9e2845af8188..ac75a966e31c 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 4) {})-\"hello\"-(Pa.f6092ac5d6.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 4) {})-\"hello\"-(Pa.f6092ac5d6.out" @@ -8,28 +8,28 @@ big_map diff New map(4) of type (big_map string nat) Set map(4)["hello"] to 4 trace - - location: 13 (remaining gas: 1039989.301 units remaining) + - location: 13 (remaining gas: 1039991.061 units remaining) [ (Pair "hello" (Some 4) {}) ] - - location: 13 (remaining gas: 1039989.291 units remaining) + - location: 13 (remaining gas: 1039991.051 units remaining) [ "hello" (Pair (Some 4) {}) ] - - location: 14 (remaining gas: 1039989.276 units remaining) + - location: 14 (remaining gas: 1039991.041 units remaining) [ (Pair (Some 4) {}) ] - - location: 16 (remaining gas: 1039989.266 units remaining) + - location: 16 (remaining gas: 1039991.031 units remaining) [ (Some 4) {} ] - - location: 14 (remaining gas: 1039989.236 units remaining) + - location: 14 (remaining gas: 1039991.011 units remaining) [ "hello" (Some 4) {} ] - - location: 17 (remaining gas: 1039988.164 units remaining) + - location: 17 (remaining gas: 1039989.999 units remaining) [ None { Elt "hello" 4 } ] - - location: 18 (remaining gas: 1039988.149 units remaining) + - location: 18 (remaining gas: 1039989.989 units remaining) [ (Pair None { Elt "hello" 4 }) ] - - location: 19 (remaining gas: 1039988.134 units remaining) + - location: 19 (remaining gas: 1039989.979 units remaining) [ {} (Pair None { Elt "hello" 4 }) ] - - location: 21 (remaining gas: 1039988.119 units remaining) + - location: 21 (remaining gas: 1039989.969 units remaining) [ (Pair {} None { Elt "hello" 4 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0427752f13.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0427752f13.out" index c7a99e26f27f..315ee35f2c6b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0427752f13.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0427752f13.out" @@ -8,28 +8,28 @@ big_map diff New map(4) of type (big_map string nat) Set map(4)["hello"] to 5 trace - - location: 13 (remaining gas: 1039987.971 units remaining) + - location: 13 (remaining gas: 1039989.806 units remaining) [ (Pair "hello" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039987.961 units remaining) + - location: 13 (remaining gas: 1039989.796 units remaining) [ "hello" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039987.946 units remaining) + - location: 14 (remaining gas: 1039989.786 units remaining) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039987.936 units remaining) + - location: 16 (remaining gas: 1039989.776 units remaining) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039987.906 units remaining) + - location: 14 (remaining gas: 1039989.756 units remaining) [ "hello" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039986.829 units remaining) + - location: 17 (remaining gas: 1039988.739 units remaining) [ (Some 4) { Elt "hello" 5 } ] - - location: 18 (remaining gas: 1039986.814 units remaining) + - location: 18 (remaining gas: 1039988.729 units remaining) [ (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 19 (remaining gas: 1039986.799 units remaining) + - location: 19 (remaining gas: 1039988.719 units remaining) [ {} (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 21 (remaining gas: 1039986.784 units remaining) + - location: 21 (remaining gas: 1039988.709 units remaining) [ (Pair {} (Some 4) { Elt "hello" 5 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0793dc66d5.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0793dc66d5.out" index d095614c8955..deb659fe63db 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0793dc66d5.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair (Some 5) { Elt \"hello\" 4.0793dc66d5.out" @@ -9,28 +9,28 @@ big_map diff Set map(4)["hello"] to 4 Set map(4)["hi"] to 5 trace - - location: 13 (remaining gas: 1039988.001 units remaining) + - location: 13 (remaining gas: 1039989.836 units remaining) [ (Pair "hi" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039987.991 units remaining) + - location: 13 (remaining gas: 1039989.826 units remaining) [ "hi" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039987.976 units remaining) + - location: 14 (remaining gas: 1039989.816 units remaining) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039987.966 units remaining) + - location: 16 (remaining gas: 1039989.806 units remaining) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039987.936 units remaining) + - location: 14 (remaining gas: 1039989.786 units remaining) [ "hi" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039986.961 units remaining) + - location: 17 (remaining gas: 1039988.871 units remaining) [ None { Elt "hello" 4 ; Elt "hi" 5 } ] - - location: 18 (remaining gas: 1039986.946 units remaining) + - location: 18 (remaining gas: 1039988.861 units remaining) [ (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 19 (remaining gas: 1039986.931 units remaining) + - location: 19 (remaining gas: 1039988.851 units remaining) [ {} (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 21 (remaining gas: 1039986.916 units remaining) + - location: 21 (remaining gas: 1039988.841 units remaining) [ (Pair {} None { Elt "hello" 4 ; Elt "hi" 5 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .df114499b8.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .df114499b8.out" index 4a9ba0552616..ee85ace23d21 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .df114499b8.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .df114499b8.out" @@ -9,28 +9,28 @@ big_map diff Set map(4)["2"] to 2 Unset map(4)["1"] trace - - location: 13 (remaining gas: 1039987.097 units remaining) + - location: 13 (remaining gas: 1039989.007 units remaining) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (remaining gas: 1039987.087 units remaining) + - location: 13 (remaining gas: 1039988.997 units remaining) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (remaining gas: 1039987.072 units remaining) + - location: 14 (remaining gas: 1039988.987 units remaining) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (remaining gas: 1039987.062 units remaining) + - location: 16 (remaining gas: 1039988.977 units remaining) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039987.032 units remaining) + - location: 14 (remaining gas: 1039988.957 units remaining) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039986.088 units remaining) + - location: 17 (remaining gas: 1039988.073 units remaining) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039986.073 units remaining) + - location: 18 (remaining gas: 1039988.063 units remaining) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039986.058 units remaining) + - location: 19 (remaining gas: 1039988.053 units remaining) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039986.043 units remaining) + - location: 21 (remaining gas: 1039988.043 units remaining) [ (Pair {} (Some 1) { Elt "2" 2 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .f9bea98de9.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .f9bea98de9.out" index 54e3dc84725a..e7900ae5fe67 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .f9bea98de9.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"1\" 1 ; .f9bea98de9.out" @@ -9,28 +9,28 @@ big_map diff Set map(4)["2"] to 2 Unset map(4)["1"] trace - - location: 13 (remaining gas: 1039987.097 units remaining) + - location: 13 (remaining gas: 1039989.007 units remaining) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (remaining gas: 1039987.087 units remaining) + - location: 13 (remaining gas: 1039988.997 units remaining) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (remaining gas: 1039987.072 units remaining) + - location: 14 (remaining gas: 1039988.987 units remaining) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (remaining gas: 1039987.062 units remaining) + - location: 16 (remaining gas: 1039988.977 units remaining) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039987.032 units remaining) + - location: 14 (remaining gas: 1039988.957 units remaining) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039986.088 units remaining) + - location: 17 (remaining gas: 1039988.073 units remaining) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039986.073 units remaining) + - location: 18 (remaining gas: 1039988.063 units remaining) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039986.058 units remaining) + - location: 19 (remaining gas: 1039988.053 units remaining) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039986.043 units remaining) + - location: 21 (remaining gas: 1039988.043 units remaining) [ (Pair {} (Some 1) { Elt "2" 2 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"hello\" 4 })-.1db12cd837.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"hello\" 4 })-.1db12cd837.out" index 9d037082277a..d08a580ce17e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"hello\" 4 })-.1db12cd837.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None { Elt \"hello\" 4 })-.1db12cd837.out" @@ -8,28 +8,28 @@ big_map diff New map(4) of type (big_map string nat) Unset map(4)["hello"] trace - - location: 13 (remaining gas: 1039988.071 units remaining) + - location: 13 (remaining gas: 1039989.906 units remaining) [ (Pair "hello" None { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039988.061 units remaining) + - location: 13 (remaining gas: 1039989.896 units remaining) [ "hello" (Pair None { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039988.046 units remaining) + - location: 14 (remaining gas: 1039989.886 units remaining) [ (Pair None { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039988.036 units remaining) + - location: 16 (remaining gas: 1039989.876 units remaining) [ None { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039988.006 units remaining) + - location: 14 (remaining gas: 1039989.856 units remaining) [ "hello" None { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039986.929 units remaining) + - location: 17 (remaining gas: 1039988.839 units remaining) [ (Some 4) {} ] - - location: 18 (remaining gas: 1039986.914 units remaining) + - location: 18 (remaining gas: 1039988.829 units remaining) [ (Pair (Some 4) {}) ] - - location: 19 (remaining gas: 1039986.899 units remaining) + - location: 19 (remaining gas: 1039988.819 units remaining) [ {} (Pair (Some 4) {}) ] - - location: 21 (remaining gas: 1039986.884 units remaining) + - location: 21 (remaining gas: 1039988.809 units remaining) [ (Pair {} (Some 4) {}) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None {})-\"hello\"-(Pair N.6fc7d0acf2.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None {})-\"hello\"-(Pair N.6fc7d0acf2.out" index b249e93802a6..7fe676facfad 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None {})-\"hello\"-(Pair N.6fc7d0acf2.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_and_update_big_map.tz-(Pair None {})-\"hello\"-(Pair N.6fc7d0acf2.out" @@ -8,28 +8,28 @@ big_map diff New map(4) of type (big_map string nat) Unset map(4)["hello"] trace - - location: 13 (remaining gas: 1039989.401 units remaining) + - location: 13 (remaining gas: 1039991.161 units remaining) [ (Pair "hello" None {}) ] - - location: 13 (remaining gas: 1039989.391 units remaining) + - location: 13 (remaining gas: 1039991.151 units remaining) [ "hello" (Pair None {}) ] - - location: 14 (remaining gas: 1039989.376 units remaining) + - location: 14 (remaining gas: 1039991.141 units remaining) [ (Pair None {}) ] - - location: 16 (remaining gas: 1039989.366 units remaining) + - location: 16 (remaining gas: 1039991.131 units remaining) [ None {} ] - - location: 14 (remaining gas: 1039989.336 units remaining) + - location: 14 (remaining gas: 1039991.111 units remaining) [ "hello" None {} ] - - location: 17 (remaining gas: 1039988.264 units remaining) + - location: 17 (remaining gas: 1039990.099 units remaining) [ None {} ] - - location: 18 (remaining gas: 1039988.249 units remaining) + - location: 18 (remaining gas: 1039990.089 units remaining) [ (Pair None {}) ] - - location: 19 (remaining gas: 1039988.234 units remaining) + - location: 19 (remaining gas: 1039990.079 units remaining) [ {} (Pair None {}) ] - - location: 21 (remaining gas: 1039988.219 units remaining) + - location: 21 (remaining gas: 1039990.069 units remaining) [ (Pair {} None {}) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"tw.524c5459f8.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"tw.524c5459f8.out" index e4c9221c2cf9..a6acff3544b0 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"tw.524c5459f8.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"tw.524c5459f8.out" @@ -9,38 +9,38 @@ big_map diff Set map(4)["2"] to "two" Set map(4)["1"] to "one" trace - - location: 12 (remaining gas: 1039983.918 units remaining) + - location: 12 (remaining gas: 1039985.668 units remaining) [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 12 (remaining gas: 1039983.908 units remaining) + - location: 12 (remaining gas: 1039985.658 units remaining) [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 13 (remaining gas: 1039983.898 units remaining) + - location: 13 (remaining gas: 1039985.648 units remaining) [ "1" (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 14 (remaining gas: 1039983.883 units remaining) + - location: 14 (remaining gas: 1039985.638 units remaining) [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 17 (remaining gas: 1039983.873 units remaining) + - location: 17 (remaining gas: 1039985.628 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 18 (remaining gas: 1039983.863 units remaining) + - location: 18 (remaining gas: 1039985.618 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } ] - - location: 19 (remaining gas: 1039983.853 units remaining) + - location: 19 (remaining gas: 1039985.608 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } { Elt "1" "one" ; Elt "2" "two" } ] - - location: 14 (remaining gas: 1039983.823 units remaining) + - location: 14 (remaining gas: 1039985.588 units remaining) [ "1" { Elt "1" "one" ; Elt "2" "two" } { Elt "1" "one" ; Elt "2" "two" } ] - - location: 20 (remaining gas: 1039982.913 units remaining) + - location: 20 (remaining gas: 1039984.743 units remaining) [ (Some "one") { Elt "1" "one" ; Elt "2" "two" } ] - - location: 21 (remaining gas: 1039982.903 units remaining) + - location: 21 (remaining gas: 1039984.733 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } (Some "one") ] - - location: 22 (remaining gas: 1039982.888 units remaining) + - location: 22 (remaining gas: 1039984.723 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] - - location: 23 (remaining gas: 1039982.873 units remaining) + - location: 23 (remaining gas: 1039984.713 units remaining) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] - - location: 25 (remaining gas: 1039982.858 units remaining) + - location: 25 (remaining gas: 1039984.703 units remaining) [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"\".33eba403e7.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"\".33eba403e7.out" index bc3b211a17b4..cffca6fd5fdd 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"\".33eba403e7.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"\".33eba403e7.out" @@ -8,38 +8,38 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["hello"] to "hi" trace - - location: 12 (remaining gas: 1039984.996 units remaining) + - location: 12 (remaining gas: 1039986.671 units remaining) [ (Pair "" { Elt "hello" "hi" } None) ] - - location: 12 (remaining gas: 1039984.986 units remaining) + - location: 12 (remaining gas: 1039986.661 units remaining) [ (Pair "" { Elt "hello" "hi" } None) (Pair "" { Elt "hello" "hi" } None) ] - - location: 13 (remaining gas: 1039984.976 units remaining) + - location: 13 (remaining gas: 1039986.651 units remaining) [ "" (Pair "" { Elt "hello" "hi" } None) ] - - location: 14 (remaining gas: 1039984.961 units remaining) + - location: 14 (remaining gas: 1039986.641 units remaining) [ (Pair "" { Elt "hello" "hi" } None) ] - - location: 17 (remaining gas: 1039984.951 units remaining) + - location: 17 (remaining gas: 1039986.631 units remaining) [ (Pair { Elt "hello" "hi" } None) ] - - location: 18 (remaining gas: 1039984.941 units remaining) + - location: 18 (remaining gas: 1039986.621 units remaining) [ { Elt "hello" "hi" } ] - - location: 19 (remaining gas: 1039984.931 units remaining) + - location: 19 (remaining gas: 1039986.611 units remaining) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039984.901 units remaining) + - location: 14 (remaining gas: 1039986.591 units remaining) [ "" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039984.026 units remaining) + - location: 20 (remaining gas: 1039985.781 units remaining) [ None { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039984.016 units remaining) + - location: 21 (remaining gas: 1039985.771 units remaining) [ { Elt "hello" "hi" } None ] - - location: 22 (remaining gas: 1039984.001 units remaining) + - location: 22 (remaining gas: 1039985.761 units remaining) [ (Pair { Elt "hello" "hi" } None) ] - - location: 23 (remaining gas: 1039983.986 units remaining) + - location: 23 (remaining gas: 1039985.751 units remaining) [ {} (Pair { Elt "hello" "hi" } None) ] - - location: 25 (remaining gas: 1039983.971 units remaining) + - location: 25 (remaining gas: 1039985.741 units remaining) [ (Pair {} { Elt "hello" "hi" } None) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"h.a5cd1005c9.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"h.a5cd1005c9.out" index dbe7153b136b..3f59079f9b9f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"h.a5cd1005c9.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[get_big_map_value.tz-(Pair { Elt \"hello\" \"hi\" } None)-\"h.a5cd1005c9.out" @@ -8,38 +8,38 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["hello"] to "hi" trace - - location: 12 (remaining gas: 1039984.946 units remaining) + - location: 12 (remaining gas: 1039986.621 units remaining) [ (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 12 (remaining gas: 1039984.936 units remaining) + - location: 12 (remaining gas: 1039986.611 units remaining) [ (Pair "hello" { Elt "hello" "hi" } None) (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 13 (remaining gas: 1039984.926 units remaining) + - location: 13 (remaining gas: 1039986.601 units remaining) [ "hello" (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 14 (remaining gas: 1039984.911 units remaining) + - location: 14 (remaining gas: 1039986.591 units remaining) [ (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 17 (remaining gas: 1039984.901 units remaining) + - location: 17 (remaining gas: 1039986.581 units remaining) [ (Pair { Elt "hello" "hi" } None) ] - - location: 18 (remaining gas: 1039984.891 units remaining) + - location: 18 (remaining gas: 1039986.571 units remaining) [ { Elt "hello" "hi" } ] - - location: 19 (remaining gas: 1039984.881 units remaining) + - location: 19 (remaining gas: 1039986.561 units remaining) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039984.851 units remaining) + - location: 14 (remaining gas: 1039986.541 units remaining) [ "hello" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039983.805 units remaining) + - location: 20 (remaining gas: 1039985.560 units remaining) [ (Some "hi") { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039983.795 units remaining) + - location: 21 (remaining gas: 1039985.550 units remaining) [ { Elt "hello" "hi" } (Some "hi") ] - - location: 22 (remaining gas: 1039983.780 units remaining) + - location: 22 (remaining gas: 1039985.540 units remaining) [ (Pair { Elt "hello" "hi" } (Some "hi")) ] - - location: 23 (remaining gas: 1039983.765 units remaining) + - location: 23 (remaining gas: 1039985.530 units remaining) [ {} (Pair { Elt "hello" "hi" } (Some "hi")) ] - - location: 25 (remaining gas: 1039983.750 units remaining) + - location: 25 (remaining gas: 1039985.520 units remaining) [ (Pair {} { Elt "hello" "hi" } (Some "hi")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .6f3d35b151.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .6f3d35b151.out" index f8bd33517d9b..acb986bfd981 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .6f3d35b151.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .6f3d35b151.out" @@ -9,28 +9,28 @@ big_map diff Set map(4)["2"] to "two" Set map(4)["1"] to "one" trace - - location: 15 (remaining gas: 1039984.604 units remaining) + - location: 15 (remaining gas: 1039986.994 units remaining) [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039984.594 units remaining) + - location: 15 (remaining gas: 1039986.984 units remaining) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039984.579 units remaining) + - location: 16 (remaining gas: 1039986.974 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039984.569 units remaining) + - location: 18 (remaining gas: 1039986.964 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039984.539 units remaining) + - location: 16 (remaining gas: 1039986.944 units remaining) [ {} { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039984.539 units remaining) + - location: 19 (remaining gas: 1039986.944 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039984.524 units remaining) + - location: 23 (remaining gas: 1039986.934 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039984.509 units remaining) + - location: 24 (remaining gas: 1039986.924 units remaining) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039984.494 units remaining) + - location: 26 (remaining gas: 1039986.914 units remaining) [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .76aeaa0706.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .76aeaa0706.out" index 66568e6183e3..662c333fdd43 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .76aeaa0706.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .76aeaa0706.out" @@ -9,40 +9,40 @@ big_map diff Set map(4)["2"] to "two" Set map(4)["1"] to "two" trace - - location: 15 (remaining gas: 1039984.154 units remaining) + - location: 15 (remaining gas: 1039986.544 units remaining) [ (Pair { Elt "1" (Some "two") } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039984.144 units remaining) + - location: 15 (remaining gas: 1039986.534 units remaining) [ { Elt "1" (Some "two") } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039984.129 units remaining) + - location: 16 (remaining gas: 1039986.524 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039984.119 units remaining) + - location: 18 (remaining gas: 1039986.514 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039984.089 units remaining) + - location: 16 (remaining gas: 1039986.494 units remaining) [ { Elt "1" (Some "two") } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039984.089 units remaining) + - location: 19 (remaining gas: 1039986.494 units remaining) [ (Pair "1" (Some "two")) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039984.079 units remaining) + - location: 21 (remaining gas: 1039986.484 units remaining) [ "1" (Some "two") { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039983.144 units remaining) + - location: 22 (remaining gas: 1039985.624 units remaining) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039983.129 units remaining) + - location: 19 (remaining gas: 1039985.614 units remaining) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039983.114 units remaining) + - location: 23 (remaining gas: 1039985.604 units remaining) [ (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039983.099 units remaining) + - location: 24 (remaining gas: 1039985.594 units remaining) [ {} (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039983.084 units remaining) + - location: 26 (remaining gas: 1039985.584 units remaining) [ (Pair {} { Elt "1" "two" ; Elt "2" "two" } Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7e7197f248.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7e7197f248.out" index f6070a97fd62..af97e757e4e8 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7e7197f248.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7e7197f248.out" @@ -9,40 +9,40 @@ big_map diff Set map(4)["2"] to "two" Set map(4)["1"] to "two" trace - - location: 15 (remaining gas: 1039984.154 units remaining) + - location: 15 (remaining gas: 1039986.544 units remaining) [ (Pair { Elt "1" (Some "two") } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039984.144 units remaining) + - location: 15 (remaining gas: 1039986.534 units remaining) [ { Elt "1" (Some "two") } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039984.129 units remaining) + - location: 16 (remaining gas: 1039986.524 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039984.119 units remaining) + - location: 18 (remaining gas: 1039986.514 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039984.089 units remaining) + - location: 16 (remaining gas: 1039986.494 units remaining) [ { Elt "1" (Some "two") } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039984.089 units remaining) + - location: 19 (remaining gas: 1039986.494 units remaining) [ (Pair "1" (Some "two")) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039984.079 units remaining) + - location: 21 (remaining gas: 1039986.484 units remaining) [ "1" (Some "two") { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039983.144 units remaining) + - location: 22 (remaining gas: 1039985.624 units remaining) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039983.129 units remaining) + - location: 19 (remaining gas: 1039985.614 units remaining) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039983.114 units remaining) + - location: 23 (remaining gas: 1039985.604 units remaining) [ (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039983.099 units remaining) + - location: 24 (remaining gas: 1039985.594 units remaining) [ {} (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039983.084 units remaining) + - location: 26 (remaining gas: 1039985.584 units remaining) [ (Pair {} { Elt "1" "two" ; Elt "2" "two" } Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7ef2c415a7.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7ef2c415a7.out" index 0999a0ad3d06..d18d5a49280f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7ef2c415a7.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .7ef2c415a7.out" @@ -10,40 +10,40 @@ big_map diff Set map(4)["3"] to "three" Set map(4)["1"] to "one" trace - - location: 15 (remaining gas: 1039984.134 units remaining) + - location: 15 (remaining gas: 1039986.524 units remaining) [ (Pair { Elt "3" (Some "three") } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039984.124 units remaining) + - location: 15 (remaining gas: 1039986.514 units remaining) [ { Elt "3" (Some "three") } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039984.109 units remaining) + - location: 16 (remaining gas: 1039986.504 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039984.099 units remaining) + - location: 18 (remaining gas: 1039986.494 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039984.069 units remaining) + - location: 16 (remaining gas: 1039986.474 units remaining) [ { Elt "3" (Some "three") } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039984.069 units remaining) + - location: 19 (remaining gas: 1039986.474 units remaining) [ (Pair "3" (Some "three")) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039984.059 units remaining) + - location: 21 (remaining gas: 1039986.464 units remaining) [ "3" (Some "three") { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039983.124 units remaining) + - location: 22 (remaining gas: 1039985.604 units remaining) [ { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit ] - - location: 19 (remaining gas: 1039983.109 units remaining) + - location: 19 (remaining gas: 1039985.594 units remaining) [ { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit ] - - location: 23 (remaining gas: 1039983.094 units remaining) + - location: 23 (remaining gas: 1039985.584 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit) ] - - location: 24 (remaining gas: 1039983.079 units remaining) + - location: 24 (remaining gas: 1039985.574 units remaining) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit) ] - - location: 26 (remaining gas: 1039983.064 units remaining) + - location: 26 (remaining gas: 1039985.564 units remaining) [ (Pair {} { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .b688cc94a7.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .b688cc94a7.out" index 868fa10f044f..4d4d10b2e430 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .b688cc94a7.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .b688cc94a7.out" @@ -10,40 +10,40 @@ big_map diff Unset map(4)["3"] Set map(4)["1"] to "one" trace - - location: 15 (remaining gas: 1039984.298 units remaining) + - location: 15 (remaining gas: 1039986.688 units remaining) [ (Pair { Elt "3" None } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039984.288 units remaining) + - location: 15 (remaining gas: 1039986.678 units remaining) [ { Elt "3" None } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039984.273 units remaining) + - location: 16 (remaining gas: 1039986.668 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039984.263 units remaining) + - location: 18 (remaining gas: 1039986.658 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039984.233 units remaining) + - location: 16 (remaining gas: 1039986.638 units remaining) [ { Elt "3" None } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039984.233 units remaining) + - location: 19 (remaining gas: 1039986.638 units remaining) [ (Pair "3" None) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039984.223 units remaining) + - location: 21 (remaining gas: 1039986.628 units remaining) [ "3" None { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039983.288 units remaining) + - location: 22 (remaining gas: 1039985.768 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039983.273 units remaining) + - location: 19 (remaining gas: 1039985.758 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039983.258 units remaining) + - location: 23 (remaining gas: 1039985.748 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039983.243 units remaining) + - location: 24 (remaining gas: 1039985.738 units remaining) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039983.228 units remaining) + - location: 26 (remaining gas: 1039985.728 units remaining) [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .c68db221ed.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .c68db221ed.out" index e7804265cd78..7dc65adc38eb 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .c68db221ed.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test__big_map_contract_io[update_big_map.tz-(Pair { Elt \"1\" \"one\" ; Elt \"2\" \"two\" .c68db221ed.out" @@ -9,40 +9,40 @@ big_map diff Unset map(4)["2"] Set map(4)["1"] to "one" trace - - location: 15 (remaining gas: 1039984.298 units remaining) + - location: 15 (remaining gas: 1039986.688 units remaining) [ (Pair { Elt "2" None } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039984.288 units remaining) + - location: 15 (remaining gas: 1039986.678 units remaining) [ { Elt "2" None } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039984.273 units remaining) + - location: 16 (remaining gas: 1039986.668 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039984.263 units remaining) + - location: 18 (remaining gas: 1039986.658 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039984.233 units remaining) + - location: 16 (remaining gas: 1039986.638 units remaining) [ { Elt "2" None } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039984.233 units remaining) + - location: 19 (remaining gas: 1039986.638 units remaining) [ (Pair "2" None) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039984.223 units remaining) + - location: 21 (remaining gas: 1039986.628 units remaining) [ "2" None { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039983.288 units remaining) + - location: 22 (remaining gas: 1039985.768 units remaining) [ { Elt "1" "one" } Unit ] - - location: 19 (remaining gas: 1039983.273 units remaining) + - location: 19 (remaining gas: 1039985.758 units remaining) [ { Elt "1" "one" } Unit ] - - location: 23 (remaining gas: 1039983.258 units remaining) + - location: 23 (remaining gas: 1039985.748 units remaining) [ (Pair { Elt "1" "one" } Unit) ] - - location: 24 (remaining gas: 1039983.243 units remaining) + - location: 24 (remaining gas: 1039985.738 units remaining) [ {} (Pair { Elt "1" "one" } Unit) ] - - location: 26 (remaining gas: 1039983.228 units remaining) + - location: 26 (remaining gas: 1039985.728 units remaining) [ (Pair {} { Elt "1" "one" } Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0.5].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0.5].out index 697460515008..0ff6a320e845 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0.5].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0.5].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.913 units remaining) + - location: 7 (remaining gas: 1039995.553 units remaining) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039994.903 units remaining) + - location: 7 (remaining gas: 1039995.543 units remaining) [ ] - - location: 8 (remaining gas: 1039994.903 units remaining) + - location: 8 (remaining gas: 1039995.543 units remaining) [ 500000 ] - - location: 9 (remaining gas: 1039994.888 units remaining) + - location: 9 (remaining gas: 1039995.533 units remaining) [ {} 500000 ] - - location: 11 (remaining gas: 1039994.873 units remaining) + - location: 11 (remaining gas: 1039995.523 units remaining) [ (Pair {} 500000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0].out index 27140ef7d89a..b1677ae3f64b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[0].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.913 units remaining) + - location: 7 (remaining gas: 1039995.553 units remaining) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039994.903 units remaining) + - location: 7 (remaining gas: 1039995.543 units remaining) [ ] - - location: 8 (remaining gas: 1039994.903 units remaining) + - location: 8 (remaining gas: 1039995.543 units remaining) [ 0 ] - - location: 9 (remaining gas: 1039994.888 units remaining) + - location: 9 (remaining gas: 1039995.533 units remaining) [ {} 0 ] - - location: 11 (remaining gas: 1039994.873 units remaining) + - location: 11 (remaining gas: 1039995.523 units remaining) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1000].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1000].out index c185e193dfc9..6921d02a6aaa 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1000].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1000].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.913 units remaining) + - location: 7 (remaining gas: 1039995.553 units remaining) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039994.903 units remaining) + - location: 7 (remaining gas: 1039995.543 units remaining) [ ] - - location: 8 (remaining gas: 1039994.903 units remaining) + - location: 8 (remaining gas: 1039995.543 units remaining) [ 1000000000 ] - - location: 9 (remaining gas: 1039994.888 units remaining) + - location: 9 (remaining gas: 1039995.533 units remaining) [ {} 1000000000 ] - - location: 11 (remaining gas: 1039994.873 units remaining) + - location: 11 (remaining gas: 1039995.523 units remaining) [ (Pair {} 1000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1].out index e1f60bcfde4f..60d998dafd33 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.913 units remaining) + - location: 7 (remaining gas: 1039995.553 units remaining) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039994.903 units remaining) + - location: 7 (remaining gas: 1039995.543 units remaining) [ ] - - location: 8 (remaining gas: 1039994.903 units remaining) + - location: 8 (remaining gas: 1039995.543 units remaining) [ 1000000 ] - - location: 9 (remaining gas: 1039994.888 units remaining) + - location: 9 (remaining gas: 1039995.533 units remaining) [ {} 1000000 ] - - location: 11 (remaining gas: 1039994.873 units remaining) + - location: 11 (remaining gas: 1039995.523 units remaining) [ (Pair {} 1000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1e-06].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1e-06].out index 57fcf5fbe14a..de7e71688263 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1e-06].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[1e-06].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.913 units remaining) + - location: 7 (remaining gas: 1039995.553 units remaining) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039994.903 units remaining) + - location: 7 (remaining gas: 1039995.543 units remaining) [ ] - - location: 8 (remaining gas: 1039994.903 units remaining) + - location: 8 (remaining gas: 1039995.543 units remaining) [ 1 ] - - location: 9 (remaining gas: 1039994.888 units remaining) + - location: 9 (remaining gas: 1039995.533 units remaining) [ {} 1 ] - - location: 11 (remaining gas: 1039994.873 units remaining) + - location: 11 (remaining gas: 1039995.523 units remaining) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[5].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[5].out index cf6f6cca6d77..638b0a69ccab 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[5].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[5].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.913 units remaining) + - location: 7 (remaining gas: 1039995.553 units remaining) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039994.903 units remaining) + - location: 7 (remaining gas: 1039995.543 units remaining) [ ] - - location: 8 (remaining gas: 1039994.903 units remaining) + - location: 8 (remaining gas: 1039995.543 units remaining) [ 5000000 ] - - location: 9 (remaining gas: 1039994.888 units remaining) + - location: 9 (remaining gas: 1039995.533 units remaining) [ {} 5000000 ] - - location: 11 (remaining gas: 1039994.873 units remaining) + - location: 11 (remaining gas: 1039995.523 units remaining) [ (Pair {} 5000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[8000000000000.0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[8000000000000.0].out index b3e3ca045f4b..62ed0ad9491f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[8000000000000.0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_balance[8000000000000.0].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.913 units remaining) + - location: 7 (remaining gas: 1039995.553 units remaining) [ (Pair Unit 0) ] - - location: 7 (remaining gas: 1039994.903 units remaining) + - location: 7 (remaining gas: 1039995.543 units remaining) [ ] - - location: 8 (remaining gas: 1039994.903 units remaining) + - location: 8 (remaining gas: 1039995.543 units remaining) [ 8000000000000000000 ] - - location: 9 (remaining gas: 1039994.888 units remaining) + - location: 9 (remaining gas: 1039995.533 units remaining) [ {} 8000000000000000000 ] - - location: 11 (remaining gas: 1039994.873 units remaining) + - location: 11 (remaining gas: 1039995.523 units remaining) [ (Pair {} 8000000000000000000) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }) )-(Right (Righ.7492e8cdea.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }) )-(Right (Righ.7492e8cdea.out" index 39a755a95c88..b5b369e9a65f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }) )-(Right (Righ.7492e8cdea.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }) )-(Right (Righ.7492e8cdea.out" @@ -11,80 +11,80 @@ big_map diff Set map(4)["3"] to "three" Set map(4)["1"] to "one" trace - - location: 43 (remaining gas: 1039919.988 units remaining) + - location: 43 (remaining gas: 1039933.098 units remaining) [ (Pair (Right (Right (Right (Left { Pair "3" "three" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039919.978 units remaining) + - location: 43 (remaining gas: 1039933.088 units remaining) [ (Right (Right (Right (Left { Pair "3" "three" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039919.968 units remaining) + - location: 44 (remaining gas: 1039933.078 units remaining) [ (Right (Right (Left { Pair "3" "three" }))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039919.958 units remaining) + - location: 60 (remaining gas: 1039933.068 units remaining) [ (Right (Left { Pair "3" "three" })) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039919.948 units remaining) + - location: 65 (remaining gas: 1039933.058 units remaining) [ (Left { Pair "3" "three" }) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039919.938 units remaining) + - location: 108 (remaining gas: 1039933.048 units remaining) [ { Pair "3" "three" } (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 110 (remaining gas: 1039919.923 units remaining) + - location: 110 (remaining gas: 1039933.038 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 113 (remaining gas: 1039919.913 units remaining) + - location: 113 (remaining gas: 1039933.028 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 113 (remaining gas: 1039919.898 units remaining) + - location: 113 (remaining gas: 1039933.018 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 119 (remaining gas: 1039919.888 units remaining) + - location: 119 (remaining gas: 1039933.008 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 110 (remaining gas: 1039919.858 units remaining) + - location: 110 (remaining gas: 1039932.988 units remaining) [ { Pair "3" "three" } { Elt "1" "one" } { Elt "2" "two" } ] - - location: 120 (remaining gas: 1039919.858 units remaining) + - location: 120 (remaining gas: 1039932.988 units remaining) [ (Pair "3" "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 122 (remaining gas: 1039919.848 units remaining) + - location: 122 (remaining gas: 1039932.978 units remaining) [ "3" "three" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 123 (remaining gas: 1039919.833 units remaining) + - location: 123 (remaining gas: 1039932.968 units remaining) [ "three" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 125 (remaining gas: 1039919.818 units remaining) + - location: 125 (remaining gas: 1039932.958 units remaining) [ (Some "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 123 (remaining gas: 1039919.788 units remaining) + - location: 123 (remaining gas: 1039932.938 units remaining) [ "3" (Some "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 126 (remaining gas: 1039918.856 units remaining) + - location: 126 (remaining gas: 1039932.081 units remaining) [ { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" } ] - - location: 120 (remaining gas: 1039918.841 units remaining) + - location: 120 (remaining gas: 1039932.071 units remaining) [ { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" } ] - - location: 127 (remaining gas: 1039918.826 units remaining) + - location: 127 (remaining gas: 1039932.061 units remaining) [ (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" }) ] - - location: 128 (remaining gas: 1039918.811 units remaining) + - location: 128 (remaining gas: 1039932.051 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039918.796 units remaining) + - location: 108 (remaining gas: 1039932.041 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039918.781 units remaining) + - location: 65 (remaining gas: 1039932.031 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039918.766 units remaining) + - location: 60 (remaining gas: 1039932.021 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039918.751 units remaining) + - location: 44 (remaining gas: 1039932.011 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 151 (remaining gas: 1039918.736 units remaining) + - location: 151 (remaining gas: 1039932.001 units remaining) [ {} (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 153 (remaining gas: 1039918.721 units remaining) + - location: 153 (remaining gas: 1039931.991 units remaining) [ (Pair {} (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" }))) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Left Unit)-(.21b30dd90f.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Left Unit)-(.21b30dd90f.out" index 438366ea336d..9f4e64903bfa 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Left Unit)-(.21b30dd90f.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Left Unit)-(.21b30dd90f.out" @@ -10,35 +10,35 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["2"] to "two" trace - - location: 43 (remaining gas: 1039920.896 units remaining) + - location: 43 (remaining gas: 1039934.006 units remaining) [ (Pair (Left Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039920.886 units remaining) + - location: 43 (remaining gas: 1039933.996 units remaining) [ (Left Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039920.876 units remaining) + - location: 44 (remaining gas: 1039933.986 units remaining) [ Unit (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 46 (remaining gas: 1039920.866 units remaining) + - location: 46 (remaining gas: 1039933.976 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 48 (remaining gas: 1039920.856 units remaining) + - location: 48 (remaining gas: 1039933.966 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 48 (remaining gas: 1039920.841 units remaining) + - location: 48 (remaining gas: 1039933.956 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 54 (remaining gas: 1039920.831 units remaining) + - location: 54 (remaining gas: 1039933.946 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 55 (remaining gas: 1039920.821 units remaining) + - location: 55 (remaining gas: 1039933.936 units remaining) [ { Elt "2" "two" } { Elt "1" "one" } ] - - location: 56 (remaining gas: 1039920.806 units remaining) + - location: 56 (remaining gas: 1039933.926 units remaining) [ (Pair { Elt "2" "two" } { Elt "1" "one" }) ] - - location: 57 (remaining gas: 1039920.791 units remaining) + - location: 57 (remaining gas: 1039933.916 units remaining) [ (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 44 (remaining gas: 1039920.776 units remaining) + - location: 44 (remaining gas: 1039933.906 units remaining) [ (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 151 (remaining gas: 1039920.761 units remaining) + - location: 151 (remaining gas: 1039933.896 units remaining) [ {} (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 153 (remaining gas: 1039920.746 units remaining) + - location: 153 (remaining gas: 1039933.886 units remaining) [ (Pair {} (Left (Pair { Elt "2" "two" } { Elt "1" "one" }))) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .2873ef610c.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .2873ef610c.out" index aa532e8b1649..353853c4e7eb 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .2873ef610c.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .2873ef610c.out" @@ -10,30 +10,30 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["3"] to "three" trace - - location: 43 (remaining gas: 1039917.192 units remaining) + - location: 43 (remaining gas: 1039930.452 units remaining) [ (Pair (Right (Left (Left (Pair { Elt "3" "three" } { Elt "4" "four" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039917.182 units remaining) + - location: 43 (remaining gas: 1039930.442 units remaining) [ (Right (Left (Left (Pair { Elt "3" "three" } { Elt "4" "four" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039917.172 units remaining) + - location: 44 (remaining gas: 1039930.432 units remaining) [ (Left (Left (Pair { Elt "3" "three" } { Elt "4" "four" }))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039917.162 units remaining) + - location: 60 (remaining gas: 1039930.422 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 62 (remaining gas: 1039917.152 units remaining) + - location: 62 (remaining gas: 1039930.412 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 63 (remaining gas: 1039917.142 units remaining) + - location: 63 (remaining gas: 1039930.402 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 60 (remaining gas: 1039917.127 units remaining) + - location: 60 (remaining gas: 1039930.392 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 44 (remaining gas: 1039917.112 units remaining) + - location: 44 (remaining gas: 1039930.382 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 151 (remaining gas: 1039917.097 units remaining) + - location: 151 (remaining gas: 1039930.372 units remaining) [ {} (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 153 (remaining gas: 1039917.082 units remaining) + - location: 153 (remaining gas: 1039930.362 units remaining) [ (Pair {} (Left (Pair { Elt "3" "three" } { Elt "4" "four" }))) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .8a6f480005.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .8a6f480005.out" index 90645801169b..4a054235030b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .8a6f480005.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .8a6f480005.out" @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 43 (remaining gas: 1039920.256 units remaining) + - location: 43 (remaining gas: 1039933.366 units remaining) [ (Pair (Right (Left (Right Unit))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039920.246 units remaining) + - location: 43 (remaining gas: 1039933.356 units remaining) [ (Right (Left (Right Unit))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039920.236 units remaining) + - location: 44 (remaining gas: 1039933.346 units remaining) [ (Left (Right Unit)) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039920.226 units remaining) + - location: 60 (remaining gas: 1039933.336 units remaining) [ (Right Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 62 (remaining gas: 1039920.216 units remaining) + - location: 62 (remaining gas: 1039933.326 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) (Right Unit) ] - - location: 63 (remaining gas: 1039920.206 units remaining) + - location: 63 (remaining gas: 1039933.316 units remaining) [ (Right Unit) ] - - location: 60 (remaining gas: 1039920.191 units remaining) + - location: 60 (remaining gas: 1039933.306 units remaining) [ (Right Unit) ] - - location: 44 (remaining gas: 1039920.176 units remaining) + - location: 44 (remaining gas: 1039933.296 units remaining) [ (Right Unit) ] - - location: 151 (remaining gas: 1039920.161 units remaining) + - location: 151 (remaining gas: 1039933.286 units remaining) [ {} (Right Unit) ] - - location: 153 (remaining gas: 1039920.146 units remaining) + - location: 153 (remaining gas: 1039933.276 units remaining) [ (Pair {} (Right Unit)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Right.d336ca1903.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Right.d336ca1903.out" index 6e81578b1801..8ac7b958247b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Right.d336ca1903.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Right.d336ca1903.out" @@ -10,74 +10,74 @@ big_map diff New map(4) of type (big_map string string) Unset map(4)["1"] trace - - location: 43 (remaining gas: 1039920.252 units remaining) + - location: 43 (remaining gas: 1039933.362 units remaining) [ (Pair (Right (Right (Right (Right { "1" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039920.242 units remaining) + - location: 43 (remaining gas: 1039933.352 units remaining) [ (Right (Right (Right (Right { "1" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039920.232 units remaining) + - location: 44 (remaining gas: 1039933.342 units remaining) [ (Right (Right (Right { "1" }))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039920.222 units remaining) + - location: 60 (remaining gas: 1039933.332 units remaining) [ (Right (Right { "1" })) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039920.212 units remaining) + - location: 65 (remaining gas: 1039933.322 units remaining) [ (Right { "1" }) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039920.202 units remaining) + - location: 108 (remaining gas: 1039933.312 units remaining) [ { "1" } (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 131 (remaining gas: 1039920.187 units remaining) + - location: 131 (remaining gas: 1039933.302 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 134 (remaining gas: 1039920.177 units remaining) + - location: 134 (remaining gas: 1039933.292 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 134 (remaining gas: 1039920.162 units remaining) + - location: 134 (remaining gas: 1039933.282 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 140 (remaining gas: 1039920.152 units remaining) + - location: 140 (remaining gas: 1039933.272 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 131 (remaining gas: 1039920.122 units remaining) + - location: 131 (remaining gas: 1039933.252 units remaining) [ { "1" } { Elt "1" "one" } { Elt "2" "two" } ] - - location: 141 (remaining gas: 1039920.122 units remaining) + - location: 141 (remaining gas: 1039933.252 units remaining) [ "1" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 143 (remaining gas: 1039920.107 units remaining) + - location: 143 (remaining gas: 1039933.242 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 145 (remaining gas: 1039920.092 units remaining) + - location: 145 (remaining gas: 1039933.232 units remaining) [ None { Elt "1" "one" } { Elt "2" "two" } ] - - location: 143 (remaining gas: 1039920.062 units remaining) + - location: 143 (remaining gas: 1039933.212 units remaining) [ "1" None { Elt "1" "one" } { Elt "2" "two" } ] - - location: 147 (remaining gas: 1039919.130 units remaining) + - location: 147 (remaining gas: 1039932.355 units remaining) [ {} { Elt "2" "two" } ] - - location: 141 (remaining gas: 1039919.115 units remaining) + - location: 141 (remaining gas: 1039932.345 units remaining) [ {} { Elt "2" "two" } ] - - location: 148 (remaining gas: 1039919.100 units remaining) + - location: 148 (remaining gas: 1039932.335 units remaining) [ (Pair {} { Elt "2" "two" }) ] - - location: 149 (remaining gas: 1039919.085 units remaining) + - location: 149 (remaining gas: 1039932.325 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039919.070 units remaining) + - location: 108 (remaining gas: 1039932.315 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039919.055 units remaining) + - location: 65 (remaining gas: 1039932.305 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039919.040 units remaining) + - location: 60 (remaining gas: 1039932.295 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039919.025 units remaining) + - location: 44 (remaining gas: 1039932.285 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 151 (remaining gas: 1039919.010 units remaining) + - location: 151 (remaining gas: 1039932.275 units remaining) [ {} (Left (Pair {} { Elt "2" "two" })) ] - - location: 153 (remaining gas: 1039918.995 units remaining) + - location: 153 (remaining gas: 1039932.265 units remaining) [ (Pair {} (Left (Pair {} { Elt "2" "two" }))) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Right Unit)-(Right (Right (Left (Pair { Pair \"foo\" \"bar\" } { P.7f2ee47600.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Right Unit)-(Right (Right (Left (Pair { Pair \"foo\" \"bar\" } { P.7f2ee47600.out" index e3e4f07ed88f..72ec13723338 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Right Unit)-(Right (Right (Left (Pair { Pair \"foo\" \"bar\" } { P.7f2ee47600.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Right Unit)-(Right (Right (Left (Pair { Pair \"foo\" \"bar\" } { P.7f2ee47600.out" @@ -10,126 +10,126 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["foo"] to "bar" trace - - location: 43 (remaining gas: 1039922.534 units remaining) + - location: 43 (remaining gas: 1039935.494 units remaining) [ (Pair (Right (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })))) (Right Unit)) ] - - location: 43 (remaining gas: 1039922.524 units remaining) + - location: 43 (remaining gas: 1039935.484 units remaining) [ (Right (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })))) (Right Unit) ] - - location: 44 (remaining gas: 1039922.514 units remaining) + - location: 44 (remaining gas: 1039935.474 units remaining) [ (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }))) (Right Unit) ] - - location: 60 (remaining gas: 1039922.504 units remaining) + - location: 60 (remaining gas: 1039935.464 units remaining) [ (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })) (Right Unit) ] - - location: 65 (remaining gas: 1039922.494 units remaining) + - location: 65 (remaining gas: 1039935.454 units remaining) [ (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }) (Right Unit) ] - - location: 67 (remaining gas: 1039922.479 units remaining) + - location: 67 (remaining gas: 1039935.444 units remaining) [ (Right Unit) ] - - location: 70 (remaining gas: 1039922.469 units remaining) + - location: 70 (remaining gas: 1039935.434 units remaining) [ Unit ] - - location: 70 (remaining gas: 1039922.454 units remaining) + - location: 70 (remaining gas: 1039935.424 units remaining) [ Unit ] - - location: 76 (remaining gas: 1039922.444 units remaining) + - location: 76 (remaining gas: 1039935.414 units remaining) [ ] - - location: 67 (remaining gas: 1039922.414 units remaining) + - location: 67 (remaining gas: 1039935.394 units remaining) [ (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }) ] - - location: 77 (remaining gas: 1039922.404 units remaining) + - location: 77 (remaining gas: 1039935.384 units remaining) [ { Pair "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 78 (remaining gas: 1039922.389 units remaining) + - location: 78 (remaining gas: 1039935.374 units remaining) [ { Pair "gaz" "baz" } ] - - location: 80 (remaining gas: 1039922.374 units remaining) + - location: 80 (remaining gas: 1039935.364 units remaining) [ {} { Pair "gaz" "baz" } ] - - location: 78 (remaining gas: 1039922.344 units remaining) + - location: 78 (remaining gas: 1039935.344 units remaining) [ { Pair "foo" "bar" } {} { Pair "gaz" "baz" } ] - - location: 83 (remaining gas: 1039922.344 units remaining) + - location: 83 (remaining gas: 1039935.344 units remaining) [ (Pair "foo" "bar") {} { Pair "gaz" "baz" } ] - - location: 85 (remaining gas: 1039922.334 units remaining) + - location: 85 (remaining gas: 1039935.334 units remaining) [ "foo" "bar" {} { Pair "gaz" "baz" } ] - - location: 86 (remaining gas: 1039922.319 units remaining) + - location: 86 (remaining gas: 1039935.324 units remaining) [ "bar" {} { Pair "gaz" "baz" } ] - - location: 88 (remaining gas: 1039922.304 units remaining) + - location: 88 (remaining gas: 1039935.314 units remaining) [ (Some "bar") {} { Pair "gaz" "baz" } ] - - location: 86 (remaining gas: 1039922.274 units remaining) + - location: 86 (remaining gas: 1039935.294 units remaining) [ "foo" (Some "bar") {} { Pair "gaz" "baz" } ] - - location: 89 (remaining gas: 1039921.276 units remaining) + - location: 89 (remaining gas: 1039934.371 units remaining) [ { Elt "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 83 (remaining gas: 1039921.261 units remaining) + - location: 83 (remaining gas: 1039934.361 units remaining) [ { Elt "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 90 (remaining gas: 1039921.251 units remaining) + - location: 90 (remaining gas: 1039934.351 units remaining) [ { Pair "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 91 (remaining gas: 1039921.236 units remaining) + - location: 91 (remaining gas: 1039934.341 units remaining) [ { Elt "foo" "bar" } ] - - location: 93 (remaining gas: 1039921.221 units remaining) + - location: 93 (remaining gas: 1039934.331 units remaining) [ {} { Elt "foo" "bar" } ] - - location: 91 (remaining gas: 1039921.191 units remaining) + - location: 91 (remaining gas: 1039934.311 units remaining) [ { Pair "gaz" "baz" } {} { Elt "foo" "bar" } ] - - location: 96 (remaining gas: 1039921.191 units remaining) + - location: 96 (remaining gas: 1039934.311 units remaining) [ (Pair "gaz" "baz") {} { Elt "foo" "bar" } ] - - location: 98 (remaining gas: 1039921.181 units remaining) + - location: 98 (remaining gas: 1039934.301 units remaining) [ "gaz" "baz" {} { Elt "foo" "bar" } ] - - location: 99 (remaining gas: 1039921.166 units remaining) + - location: 99 (remaining gas: 1039934.291 units remaining) [ "baz" {} { Elt "foo" "bar" } ] - - location: 101 (remaining gas: 1039921.151 units remaining) + - location: 101 (remaining gas: 1039934.281 units remaining) [ (Some "baz") {} { Elt "foo" "bar" } ] - - location: 99 (remaining gas: 1039921.121 units remaining) + - location: 99 (remaining gas: 1039934.261 units remaining) [ "gaz" (Some "baz") {} { Elt "foo" "bar" } ] - - location: 102 (remaining gas: 1039920.123 units remaining) + - location: 102 (remaining gas: 1039933.338 units remaining) [ { Elt "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 96 (remaining gas: 1039920.108 units remaining) + - location: 96 (remaining gas: 1039933.328 units remaining) [ { Elt "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 103 (remaining gas: 1039920.098 units remaining) + - location: 103 (remaining gas: 1039933.318 units remaining) [ { Elt "foo" "bar" } { Elt "gaz" "baz" } ] - - location: 104 (remaining gas: 1039920.083 units remaining) + - location: 104 (remaining gas: 1039933.308 units remaining) [ (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" }) ] - - location: 105 (remaining gas: 1039920.068 units remaining) + - location: 105 (remaining gas: 1039933.298 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 65 (remaining gas: 1039920.053 units remaining) + - location: 65 (remaining gas: 1039933.288 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 60 (remaining gas: 1039920.038 units remaining) + - location: 60 (remaining gas: 1039933.278 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 44 (remaining gas: 1039920.023 units remaining) + - location: 44 (remaining gas: 1039933.268 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 151 (remaining gas: 1039920.008 units remaining) + - location: 151 (remaining gas: 1039933.258 units remaining) [ {} (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 153 (remaining gas: 1039919.993 units remaining) + - location: 153 (remaining gas: 1039933.248 units remaining) [ (Pair {} (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" }))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_check_signature.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_check_signature.out index 988fdadbbf4d..8c16c2c9f30c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_check_signature.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_check_signature.out @@ -8,18 +8,18 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039651.905 units remaining) + - location: 9 (remaining gas: 1039652.865 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 9 (remaining gas: 1039651.895 units remaining) + - location: 9 (remaining gas: 1039652.855 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 10 (remaining gas: 1039651.885 units remaining) + - location: 10 (remaining gas: 1039652.845 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") @@ -29,20 +29,20 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 11 (remaining gas: 1039651.870 units remaining) + - location: 11 (remaining gas: 1039652.835 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 13 (remaining gas: 1039651.860 units remaining) + - location: 13 (remaining gas: 1039652.825 units remaining) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 14 (remaining gas: 1039651.850 units remaining) + - location: 14 (remaining gas: 1039652.815 units remaining) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" @@ -50,36 +50,36 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 15 (remaining gas: 1039651.840 units remaining) + - location: 15 (remaining gas: 1039652.805 units remaining) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 16 (remaining gas: 1039651.825 units remaining) + - location: 16 (remaining gas: 1039652.795 units remaining) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 18 (remaining gas: 1039651.815 units remaining) + - location: 18 (remaining gas: 1039652.785 units remaining) [ "hello" (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 19 (remaining gas: 1039651.324 units remaining) + - location: 19 (remaining gas: 1039652.294 units remaining) [ 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 16 (remaining gas: 1039651.294 units remaining) + - location: 16 (remaining gas: 1039652.274 units remaining) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 11 (remaining gas: 1039651.264 units remaining) + - location: 11 (remaining gas: 1039652.254 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") @@ -88,34 +88,34 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 20 (remaining gas: 1039651.254 units remaining) + - location: 20 (remaining gas: 1039652.244 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 21 (remaining gas: 1039585.442 units remaining) + - location: 21 (remaining gas: 1039586.432 units remaining) [ True (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 22 (remaining gas: 1039585.432 units remaining) + - location: 22 (remaining gas: 1039586.422 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 22 (remaining gas: 1039585.417 units remaining) + - location: 22 (remaining gas: 1039586.412 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 28 (remaining gas: 1039585.407 units remaining) + - location: 28 (remaining gas: 1039586.402 units remaining) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 29 (remaining gas: 1039585.392 units remaining) + - location: 29 (remaining gas: 1039586.392 units remaining) [ {} (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 31 (remaining gas: 1039585.377 units remaining) + - location: 31 (remaining gas: 1039586.382 units remaining) [ (Pair {} "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] @@ -136,18 +136,18 @@ At line 8 characters 14 to 18, script reached FAILWITH instruction with Unit trace - - location: 9 (remaining gas: 1039651.915 units remaining) + - location: 9 (remaining gas: 1039652.875 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 9 (remaining gas: 1039651.905 units remaining) + - location: 9 (remaining gas: 1039652.865 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 10 (remaining gas: 1039651.895 units remaining) + - location: 10 (remaining gas: 1039652.855 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") @@ -157,20 +157,20 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 11 (remaining gas: 1039651.880 units remaining) + - location: 11 (remaining gas: 1039652.845 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 13 (remaining gas: 1039651.870 units remaining) + - location: 13 (remaining gas: 1039652.835 units remaining) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 14 (remaining gas: 1039651.860 units remaining) + - location: 14 (remaining gas: 1039652.825 units remaining) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" @@ -178,36 +178,36 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 15 (remaining gas: 1039651.850 units remaining) + - location: 15 (remaining gas: 1039652.815 units remaining) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 16 (remaining gas: 1039651.835 units remaining) + - location: 16 (remaining gas: 1039652.805 units remaining) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 18 (remaining gas: 1039651.825 units remaining) + - location: 18 (remaining gas: 1039652.795 units remaining) [ "abcd" (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 19 (remaining gas: 1039651.367 units remaining) + - location: 19 (remaining gas: 1039652.337 units remaining) [ 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 16 (remaining gas: 1039651.337 units remaining) + - location: 16 (remaining gas: 1039652.317 units remaining) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 11 (remaining gas: 1039651.307 units remaining) + - location: 11 (remaining gas: 1039652.297 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") @@ -216,23 +216,23 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 20 (remaining gas: 1039651.297 units remaining) + - location: 20 (remaining gas: 1039652.287 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 21 (remaining gas: 1039585.486 units remaining) + - location: 21 (remaining gas: 1039586.476 units remaining) [ False (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 22 (remaining gas: 1039585.476 units remaining) + - location: 22 (remaining gas: 1039586.466 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 26 (remaining gas: 1039585.466 units remaining) + - location: 26 (remaining gas: 1039586.456 units remaining) [ Unit (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out index 1e5ceba092ac..0c02c049c3c9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-0-Unit].out @@ -7,32 +7,32 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039988.329 units remaining) + - location: 7 (remaining gas: 1039989.129 units remaining) [ (Pair 0 Unit) ] - - location: 7 (remaining gas: 1039988.319 units remaining) + - location: 7 (remaining gas: 1039989.119 units remaining) [ 0 ] - - location: 8 (remaining gas: 1039988.309 units remaining) + - location: 8 (remaining gas: 1039989.109 units remaining) [ 0 0 ] - - location: 9 (remaining gas: 1039988.269 units remaining) + - location: 9 (remaining gas: 1039989.084 units remaining) [ 0 0 ] - - location: 10 (remaining gas: 1039988.244 units remaining) + - location: 10 (remaining gas: 1039989.064 units remaining) [ 0 0 ] - - location: 11 (remaining gas: 1039988.209 units remaining) + - location: 11 (remaining gas: 1039989.029 units remaining) [ 0 ] - - location: 13 (remaining gas: 1039988.194 units remaining) + - location: 13 (remaining gas: 1039989.019 units remaining) [ True ] - - location: 14 (remaining gas: 1039988.184 units remaining) + - location: 14 (remaining gas: 1039989.009 units remaining) [ ] - - location: 14 (remaining gas: 1039988.169 units remaining) + - location: 14 (remaining gas: 1039988.999 units remaining) [ ] - - location: 20 (remaining gas: 1039988.159 units remaining) + - location: 20 (remaining gas: 1039988.989 units remaining) [ Unit ] - - location: 21 (remaining gas: 1039988.144 units remaining) + - location: 21 (remaining gas: 1039988.979 units remaining) [ {} Unit ] - - location: 23 (remaining gas: 1039988.129 units remaining) + - location: 23 (remaining gas: 1039988.969 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out index 65f79920e8a4..2858c1e4faca 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-12039123919239192312931-Unit].out @@ -7,32 +7,32 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039988.329 units remaining) + - location: 7 (remaining gas: 1039989.129 units remaining) [ (Pair 12039123919239192312931 Unit) ] - - location: 7 (remaining gas: 1039988.319 units remaining) + - location: 7 (remaining gas: 1039989.119 units remaining) [ 12039123919239192312931 ] - - location: 8 (remaining gas: 1039988.309 units remaining) + - location: 8 (remaining gas: 1039989.109 units remaining) [ 12039123919239192312931 12039123919239192312931 ] - - location: 9 (remaining gas: 1039988.269 units remaining) + - location: 9 (remaining gas: 1039989.084 units remaining) [ -12039123919239192312931 12039123919239192312931 ] - - location: 10 (remaining gas: 1039988.244 units remaining) + - location: 10 (remaining gas: 1039989.064 units remaining) [ 12039123919239192312931 12039123919239192312931 ] - - location: 11 (remaining gas: 1039988.209 units remaining) + - location: 11 (remaining gas: 1039989.029 units remaining) [ 0 ] - - location: 13 (remaining gas: 1039988.194 units remaining) + - location: 13 (remaining gas: 1039989.019 units remaining) [ True ] - - location: 14 (remaining gas: 1039988.184 units remaining) + - location: 14 (remaining gas: 1039989.009 units remaining) [ ] - - location: 14 (remaining gas: 1039988.169 units remaining) + - location: 14 (remaining gas: 1039988.999 units remaining) [ ] - - location: 20 (remaining gas: 1039988.159 units remaining) + - location: 20 (remaining gas: 1039988.989 units remaining) [ Unit ] - - location: 21 (remaining gas: 1039988.144 units remaining) + - location: 21 (remaining gas: 1039988.979 units remaining) [ {} Unit ] - - location: 23 (remaining gas: 1039988.129 units remaining) + - location: 23 (remaining gas: 1039988.969 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out index e3f8e94b6151..d525986344da 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[abs.tz-Unit-948-Unit].out @@ -7,32 +7,32 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039988.329 units remaining) + - location: 7 (remaining gas: 1039989.129 units remaining) [ (Pair 948 Unit) ] - - location: 7 (remaining gas: 1039988.319 units remaining) + - location: 7 (remaining gas: 1039989.119 units remaining) [ 948 ] - - location: 8 (remaining gas: 1039988.309 units remaining) + - location: 8 (remaining gas: 1039989.109 units remaining) [ 948 948 ] - - location: 9 (remaining gas: 1039988.269 units remaining) + - location: 9 (remaining gas: 1039989.084 units remaining) [ -948 948 ] - - location: 10 (remaining gas: 1039988.244 units remaining) + - location: 10 (remaining gas: 1039989.064 units remaining) [ 948 948 ] - - location: 11 (remaining gas: 1039988.209 units remaining) + - location: 11 (remaining gas: 1039989.029 units remaining) [ 0 ] - - location: 13 (remaining gas: 1039988.194 units remaining) + - location: 13 (remaining gas: 1039989.019 units remaining) [ True ] - - location: 14 (remaining gas: 1039988.184 units remaining) + - location: 14 (remaining gas: 1039989.009 units remaining) [ ] - - location: 14 (remaining gas: 1039988.169 units remaining) + - location: 14 (remaining gas: 1039988.999 units remaining) [ ] - - location: 20 (remaining gas: 1039988.159 units remaining) + - location: 20 (remaining gas: 1039988.989 units remaining) [ Unit ] - - location: 21 (remaining gas: 1039988.144 units remaining) + - location: 21 (remaining gas: 1039988.979 units remaining) [ {} Unit ] - - location: 23 (remaining gas: 1039988.129 units remaining) + - location: 23 (remaining gas: 1039988.969 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out index 6c4e5eb5d75f..c677be7050fd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add.tz-Unit-Unit-Unit].out @@ -7,205 +7,205 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039926.048 units remaining) + - location: 7 (remaining gas: 1039925.048 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039926.038 units remaining) + - location: 7 (remaining gas: 1039925.038 units remaining) [ Unit ] - - location: 8 (remaining gas: 1039926.028 units remaining) + - location: 8 (remaining gas: 1039925.028 units remaining) [ 2 Unit ] - - location: 11 (remaining gas: 1039926.018 units remaining) + - location: 11 (remaining gas: 1039925.018 units remaining) [ 2 2 Unit ] - - location: 14 (remaining gas: 1039925.963 units remaining) + - location: 14 (remaining gas: 1039924.983 units remaining) [ 4 Unit ] - - location: 15 (remaining gas: 1039925.953 units remaining) + - location: 15 (remaining gas: 1039924.973 units remaining) [ 4 4 Unit ] - - location: 20 (remaining gas: 1039925.918 units remaining) + - location: 20 (remaining gas: 1039924.938 units remaining) [ 0 Unit ] - - location: 21 (remaining gas: 1039925.903 units remaining) + - location: 21 (remaining gas: 1039924.928 units remaining) [ True Unit ] - - location: 22 (remaining gas: 1039925.893 units remaining) + - location: 22 (remaining gas: 1039924.918 units remaining) [ Unit ] - - location: 22 (remaining gas: 1039925.878 units remaining) + - location: 22 (remaining gas: 1039924.908 units remaining) [ Unit ] - - location: 28 (remaining gas: 1039925.868 units remaining) + - location: 28 (remaining gas: 1039924.898 units remaining) [ 2 Unit ] - - location: 31 (remaining gas: 1039925.858 units remaining) + - location: 31 (remaining gas: 1039924.888 units remaining) [ 2 2 Unit ] - - location: 34 (remaining gas: 1039925.803 units remaining) + - location: 34 (remaining gas: 1039924.853 units remaining) [ 4 Unit ] - - location: 35 (remaining gas: 1039925.793 units remaining) + - location: 35 (remaining gas: 1039924.843 units remaining) [ 4 4 Unit ] - - location: 40 (remaining gas: 1039925.758 units remaining) + - location: 40 (remaining gas: 1039924.808 units remaining) [ 0 Unit ] - - location: 41 (remaining gas: 1039925.743 units remaining) + - location: 41 (remaining gas: 1039924.798 units remaining) [ True Unit ] - - location: 42 (remaining gas: 1039925.733 units remaining) + - location: 42 (remaining gas: 1039924.788 units remaining) [ Unit ] - - location: 42 (remaining gas: 1039925.718 units remaining) + - location: 42 (remaining gas: 1039924.778 units remaining) [ Unit ] - - location: 48 (remaining gas: 1039925.708 units remaining) + - location: 48 (remaining gas: 1039924.768 units remaining) [ 2 Unit ] - - location: 51 (remaining gas: 1039925.698 units remaining) + - location: 51 (remaining gas: 1039924.758 units remaining) [ 2 2 Unit ] - - location: 54 (remaining gas: 1039925.643 units remaining) + - location: 54 (remaining gas: 1039924.723 units remaining) [ 4 Unit ] - - location: 55 (remaining gas: 1039925.633 units remaining) + - location: 55 (remaining gas: 1039924.713 units remaining) [ 4 4 Unit ] - - location: 60 (remaining gas: 1039925.598 units remaining) + - location: 60 (remaining gas: 1039924.678 units remaining) [ 0 Unit ] - - location: 61 (remaining gas: 1039925.583 units remaining) + - location: 61 (remaining gas: 1039924.668 units remaining) [ True Unit ] - - location: 62 (remaining gas: 1039925.573 units remaining) + - location: 62 (remaining gas: 1039924.658 units remaining) [ Unit ] - - location: 62 (remaining gas: 1039925.558 units remaining) + - location: 62 (remaining gas: 1039924.648 units remaining) [ Unit ] - - location: 68 (remaining gas: 1039925.548 units remaining) + - location: 68 (remaining gas: 1039924.638 units remaining) [ 2 Unit ] - - location: 71 (remaining gas: 1039925.538 units remaining) + - location: 71 (remaining gas: 1039924.628 units remaining) [ 2 2 Unit ] - - location: 74 (remaining gas: 1039925.483 units remaining) + - location: 74 (remaining gas: 1039924.593 units remaining) [ 4 Unit ] - - location: 75 (remaining gas: 1039925.473 units remaining) + - location: 75 (remaining gas: 1039924.583 units remaining) [ 4 4 Unit ] - - location: 80 (remaining gas: 1039925.438 units remaining) + - location: 80 (remaining gas: 1039924.548 units remaining) [ 0 Unit ] - - location: 81 (remaining gas: 1039925.423 units remaining) + - location: 81 (remaining gas: 1039924.538 units remaining) [ True Unit ] - - location: 82 (remaining gas: 1039925.413 units remaining) + - location: 82 (remaining gas: 1039924.528 units remaining) [ Unit ] - - location: 82 (remaining gas: 1039925.398 units remaining) + - location: 82 (remaining gas: 1039924.518 units remaining) [ Unit ] - - location: 88 (remaining gas: 1039925.388 units remaining) + - location: 88 (remaining gas: 1039924.508 units remaining) [ 2 Unit ] - - location: 91 (remaining gas: 1039925.378 units remaining) + - location: 91 (remaining gas: 1039924.498 units remaining) [ 2 2 Unit ] - - location: 94 (remaining gas: 1039925.323 units remaining) + - location: 94 (remaining gas: 1039924.463 units remaining) [ 4 Unit ] - - location: 95 (remaining gas: 1039925.313 units remaining) + - location: 95 (remaining gas: 1039924.453 units remaining) [ 4 4 Unit ] - - location: 100 (remaining gas: 1039925.278 units remaining) + - location: 100 (remaining gas: 1039924.418 units remaining) [ 0 Unit ] - - location: 101 (remaining gas: 1039925.263 units remaining) + - location: 101 (remaining gas: 1039924.408 units remaining) [ True Unit ] - - location: 102 (remaining gas: 1039925.253 units remaining) + - location: 102 (remaining gas: 1039924.398 units remaining) [ Unit ] - - location: 102 (remaining gas: 1039925.238 units remaining) + - location: 102 (remaining gas: 1039924.388 units remaining) [ Unit ] - - location: 108 (remaining gas: 1039925.228 units remaining) + - location: 108 (remaining gas: 1039924.378 units remaining) [ 60 Unit ] - - location: 111 (remaining gas: 1039925.218 units remaining) + - location: 111 (remaining gas: 1039924.368 units remaining) [ "2019-09-09T12:08:37Z" 60 Unit ] - - location: 114 (remaining gas: 1039925.163 units remaining) + - location: 114 (remaining gas: 1039924.333 units remaining) [ "2019-09-09T12:09:37Z" Unit ] - - location: 115 (remaining gas: 1039925.153 units remaining) + - location: 115 (remaining gas: 1039924.323 units remaining) [ "2019-09-09T12:09:37Z" "2019-09-09T12:09:37Z" Unit ] - - location: 120 (remaining gas: 1039925.118 units remaining) + - location: 120 (remaining gas: 1039924.288 units remaining) [ 0 Unit ] - - location: 121 (remaining gas: 1039925.103 units remaining) + - location: 121 (remaining gas: 1039924.278 units remaining) [ True Unit ] - - location: 122 (remaining gas: 1039925.093 units remaining) + - location: 122 (remaining gas: 1039924.268 units remaining) [ Unit ] - - location: 122 (remaining gas: 1039925.078 units remaining) + - location: 122 (remaining gas: 1039924.258 units remaining) [ Unit ] - - location: 128 (remaining gas: 1039925.068 units remaining) + - location: 128 (remaining gas: 1039924.248 units remaining) [ "2019-09-09T12:08:37Z" Unit ] - - location: 131 (remaining gas: 1039925.058 units remaining) + - location: 131 (remaining gas: 1039924.238 units remaining) [ 60 "2019-09-09T12:08:37Z" Unit ] - - location: 134 (remaining gas: 1039925.003 units remaining) + - location: 134 (remaining gas: 1039924.203 units remaining) [ "2019-09-09T12:09:37Z" Unit ] - - location: 135 (remaining gas: 1039924.993 units remaining) + - location: 135 (remaining gas: 1039924.193 units remaining) [ "2019-09-09T12:09:37Z" "2019-09-09T12:09:37Z" Unit ] - - location: 140 (remaining gas: 1039924.958 units remaining) + - location: 140 (remaining gas: 1039924.158 units remaining) [ 0 Unit ] - - location: 141 (remaining gas: 1039924.943 units remaining) + - location: 141 (remaining gas: 1039924.148 units remaining) [ True Unit ] - - location: 142 (remaining gas: 1039924.933 units remaining) + - location: 142 (remaining gas: 1039924.138 units remaining) [ Unit ] - - location: 142 (remaining gas: 1039924.918 units remaining) + - location: 142 (remaining gas: 1039924.128 units remaining) [ Unit ] - - location: 148 (remaining gas: 1039924.908 units remaining) + - location: 148 (remaining gas: 1039924.118 units remaining) [ 1000 Unit ] - - location: 151 (remaining gas: 1039924.898 units remaining) + - location: 151 (remaining gas: 1039924.108 units remaining) [ 1000 1000 Unit ] - - location: 154 (remaining gas: 1039924.878 units remaining) + - location: 154 (remaining gas: 1039924.088 units remaining) [ 2000 Unit ] - - location: 155 (remaining gas: 1039924.868 units remaining) + - location: 155 (remaining gas: 1039924.078 units remaining) [ 2000 2000 Unit ] - - location: 160 (remaining gas: 1039924.833 units remaining) + - location: 160 (remaining gas: 1039924.043 units remaining) [ 0 Unit ] - - location: 161 (remaining gas: 1039924.818 units remaining) + - location: 161 (remaining gas: 1039924.033 units remaining) [ True Unit ] - - location: 162 (remaining gas: 1039924.808 units remaining) + - location: 162 (remaining gas: 1039924.023 units remaining) [ Unit ] - - location: 162 (remaining gas: 1039924.793 units remaining) + - location: 162 (remaining gas: 1039924.013 units remaining) [ Unit ] - - location: 168 (remaining gas: 1039924.778 units remaining) + - location: 168 (remaining gas: 1039924.003 units remaining) [ {} Unit ] - - location: 170 (remaining gas: 1039924.763 units remaining) + - location: 170 (remaining gas: 1039923.993 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out index 4adc7e217f79..215463158df9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x00 0x00-(Some 0x0000000.3c2de60480.out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039992.489 units remaining) + - location: 10 (remaining gas: 1039993.349 units remaining) [ (Pair (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (remaining gas: 1039992.479 units remaining) + - location: 10 (remaining gas: 1039993.339 units remaining) [ (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (remaining gas: 1039992.469 units remaining) + - location: 11 (remaining gas: 1039993.329 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039992.424 units remaining) + - location: 12 (remaining gas: 1039993.299 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (remaining gas: 1039992.409 units remaining) + - location: 13 (remaining gas: 1039993.289 units remaining) [ (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (remaining gas: 1039992.394 units remaining) + - location: 14 (remaining gas: 1039993.279 units remaining) [ {} (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (remaining gas: 1039992.379 units remaining) + - location: 16 (remaining gas: 1039993.269 units remaining) [ (Pair {} (Some 0x0000000000000000000000000000000000000000000000000000000000000000)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out index d5b4c7a3da2d..aba515bd6260 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x01 0x00-(Some 0x0100000.12b2c1172b.out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039992.489 units remaining) + - location: 10 (remaining gas: 1039993.349 units remaining) [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (remaining gas: 1039992.479 units remaining) + - location: 10 (remaining gas: 1039993.339 units remaining) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (remaining gas: 1039992.469 units remaining) + - location: 11 (remaining gas: 1039993.329 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039992.424 units remaining) + - location: 12 (remaining gas: 1039993.299 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (remaining gas: 1039992.409 units remaining) + - location: 13 (remaining gas: 1039993.289 units remaining) [ (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (remaining gas: 1039992.394 units remaining) + - location: 14 (remaining gas: 1039993.279 units remaining) [ {} (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (remaining gas: 1039992.379 units remaining) + - location: 16 (remaining gas: 1039993.269 units remaining) [ (Pair {} (Some 0x0100000000000000000000000000000000000000000000000000000000000000)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out index 0ad0c9d1a62a..4e85dc4661e4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x00-(Some 0x010.0e44fc6f40.out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039992.489 units remaining) + - location: 10 (remaining gas: 1039993.349 units remaining) [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (remaining gas: 1039992.479 units remaining) + - location: 10 (remaining gas: 1039993.339 units remaining) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (remaining gas: 1039992.469 units remaining) + - location: 11 (remaining gas: 1039993.329 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039992.424 units remaining) + - location: 12 (remaining gas: 1039993.299 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (remaining gas: 1039992.409 units remaining) + - location: 13 (remaining gas: 1039993.289 units remaining) [ (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (remaining gas: 1039992.394 units remaining) + - location: 14 (remaining gas: 1039993.279 units remaining) [ {} (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (remaining gas: 1039992.379 units remaining) + - location: 16 (remaining gas: 1039993.269 units remaining) [ (Pair {} (Some 0x0100000000000000000000000000000000000000000000000000000000000000)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out index c7760b07d33f..2d0b82bf8a70 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_bls12_381_fr.tz-None-Pair 0x010000 0x010000-(Some 0.7e0ed229a3.out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039992.489 units remaining) + - location: 10 (remaining gas: 1039993.349 units remaining) [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000) None) ] - - location: 10 (remaining gas: 1039992.479 units remaining) + - location: 10 (remaining gas: 1039993.339 units remaining) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (remaining gas: 1039992.469 units remaining) + - location: 11 (remaining gas: 1039993.329 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039992.424 units remaining) + - location: 12 (remaining gas: 1039993.299 units remaining) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (remaining gas: 1039992.409 units remaining) + - location: 13 (remaining gas: 1039993.289 units remaining) [ (Some 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (remaining gas: 1039992.394 units remaining) + - location: 14 (remaining gas: 1039993.279 units remaining) [ {} (Some 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (remaining gas: 1039992.379 units remaining) + - location: 16 (remaining gas: 1039993.269 units remaining) [ (Pair {} (Some 0x0200000000000000000000000000000000000000000000000000000000000000)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" index a7b55ad101eb..74d45201381a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair -100 100)-(Some \"1970.7c1b1e4e5b.out" @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.518 units remaining) + - location: 10 (remaining gas: 1039991.318 units remaining) [ (Pair (Pair -100 "1970-01-01T00:01:40Z") None) ] - - location: 10 (remaining gas: 1039990.508 units remaining) + - location: 10 (remaining gas: 1039991.308 units remaining) [ (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 11 (remaining gas: 1039990.498 units remaining) + - location: 11 (remaining gas: 1039991.298 units remaining) [ (Pair -100 "1970-01-01T00:01:40Z") (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 12 (remaining gas: 1039990.488 units remaining) + - location: 12 (remaining gas: 1039991.288 units remaining) [ -100 (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 13 (remaining gas: 1039990.473 units remaining) + - location: 13 (remaining gas: 1039991.278 units remaining) [ (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 15 (remaining gas: 1039990.463 units remaining) + - location: 15 (remaining gas: 1039991.268 units remaining) [ "1970-01-01T00:01:40Z" ] - - location: 13 (remaining gas: 1039990.433 units remaining) + - location: 13 (remaining gas: 1039991.248 units remaining) [ -100 "1970-01-01T00:01:40Z" ] - - location: 16 (remaining gas: 1039990.378 units remaining) + - location: 16 (remaining gas: 1039991.213 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039990.363 units remaining) + - location: 17 (remaining gas: 1039991.203 units remaining) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039990.348 units remaining) + - location: 18 (remaining gas: 1039991.193 units remaining) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039990.333 units remaining) + - location: 20 (remaining gas: 1039991.183 units remaining) [ (Pair {} (Some "1970-01-01T00:00:00Z")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" index 03fe3abf21d9..38626a779e69 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 0 \"1970-01-01T00:00:0.528ed42c01.out" @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.418 units remaining) + - location: 10 (remaining gas: 1039990.488 units remaining) [ (Pair (Pair 0 "1970-01-01T00:00:00Z") None) ] - - location: 10 (remaining gas: 1039990.408 units remaining) + - location: 10 (remaining gas: 1039990.478 units remaining) [ (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 11 (remaining gas: 1039990.398 units remaining) + - location: 11 (remaining gas: 1039990.468 units remaining) [ (Pair 0 "1970-01-01T00:00:00Z") (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 12 (remaining gas: 1039990.388 units remaining) + - location: 12 (remaining gas: 1039990.458 units remaining) [ 0 (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 13 (remaining gas: 1039990.373 units remaining) + - location: 13 (remaining gas: 1039990.448 units remaining) [ (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 15 (remaining gas: 1039990.363 units remaining) + - location: 15 (remaining gas: 1039990.438 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 13 (remaining gas: 1039990.333 units remaining) + - location: 13 (remaining gas: 1039990.418 units remaining) [ 0 "1970-01-01T00:00:00Z" ] - - location: 16 (remaining gas: 1039990.278 units remaining) + - location: 16 (remaining gas: 1039990.383 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039990.263 units remaining) + - location: 17 (remaining gas: 1039990.373 units remaining) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039990.248 units remaining) + - location: 18 (remaining gas: 1039990.363 units remaining) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039990.233 units remaining) + - location: 20 (remaining gas: 1039990.353 units remaining) [ (Pair {} (Some "1970-01-01T00:00:00Z")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" index d7bb3fd20250..64cbdaa7e973 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_delta_timestamp.tz-None-(Pair 100 100)-(Some \"1970-.6566111ad2.out" @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.518 units remaining) + - location: 10 (remaining gas: 1039991.318 units remaining) [ (Pair (Pair 100 "1970-01-01T00:01:40Z") None) ] - - location: 10 (remaining gas: 1039990.508 units remaining) + - location: 10 (remaining gas: 1039991.308 units remaining) [ (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 11 (remaining gas: 1039990.498 units remaining) + - location: 11 (remaining gas: 1039991.298 units remaining) [ (Pair 100 "1970-01-01T00:01:40Z") (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 12 (remaining gas: 1039990.488 units remaining) + - location: 12 (remaining gas: 1039991.288 units remaining) [ 100 (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 13 (remaining gas: 1039990.473 units remaining) + - location: 13 (remaining gas: 1039991.278 units remaining) [ (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 15 (remaining gas: 1039990.463 units remaining) + - location: 15 (remaining gas: 1039991.268 units remaining) [ "1970-01-01T00:01:40Z" ] - - location: 13 (remaining gas: 1039990.433 units remaining) + - location: 13 (remaining gas: 1039991.248 units remaining) [ 100 "1970-01-01T00:01:40Z" ] - - location: 16 (remaining gas: 1039990.378 units remaining) + - location: 16 (remaining gas: 1039991.213 units remaining) [ "1970-01-01T00:03:20Z" ] - - location: 17 (remaining gas: 1039990.363 units remaining) + - location: 17 (remaining gas: 1039991.203 units remaining) [ (Some "1970-01-01T00:03:20Z") ] - - location: 18 (remaining gas: 1039990.348 units remaining) + - location: 18 (remaining gas: 1039991.193 units remaining) [ {} (Some "1970-01-01T00:03:20Z") ] - - location: 20 (remaining gas: 1039990.333 units remaining) + - location: 20 (remaining gas: 1039991.183 units remaining) [ (Pair {} (Some "1970-01-01T00:03:20Z")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" index a9be552b3177..db3a3d3726a7 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair \"1970-01-01T00:00:00Z.72c424f3da.out" @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.418 units remaining) + - location: 10 (remaining gas: 1039990.488 units remaining) [ (Pair (Pair "1970-01-01T00:00:00Z" 0) None) ] - - location: 10 (remaining gas: 1039990.408 units remaining) + - location: 10 (remaining gas: 1039990.478 units remaining) [ (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 11 (remaining gas: 1039990.398 units remaining) + - location: 11 (remaining gas: 1039990.468 units remaining) [ (Pair "1970-01-01T00:00:00Z" 0) (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 12 (remaining gas: 1039990.388 units remaining) + - location: 12 (remaining gas: 1039990.458 units remaining) [ "1970-01-01T00:00:00Z" (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 13 (remaining gas: 1039990.373 units remaining) + - location: 13 (remaining gas: 1039990.448 units remaining) [ (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 15 (remaining gas: 1039990.363 units remaining) + - location: 15 (remaining gas: 1039990.438 units remaining) [ 0 ] - - location: 13 (remaining gas: 1039990.333 units remaining) + - location: 13 (remaining gas: 1039990.418 units remaining) [ "1970-01-01T00:00:00Z" 0 ] - - location: 16 (remaining gas: 1039990.278 units remaining) + - location: 16 (remaining gas: 1039990.383 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039990.263 units remaining) + - location: 17 (remaining gas: 1039990.373 units remaining) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039990.248 units remaining) + - location: 18 (remaining gas: 1039990.363 units remaining) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039990.233 units remaining) + - location: 20 (remaining gas: 1039990.353 units remaining) [ (Pair {} (Some "1970-01-01T00:00:00Z")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" index 9177e089c1e8..9b05e56a4781 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 -100)-(Some \"1970.7c4b12e9aa.out" @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.518 units remaining) + - location: 10 (remaining gas: 1039991.318 units remaining) [ (Pair (Pair "1970-01-01T00:01:40Z" -100) None) ] - - location: 10 (remaining gas: 1039990.508 units remaining) + - location: 10 (remaining gas: 1039991.308 units remaining) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 11 (remaining gas: 1039990.498 units remaining) + - location: 11 (remaining gas: 1039991.298 units remaining) [ (Pair "1970-01-01T00:01:40Z" -100) (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 12 (remaining gas: 1039990.488 units remaining) + - location: 12 (remaining gas: 1039991.288 units remaining) [ "1970-01-01T00:01:40Z" (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 13 (remaining gas: 1039990.473 units remaining) + - location: 13 (remaining gas: 1039991.278 units remaining) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 15 (remaining gas: 1039990.463 units remaining) + - location: 15 (remaining gas: 1039991.268 units remaining) [ -100 ] - - location: 13 (remaining gas: 1039990.433 units remaining) + - location: 13 (remaining gas: 1039991.248 units remaining) [ "1970-01-01T00:01:40Z" -100 ] - - location: 16 (remaining gas: 1039990.378 units remaining) + - location: 16 (remaining gas: 1039991.213 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039990.363 units remaining) + - location: 17 (remaining gas: 1039991.203 units remaining) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039990.348 units remaining) + - location: 18 (remaining gas: 1039991.193 units remaining) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039990.333 units remaining) + - location: 20 (remaining gas: 1039991.183 units remaining) [ (Pair {} (Some "1970-01-01T00:00:00Z")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" index e127f44167c8..79e001b50721 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[add_timestamp_delta.tz-None-(Pair 100 100)-(Some \"1970-.af32743640.out" @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.518 units remaining) + - location: 10 (remaining gas: 1039991.318 units remaining) [ (Pair (Pair "1970-01-01T00:01:40Z" 100) None) ] - - location: 10 (remaining gas: 1039990.508 units remaining) + - location: 10 (remaining gas: 1039991.308 units remaining) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 11 (remaining gas: 1039990.498 units remaining) + - location: 11 (remaining gas: 1039991.298 units remaining) [ (Pair "1970-01-01T00:01:40Z" 100) (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 12 (remaining gas: 1039990.488 units remaining) + - location: 12 (remaining gas: 1039991.288 units remaining) [ "1970-01-01T00:01:40Z" (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 13 (remaining gas: 1039990.473 units remaining) + - location: 13 (remaining gas: 1039991.278 units remaining) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 15 (remaining gas: 1039990.463 units remaining) + - location: 15 (remaining gas: 1039991.268 units remaining) [ 100 ] - - location: 13 (remaining gas: 1039990.433 units remaining) + - location: 13 (remaining gas: 1039991.248 units remaining) [ "1970-01-01T00:01:40Z" 100 ] - - location: 16 (remaining gas: 1039990.378 units remaining) + - location: 16 (remaining gas: 1039991.213 units remaining) [ "1970-01-01T00:03:20Z" ] - - location: 17 (remaining gas: 1039990.363 units remaining) + - location: 17 (remaining gas: 1039991.203 units remaining) [ (Some "1970-01-01T00:03:20Z") ] - - location: 18 (remaining gas: 1039990.348 units remaining) + - location: 18 (remaining gas: 1039991.193 units remaining) [ {} (Some "1970-01-01T00:03:20Z") ] - - location: 20 (remaining gas: 1039990.333 units remaining) + - location: 20 (remaining gas: 1039991.183 units remaining) [ (Pair {} (Some "1970-01-01T00:03:20Z")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" index ffc33ab1be2c..c8458a1300a7 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[address.tz-None-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-.f9045c3a04.out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039343.574 units remaining) + - location: 9 (remaining gas: 1039987.934 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" None) ] - - location: 9 (remaining gas: 1039343.564 units remaining) + - location: 9 (remaining gas: 1039987.924 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 10 (remaining gas: 1039343.554 units remaining) + - location: 10 (remaining gas: 1039987.914 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 11 (remaining gas: 1039343.539 units remaining) + - location: 11 (remaining gas: 1039987.904 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 12 (remaining gas: 1039343.524 units remaining) + - location: 12 (remaining gas: 1039987.894 units remaining) [ {} (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 14 (remaining gas: 1039343.509 units remaining) + - location: 14 (remaining gas: 1039987.884 units remaining) [ (Pair {} (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out index c86e6ce5360a..caa1b5e80f67 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False False)-(Some False)].out @@ -7,25 +7,25 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.268 units remaining) + - location: 10 (remaining gas: 1039992.068 units remaining) [ (Pair (Pair False False) None) ] - - location: 10 (remaining gas: 1039991.258 units remaining) + - location: 10 (remaining gas: 1039992.058 units remaining) [ (Pair False False) ] - - location: 11 (remaining gas: 1039991.248 units remaining) + - location: 11 (remaining gas: 1039992.048 units remaining) [ False False ] - - location: 12 (remaining gas: 1039991.228 units remaining) + - location: 12 (remaining gas: 1039992.038 units remaining) [ False ] - - location: 13 (remaining gas: 1039991.213 units remaining) + - location: 13 (remaining gas: 1039992.028 units remaining) [ (Some False) ] - - location: 14 (remaining gas: 1039991.198 units remaining) + - location: 14 (remaining gas: 1039992.018 units remaining) [ {} (Some False) ] - - location: 16 (remaining gas: 1039991.183 units remaining) + - location: 16 (remaining gas: 1039992.008 units remaining) [ (Pair {} (Some False)) ] - - location: 17 (remaining gas: 1039991.173 units remaining) + - location: 17 (remaining gas: 1039991.998 units remaining) [ {} (Some False) ] - - location: 18 (remaining gas: 1039991.158 units remaining) + - location: 18 (remaining gas: 1039991.988 units remaining) [ (Pair {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out index 26034d0b42d0..d83c79ab78e1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair False True)-(Some False)].out @@ -7,25 +7,25 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.268 units remaining) + - location: 10 (remaining gas: 1039992.068 units remaining) [ (Pair (Pair False True) None) ] - - location: 10 (remaining gas: 1039991.258 units remaining) + - location: 10 (remaining gas: 1039992.058 units remaining) [ (Pair False True) ] - - location: 11 (remaining gas: 1039991.248 units remaining) + - location: 11 (remaining gas: 1039992.048 units remaining) [ False True ] - - location: 12 (remaining gas: 1039991.228 units remaining) + - location: 12 (remaining gas: 1039992.038 units remaining) [ False ] - - location: 13 (remaining gas: 1039991.213 units remaining) + - location: 13 (remaining gas: 1039992.028 units remaining) [ (Some False) ] - - location: 14 (remaining gas: 1039991.198 units remaining) + - location: 14 (remaining gas: 1039992.018 units remaining) [ {} (Some False) ] - - location: 16 (remaining gas: 1039991.183 units remaining) + - location: 16 (remaining gas: 1039992.008 units remaining) [ (Pair {} (Some False)) ] - - location: 17 (remaining gas: 1039991.173 units remaining) + - location: 17 (remaining gas: 1039991.998 units remaining) [ {} (Some False) ] - - location: 18 (remaining gas: 1039991.158 units remaining) + - location: 18 (remaining gas: 1039991.988 units remaining) [ (Pair {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out index acd78d0a73a5..1ad6be77d1ce 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True False)-(Some False)].out @@ -7,25 +7,25 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.268 units remaining) + - location: 10 (remaining gas: 1039992.068 units remaining) [ (Pair (Pair True False) None) ] - - location: 10 (remaining gas: 1039991.258 units remaining) + - location: 10 (remaining gas: 1039992.058 units remaining) [ (Pair True False) ] - - location: 11 (remaining gas: 1039991.248 units remaining) + - location: 11 (remaining gas: 1039992.048 units remaining) [ True False ] - - location: 12 (remaining gas: 1039991.228 units remaining) + - location: 12 (remaining gas: 1039992.038 units remaining) [ False ] - - location: 13 (remaining gas: 1039991.213 units remaining) + - location: 13 (remaining gas: 1039992.028 units remaining) [ (Some False) ] - - location: 14 (remaining gas: 1039991.198 units remaining) + - location: 14 (remaining gas: 1039992.018 units remaining) [ {} (Some False) ] - - location: 16 (remaining gas: 1039991.183 units remaining) + - location: 16 (remaining gas: 1039992.008 units remaining) [ (Pair {} (Some False)) ] - - location: 17 (remaining gas: 1039991.173 units remaining) + - location: 17 (remaining gas: 1039991.998 units remaining) [ {} (Some False) ] - - location: 18 (remaining gas: 1039991.158 units remaining) + - location: 18 (remaining gas: 1039991.988 units remaining) [ (Pair {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out index 1802a1ce9802..1f9db0fc15e3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and.tz-None-(Pair True True)-(Some True)].out @@ -7,25 +7,25 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.268 units remaining) + - location: 10 (remaining gas: 1039992.068 units remaining) [ (Pair (Pair True True) None) ] - - location: 10 (remaining gas: 1039991.258 units remaining) + - location: 10 (remaining gas: 1039992.058 units remaining) [ (Pair True True) ] - - location: 11 (remaining gas: 1039991.248 units remaining) + - location: 11 (remaining gas: 1039992.048 units remaining) [ True True ] - - location: 12 (remaining gas: 1039991.228 units remaining) + - location: 12 (remaining gas: 1039992.038 units remaining) [ True ] - - location: 13 (remaining gas: 1039991.213 units remaining) + - location: 13 (remaining gas: 1039992.028 units remaining) [ (Some True) ] - - location: 14 (remaining gas: 1039991.198 units remaining) + - location: 14 (remaining gas: 1039992.018 units remaining) [ {} (Some True) ] - - location: 16 (remaining gas: 1039991.183 units remaining) + - location: 16 (remaining gas: 1039992.008 units remaining) [ (Pair {} (Some True)) ] - - location: 17 (remaining gas: 1039991.173 units remaining) + - location: 17 (remaining gas: 1039991.998 units remaining) [ {} (Some True) ] - - location: 18 (remaining gas: 1039991.158 units remaining) + - location: 18 (remaining gas: 1039991.988 units remaining) [ (Pair {} (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out index bf72f70c3ea2..3c17b8b12f10 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_binary.tz-Unit-Unit-Unit].out @@ -7,87 +7,87 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039960.596 units remaining) + - location: 7 (remaining gas: 1039961.876 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039960.586 units remaining) + - location: 7 (remaining gas: 1039961.866 units remaining) [ ] - - location: 8 (remaining gas: 1039960.576 units remaining) + - location: 8 (remaining gas: 1039961.856 units remaining) [ 5 ] - - location: 11 (remaining gas: 1039960.566 units remaining) + - location: 11 (remaining gas: 1039961.846 units remaining) [ 6 5 ] - - location: 14 (remaining gas: 1039960.516 units remaining) + - location: 14 (remaining gas: 1039961.811 units remaining) [ 4 ] - - location: 15 (remaining gas: 1039960.506 units remaining) + - location: 15 (remaining gas: 1039961.801 units remaining) [ 4 4 ] - - location: 20 (remaining gas: 1039960.471 units remaining) + - location: 20 (remaining gas: 1039961.766 units remaining) [ 0 ] - - location: 21 (remaining gas: 1039960.456 units remaining) + - location: 21 (remaining gas: 1039961.756 units remaining) [ True ] - - location: 22 (remaining gas: 1039960.446 units remaining) + - location: 22 (remaining gas: 1039961.746 units remaining) [ ] - - location: 22 (remaining gas: 1039960.431 units remaining) + - location: 22 (remaining gas: 1039961.736 units remaining) [ ] - - location: 28 (remaining gas: 1039960.421 units remaining) + - location: 28 (remaining gas: 1039961.726 units remaining) [ 6 ] - - location: 31 (remaining gas: 1039960.411 units remaining) + - location: 31 (remaining gas: 1039961.716 units remaining) [ 5 6 ] - - location: 34 (remaining gas: 1039960.361 units remaining) + - location: 34 (remaining gas: 1039961.681 units remaining) [ 4 ] - - location: 35 (remaining gas: 1039960.351 units remaining) + - location: 35 (remaining gas: 1039961.671 units remaining) [ 4 4 ] - - location: 40 (remaining gas: 1039960.316 units remaining) + - location: 40 (remaining gas: 1039961.636 units remaining) [ 0 ] - - location: 41 (remaining gas: 1039960.301 units remaining) + - location: 41 (remaining gas: 1039961.626 units remaining) [ True ] - - location: 42 (remaining gas: 1039960.291 units remaining) + - location: 42 (remaining gas: 1039961.616 units remaining) [ ] - - location: 42 (remaining gas: 1039960.276 units remaining) + - location: 42 (remaining gas: 1039961.606 units remaining) [ ] - - location: 48 (remaining gas: 1039960.266 units remaining) + - location: 48 (remaining gas: 1039961.596 units remaining) [ 12 ] - - location: 51 (remaining gas: 1039960.256 units remaining) + - location: 51 (remaining gas: 1039961.586 units remaining) [ -1 12 ] - - location: 54 (remaining gas: 1039960.206 units remaining) + - location: 54 (remaining gas: 1039961.551 units remaining) [ 12 ] - - location: 55 (remaining gas: 1039960.196 units remaining) + - location: 55 (remaining gas: 1039961.541 units remaining) [ 12 12 ] - - location: 60 (remaining gas: 1039960.161 units remaining) + - location: 60 (remaining gas: 1039961.506 units remaining) [ 0 ] - - location: 61 (remaining gas: 1039960.146 units remaining) + - location: 61 (remaining gas: 1039961.496 units remaining) [ True ] - - location: 62 (remaining gas: 1039960.136 units remaining) + - location: 62 (remaining gas: 1039961.486 units remaining) [ ] - - location: 62 (remaining gas: 1039960.121 units remaining) + - location: 62 (remaining gas: 1039961.476 units remaining) [ ] - - location: 68 (remaining gas: 1039960.111 units remaining) + - location: 68 (remaining gas: 1039961.466 units remaining) [ 12 ] - - location: 71 (remaining gas: 1039960.101 units remaining) + - location: 71 (remaining gas: 1039961.456 units remaining) [ -5 12 ] - - location: 74 (remaining gas: 1039960.051 units remaining) + - location: 74 (remaining gas: 1039961.421 units remaining) [ 8 ] - - location: 75 (remaining gas: 1039960.041 units remaining) + - location: 75 (remaining gas: 1039961.411 units remaining) [ 8 8 ] - - location: 80 (remaining gas: 1039960.006 units remaining) + - location: 80 (remaining gas: 1039961.376 units remaining) [ 0 ] - - location: 81 (remaining gas: 1039959.991 units remaining) + - location: 81 (remaining gas: 1039961.366 units remaining) [ True ] - - location: 82 (remaining gas: 1039959.981 units remaining) + - location: 82 (remaining gas: 1039961.356 units remaining) [ ] - - location: 82 (remaining gas: 1039959.966 units remaining) + - location: 82 (remaining gas: 1039961.346 units remaining) [ ] - - location: 88 (remaining gas: 1039959.956 units remaining) + - location: 88 (remaining gas: 1039961.336 units remaining) [ Unit ] - - location: 89 (remaining gas: 1039959.941 units remaining) + - location: 89 (remaining gas: 1039961.326 units remaining) [ {} Unit ] - - location: 91 (remaining gas: 1039959.926 units remaining) + - location: 91 (remaining gas: 1039961.316 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out index 746ab1bd6b1f..8f4b9c41cd82 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False False)-False].out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.769 units remaining) + - location: 9 (remaining gas: 1039994.409 units remaining) [ (Pair (Pair False False) False) ] - - location: 9 (remaining gas: 1039993.759 units remaining) + - location: 9 (remaining gas: 1039994.399 units remaining) [ (Pair False False) ] - - location: 10 (remaining gas: 1039993.749 units remaining) + - location: 10 (remaining gas: 1039994.389 units remaining) [ False False ] - - location: 11 (remaining gas: 1039993.729 units remaining) + - location: 11 (remaining gas: 1039994.379 units remaining) [ False ] - - location: 12 (remaining gas: 1039993.714 units remaining) + - location: 12 (remaining gas: 1039994.369 units remaining) [ {} False ] - - location: 14 (remaining gas: 1039993.699 units remaining) + - location: 14 (remaining gas: 1039994.359 units remaining) [ (Pair {} False) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out index ac8db947c875..0806f3295e00 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair False True)-False].out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.769 units remaining) + - location: 9 (remaining gas: 1039994.409 units remaining) [ (Pair (Pair False True) False) ] - - location: 9 (remaining gas: 1039993.759 units remaining) + - location: 9 (remaining gas: 1039994.399 units remaining) [ (Pair False True) ] - - location: 10 (remaining gas: 1039993.749 units remaining) + - location: 10 (remaining gas: 1039994.389 units remaining) [ False True ] - - location: 11 (remaining gas: 1039993.729 units remaining) + - location: 11 (remaining gas: 1039994.379 units remaining) [ False ] - - location: 12 (remaining gas: 1039993.714 units remaining) + - location: 12 (remaining gas: 1039994.369 units remaining) [ {} False ] - - location: 14 (remaining gas: 1039993.699 units remaining) + - location: 14 (remaining gas: 1039994.359 units remaining) [ (Pair {} False) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out index 0afd9deb76a6..e0cc028b8f2f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True False)-False].out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.769 units remaining) + - location: 9 (remaining gas: 1039994.409 units remaining) [ (Pair (Pair True False) False) ] - - location: 9 (remaining gas: 1039993.759 units remaining) + - location: 9 (remaining gas: 1039994.399 units remaining) [ (Pair True False) ] - - location: 10 (remaining gas: 1039993.749 units remaining) + - location: 10 (remaining gas: 1039994.389 units remaining) [ True False ] - - location: 11 (remaining gas: 1039993.729 units remaining) + - location: 11 (remaining gas: 1039994.379 units remaining) [ False ] - - location: 12 (remaining gas: 1039993.714 units remaining) + - location: 12 (remaining gas: 1039994.369 units remaining) [ {} False ] - - location: 14 (remaining gas: 1039993.699 units remaining) + - location: 14 (remaining gas: 1039994.359 units remaining) [ (Pair {} False) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out index eda1410e9a8f..01df94ba4b74 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[and_logical_1.tz-False-(Pair True True)-True].out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.769 units remaining) + - location: 9 (remaining gas: 1039994.409 units remaining) [ (Pair (Pair True True) False) ] - - location: 9 (remaining gas: 1039993.759 units remaining) + - location: 9 (remaining gas: 1039994.399 units remaining) [ (Pair True True) ] - - location: 10 (remaining gas: 1039993.749 units remaining) + - location: 10 (remaining gas: 1039994.389 units remaining) [ True True ] - - location: 11 (remaining gas: 1039993.729 units remaining) + - location: 11 (remaining gas: 1039994.379 units remaining) [ True ] - - location: 12 (remaining gas: 1039993.714 units remaining) + - location: 12 (remaining gas: 1039994.369 units remaining) [ {} True ] - - location: 14 (remaining gas: 1039993.699 units remaining) + - location: 14 (remaining gas: 1039994.359 units remaining) [ (Pair {} True) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out index 2db431486a2a..542b68a1caa0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[balance.tz-111-Unit-4000000000000].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.913 units remaining) + - location: 7 (remaining gas: 1039995.553 units remaining) [ (Pair Unit 111) ] - - location: 7 (remaining gas: 1039994.903 units remaining) + - location: 7 (remaining gas: 1039995.543 units remaining) [ ] - - location: 8 (remaining gas: 1039994.903 units remaining) + - location: 8 (remaining gas: 1039995.543 units remaining) [ 4000000000000 ] - - location: 9 (remaining gas: 1039994.888 units remaining) + - location: 9 (remaining gas: 1039995.533 units remaining) [ {} 4000000000000 ] - - location: 11 (remaining gas: 1039994.873 units remaining) + - location: 11 (remaining gas: 1039995.523 units remaining) [ (Pair {} 4000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out index 032afe334a11..5538cf5b5410 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.2292d6ce17.out @@ -8,36 +8,36 @@ big_map diff New map(4) of type (big_map nat nat) Set map(4)[0] to 1 trace - - location: 12 (remaining gas: 1039986.976 units remaining) + - location: 12 (remaining gas: 1039988.651 units remaining) [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (remaining gas: 1039986.966 units remaining) + - location: 12 (remaining gas: 1039988.641 units remaining) [ 1 (Pair { Elt 0 1 } None) ] - - location: 13 (remaining gas: 1039986.951 units remaining) + - location: 13 (remaining gas: 1039988.631 units remaining) [ (Pair { Elt 0 1 } None) ] - - location: 15 (remaining gas: 1039986.941 units remaining) + - location: 15 (remaining gas: 1039988.621 units remaining) [ { Elt 0 1 } ] - - location: 16 (remaining gas: 1039986.931 units remaining) + - location: 16 (remaining gas: 1039988.611 units remaining) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (remaining gas: 1039986.901 units remaining) + - location: 13 (remaining gas: 1039988.591 units remaining) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (remaining gas: 1039986.128 units remaining) + - location: 17 (remaining gas: 1039987.883 units remaining) [ False { Elt 0 1 } ] - - location: 18 (remaining gas: 1039986.113 units remaining) + - location: 18 (remaining gas: 1039987.873 units remaining) [ (Some False) { Elt 0 1 } ] - - location: 19 (remaining gas: 1039986.103 units remaining) + - location: 19 (remaining gas: 1039987.863 units remaining) [ { Elt 0 1 } (Some False) ] - - location: 20 (remaining gas: 1039986.088 units remaining) + - location: 20 (remaining gas: 1039987.853 units remaining) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (remaining gas: 1039986.073 units remaining) + - location: 21 (remaining gas: 1039987.843 units remaining) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (remaining gas: 1039986.058 units remaining) + - location: 23 (remaining gas: 1039987.833 units remaining) [ (Pair {} { Elt 0 1 } (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out index 8d90b0cab1ef..aed39e8d3ff4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair 4 (S.dda583f5e9.out @@ -8,36 +8,36 @@ big_map diff New map(4) of type (big_map nat nat) Set map(4)[0] to 1 trace - - location: 12 (remaining gas: 1039986.976 units remaining) + - location: 12 (remaining gas: 1039988.651 units remaining) [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (remaining gas: 1039986.966 units remaining) + - location: 12 (remaining gas: 1039988.641 units remaining) [ 1 (Pair { Elt 0 1 } None) ] - - location: 13 (remaining gas: 1039986.951 units remaining) + - location: 13 (remaining gas: 1039988.631 units remaining) [ (Pair { Elt 0 1 } None) ] - - location: 15 (remaining gas: 1039986.941 units remaining) + - location: 15 (remaining gas: 1039988.621 units remaining) [ { Elt 0 1 } ] - - location: 16 (remaining gas: 1039986.931 units remaining) + - location: 16 (remaining gas: 1039988.611 units remaining) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (remaining gas: 1039986.901 units remaining) + - location: 13 (remaining gas: 1039988.591 units remaining) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (remaining gas: 1039986.128 units remaining) + - location: 17 (remaining gas: 1039987.883 units remaining) [ False { Elt 0 1 } ] - - location: 18 (remaining gas: 1039986.113 units remaining) + - location: 18 (remaining gas: 1039987.873 units remaining) [ (Some False) { Elt 0 1 } ] - - location: 19 (remaining gas: 1039986.103 units remaining) + - location: 19 (remaining gas: 1039987.863 units remaining) [ { Elt 0 1 } (Some False) ] - - location: 20 (remaining gas: 1039986.088 units remaining) + - location: 20 (remaining gas: 1039987.853 units remaining) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (remaining gas: 1039986.073 units remaining) + - location: 21 (remaining gas: 1039987.843 units remaining) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (remaining gas: 1039986.058 units remaining) + - location: 23 (remaining gas: 1039987.833 units remaining) [ (Pair {} { Elt 0 1 } (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out index a8e3d8cd7304..da0a61305826 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.6d753598ba.out @@ -8,36 +8,36 @@ big_map diff New map(4) of type (big_map nat nat) Set map(4)[1] to 0 trace - - location: 12 (remaining gas: 1039986.976 units remaining) + - location: 12 (remaining gas: 1039988.651 units remaining) [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (remaining gas: 1039986.966 units remaining) + - location: 12 (remaining gas: 1039988.641 units remaining) [ 1 (Pair { Elt 1 0 } None) ] - - location: 13 (remaining gas: 1039986.951 units remaining) + - location: 13 (remaining gas: 1039988.631 units remaining) [ (Pair { Elt 1 0 } None) ] - - location: 15 (remaining gas: 1039986.941 units remaining) + - location: 15 (remaining gas: 1039988.621 units remaining) [ { Elt 1 0 } ] - - location: 16 (remaining gas: 1039986.931 units remaining) + - location: 16 (remaining gas: 1039988.611 units remaining) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (remaining gas: 1039986.901 units remaining) + - location: 13 (remaining gas: 1039988.591 units remaining) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (remaining gas: 1039986.128 units remaining) + - location: 17 (remaining gas: 1039987.883 units remaining) [ True { Elt 1 0 } ] - - location: 18 (remaining gas: 1039986.113 units remaining) + - location: 18 (remaining gas: 1039987.873 units remaining) [ (Some True) { Elt 1 0 } ] - - location: 19 (remaining gas: 1039986.103 units remaining) + - location: 19 (remaining gas: 1039987.863 units remaining) [ { Elt 1 0 } (Some True) ] - - location: 20 (remaining gas: 1039986.088 units remaining) + - location: 20 (remaining gas: 1039987.853 units remaining) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (remaining gas: 1039986.073 units remaining) + - location: 21 (remaining gas: 1039987.843 units remaining) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (remaining gas: 1039986.058 units remaining) + - location: 23 (remaining gas: 1039987.833 units remaining) [ (Pair {} { Elt 1 0 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out index 0d7f4c93a02c..a8fd880a9516 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair 4 (S.73700321f8.out @@ -8,36 +8,36 @@ big_map diff New map(4) of type (big_map nat nat) Set map(4)[1] to 0 trace - - location: 12 (remaining gas: 1039986.976 units remaining) + - location: 12 (remaining gas: 1039988.651 units remaining) [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (remaining gas: 1039986.966 units remaining) + - location: 12 (remaining gas: 1039988.641 units remaining) [ 1 (Pair { Elt 1 0 } None) ] - - location: 13 (remaining gas: 1039986.951 units remaining) + - location: 13 (remaining gas: 1039988.631 units remaining) [ (Pair { Elt 1 0 } None) ] - - location: 15 (remaining gas: 1039986.941 units remaining) + - location: 15 (remaining gas: 1039988.621 units remaining) [ { Elt 1 0 } ] - - location: 16 (remaining gas: 1039986.931 units remaining) + - location: 16 (remaining gas: 1039988.611 units remaining) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (remaining gas: 1039986.901 units remaining) + - location: 13 (remaining gas: 1039988.591 units remaining) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (remaining gas: 1039986.128 units remaining) + - location: 17 (remaining gas: 1039987.883 units remaining) [ True { Elt 1 0 } ] - - location: 18 (remaining gas: 1039986.113 units remaining) + - location: 18 (remaining gas: 1039987.873 units remaining) [ (Some True) { Elt 1 0 } ] - - location: 19 (remaining gas: 1039986.103 units remaining) + - location: 19 (remaining gas: 1039987.863 units remaining) [ { Elt 1 0 } (Some True) ] - - location: 20 (remaining gas: 1039986.088 units remaining) + - location: 20 (remaining gas: 1039987.853 units remaining) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (remaining gas: 1039986.073 units remaining) + - location: 21 (remaining gas: 1039987.843 units remaining) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (remaining gas: 1039986.058 units remaining) + - location: 23 (remaining gas: 1039987.833 units remaining) [ (Pair {} { Elt 1 0 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out index 05594940c067..d48928ac663c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.1182eca937.out @@ -9,36 +9,36 @@ big_map diff Set map(4)[1] to 4 Set map(4)[2] to 11 trace - - location: 12 (remaining gas: 1039985.945 units remaining) + - location: 12 (remaining gas: 1039987.695 units remaining) [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039985.935 units remaining) + - location: 12 (remaining gas: 1039987.685 units remaining) [ 1 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039985.920 units remaining) + - location: 13 (remaining gas: 1039987.675 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039985.910 units remaining) + - location: 15 (remaining gas: 1039987.665 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039985.900 units remaining) + - location: 16 (remaining gas: 1039987.655 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039985.870 units remaining) + - location: 13 (remaining gas: 1039987.635 units remaining) [ 1 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039985.096 units remaining) + - location: 17 (remaining gas: 1039986.926 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039985.081 units remaining) + - location: 18 (remaining gas: 1039986.916 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039985.071 units remaining) + - location: 19 (remaining gas: 1039986.906 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039985.056 units remaining) + - location: 20 (remaining gas: 1039986.896 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039985.041 units remaining) + - location: 21 (remaining gas: 1039986.886 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039985.026 units remaining) + - location: 23 (remaining gas: 1039986.876 units remaining) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out index 11d652b07892..54dc49a9ae81 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1.2ea67af009.out @@ -9,36 +9,36 @@ big_map diff Set map(4)[1] to 4 Set map(4)[2] to 11 trace - - location: 12 (remaining gas: 1039985.945 units remaining) + - location: 12 (remaining gas: 1039987.695 units remaining) [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039985.935 units remaining) + - location: 12 (remaining gas: 1039987.685 units remaining) [ 1 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039985.920 units remaining) + - location: 13 (remaining gas: 1039987.675 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039985.910 units remaining) + - location: 15 (remaining gas: 1039987.665 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039985.900 units remaining) + - location: 16 (remaining gas: 1039987.655 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039985.870 units remaining) + - location: 13 (remaining gas: 1039987.635 units remaining) [ 1 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039985.096 units remaining) + - location: 17 (remaining gas: 1039986.926 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039985.081 units remaining) + - location: 18 (remaining gas: 1039986.916 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039985.071 units remaining) + - location: 19 (remaining gas: 1039986.906 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039985.056 units remaining) + - location: 20 (remaining gas: 1039986.896 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039985.041 units remaining) + - location: 21 (remaining gas: 1039986.886 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039985.026 units remaining) + - location: 23 (remaining gas: 1039986.876 units remaining) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out index f89d93fd342c..6f8c0f077397 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.1eead33885.out @@ -9,36 +9,36 @@ big_map diff Set map(4)[1] to 4 Set map(4)[2] to 11 trace - - location: 12 (remaining gas: 1039985.945 units remaining) + - location: 12 (remaining gas: 1039987.695 units remaining) [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039985.935 units remaining) + - location: 12 (remaining gas: 1039987.685 units remaining) [ 2 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039985.920 units remaining) + - location: 13 (remaining gas: 1039987.675 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039985.910 units remaining) + - location: 15 (remaining gas: 1039987.665 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039985.900 units remaining) + - location: 16 (remaining gas: 1039987.655 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039985.870 units remaining) + - location: 13 (remaining gas: 1039987.635 units remaining) [ 2 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039985.096 units remaining) + - location: 17 (remaining gas: 1039986.926 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039985.081 units remaining) + - location: 18 (remaining gas: 1039986.916 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039985.071 units remaining) + - location: 19 (remaining gas: 1039986.906 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039985.056 units remaining) + - location: 20 (remaining gas: 1039986.896 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039985.041 units remaining) + - location: 21 (remaining gas: 1039986.886 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039985.026 units remaining) + - location: 23 (remaining gas: 1039986.876 units remaining) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out index ab3d92834ae8..7d7085b70890 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2.47f55c94c8.out @@ -9,36 +9,36 @@ big_map diff Set map(4)[1] to 4 Set map(4)[2] to 11 trace - - location: 12 (remaining gas: 1039985.945 units remaining) + - location: 12 (remaining gas: 1039987.695 units remaining) [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039985.935 units remaining) + - location: 12 (remaining gas: 1039987.685 units remaining) [ 2 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039985.920 units remaining) + - location: 13 (remaining gas: 1039987.675 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039985.910 units remaining) + - location: 15 (remaining gas: 1039987.665 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039985.900 units remaining) + - location: 16 (remaining gas: 1039987.655 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039985.870 units remaining) + - location: 13 (remaining gas: 1039987.635 units remaining) [ 2 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039985.096 units remaining) + - location: 17 (remaining gas: 1039986.926 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039985.081 units remaining) + - location: 18 (remaining gas: 1039986.916 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039985.071 units remaining) + - location: 19 (remaining gas: 1039986.906 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039985.056 units remaining) + - location: 20 (remaining gas: 1039986.896 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039985.041 units remaining) + - location: 21 (remaining gas: 1039986.886 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039985.026 units remaining) + - location: 23 (remaining gas: 1039986.876 units remaining) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out index 2b3e5319ba96..b8a3a844643b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.7f1f2ab27d.out @@ -9,36 +9,36 @@ big_map diff Set map(4)[1] to 4 Set map(4)[2] to 11 trace - - location: 12 (remaining gas: 1039985.945 units remaining) + - location: 12 (remaining gas: 1039987.695 units remaining) [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039985.935 units remaining) + - location: 12 (remaining gas: 1039987.685 units remaining) [ 3 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039985.920 units remaining) + - location: 13 (remaining gas: 1039987.675 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039985.910 units remaining) + - location: 15 (remaining gas: 1039987.665 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039985.900 units remaining) + - location: 16 (remaining gas: 1039987.655 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039985.870 units remaining) + - location: 13 (remaining gas: 1039987.635 units remaining) [ 3 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039985.096 units remaining) + - location: 17 (remaining gas: 1039986.926 units remaining) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039985.081 units remaining) + - location: 18 (remaining gas: 1039986.916 units remaining) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039985.071 units remaining) + - location: 19 (remaining gas: 1039986.906 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (remaining gas: 1039985.056 units remaining) + - location: 20 (remaining gas: 1039986.896 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (remaining gas: 1039985.041 units remaining) + - location: 21 (remaining gas: 1039986.886 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (remaining gas: 1039985.026 units remaining) + - location: 23 (remaining gas: 1039986.876 units remaining) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out index c070fb8c956b..a8494f3f06ab 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3.a3c5c126ce.out @@ -9,36 +9,36 @@ big_map diff Set map(4)[1] to 4 Set map(4)[2] to 11 trace - - location: 12 (remaining gas: 1039985.945 units remaining) + - location: 12 (remaining gas: 1039987.695 units remaining) [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039985.935 units remaining) + - location: 12 (remaining gas: 1039987.685 units remaining) [ 3 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039985.920 units remaining) + - location: 13 (remaining gas: 1039987.675 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039985.910 units remaining) + - location: 15 (remaining gas: 1039987.665 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039985.900 units remaining) + - location: 16 (remaining gas: 1039987.655 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039985.870 units remaining) + - location: 13 (remaining gas: 1039987.635 units remaining) [ 3 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039985.096 units remaining) + - location: 17 (remaining gas: 1039986.926 units remaining) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039985.081 units remaining) + - location: 18 (remaining gas: 1039986.916 units remaining) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039985.071 units remaining) + - location: 19 (remaining gas: 1039986.906 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (remaining gas: 1039985.056 units remaining) + - location: 20 (remaining gas: 1039986.896 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (remaining gas: 1039985.041 units remaining) + - location: 21 (remaining gas: 1039986.886 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (remaining gas: 1039985.026 units remaining) + - location: 23 (remaining gas: 1039986.876 units remaining) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out index 9e59349f3821..3f84ab198be4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))0].out @@ -7,36 +7,36 @@ emitted operations big_map diff New map(4) of type (big_map nat nat) trace - - location: 12 (remaining gas: 1039987.969 units remaining) + - location: 12 (remaining gas: 1039989.569 units remaining) [ (Pair 1 {} None) ] - - location: 12 (remaining gas: 1039987.959 units remaining) + - location: 12 (remaining gas: 1039989.559 units remaining) [ 1 (Pair {} None) ] - - location: 13 (remaining gas: 1039987.944 units remaining) + - location: 13 (remaining gas: 1039989.549 units remaining) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039987.934 units remaining) + - location: 15 (remaining gas: 1039989.539 units remaining) [ {} ] - - location: 16 (remaining gas: 1039987.924 units remaining) + - location: 16 (remaining gas: 1039989.529 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039987.894 units remaining) + - location: 13 (remaining gas: 1039989.509 units remaining) [ 1 {} {} ] - - location: 17 (remaining gas: 1039987.123 units remaining) + - location: 17 (remaining gas: 1039988.803 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039987.108 units remaining) + - location: 18 (remaining gas: 1039988.793 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039987.098 units remaining) + - location: 19 (remaining gas: 1039988.783 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039987.083 units remaining) + - location: 20 (remaining gas: 1039988.773 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039987.068 units remaining) + - location: 21 (remaining gas: 1039988.763 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039987.053 units remaining) + - location: 23 (remaining gas: 1039988.753 units remaining) [ (Pair {} {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out index 7ee949f66a50..5bb466121d92 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_nat.tz-(Pair {} None)-1-(Pair 4 (Some False))1].out @@ -7,36 +7,36 @@ emitted operations big_map diff New map(4) of type (big_map nat nat) trace - - location: 12 (remaining gas: 1039987.969 units remaining) + - location: 12 (remaining gas: 1039989.569 units remaining) [ (Pair 1 {} None) ] - - location: 12 (remaining gas: 1039987.959 units remaining) + - location: 12 (remaining gas: 1039989.559 units remaining) [ 1 (Pair {} None) ] - - location: 13 (remaining gas: 1039987.944 units remaining) + - location: 13 (remaining gas: 1039989.549 units remaining) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039987.934 units remaining) + - location: 15 (remaining gas: 1039989.539 units remaining) [ {} ] - - location: 16 (remaining gas: 1039987.924 units remaining) + - location: 16 (remaining gas: 1039989.529 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039987.894 units remaining) + - location: 13 (remaining gas: 1039989.509 units remaining) [ 1 {} {} ] - - location: 17 (remaining gas: 1039987.123 units remaining) + - location: 17 (remaining gas: 1039988.803 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039987.108 units remaining) + - location: 18 (remaining gas: 1039988.793 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039987.098 units remaining) + - location: 19 (remaining gas: 1039988.783 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039987.083 units remaining) + - location: 20 (remaining gas: 1039988.773 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039987.068 units remaining) + - location: 21 (remaining gas: 1039988.763 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039987.053 units remaining) + - location: 23 (remaining gas: 1039988.753 units remaining) [ (Pair {} {} (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" index 1eb54a233c32..50e59e4c2f78 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.4be99ce05d.out" @@ -9,36 +9,36 @@ big_map diff Set map(4)["bar"] to 4 Set map(4)["foo"] to 11 trace - - location: 12 (remaining gas: 1039985.403 units remaining) + - location: 12 (remaining gas: 1039987.153 units remaining) [ (Pair "baz" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039985.393 units remaining) + - location: 12 (remaining gas: 1039987.143 units remaining) [ "baz" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039985.378 units remaining) + - location: 13 (remaining gas: 1039987.133 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039985.368 units remaining) + - location: 15 (remaining gas: 1039987.123 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039985.358 units remaining) + - location: 16 (remaining gas: 1039987.113 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039985.328 units remaining) + - location: 13 (remaining gas: 1039987.093 units remaining) [ "baz" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039984.349 units remaining) + - location: 17 (remaining gas: 1039986.179 units remaining) [ False { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039984.334 units remaining) + - location: 18 (remaining gas: 1039986.169 units remaining) [ (Some False) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039984.324 units remaining) + - location: 19 (remaining gas: 1039986.159 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some False) ] - - location: 20 (remaining gas: 1039984.309 units remaining) + - location: 20 (remaining gas: 1039986.149 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 21 (remaining gas: 1039984.294 units remaining) + - location: 21 (remaining gas: 1039986.139 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 23 (remaining gas: 1039984.279 units remaining) + - location: 23 (remaining gas: 1039986.129 units remaining) [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" index c80c33fe190d..03e0c6932236 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.50c0e0ff8b.out" @@ -9,36 +9,36 @@ big_map diff Set map(4)["bar"] to 4 Set map(4)["foo"] to 11 trace - - location: 12 (remaining gas: 1039985.403 units remaining) + - location: 12 (remaining gas: 1039987.153 units remaining) [ (Pair "foo" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039985.393 units remaining) + - location: 12 (remaining gas: 1039987.143 units remaining) [ "foo" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039985.378 units remaining) + - location: 13 (remaining gas: 1039987.133 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039985.368 units remaining) + - location: 15 (remaining gas: 1039987.123 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039985.358 units remaining) + - location: 16 (remaining gas: 1039987.113 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039985.328 units remaining) + - location: 13 (remaining gas: 1039987.093 units remaining) [ "foo" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039984.349 units remaining) + - location: 17 (remaining gas: 1039986.179 units remaining) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039984.334 units remaining) + - location: 18 (remaining gas: 1039986.169 units remaining) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039984.324 units remaining) + - location: 19 (remaining gas: 1039986.159 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039984.309 units remaining) + - location: 20 (remaining gas: 1039986.149 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039984.294 units remaining) + - location: 21 (remaining gas: 1039986.139 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039984.279 units remaining) + - location: 23 (remaining gas: 1039986.129 units remaining) [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" index 015cdca28d27..3162ddd8be95 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 1.775c22b027.out" @@ -9,36 +9,36 @@ big_map diff Set map(4)["bar"] to 4 Set map(4)["foo"] to 11 trace - - location: 12 (remaining gas: 1039985.403 units remaining) + - location: 12 (remaining gas: 1039987.153 units remaining) [ (Pair "bar" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039985.393 units remaining) + - location: 12 (remaining gas: 1039987.143 units remaining) [ "bar" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039985.378 units remaining) + - location: 13 (remaining gas: 1039987.133 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039985.368 units remaining) + - location: 15 (remaining gas: 1039987.123 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039985.358 units remaining) + - location: 16 (remaining gas: 1039987.113 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039985.328 units remaining) + - location: 13 (remaining gas: 1039987.093 units remaining) [ "bar" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039984.349 units remaining) + - location: 17 (remaining gas: 1039986.179 units remaining) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039984.334 units remaining) + - location: 18 (remaining gas: 1039986.169 units remaining) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039984.324 units remaining) + - location: 19 (remaining gas: 1039986.159 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039984.309 units remaining) + - location: 20 (remaining gas: 1039986.149 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039984.294 units remaining) + - location: 21 (remaining gas: 1039986.139 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039984.279 units remaining) + - location: 23 (remaining gas: 1039986.129 units remaining) [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" index ec598646164c..aa28b548c3c7 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\".968709d39d.out" @@ -8,36 +8,36 @@ big_map diff New map(4) of type (big_map string nat) Set map(4)["foo"] to 0 trace - - location: 12 (remaining gas: 1039986.683 units remaining) + - location: 12 (remaining gas: 1039988.358 units remaining) [ (Pair "foo" { Elt "foo" 0 } None) ] - - location: 12 (remaining gas: 1039986.673 units remaining) + - location: 12 (remaining gas: 1039988.348 units remaining) [ "foo" (Pair { Elt "foo" 0 } None) ] - - location: 13 (remaining gas: 1039986.658 units remaining) + - location: 13 (remaining gas: 1039988.338 units remaining) [ (Pair { Elt "foo" 0 } None) ] - - location: 15 (remaining gas: 1039986.648 units remaining) + - location: 15 (remaining gas: 1039988.328 units remaining) [ { Elt "foo" 0 } ] - - location: 16 (remaining gas: 1039986.638 units remaining) + - location: 16 (remaining gas: 1039988.318 units remaining) [ { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 13 (remaining gas: 1039986.608 units remaining) + - location: 13 (remaining gas: 1039988.298 units remaining) [ "foo" { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 17 (remaining gas: 1039985.630 units remaining) + - location: 17 (remaining gas: 1039987.385 units remaining) [ True { Elt "foo" 0 } ] - - location: 18 (remaining gas: 1039985.615 units remaining) + - location: 18 (remaining gas: 1039987.375 units remaining) [ (Some True) { Elt "foo" 0 } ] - - location: 19 (remaining gas: 1039985.605 units remaining) + - location: 19 (remaining gas: 1039987.365 units remaining) [ { Elt "foo" 0 } (Some True) ] - - location: 20 (remaining gas: 1039985.590 units remaining) + - location: 20 (remaining gas: 1039987.355 units remaining) [ (Pair { Elt "foo" 0 } (Some True)) ] - - location: 21 (remaining gas: 1039985.575 units remaining) + - location: 21 (remaining gas: 1039987.345 units remaining) [ {} (Pair { Elt "foo" 0 } (Some True)) ] - - location: 23 (remaining gas: 1039985.560 units remaining) + - location: 23 (remaining gas: 1039987.335 units remaining) [ (Pair {} { Elt "foo" 0 } (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" index 3e6bad667561..e59c977b70ee 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\".cdcfaf9d09.out" @@ -8,36 +8,36 @@ big_map diff New map(4) of type (big_map string nat) Set map(4)["foo"] to 1 trace - - location: 12 (remaining gas: 1039986.683 units remaining) + - location: 12 (remaining gas: 1039988.358 units remaining) [ (Pair "bar" { Elt "foo" 1 } None) ] - - location: 12 (remaining gas: 1039986.673 units remaining) + - location: 12 (remaining gas: 1039988.348 units remaining) [ "bar" (Pair { Elt "foo" 1 } None) ] - - location: 13 (remaining gas: 1039986.658 units remaining) + - location: 13 (remaining gas: 1039988.338 units remaining) [ (Pair { Elt "foo" 1 } None) ] - - location: 15 (remaining gas: 1039986.648 units remaining) + - location: 15 (remaining gas: 1039988.328 units remaining) [ { Elt "foo" 1 } ] - - location: 16 (remaining gas: 1039986.638 units remaining) + - location: 16 (remaining gas: 1039988.318 units remaining) [ { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 13 (remaining gas: 1039986.608 units remaining) + - location: 13 (remaining gas: 1039988.298 units remaining) [ "bar" { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 17 (remaining gas: 1039985.630 units remaining) + - location: 17 (remaining gas: 1039987.385 units remaining) [ False { Elt "foo" 1 } ] - - location: 18 (remaining gas: 1039985.615 units remaining) + - location: 18 (remaining gas: 1039987.375 units remaining) [ (Some False) { Elt "foo" 1 } ] - - location: 19 (remaining gas: 1039985.605 units remaining) + - location: 19 (remaining gas: 1039987.365 units remaining) [ { Elt "foo" 1 } (Some False) ] - - location: 20 (remaining gas: 1039985.590 units remaining) + - location: 20 (remaining gas: 1039987.355 units remaining) [ (Pair { Elt "foo" 1 } (Some False)) ] - - location: 21 (remaining gas: 1039985.575 units remaining) + - location: 21 (remaining gas: 1039987.345 units remaining) [ {} (Pair { Elt "foo" 1 } (Some False)) ] - - location: 23 (remaining gas: 1039985.560 units remaining) + - location: 23 (remaining gas: 1039987.335 units remaining) [ (Pair {} { Elt "foo" 1 } (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" index d71a657718c4..87788fab42f0 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[big_map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair 4 (Some False))].out" @@ -7,36 +7,36 @@ emitted operations big_map diff New map(4) of type (big_map string nat) trace - - location: 12 (remaining gas: 1039987.925 units remaining) + - location: 12 (remaining gas: 1039989.525 units remaining) [ (Pair "bar" {} None) ] - - location: 12 (remaining gas: 1039987.915 units remaining) + - location: 12 (remaining gas: 1039989.515 units remaining) [ "bar" (Pair {} None) ] - - location: 13 (remaining gas: 1039987.900 units remaining) + - location: 13 (remaining gas: 1039989.505 units remaining) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039987.890 units remaining) + - location: 15 (remaining gas: 1039989.495 units remaining) [ {} ] - - location: 16 (remaining gas: 1039987.880 units remaining) + - location: 16 (remaining gas: 1039989.485 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039987.850 units remaining) + - location: 13 (remaining gas: 1039989.465 units remaining) [ "bar" {} {} ] - - location: 17 (remaining gas: 1039986.874 units remaining) + - location: 17 (remaining gas: 1039988.554 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039986.859 units remaining) + - location: 18 (remaining gas: 1039988.544 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039986.849 units remaining) + - location: 19 (remaining gas: 1039988.534 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039986.834 units remaining) + - location: 20 (remaining gas: 1039988.524 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039986.819 units remaining) + - location: 21 (remaining gas: 1039988.514 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039986.804 units remaining) + - location: 23 (remaining gas: 1039988.504 units remaining) [ (Pair {} {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out index cdaffebe70b1..fa13c847d6ed 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_bytes_not_padded.tz-None-Unit-(Some 0.9b6e8bcbd3.out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.356 units remaining) + - location: 8 (remaining gas: 1039994.186 units remaining) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039993.346 units remaining) + - location: 8 (remaining gas: 1039994.176 units remaining) [ ] - - location: 9 (remaining gas: 1039993.336 units remaining) + - location: 9 (remaining gas: 1039994.166 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.321 units remaining) + - location: 12 (remaining gas: 1039994.156 units remaining) [ (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 13 (remaining gas: 1039993.306 units remaining) + - location: 13 (remaining gas: 1039994.146 units remaining) [ {} (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 15 (remaining gas: 1039993.291 units remaining) + - location: 15 (remaining gas: 1039994.136 units remaining) [ (Pair {} (Some 0x0000000000000000000000000000000000000000000000000000000000000000)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out index 98817139447e..c0e566b6c5fb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_push_nat.tz-None-Unit-(Some 0x100000000000.d1219ca789.out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.356 units remaining) + - location: 8 (remaining gas: 1039994.186 units remaining) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039993.346 units remaining) + - location: 8 (remaining gas: 1039994.176 units remaining) [ ] - - location: 9 (remaining gas: 1039993.336 units remaining) + - location: 9 (remaining gas: 1039994.166 units remaining) [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.321 units remaining) + - location: 12 (remaining gas: 1039994.156 units remaining) [ (Some 0x1000000000000000000000000000000000000000000000000000000000000000) ] - - location: 13 (remaining gas: 1039993.306 units remaining) + - location: 13 (remaining gas: 1039994.146 units remaining) [ {} (Some 0x1000000000000000000000000000000000000000000000000000000000000000) ] - - location: 15 (remaining gas: 1039993.291 units remaining) + - location: 15 (remaining gas: 1039994.136 units remaining) [ (Pair {} (Some 0x1000000000000000000000000000000000000000000000000000000000000000)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out index 23e875e8bfba..372e98058e1d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x00-0].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.628 units remaining) + - location: 8 (remaining gas: 1039995.308 units remaining) [ 0 ] - - location: 9 (remaining gas: 1039994.613 units remaining) + - location: 9 (remaining gas: 1039995.298 units remaining) [ {} 0 ] - - location: 11 (remaining gas: 1039994.598 units remaining) + - location: 11 (remaining gas: 1039995.288 units remaining) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out index 7ba1dfa939e6..94d4e1aa7f2a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x01-1].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.628 units remaining) + - location: 8 (remaining gas: 1039995.308 units remaining) [ 1 ] - - location: 9 (remaining gas: 1039994.613 units remaining) + - location: 9 (remaining gas: 1039995.298 units remaining) [ {} 1 ] - - location: 11 (remaining gas: 1039994.598 units remaining) + - location: 11 (remaining gas: 1039995.288 units remaining) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out index 0374ef2cb915..fbb2252f0beb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0x28db8e57af88d9576acd181b89f2.7a85c336ff.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 0) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 ] - - location: 8 (remaining gas: 1039994.628 units remaining) + - location: 8 (remaining gas: 1039995.308 units remaining) [ 17832688077013577776524784494464728518213913213412866604053735695200962927400 ] - - location: 9 (remaining gas: 1039994.613 units remaining) + - location: 9 (remaining gas: 1039995.298 units remaining) [ {} 17832688077013577776524784494464728518213913213412866604053735695200962927400 ] - - location: 11 (remaining gas: 1039994.598 units remaining) + - location: 11 (remaining gas: 1039995.288 units remaining) [ (Pair {} 17832688077013577776524784494464728518213913213412866604053735695200962927400) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out index 2d4a04540704..7726e8fec8b8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_int.tz-0-0xb9e8abf8dc324a010007addde986.b821eb26b3.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 0) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 ] - - location: 8 (remaining gas: 1039994.628 units remaining) + - location: 8 (remaining gas: 1039995.308 units remaining) [ 11320265829256585830781521966149529460476767408210445238902869222031333517497 ] - - location: 9 (remaining gas: 1039994.613 units remaining) + - location: 9 (remaining gas: 1039995.298 units remaining) [ {} 11320265829256585830781521966149529460476767408210445238902869222031333517497 ] - - location: 11 (remaining gas: 1039994.598 units remaining) + - location: 11 (remaining gas: 1039995.288 units remaining) [ (Pair {} 11320265829256585830781521966149529460476767408210445238902869222031333517497) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out index 2aafb7a72a2b..d44ede273801 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_to_mutez.tz-0-0x10-16].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039989.609 units remaining) + - location: 7 (remaining gas: 1039990.279 units remaining) [ (Pair 0x1000000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (remaining gas: 1039989.599 units remaining) + - location: 7 (remaining gas: 1039990.269 units remaining) [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039989.474 units remaining) + - location: 8 (remaining gas: 1039990.154 units remaining) [ 16 ] - - location: 9 (remaining gas: 1039989.459 units remaining) + - location: 9 (remaining gas: 1039990.144 units remaining) [ (Some 16) ] - - location: 11 (remaining gas: 1039989.449 units remaining) + - location: 11 (remaining gas: 1039990.134 units remaining) [ 16 ] - - location: 11 (remaining gas: 1039989.434 units remaining) + - location: 11 (remaining gas: 1039990.124 units remaining) [ 16 ] - - location: 17 (remaining gas: 1039989.424 units remaining) + - location: 17 (remaining gas: 1039990.114 units remaining) [ 1 16 ] - - location: 20 (remaining gas: 1039989.424 units remaining) + - location: 20 (remaining gas: 1039990.114 units remaining) [ 16 ] - - location: 21 (remaining gas: 1039989.409 units remaining) + - location: 21 (remaining gas: 1039990.104 units remaining) [ {} 16 ] - - location: 23 (remaining gas: 1039989.394 units remaining) + - location: 23 (remaining gas: 1039990.094 units remaining) [ (Pair {} 16) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out index 1f66b69d84a2..66d301610508 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0accef5bef.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair -42 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ -42 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.422 units remaining) + - location: 8 (remaining gas: 1039995.157 units remaining) [ 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 9 (remaining gas: 1039994.407 units remaining) + - location: 9 (remaining gas: 1039995.147 units remaining) [ {} 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 11 (remaining gas: 1039994.392 units remaining) + - location: 11 (remaining gas: 1039995.137 units remaining) [ (Pair {} 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out index c3185be8619c..33dddd5d1404 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.0ecc537252.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.422 units remaining) + - location: 8 (remaining gas: 1039995.157 units remaining) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039994.407 units remaining) + - location: 9 (remaining gas: 1039995.147 units remaining) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039994.392 units remaining) + - location: 11 (remaining gas: 1039995.137 units remaining) [ (Pair {} 0x0200000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out index 3033384d3d58..4965d1231c0e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2229b767cd.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair -1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ -1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.422 units remaining) + - location: 8 (remaining gas: 1039995.157 units remaining) [ 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 9 (remaining gas: 1039994.407 units remaining) + - location: 9 (remaining gas: 1039995.147 units remaining) [ {} 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 11 (remaining gas: 1039994.392 units remaining) + - location: 11 (remaining gas: 1039995.137 units remaining) [ (Pair {} 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out index 1e7c193342b7..26fa0a20ef8e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.2ff549b46b.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.423 units remaining) + - location: 8 (remaining gas: 1039995.158 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039994.408 units remaining) + - location: 9 (remaining gas: 1039995.148 units remaining) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039994.393 units remaining) + - location: 11 (remaining gas: 1039995.138 units remaining) [ (Pair {} 0x0000000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out index 6afa5bdab325..e30044b8136b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.bf8a711be6.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.389 units remaining) + - location: 8 (remaining gas: 1039995.124 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039994.374 units remaining) + - location: 9 (remaining gas: 1039995.114 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039994.359 units remaining) + - location: 11 (remaining gas: 1039995.104 units remaining) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out index a3115bb6788e..226417bdbed8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x0100000000000000000000000000000.d41cbb044b.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.422 units remaining) + - location: 8 (remaining gas: 1039995.157 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039994.407 units remaining) + - location: 9 (remaining gas: 1039995.147 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039994.392 units remaining) + - location: 11 (remaining gas: 1039995.137 units remaining) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out index e5bf6eedc194..e55ddb55a948 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.a50412e458.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (remaining gas: 1039994.389 units remaining) + - location: 8 (remaining gas: 1039995.124 units remaining) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 9 (remaining gas: 1039994.374 units remaining) + - location: 9 (remaining gas: 1039995.114 units remaining) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 11 (remaining gas: 1039994.359 units remaining) + - location: 11 (remaining gas: 1039995.104 units remaining) [ (Pair {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out index 94369a796b80..3cb94ddc5f2a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.f3a349c4a7.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (remaining gas: 1039994.389 units remaining) + - location: 8 (remaining gas: 1039995.124 units remaining) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 9 (remaining gas: 1039994.374 units remaining) + - location: 9 (remaining gas: 1039995.114 units remaining) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 11 (remaining gas: 1039994.359 units remaining) + - location: 11 (remaining gas: 1039995.104 units remaining) [ (Pair {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out index be68da535c93..829be5cbd0a4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.1b9676e4c2.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039994.389 units remaining) + - location: 8 (remaining gas: 1039995.124 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (remaining gas: 1039994.374 units remaining) + - location: 9 (remaining gas: 1039995.114 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (remaining gas: 1039994.359 units remaining) + - location: 11 (remaining gas: 1039995.104 units remaining) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out index 5348ea176e75..338705306faf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_int.tz-0x8578be1766f92cd82c5e5135c374a03.e966dc6de5.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039994.389 units remaining) + - location: 8 (remaining gas: 1039995.124 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (remaining gas: 1039994.374 units remaining) + - location: 9 (remaining gas: 1039995.114 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (remaining gas: 1039994.359 units remaining) + - location: 11 (remaining gas: 1039995.104 units remaining) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out index c62d439881ad..49575f606336 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.964835cc43.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.422 units remaining) + - location: 8 (remaining gas: 1039995.157 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039994.407 units remaining) + - location: 9 (remaining gas: 1039995.147 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039994.392 units remaining) + - location: 11 (remaining gas: 1039995.137 units remaining) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out index 54d20a5524c7..705bdaf4d803 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.b25ea709fb.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.423 units remaining) + - location: 8 (remaining gas: 1039995.158 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039994.408 units remaining) + - location: 9 (remaining gas: 1039995.148 units remaining) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039994.393 units remaining) + - location: 11 (remaining gas: 1039995.138 units remaining) [ (Pair {} 0x0000000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out index be0bcffab83b..4114f76bc5c1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.eae36753ea.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.389 units remaining) + - location: 8 (remaining gas: 1039995.124 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039994.374 units remaining) + - location: 9 (remaining gas: 1039995.114 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039994.359 units remaining) + - location: 11 (remaining gas: 1039995.104 units remaining) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out index e0e973ac70ae..1ea7acc06ac1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x0100000000000000000000000000000.ee57dac8f7.out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.422 units remaining) + - location: 8 (remaining gas: 1039995.157 units remaining) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (remaining gas: 1039994.407 units remaining) + - location: 9 (remaining gas: 1039995.147 units remaining) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (remaining gas: 1039994.392 units remaining) + - location: 11 (remaining gas: 1039995.137 units remaining) [ (Pair {} 0x0200000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out index aa6e92bc5aa2..44608fbf2d08 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.928f6d4b93.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (remaining gas: 1039994.389 units remaining) + - location: 8 (remaining gas: 1039995.124 units remaining) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 9 (remaining gas: 1039994.374 units remaining) + - location: 9 (remaining gas: 1039995.114 units remaining) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 11 (remaining gas: 1039994.359 units remaining) + - location: 11 (remaining gas: 1039995.104 units remaining) [ (Pair {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out index bf0194833221..03c986d41ae2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.bd5800f6b8.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (remaining gas: 1039994.389 units remaining) + - location: 8 (remaining gas: 1039995.124 units remaining) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 9 (remaining gas: 1039994.374 units remaining) + - location: 9 (remaining gas: 1039995.114 units remaining) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 11 (remaining gas: 1039994.359 units remaining) + - location: 11 (remaining gas: 1039995.104 units remaining) [ (Pair {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out index 09f02c9d4b79..4a096112d669 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.00e897789a.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039994.389 units remaining) + - location: 8 (remaining gas: 1039995.124 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (remaining gas: 1039994.374 units remaining) + - location: 9 (remaining gas: 1039995.114 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (remaining gas: 1039994.359 units remaining) + - location: 11 (remaining gas: 1039995.104 units remaining) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out index e1ed8545d7e2..57c28f0fa7fc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_fr_z_nat.tz-0x8578be1766f92cd82c5e5135c374a03.a4697eaa13.out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.763 units remaining) + - location: 7 (remaining gas: 1039995.433 units remaining) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039994.753 units remaining) + - location: 7 (remaining gas: 1039995.423 units remaining) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039994.389 units remaining) + - location: 8 (remaining gas: 1039995.124 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (remaining gas: 1039994.374 units remaining) + - location: 9 (remaining gas: 1039995.114 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (remaining gas: 1039994.359 units remaining) + - location: 11 (remaining gas: 1039995.104 units remaining) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out index 9f666f0692f9..0ec944f59f90 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.0177355bbf.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 2 ] - - location: 9 (remaining gas: 1039993.814 units remaining) + - location: 9 (remaining gas: 1039994.549 units remaining) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039993.799 units remaining) + - location: 10 (remaining gas: 1039994.539 units remaining) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.784 units remaining) + - location: 12 (remaining gas: 1039994.529 units remaining) [ (Pair {} 0x0200000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out index bd54ae051ac9..942e8778ac53 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.744166c609.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair -1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ -1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 -1 ] - - location: 9 (remaining gas: 1039993.814 units remaining) + - location: 9 (remaining gas: 1039994.549 units remaining) [ 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 10 (remaining gas: 1039993.799 units remaining) + - location: 10 (remaining gas: 1039994.539 units remaining) [ {} 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 12 (remaining gas: 1039993.784 units remaining) + - location: 12 (remaining gas: 1039994.529 units remaining) [ (Pair {} 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out index 159bc17380af..08bbdf6f3a47 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.9f3c5cdc6a.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0 ] - - location: 9 (remaining gas: 1039993.815 units remaining) + - location: 9 (remaining gas: 1039994.550 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039993.800 units remaining) + - location: 10 (remaining gas: 1039994.540 units remaining) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.785 units remaining) + - location: 12 (remaining gas: 1039994.530 units remaining) [ (Pair {} 0x0000000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out index 7177a41a908d..49b539204d46 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.a54cb341ba.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair -42 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ -42 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 -42 ] - - location: 9 (remaining gas: 1039993.814 units remaining) + - location: 9 (remaining gas: 1039994.549 units remaining) [ 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 10 (remaining gas: 1039993.799 units remaining) + - location: 10 (remaining gas: 1039994.539 units remaining) [ {} 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 12 (remaining gas: 1039993.784 units remaining) + - location: 12 (remaining gas: 1039994.529 units remaining) [ (Pair {} 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out index 9aa105dee5fe..defff86777c0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.b0dc584c94.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 1 ] - - location: 9 (remaining gas: 1039993.814 units remaining) + - location: 9 (remaining gas: 1039994.549 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039993.799 units remaining) + - location: 10 (remaining gas: 1039994.539 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.784 units remaining) + - location: 12 (remaining gas: 1039994.529 units remaining) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out index 0ad1d287836d..eb092137b8b5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x0100000000000000000000000000000.bddcad090c.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 52435875175126190479447740508185965837690552500527637822603658699938581184514 ] - - location: 9 (remaining gas: 1039993.781 units remaining) + - location: 9 (remaining gas: 1039994.516 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039993.766 units remaining) + - location: 10 (remaining gas: 1039994.506 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.751 units remaining) + - location: 12 (remaining gas: 1039994.496 units remaining) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out index 9ca38a00e22d..88458752d7e1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x4147a5ad0a633e4880d2296f08ec5c1.92c153eb47.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f 22620284817922784902564672469917992996328211127984472897491698543785655336309 ] - - location: 9 (remaining gas: 1039993.781 units remaining) + - location: 9 (remaining gas: 1039994.516 units remaining) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 10 (remaining gas: 1039993.766 units remaining) + - location: 10 (remaining gas: 1039994.506 units remaining) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 12 (remaining gas: 1039993.751 units remaining) + - location: 12 (remaining gas: 1039994.496 units remaining) [ (Pair {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out index 5bf336f5154e..0a3ecdb2a38b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x5b0ecd0fa853810e356f1eb79721e80.290ab49d11.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f 33644916630334844239120348434626468649534186770809802792596996408934105684394 ] - - location: 9 (remaining gas: 1039993.781 units remaining) + - location: 9 (remaining gas: 1039994.516 units remaining) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 10 (remaining gas: 1039993.766 units remaining) + - location: 10 (remaining gas: 1039994.506 units remaining) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 12 (remaining gas: 1039993.751 units remaining) + - location: 12 (remaining gas: 1039994.496 units remaining) [ (Pair {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out index 20ad78282e81..20ae8800e0f4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.69f3589a06.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 17180093072794558806177035834397932205917577288483739652510482486858834123369 ] - - location: 9 (remaining gas: 1039993.781 units remaining) + - location: 9 (remaining gas: 1039994.516 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (remaining gas: 1039993.766 units remaining) + - location: 10 (remaining gas: 1039994.506 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (remaining gas: 1039993.751 units remaining) + - location: 12 (remaining gas: 1039994.496 units remaining) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out index 82d61277ad76..ef1f258220b2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_int.tz-0x8578be1766f92cd82c5e5135c374a03.fee3c5cf43.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 69615968247920749285624776342583898043608129789011377475114141186797415307882 ] - - location: 9 (remaining gas: 1039993.781 units remaining) + - location: 9 (remaining gas: 1039994.516 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (remaining gas: 1039993.766 units remaining) + - location: 10 (remaining gas: 1039994.506 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (remaining gas: 1039993.751 units remaining) + - location: 12 (remaining gas: 1039994.496 units remaining) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out index 7c8b08569611..084a749440b8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.1bccc033e8.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 52435875175126190479447740508185965837690552500527637822603658699938581184514 ] - - location: 9 (remaining gas: 1039993.781 units remaining) + - location: 9 (remaining gas: 1039994.516 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039993.766 units remaining) + - location: 10 (remaining gas: 1039994.506 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.751 units remaining) + - location: 12 (remaining gas: 1039994.496 units remaining) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out index f9b4c8619995..95e53c17c8b8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.40958700fe.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 0 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 0 ] - - location: 9 (remaining gas: 1039993.815 units remaining) + - location: 9 (remaining gas: 1039994.550 units remaining) [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039993.800 units remaining) + - location: 10 (remaining gas: 1039994.540 units remaining) [ {} 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.785 units remaining) + - location: 12 (remaining gas: 1039994.530 units remaining) [ (Pair {} 0x0000000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out index be2dd23f0543..523fa404d14d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.6c62b03d78.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 1 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 1 ] - - location: 9 (remaining gas: 1039993.814 units remaining) + - location: 9 (remaining gas: 1039994.549 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039993.799 units remaining) + - location: 10 (remaining gas: 1039994.539 units remaining) [ {} 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.784 units remaining) + - location: 12 (remaining gas: 1039994.529 units remaining) [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out index 1e0b5f4205de..ed9f63efc61c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x0100000000000000000000000000000.d23f269341.out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 2 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 2 ] - - location: 9 (remaining gas: 1039993.814 units remaining) + - location: 9 (remaining gas: 1039994.549 units remaining) [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (remaining gas: 1039993.799 units remaining) + - location: 10 (remaining gas: 1039994.539 units remaining) [ {} 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (remaining gas: 1039993.784 units remaining) + - location: 12 (remaining gas: 1039994.529 units remaining) [ (Pair {} 0x0200000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out index acfd6d99c04f..c7a90445d18f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x4147a5ad0a633e4880d2296f08ec5c1.927f808504.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f 22620284817922784902564672469917992996328211127984472897491698543785655336309 ] - - location: 9 (remaining gas: 1039993.781 units remaining) + - location: 9 (remaining gas: 1039994.516 units remaining) [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 10 (remaining gas: 1039993.766 units remaining) + - location: 10 (remaining gas: 1039994.506 units remaining) [ {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 12 (remaining gas: 1039993.751 units remaining) + - location: 12 (remaining gas: 1039994.496 units remaining) [ (Pair {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out index 7591ca86e29e..24cc591fdcc1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x5b0ecd0fa853810e356f1eb79721e80.0c114c956a.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f 33644916630334844239120348434626468649534186770809802792596996408934105684394 ] - - location: 9 (remaining gas: 1039993.781 units remaining) + - location: 9 (remaining gas: 1039994.516 units remaining) [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 10 (remaining gas: 1039993.766 units remaining) + - location: 10 (remaining gas: 1039994.506 units remaining) [ {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 12 (remaining gas: 1039993.751 units remaining) + - location: 12 (remaining gas: 1039994.496 units remaining) [ (Pair {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out index 8bae5dd01bfb..960125e05291 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.03c4f38e68.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 69615968247920749285624776342583898043608129789011377475114141186797415307882 ] - - location: 9 (remaining gas: 1039993.781 units remaining) + - location: 9 (remaining gas: 1039994.516 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (remaining gas: 1039993.766 units remaining) + - location: 10 (remaining gas: 1039994.506 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (remaining gas: 1039993.751 units remaining) + - location: 12 (remaining gas: 1039994.496 units remaining) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out index 0b70fee2cd86..68ebda64897b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[bls12_381_z_fr_nat.tz-0x8578be1766f92cd82c5e5135c374a03.8ed19cfdd9.out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.165 units remaining) + - location: 7 (remaining gas: 1039994.835 units remaining) [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (remaining gas: 1039994.155 units remaining) + - location: 7 (remaining gas: 1039994.825 units remaining) [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (remaining gas: 1039994.145 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d 17180093072794558806177035834397932205917577288483739652510482486858834123369 ] - - location: 9 (remaining gas: 1039993.781 units remaining) + - location: 9 (remaining gas: 1039994.516 units remaining) [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (remaining gas: 1039993.766 units remaining) + - location: 10 (remaining gas: 1039994.506 units remaining) [ {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (remaining gas: 1039993.751 units remaining) + - location: 12 (remaining gas: 1039994.496 units remaining) [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out index e6ee8d5c748f..18c75c7000ba 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[car.tz-0-(Pair 34 17)-34].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.457 units remaining) + - location: 9 (remaining gas: 1039995.097 units remaining) [ (Pair (Pair 34 17) 0) ] - - location: 9 (remaining gas: 1039994.447 units remaining) + - location: 9 (remaining gas: 1039995.087 units remaining) [ (Pair 34 17) ] - - location: 10 (remaining gas: 1039994.437 units remaining) + - location: 10 (remaining gas: 1039995.077 units remaining) [ 34 ] - - location: 11 (remaining gas: 1039994.422 units remaining) + - location: 11 (remaining gas: 1039995.067 units remaining) [ {} 34 ] - - location: 13 (remaining gas: 1039994.407 units remaining) + - location: 13 (remaining gas: 1039995.057 units remaining) [ (Pair {} 34) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out index 19d88f06ec07..5d1f09dddc2a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cdr.tz-0-(Pair 34 17)-17].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.457 units remaining) + - location: 9 (remaining gas: 1039995.097 units remaining) [ (Pair (Pair 34 17) 0) ] - - location: 9 (remaining gas: 1039994.447 units remaining) + - location: 9 (remaining gas: 1039995.087 units remaining) [ (Pair 34 17) ] - - location: 10 (remaining gas: 1039994.437 units remaining) + - location: 10 (remaining gas: 1039995.077 units remaining) [ 17 ] - - location: 11 (remaining gas: 1039994.422 units remaining) + - location: 11 (remaining gas: 1039995.067 units remaining) [ {} 17 ] - - location: 13 (remaining gas: 1039994.407 units remaining) + - location: 13 (remaining gas: 1039995.057 units remaining) [ (Pair {} 17) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" index 95a94fee7d1b..c2b2a98fa040 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some \"NetXdQprcVkpaWU\")-Unit-(Some \".8420090f97.out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039992.222 units remaining) + - location: 8 (remaining gas: 1039993.022 units remaining) [ (Pair Unit (Some "NetXdQprcVkpaWU")) ] - - location: 8 (remaining gas: 1039992.212 units remaining) + - location: 8 (remaining gas: 1039993.012 units remaining) [ ] - - location: 9 (remaining gas: 1039992.197 units remaining) + - location: 9 (remaining gas: 1039992.997 units remaining) [ "NetXdQprcVkpaWU" ] - - location: 10 (remaining gas: 1039992.182 units remaining) + - location: 10 (remaining gas: 1039992.987 units remaining) [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (remaining gas: 1039992.167 units remaining) + - location: 11 (remaining gas: 1039992.977 units remaining) [ {} (Some "NetXdQprcVkpaWU") ] - - location: 13 (remaining gas: 1039992.152 units remaining) + - location: 13 (remaining gas: 1039992.967 units remaining) [ (Pair {} (Some "NetXdQprcVkpaWU")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" index 252c6527ca5e..d8d6569463ad 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-(Some 0x7a06a770)-Unit-(Some \"NetXdQprcVkpaWU\")].out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.772 units remaining) + - location: 8 (remaining gas: 1039994.572 units remaining) [ (Pair Unit (Some "NetXdQprcVkpaWU")) ] - - location: 8 (remaining gas: 1039993.762 units remaining) + - location: 8 (remaining gas: 1039994.562 units remaining) [ ] - - location: 9 (remaining gas: 1039993.747 units remaining) + - location: 9 (remaining gas: 1039994.547 units remaining) [ "NetXdQprcVkpaWU" ] - - location: 10 (remaining gas: 1039993.732 units remaining) + - location: 10 (remaining gas: 1039994.537 units remaining) [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (remaining gas: 1039993.717 units remaining) + - location: 11 (remaining gas: 1039994.527 units remaining) [ {} (Some "NetXdQprcVkpaWU") ] - - location: 13 (remaining gas: 1039993.702 units remaining) + - location: 13 (remaining gas: 1039994.517 units remaining) [ (Pair {} (Some "NetXdQprcVkpaWU")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" index e954fcd38e37..134af6d22420 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[chain_id_store.tz-None-Unit-(Some \"NetXdQprcVkpaWU\")].out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.922 units remaining) + - location: 8 (remaining gas: 1039994.722 units remaining) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039993.912 units remaining) + - location: 8 (remaining gas: 1039994.712 units remaining) [ ] - - location: 9 (remaining gas: 1039993.897 units remaining) + - location: 9 (remaining gas: 1039994.697 units remaining) [ "NetXdQprcVkpaWU" ] - - location: 10 (remaining gas: 1039993.882 units remaining) + - location: 10 (remaining gas: 1039994.687 units remaining) [ (Some "NetXdQprcVkpaWU") ] - - location: 11 (remaining gas: 1039993.867 units remaining) + - location: 11 (remaining gas: 1039994.677 units remaining) [ {} (Some "NetXdQprcVkpaWU") ] - - location: 13 (remaining gas: 1039993.852 units remaining) + - location: 13 (remaining gas: 1039994.667 units remaining) [ (Pair {} (Some "NetXdQprcVkpaWU")) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out index cd84c1ceb196..425d714ff27f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out @@ -7,117 +7,117 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039952.632 units remaining) + - location: 11 (remaining gas: 1039954.072 units remaining) [ (Pair (Pair 1 4 2 Unit) Unit) ] - - location: 11 (remaining gas: 1039952.622 units remaining) + - location: 11 (remaining gas: 1039954.062 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 12 (remaining gas: 1039952.612 units remaining) + - location: 12 (remaining gas: 1039954.052 units remaining) [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - location: 13 (remaining gas: 1039952.602 units remaining) + - location: 13 (remaining gas: 1039954.042 units remaining) [ 1 (Pair 1 4 2 Unit) ] - - location: 14 (remaining gas: 1039952.592 units remaining) + - location: 14 (remaining gas: 1039954.032 units remaining) [ 1 1 (Pair 1 4 2 Unit) ] - - location: 19 (remaining gas: 1039952.557 units remaining) + - location: 19 (remaining gas: 1039953.997 units remaining) [ 0 (Pair 1 4 2 Unit) ] - - location: 20 (remaining gas: 1039952.542 units remaining) + - location: 20 (remaining gas: 1039953.987 units remaining) [ True (Pair 1 4 2 Unit) ] - - location: 21 (remaining gas: 1039952.532 units remaining) + - location: 21 (remaining gas: 1039953.977 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 21 (remaining gas: 1039952.517 units remaining) + - location: 21 (remaining gas: 1039953.967 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 27 (remaining gas: 1039952.507 units remaining) + - location: 27 (remaining gas: 1039953.957 units remaining) [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - location: 28 (remaining gas: 1039952.477 units remaining) + - location: 28 (remaining gas: 1039953.937 units remaining) [ 1 (Pair 1 4 2 Unit) ] - - location: 30 (remaining gas: 1039952.467 units remaining) + - location: 30 (remaining gas: 1039953.927 units remaining) [ 1 1 (Pair 1 4 2 Unit) ] - - location: 35 (remaining gas: 1039952.432 units remaining) + - location: 35 (remaining gas: 1039953.892 units remaining) [ 0 (Pair 1 4 2 Unit) ] - - location: 36 (remaining gas: 1039952.417 units remaining) + - location: 36 (remaining gas: 1039953.882 units remaining) [ True (Pair 1 4 2 Unit) ] - - location: 37 (remaining gas: 1039952.407 units remaining) + - location: 37 (remaining gas: 1039953.872 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 37 (remaining gas: 1039952.392 units remaining) + - location: 37 (remaining gas: 1039953.862 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 43 (remaining gas: 1039952.382 units remaining) + - location: 43 (remaining gas: 1039953.852 units remaining) [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - location: 44 (remaining gas: 1039952.351 units remaining) + - location: 44 (remaining gas: 1039953.831 units remaining) [ 4 (Pair 1 4 2 Unit) ] - - location: 46 (remaining gas: 1039952.341 units remaining) + - location: 46 (remaining gas: 1039953.821 units remaining) [ 4 4 (Pair 1 4 2 Unit) ] - - location: 51 (remaining gas: 1039952.306 units remaining) + - location: 51 (remaining gas: 1039953.786 units remaining) [ 0 (Pair 1 4 2 Unit) ] - - location: 52 (remaining gas: 1039952.291 units remaining) + - location: 52 (remaining gas: 1039953.776 units remaining) [ True (Pair 1 4 2 Unit) ] - - location: 53 (remaining gas: 1039952.281 units remaining) + - location: 53 (remaining gas: 1039953.766 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 53 (remaining gas: 1039952.266 units remaining) + - location: 53 (remaining gas: 1039953.756 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 59 (remaining gas: 1039952.256 units remaining) + - location: 59 (remaining gas: 1039953.746 units remaining) [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - location: 60 (remaining gas: 1039952.224 units remaining) + - location: 60 (remaining gas: 1039953.724 units remaining) [ 2 (Pair 1 4 2 Unit) ] - - location: 62 (remaining gas: 1039952.214 units remaining) + - location: 62 (remaining gas: 1039953.714 units remaining) [ 2 2 (Pair 1 4 2 Unit) ] - - location: 67 (remaining gas: 1039952.179 units remaining) + - location: 67 (remaining gas: 1039953.679 units remaining) [ 0 (Pair 1 4 2 Unit) ] - - location: 68 (remaining gas: 1039952.164 units remaining) + - location: 68 (remaining gas: 1039953.669 units remaining) [ True (Pair 1 4 2 Unit) ] - - location: 69 (remaining gas: 1039952.154 units remaining) + - location: 69 (remaining gas: 1039953.659 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 69 (remaining gas: 1039952.139 units remaining) + - location: 69 (remaining gas: 1039953.649 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 75 (remaining gas: 1039952.129 units remaining) + - location: 75 (remaining gas: 1039953.639 units remaining) [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - location: 76 (remaining gas: 1039952.096 units remaining) + - location: 76 (remaining gas: 1039953.616 units remaining) [ Unit (Pair 1 4 2 Unit) ] - - location: 78 (remaining gas: 1039952.086 units remaining) + - location: 78 (remaining gas: 1039953.606 units remaining) [ Unit Unit (Pair 1 4 2 Unit) ] - - location: 81 (remaining gas: 1039952.076 units remaining) + - location: 81 (remaining gas: 1039953.596 units remaining) [ 0 (Pair 1 4 2 Unit) ] - - location: 82 (remaining gas: 1039952.061 units remaining) + - location: 82 (remaining gas: 1039953.586 units remaining) [ True (Pair 1 4 2 Unit) ] - - location: 83 (remaining gas: 1039952.051 units remaining) + - location: 83 (remaining gas: 1039953.576 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 83 (remaining gas: 1039952.036 units remaining) + - location: 83 (remaining gas: 1039953.566 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 89 (remaining gas: 1039952.026 units remaining) + - location: 89 (remaining gas: 1039953.556 units remaining) [ ] - - location: 90 (remaining gas: 1039952.016 units remaining) + - location: 90 (remaining gas: 1039953.546 units remaining) [ Unit ] - - location: 91 (remaining gas: 1039952.001 units remaining) + - location: 91 (remaining gas: 1039953.536 units remaining) [ {} Unit ] - - location: 93 (remaining gas: 1039951.986 units remaining) + - location: 93 (remaining gas: 1039953.526 units remaining) [ (Pair {} Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" index d9f905912bb8..a589cef830e6 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set-2.tz-None-(Pair 1 4 2 Unit)-(Some (Pair 2 4 \"t.886cc365c6.out" @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039985.081 units remaining) + - location: 16 (remaining gas: 1039986.841 units remaining) [ (Pair (Pair 1 4 2 Unit) None) ] - - location: 16 (remaining gas: 1039985.071 units remaining) + - location: 16 (remaining gas: 1039986.831 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 17 (remaining gas: 1039985.061 units remaining) + - location: 17 (remaining gas: 1039986.821 units remaining) [ 2 (Pair 1 4 2 Unit) ] - - location: 20 (remaining gas: 1039985.020 units remaining) + - location: 20 (remaining gas: 1039986.800 units remaining) [ (Pair 2 4 2 Unit) ] - - location: 22 (remaining gas: 1039985.010 units remaining) + - location: 22 (remaining gas: 1039986.790 units remaining) [ "toto" (Pair 2 4 2 Unit) ] - - location: 25 (remaining gas: 1039984.964 units remaining) + - location: 25 (remaining gas: 1039986.764 units remaining) [ (Pair 2 4 "toto" Unit) ] - - location: 27 (remaining gas: 1039984.954 units remaining) + - location: 27 (remaining gas: 1039986.754 units remaining) [ 0x01 (Pair 2 4 "toto" Unit) ] - - location: 30 (remaining gas: 1039984.907 units remaining) + - location: 30 (remaining gas: 1039986.727 units remaining) [ (Pair 2 4 "toto" 0x01) ] - - location: 32 (remaining gas: 1039984.892 units remaining) + - location: 32 (remaining gas: 1039986.717 units remaining) [ (Some (Pair 2 4 "toto" 0x01)) ] - - location: 33 (remaining gas: 1039984.877 units remaining) + - location: 33 (remaining gas: 1039986.707 units remaining) [ {} (Some (Pair 2 4 "toto" 0x01)) ] - - location: 35 (remaining gas: 1039984.862 units remaining) + - location: 35 (remaining gas: 1039986.697 units remaining) [ (Pair {} (Some (Pair 2 4 "toto" 0x01))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out index 0fb38b6d8463..bf7a11391f1d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb-set.tz-(Pair 1 4 2 Unit)-Unit-(Pair 2 12 8 Unit)].out @@ -7,33 +7,33 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039985.418 units remaining) + - location: 11 (remaining gas: 1039987.018 units remaining) [ (Pair Unit 1 4 2 Unit) ] - - location: 11 (remaining gas: 1039985.408 units remaining) + - location: 11 (remaining gas: 1039987.008 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 12 (remaining gas: 1039985.398 units remaining) + - location: 12 (remaining gas: 1039986.998 units remaining) [ 2 (Pair 1 4 2 Unit) ] - - location: 15 (remaining gas: 1039985.357 units remaining) + - location: 15 (remaining gas: 1039986.977 units remaining) [ (Pair 2 4 2 Unit) ] - - location: 17 (remaining gas: 1039985.347 units remaining) + - location: 17 (remaining gas: 1039986.967 units remaining) [ 12 (Pair 2 4 2 Unit) ] - - location: 20 (remaining gas: 1039985.304 units remaining) + - location: 20 (remaining gas: 1039986.944 units remaining) [ (Pair 2 12 2 Unit) ] - - location: 22 (remaining gas: 1039985.294 units remaining) + - location: 22 (remaining gas: 1039986.934 units remaining) [ 8 (Pair 2 12 2 Unit) ] - - location: 25 (remaining gas: 1039985.248 units remaining) + - location: 25 (remaining gas: 1039986.908 units remaining) [ (Pair 2 12 8 Unit) ] - - location: 27 (remaining gas: 1039985.238 units remaining) + - location: 27 (remaining gas: 1039986.898 units remaining) [ Unit (Pair 2 12 8 Unit) ] - - location: 28 (remaining gas: 1039985.191 units remaining) + - location: 28 (remaining gas: 1039986.871 units remaining) [ (Pair 2 12 8 Unit) ] - - location: 30 (remaining gas: 1039985.176 units remaining) + - location: 30 (remaining gas: 1039986.861 units remaining) [ {} (Pair 2 12 8 Unit) ] - - location: 32 (remaining gas: 1039985.161 units remaining) + - location: 32 (remaining gas: 1039986.851 units remaining) [ (Pair {} 2 12 8 Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out index 5141a8da7c3b..85227851fc56 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comb.tz-(Pair 0 0 0)-Unit-(Pair 1 2 3)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.364 units remaining) + - location: 10 (remaining gas: 1039991.644 units remaining) [ (Pair Unit 0 0 0) ] - - location: 10 (remaining gas: 1039990.354 units remaining) + - location: 10 (remaining gas: 1039991.634 units remaining) [ ] - - location: 11 (remaining gas: 1039990.344 units remaining) + - location: 11 (remaining gas: 1039991.624 units remaining) [ 3 ] - - location: 14 (remaining gas: 1039990.334 units remaining) + - location: 14 (remaining gas: 1039991.614 units remaining) [ 2 3 ] - - location: 17 (remaining gas: 1039990.324 units remaining) + - location: 17 (remaining gas: 1039991.604 units remaining) [ 1 2 3 ] - - location: 20 (remaining gas: 1039990.309 units remaining) + - location: 20 (remaining gas: 1039991.594 units remaining) [ {} 1 2 3 ] - - location: 22 (remaining gas: 1039990.295 units remaining) + - location: 22 (remaining gas: 1039991.580 units remaining) [ (Pair {} 1 2 3) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out index 82a283a0802b..2fbc21dd6d5c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[compare.tz-Unit-Unit-Unit].out @@ -7,392 +7,392 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039783.938 units remaining) + - location: 7 (remaining gas: 1039785.568 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039783.928 units remaining) + - location: 7 (remaining gas: 1039785.558 units remaining) [ ] - - location: 8 (remaining gas: 1039783.918 units remaining) + - location: 8 (remaining gas: 1039785.548 units remaining) [ True ] - - location: 11 (remaining gas: 1039783.908 units remaining) + - location: 11 (remaining gas: 1039785.538 units remaining) [ True True ] - - location: 12 (remaining gas: 1039783.873 units remaining) + - location: 12 (remaining gas: 1039785.503 units remaining) [ 0 ] - - location: 14 (remaining gas: 1039783.858 units remaining) + - location: 14 (remaining gas: 1039785.493 units remaining) [ True ] - - location: 15 (remaining gas: 1039783.848 units remaining) + - location: 15 (remaining gas: 1039785.483 units remaining) [ ] - - location: 15 (remaining gas: 1039783.833 units remaining) + - location: 15 (remaining gas: 1039785.473 units remaining) [ ] - - location: 21 (remaining gas: 1039783.823 units remaining) + - location: 21 (remaining gas: 1039785.463 units remaining) [ False ] - - location: 24 (remaining gas: 1039783.813 units remaining) + - location: 24 (remaining gas: 1039785.453 units remaining) [ False False ] - - location: 25 (remaining gas: 1039783.778 units remaining) + - location: 25 (remaining gas: 1039785.418 units remaining) [ 0 ] - - location: 27 (remaining gas: 1039783.763 units remaining) + - location: 27 (remaining gas: 1039785.408 units remaining) [ True ] - - location: 28 (remaining gas: 1039783.753 units remaining) + - location: 28 (remaining gas: 1039785.398 units remaining) [ ] - - location: 28 (remaining gas: 1039783.738 units remaining) + - location: 28 (remaining gas: 1039785.388 units remaining) [ ] - - location: 34 (remaining gas: 1039783.728 units remaining) + - location: 34 (remaining gas: 1039785.378 units remaining) [ False ] - - location: 37 (remaining gas: 1039783.718 units remaining) + - location: 37 (remaining gas: 1039785.368 units remaining) [ True False ] - - location: 40 (remaining gas: 1039783.683 units remaining) + - location: 40 (remaining gas: 1039785.333 units remaining) [ 1 ] - - location: 42 (remaining gas: 1039783.668 units remaining) + - location: 42 (remaining gas: 1039785.323 units remaining) [ True ] - - location: 43 (remaining gas: 1039783.658 units remaining) + - location: 43 (remaining gas: 1039785.313 units remaining) [ ] - - location: 43 (remaining gas: 1039783.643 units remaining) + - location: 43 (remaining gas: 1039785.303 units remaining) [ ] - - location: 49 (remaining gas: 1039783.633 units remaining) + - location: 49 (remaining gas: 1039785.293 units remaining) [ True ] - - location: 52 (remaining gas: 1039783.623 units remaining) + - location: 52 (remaining gas: 1039785.283 units remaining) [ False True ] - - location: 55 (remaining gas: 1039783.588 units remaining) + - location: 55 (remaining gas: 1039785.248 units remaining) [ -1 ] - - location: 57 (remaining gas: 1039783.573 units remaining) + - location: 57 (remaining gas: 1039785.238 units remaining) [ True ] - - location: 58 (remaining gas: 1039783.563 units remaining) + - location: 58 (remaining gas: 1039785.228 units remaining) [ ] - - location: 58 (remaining gas: 1039783.548 units remaining) + - location: 58 (remaining gas: 1039785.218 units remaining) [ ] - - location: 64 (remaining gas: 1039783.538 units remaining) + - location: 64 (remaining gas: 1039785.208 units remaining) [ 0xaabbcc ] - - location: 67 (remaining gas: 1039783.528 units remaining) + - location: 67 (remaining gas: 1039785.198 units remaining) [ 0xaabbcc 0xaabbcc ] - - location: 68 (remaining gas: 1039783.493 units remaining) + - location: 68 (remaining gas: 1039785.163 units remaining) [ 0 ] - - location: 70 (remaining gas: 1039783.478 units remaining) + - location: 70 (remaining gas: 1039785.153 units remaining) [ True ] - - location: 71 (remaining gas: 1039783.468 units remaining) + - location: 71 (remaining gas: 1039785.143 units remaining) [ ] - - location: 71 (remaining gas: 1039783.453 units remaining) + - location: 71 (remaining gas: 1039785.133 units remaining) [ ] - - location: 77 (remaining gas: 1039783.443 units remaining) + - location: 77 (remaining gas: 1039785.123 units remaining) [ 0x ] - - location: 80 (remaining gas: 1039783.433 units remaining) + - location: 80 (remaining gas: 1039785.113 units remaining) [ 0x 0x ] - - location: 83 (remaining gas: 1039783.398 units remaining) + - location: 83 (remaining gas: 1039785.078 units remaining) [ 0 ] - - location: 85 (remaining gas: 1039783.383 units remaining) + - location: 85 (remaining gas: 1039785.068 units remaining) [ True ] - - location: 86 (remaining gas: 1039783.373 units remaining) + - location: 86 (remaining gas: 1039785.058 units remaining) [ ] - - location: 86 (remaining gas: 1039783.358 units remaining) + - location: 86 (remaining gas: 1039785.048 units remaining) [ ] - - location: 92 (remaining gas: 1039783.348 units remaining) + - location: 92 (remaining gas: 1039785.038 units remaining) [ 0x ] - - location: 95 (remaining gas: 1039783.338 units remaining) + - location: 95 (remaining gas: 1039785.028 units remaining) [ 0x01 0x ] - - location: 98 (remaining gas: 1039783.303 units remaining) + - location: 98 (remaining gas: 1039784.993 units remaining) [ 1 ] - - location: 100 (remaining gas: 1039783.288 units remaining) + - location: 100 (remaining gas: 1039784.983 units remaining) [ True ] - - location: 101 (remaining gas: 1039783.278 units remaining) + - location: 101 (remaining gas: 1039784.973 units remaining) [ ] - - location: 101 (remaining gas: 1039783.263 units remaining) + - location: 101 (remaining gas: 1039784.963 units remaining) [ ] - - location: 107 (remaining gas: 1039783.253 units remaining) + - location: 107 (remaining gas: 1039784.953 units remaining) [ 0x01 ] - - location: 110 (remaining gas: 1039783.243 units remaining) + - location: 110 (remaining gas: 1039784.943 units remaining) [ 0x02 0x01 ] - - location: 113 (remaining gas: 1039783.208 units remaining) + - location: 113 (remaining gas: 1039784.908 units remaining) [ 1 ] - - location: 115 (remaining gas: 1039783.193 units remaining) + - location: 115 (remaining gas: 1039784.898 units remaining) [ True ] - - location: 116 (remaining gas: 1039783.183 units remaining) + - location: 116 (remaining gas: 1039784.888 units remaining) [ ] - - location: 116 (remaining gas: 1039783.168 units remaining) + - location: 116 (remaining gas: 1039784.878 units remaining) [ ] - - location: 122 (remaining gas: 1039783.158 units remaining) + - location: 122 (remaining gas: 1039784.868 units remaining) [ 0x02 ] - - location: 125 (remaining gas: 1039783.148 units remaining) + - location: 125 (remaining gas: 1039784.858 units remaining) [ 0x01 0x02 ] - - location: 128 (remaining gas: 1039783.113 units remaining) + - location: 128 (remaining gas: 1039784.823 units remaining) [ -1 ] - - location: 130 (remaining gas: 1039783.098 units remaining) + - location: 130 (remaining gas: 1039784.813 units remaining) [ True ] - - location: 131 (remaining gas: 1039783.088 units remaining) + - location: 131 (remaining gas: 1039784.803 units remaining) [ ] - - location: 131 (remaining gas: 1039783.073 units remaining) + - location: 131 (remaining gas: 1039784.793 units remaining) [ ] - - location: 137 (remaining gas: 1039783.063 units remaining) + - location: 137 (remaining gas: 1039784.783 units remaining) [ 1 ] - - location: 140 (remaining gas: 1039783.053 units remaining) + - location: 140 (remaining gas: 1039784.773 units remaining) [ 1 1 ] - - location: 141 (remaining gas: 1039783.018 units remaining) + - location: 141 (remaining gas: 1039784.738 units remaining) [ 0 ] - - location: 143 (remaining gas: 1039783.003 units remaining) + - location: 143 (remaining gas: 1039784.728 units remaining) [ True ] - - location: 144 (remaining gas: 1039782.993 units remaining) + - location: 144 (remaining gas: 1039784.718 units remaining) [ ] - - location: 144 (remaining gas: 1039782.978 units remaining) + - location: 144 (remaining gas: 1039784.708 units remaining) [ ] - - location: 150 (remaining gas: 1039782.968 units remaining) + - location: 150 (remaining gas: 1039784.698 units remaining) [ 10 ] - - location: 153 (remaining gas: 1039782.958 units remaining) + - location: 153 (remaining gas: 1039784.688 units remaining) [ 5 10 ] - - location: 156 (remaining gas: 1039782.923 units remaining) + - location: 156 (remaining gas: 1039784.653 units remaining) [ -1 ] - - location: 158 (remaining gas: 1039782.908 units remaining) + - location: 158 (remaining gas: 1039784.643 units remaining) [ True ] - - location: 159 (remaining gas: 1039782.898 units remaining) + - location: 159 (remaining gas: 1039784.633 units remaining) [ ] - - location: 159 (remaining gas: 1039782.883 units remaining) + - location: 159 (remaining gas: 1039784.623 units remaining) [ ] - - location: 165 (remaining gas: 1039782.873 units remaining) + - location: 165 (remaining gas: 1039784.613 units remaining) [ -4 ] - - location: 168 (remaining gas: 1039782.863 units remaining) + - location: 168 (remaining gas: 1039784.603 units remaining) [ 1923 -4 ] - - location: 171 (remaining gas: 1039782.828 units remaining) + - location: 171 (remaining gas: 1039784.568 units remaining) [ 1 ] - - location: 173 (remaining gas: 1039782.813 units remaining) + - location: 173 (remaining gas: 1039784.558 units remaining) [ True ] - - location: 174 (remaining gas: 1039782.803 units remaining) + - location: 174 (remaining gas: 1039784.548 units remaining) [ ] - - location: 174 (remaining gas: 1039782.788 units remaining) + - location: 174 (remaining gas: 1039784.538 units remaining) [ ] - - location: 180 (remaining gas: 1039782.778 units remaining) + - location: 180 (remaining gas: 1039784.528 units remaining) [ 1 ] - - location: 183 (remaining gas: 1039782.768 units remaining) + - location: 183 (remaining gas: 1039784.518 units remaining) [ 1 1 ] - - location: 184 (remaining gas: 1039782.733 units remaining) + - location: 184 (remaining gas: 1039784.483 units remaining) [ 0 ] - - location: 186 (remaining gas: 1039782.718 units remaining) + - location: 186 (remaining gas: 1039784.473 units remaining) [ True ] - - location: 187 (remaining gas: 1039782.708 units remaining) + - location: 187 (remaining gas: 1039784.463 units remaining) [ ] - - location: 187 (remaining gas: 1039782.693 units remaining) + - location: 187 (remaining gas: 1039784.453 units remaining) [ ] - - location: 193 (remaining gas: 1039782.683 units remaining) + - location: 193 (remaining gas: 1039784.443 units remaining) [ 10 ] - - location: 196 (remaining gas: 1039782.673 units remaining) + - location: 196 (remaining gas: 1039784.433 units remaining) [ 5 10 ] - - location: 199 (remaining gas: 1039782.638 units remaining) + - location: 199 (remaining gas: 1039784.398 units remaining) [ -1 ] - - location: 201 (remaining gas: 1039782.623 units remaining) + - location: 201 (remaining gas: 1039784.388 units remaining) [ True ] - - location: 202 (remaining gas: 1039782.613 units remaining) + - location: 202 (remaining gas: 1039784.378 units remaining) [ ] - - location: 202 (remaining gas: 1039782.598 units remaining) + - location: 202 (remaining gas: 1039784.368 units remaining) [ ] - - location: 208 (remaining gas: 1039782.588 units remaining) + - location: 208 (remaining gas: 1039784.358 units remaining) [ 4 ] - - location: 211 (remaining gas: 1039782.578 units remaining) + - location: 211 (remaining gas: 1039784.348 units remaining) [ 1923 4 ] - - location: 214 (remaining gas: 1039782.543 units remaining) + - location: 214 (remaining gas: 1039784.313 units remaining) [ 1 ] - - location: 216 (remaining gas: 1039782.528 units remaining) + - location: 216 (remaining gas: 1039784.303 units remaining) [ True ] - - location: 217 (remaining gas: 1039782.518 units remaining) + - location: 217 (remaining gas: 1039784.293 units remaining) [ ] - - location: 217 (remaining gas: 1039782.503 units remaining) + - location: 217 (remaining gas: 1039784.283 units remaining) [ ] - - location: 223 (remaining gas: 1039782.493 units remaining) + - location: 223 (remaining gas: 1039784.273 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 226 (remaining gas: 1039782.483 units remaining) + - location: 226 (remaining gas: 1039784.263 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 227 (remaining gas: 1039782.447 units remaining) + - location: 227 (remaining gas: 1039784.227 units remaining) [ 0 ] - - location: 229 (remaining gas: 1039782.432 units remaining) + - location: 229 (remaining gas: 1039784.217 units remaining) [ True ] - - location: 230 (remaining gas: 1039782.422 units remaining) + - location: 230 (remaining gas: 1039784.207 units remaining) [ ] - - location: 230 (remaining gas: 1039782.407 units remaining) + - location: 230 (remaining gas: 1039784.197 units remaining) [ ] - - location: 236 (remaining gas: 1039782.397 units remaining) + - location: 236 (remaining gas: 1039784.187 units remaining) [ "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" ] - - location: 239 (remaining gas: 1039782.387 units remaining) + - location: 239 (remaining gas: 1039784.177 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" ] - - location: 242 (remaining gas: 1039782.351 units remaining) + - location: 242 (remaining gas: 1039784.141 units remaining) [ -1 ] - - location: 244 (remaining gas: 1039782.336 units remaining) + - location: 244 (remaining gas: 1039784.131 units remaining) [ True ] - - location: 245 (remaining gas: 1039782.326 units remaining) + - location: 245 (remaining gas: 1039784.121 units remaining) [ ] - - location: 245 (remaining gas: 1039782.311 units remaining) + - location: 245 (remaining gas: 1039784.111 units remaining) [ ] - - location: 251 (remaining gas: 1039782.301 units remaining) + - location: 251 (remaining gas: 1039784.101 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 254 (remaining gas: 1039782.291 units remaining) + - location: 254 (remaining gas: 1039784.091 units remaining) [ "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 257 (remaining gas: 1039782.255 units remaining) + - location: 257 (remaining gas: 1039784.055 units remaining) [ 1 ] - - location: 259 (remaining gas: 1039782.240 units remaining) + - location: 259 (remaining gas: 1039784.045 units remaining) [ True ] - - location: 260 (remaining gas: 1039782.230 units remaining) + - location: 260 (remaining gas: 1039784.035 units remaining) [ ] - - location: 260 (remaining gas: 1039782.215 units remaining) + - location: 260 (remaining gas: 1039784.025 units remaining) [ ] - - location: 266 (remaining gas: 1039782.205 units remaining) + - location: 266 (remaining gas: 1039784.015 units remaining) [ 1 ] - - location: 269 (remaining gas: 1039782.195 units remaining) + - location: 269 (remaining gas: 1039784.005 units remaining) [ 1 1 ] - - location: 270 (remaining gas: 1039782.160 units remaining) + - location: 270 (remaining gas: 1039783.970 units remaining) [ 0 ] - - location: 272 (remaining gas: 1039782.145 units remaining) + - location: 272 (remaining gas: 1039783.960 units remaining) [ True ] - - location: 273 (remaining gas: 1039782.135 units remaining) + - location: 273 (remaining gas: 1039783.950 units remaining) [ ] - - location: 273 (remaining gas: 1039782.120 units remaining) + - location: 273 (remaining gas: 1039783.940 units remaining) [ ] - - location: 279 (remaining gas: 1039782.110 units remaining) + - location: 279 (remaining gas: 1039783.930 units remaining) [ 10 ] - - location: 282 (remaining gas: 1039782.100 units remaining) + - location: 282 (remaining gas: 1039783.920 units remaining) [ 5 10 ] - - location: 285 (remaining gas: 1039782.065 units remaining) + - location: 285 (remaining gas: 1039783.885 units remaining) [ -1 ] - - location: 287 (remaining gas: 1039782.050 units remaining) + - location: 287 (remaining gas: 1039783.875 units remaining) [ True ] - - location: 288 (remaining gas: 1039782.040 units remaining) + - location: 288 (remaining gas: 1039783.865 units remaining) [ ] - - location: 288 (remaining gas: 1039782.025 units remaining) + - location: 288 (remaining gas: 1039783.855 units remaining) [ ] - - location: 294 (remaining gas: 1039782.015 units remaining) + - location: 294 (remaining gas: 1039783.845 units remaining) [ 4 ] - - location: 297 (remaining gas: 1039782.005 units remaining) + - location: 297 (remaining gas: 1039783.835 units remaining) [ 1923 4 ] - - location: 300 (remaining gas: 1039781.970 units remaining) + - location: 300 (remaining gas: 1039783.800 units remaining) [ 1 ] - - location: 302 (remaining gas: 1039781.955 units remaining) + - location: 302 (remaining gas: 1039783.790 units remaining) [ True ] - - location: 303 (remaining gas: 1039781.945 units remaining) + - location: 303 (remaining gas: 1039783.780 units remaining) [ ] - - location: 303 (remaining gas: 1039781.930 units remaining) + - location: 303 (remaining gas: 1039783.770 units remaining) [ ] - - location: 309 (remaining gas: 1039781.920 units remaining) + - location: 309 (remaining gas: 1039783.760 units remaining) [ "AABBCC" ] - - location: 312 (remaining gas: 1039781.910 units remaining) + - location: 312 (remaining gas: 1039783.750 units remaining) [ "AABBCC" "AABBCC" ] - - location: 313 (remaining gas: 1039781.875 units remaining) + - location: 313 (remaining gas: 1039783.715 units remaining) [ 0 ] - - location: 315 (remaining gas: 1039781.860 units remaining) + - location: 315 (remaining gas: 1039783.705 units remaining) [ True ] - - location: 316 (remaining gas: 1039781.850 units remaining) + - location: 316 (remaining gas: 1039783.695 units remaining) [ ] - - location: 316 (remaining gas: 1039781.835 units remaining) + - location: 316 (remaining gas: 1039783.685 units remaining) [ ] - - location: 322 (remaining gas: 1039781.825 units remaining) + - location: 322 (remaining gas: 1039783.675 units remaining) [ "" ] - - location: 325 (remaining gas: 1039781.815 units remaining) + - location: 325 (remaining gas: 1039783.665 units remaining) [ "" "" ] - - location: 328 (remaining gas: 1039781.780 units remaining) + - location: 328 (remaining gas: 1039783.630 units remaining) [ 0 ] - - location: 330 (remaining gas: 1039781.765 units remaining) + - location: 330 (remaining gas: 1039783.620 units remaining) [ True ] - - location: 331 (remaining gas: 1039781.755 units remaining) + - location: 331 (remaining gas: 1039783.610 units remaining) [ ] - - location: 331 (remaining gas: 1039781.740 units remaining) + - location: 331 (remaining gas: 1039783.600 units remaining) [ ] - - location: 337 (remaining gas: 1039781.730 units remaining) + - location: 337 (remaining gas: 1039783.590 units remaining) [ "" ] - - location: 340 (remaining gas: 1039781.720 units remaining) + - location: 340 (remaining gas: 1039783.580 units remaining) [ "a" "" ] - - location: 343 (remaining gas: 1039781.685 units remaining) + - location: 343 (remaining gas: 1039783.545 units remaining) [ 1 ] - - location: 345 (remaining gas: 1039781.670 units remaining) + - location: 345 (remaining gas: 1039783.535 units remaining) [ True ] - - location: 346 (remaining gas: 1039781.660 units remaining) + - location: 346 (remaining gas: 1039783.525 units remaining) [ ] - - location: 346 (remaining gas: 1039781.645 units remaining) + - location: 346 (remaining gas: 1039783.515 units remaining) [ ] - - location: 352 (remaining gas: 1039781.635 units remaining) + - location: 352 (remaining gas: 1039783.505 units remaining) [ "a" ] - - location: 355 (remaining gas: 1039781.625 units remaining) + - location: 355 (remaining gas: 1039783.495 units remaining) [ "b" "a" ] - - location: 358 (remaining gas: 1039781.590 units remaining) + - location: 358 (remaining gas: 1039783.460 units remaining) [ 1 ] - - location: 360 (remaining gas: 1039781.575 units remaining) + - location: 360 (remaining gas: 1039783.450 units remaining) [ True ] - - location: 361 (remaining gas: 1039781.565 units remaining) + - location: 361 (remaining gas: 1039783.440 units remaining) [ ] - - location: 361 (remaining gas: 1039781.550 units remaining) + - location: 361 (remaining gas: 1039783.430 units remaining) [ ] - - location: 367 (remaining gas: 1039781.540 units remaining) + - location: 367 (remaining gas: 1039783.420 units remaining) [ "b" ] - - location: 370 (remaining gas: 1039781.530 units remaining) + - location: 370 (remaining gas: 1039783.410 units remaining) [ "a" "b" ] - - location: 373 (remaining gas: 1039781.495 units remaining) + - location: 373 (remaining gas: 1039783.375 units remaining) [ -1 ] - - location: 375 (remaining gas: 1039781.480 units remaining) + - location: 375 (remaining gas: 1039783.365 units remaining) [ True ] - - location: 376 (remaining gas: 1039781.470 units remaining) + - location: 376 (remaining gas: 1039783.355 units remaining) [ ] - - location: 376 (remaining gas: 1039781.455 units remaining) + - location: 376 (remaining gas: 1039783.345 units remaining) [ ] - - location: 382 (remaining gas: 1039781.445 units remaining) + - location: 382 (remaining gas: 1039783.335 units remaining) [ "2019-09-16T08:38:05Z" ] - - location: 385 (remaining gas: 1039781.435 units remaining) + - location: 385 (remaining gas: 1039783.325 units remaining) [ "2019-09-16T08:38:05Z" "2019-09-16T08:38:05Z" ] - - location: 386 (remaining gas: 1039781.400 units remaining) + - location: 386 (remaining gas: 1039783.290 units remaining) [ 0 ] - - location: 388 (remaining gas: 1039781.385 units remaining) + - location: 388 (remaining gas: 1039783.280 units remaining) [ True ] - - location: 389 (remaining gas: 1039781.375 units remaining) + - location: 389 (remaining gas: 1039783.270 units remaining) [ ] - - location: 389 (remaining gas: 1039781.360 units remaining) + - location: 389 (remaining gas: 1039783.260 units remaining) [ ] - - location: 395 (remaining gas: 1039781.350 units remaining) + - location: 395 (remaining gas: 1039783.250 units remaining) [ "2017-09-16T08:38:04Z" ] - - location: 398 (remaining gas: 1039781.340 units remaining) + - location: 398 (remaining gas: 1039783.240 units remaining) [ "2019-09-16T08:38:05Z" "2017-09-16T08:38:04Z" ] - - location: 401 (remaining gas: 1039781.305 units remaining) + - location: 401 (remaining gas: 1039783.205 units remaining) [ 1 ] - - location: 403 (remaining gas: 1039781.290 units remaining) + - location: 403 (remaining gas: 1039783.195 units remaining) [ True ] - - location: 404 (remaining gas: 1039781.280 units remaining) + - location: 404 (remaining gas: 1039783.185 units remaining) [ ] - - location: 404 (remaining gas: 1039781.265 units remaining) + - location: 404 (remaining gas: 1039783.175 units remaining) [ ] - - location: 410 (remaining gas: 1039781.255 units remaining) + - location: 410 (remaining gas: 1039783.165 units remaining) [ "2019-09-16T08:38:05Z" ] - - location: 413 (remaining gas: 1039781.245 units remaining) + - location: 413 (remaining gas: 1039783.155 units remaining) [ "2019-09-16T08:38:04Z" "2019-09-16T08:38:05Z" ] - - location: 416 (remaining gas: 1039781.210 units remaining) + - location: 416 (remaining gas: 1039783.120 units remaining) [ -1 ] - - location: 418 (remaining gas: 1039781.195 units remaining) + - location: 418 (remaining gas: 1039783.110 units remaining) [ True ] - - location: 419 (remaining gas: 1039781.185 units remaining) + - location: 419 (remaining gas: 1039783.100 units remaining) [ ] - - location: 419 (remaining gas: 1039781.170 units remaining) + - location: 419 (remaining gas: 1039783.090 units remaining) [ ] - - location: 425 (remaining gas: 1039781.160 units remaining) + - location: 425 (remaining gas: 1039783.080 units remaining) [ Unit ] - - location: 426 (remaining gas: 1039781.145 units remaining) + - location: 426 (remaining gas: 1039783.070 units remaining) [ {} Unit ] - - location: 428 (remaining gas: 1039781.130 units remaining) + - location: 428 (remaining gas: 1039783.060 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out index 3c6e7c1e52b1..cc47c2c83b8c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[comparisons.tz-{}-{ -9999999; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out @@ -12,326 +12,326 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039963.682 units remaining) + - location: 10 (remaining gas: 1039968.162 units remaining) [ (Pair { -9999999 ; -1 ; 0 ; 1 ; 9999999 } {}) ] - - location: 10 (remaining gas: 1039963.672 units remaining) + - location: 10 (remaining gas: 1039968.152 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 11 (remaining gas: 1039963.657 units remaining) + - location: 11 (remaining gas: 1039968.142 units remaining) [ {} { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 14 (remaining gas: 1039963.642 units remaining) + - location: 14 (remaining gas: 1039968.132 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 16 (remaining gas: 1039963.632 units remaining) + - location: 16 (remaining gas: 1039968.122 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039963.632 units remaining) + - location: 17 (remaining gas: 1039968.122 units remaining) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039963.617 units remaining) + - location: 19 (remaining gas: 1039968.112 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039963.602 units remaining) + - location: 17 (remaining gas: 1039968.102 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039963.587 units remaining) + - location: 19 (remaining gas: 1039968.092 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039963.572 units remaining) + - location: 17 (remaining gas: 1039968.082 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039963.557 units remaining) + - location: 19 (remaining gas: 1039968.072 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039963.542 units remaining) + - location: 17 (remaining gas: 1039968.062 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039963.527 units remaining) + - location: 19 (remaining gas: 1039968.052 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039963.512 units remaining) + - location: 17 (remaining gas: 1039968.042 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039963.497 units remaining) + - location: 19 (remaining gas: 1039968.032 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039963.482 units remaining) + - location: 17 (remaining gas: 1039968.022 units remaining) [ { False ; False ; True ; False ; False } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 14 (remaining gas: 1039963.452 units remaining) + - location: 14 (remaining gas: 1039968.002 units remaining) [ {} { False ; False ; True ; False ; False } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 20 (remaining gas: 1039963.442 units remaining) + - location: 20 (remaining gas: 1039967.992 units remaining) [ { False ; False ; True ; False ; False } {} { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 21 (remaining gas: 1039963.427 units remaining) + - location: 21 (remaining gas: 1039967.982 units remaining) [ { { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 22 (remaining gas: 1039963.412 units remaining) + - location: 22 (remaining gas: 1039967.972 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 24 (remaining gas: 1039963.402 units remaining) + - location: 24 (remaining gas: 1039967.962 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039963.402 units remaining) + - location: 25 (remaining gas: 1039967.962 units remaining) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039963.387 units remaining) + - location: 27 (remaining gas: 1039967.952 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039963.372 units remaining) + - location: 25 (remaining gas: 1039967.942 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039963.357 units remaining) + - location: 27 (remaining gas: 1039967.932 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039963.342 units remaining) + - location: 25 (remaining gas: 1039967.922 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039963.327 units remaining) + - location: 27 (remaining gas: 1039967.912 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039963.312 units remaining) + - location: 25 (remaining gas: 1039967.902 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039963.297 units remaining) + - location: 27 (remaining gas: 1039967.892 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039963.282 units remaining) + - location: 25 (remaining gas: 1039967.882 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039963.267 units remaining) + - location: 27 (remaining gas: 1039967.872 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039963.252 units remaining) + - location: 25 (remaining gas: 1039967.862 units remaining) [ { True ; True ; False ; True ; True } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 22 (remaining gas: 1039963.222 units remaining) + - location: 22 (remaining gas: 1039967.842 units remaining) [ { { False ; False ; True ; False ; False } } { True ; True ; False ; True ; True } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 28 (remaining gas: 1039963.212 units remaining) + - location: 28 (remaining gas: 1039967.832 units remaining) [ { True ; True ; False ; True ; True } { { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 29 (remaining gas: 1039963.197 units remaining) + - location: 29 (remaining gas: 1039967.822 units remaining) [ { { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 30 (remaining gas: 1039963.182 units remaining) + - location: 30 (remaining gas: 1039967.812 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 32 (remaining gas: 1039963.172 units remaining) + - location: 32 (remaining gas: 1039967.802 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039963.172 units remaining) + - location: 33 (remaining gas: 1039967.802 units remaining) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039963.157 units remaining) + - location: 35 (remaining gas: 1039967.792 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039963.142 units remaining) + - location: 33 (remaining gas: 1039967.782 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039963.127 units remaining) + - location: 35 (remaining gas: 1039967.772 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039963.112 units remaining) + - location: 33 (remaining gas: 1039967.762 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039963.097 units remaining) + - location: 35 (remaining gas: 1039967.752 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039963.082 units remaining) + - location: 33 (remaining gas: 1039967.742 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039963.067 units remaining) + - location: 35 (remaining gas: 1039967.732 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039963.052 units remaining) + - location: 33 (remaining gas: 1039967.722 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039963.037 units remaining) + - location: 35 (remaining gas: 1039967.712 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039963.022 units remaining) + - location: 33 (remaining gas: 1039967.702 units remaining) [ { True ; True ; True ; False ; False } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 30 (remaining gas: 1039962.992 units remaining) + - location: 30 (remaining gas: 1039967.682 units remaining) [ { { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } { True ; True ; True ; False ; False } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 36 (remaining gas: 1039962.982 units remaining) + - location: 36 (remaining gas: 1039967.672 units remaining) [ { True ; True ; True ; False ; False } { { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 37 (remaining gas: 1039962.967 units remaining) + - location: 37 (remaining gas: 1039967.662 units remaining) [ { { True ; True ; True ; False ; False } ; { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 38 (remaining gas: 1039962.952 units remaining) + - location: 38 (remaining gas: 1039967.652 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 40 (remaining gas: 1039962.942 units remaining) + - location: 40 (remaining gas: 1039967.642 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039962.942 units remaining) + - location: 41 (remaining gas: 1039967.642 units remaining) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039962.927 units remaining) + - location: 43 (remaining gas: 1039967.632 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039962.912 units remaining) + - location: 41 (remaining gas: 1039967.622 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039962.897 units remaining) + - location: 43 (remaining gas: 1039967.612 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039962.882 units remaining) + - location: 41 (remaining gas: 1039967.602 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039962.867 units remaining) + - location: 43 (remaining gas: 1039967.592 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039962.852 units remaining) + - location: 41 (remaining gas: 1039967.582 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039962.837 units remaining) + - location: 43 (remaining gas: 1039967.572 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039962.822 units remaining) + - location: 41 (remaining gas: 1039967.562 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039962.807 units remaining) + - location: 43 (remaining gas: 1039967.552 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039962.792 units remaining) + - location: 41 (remaining gas: 1039967.542 units remaining) [ { True ; True ; False ; False ; False } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 38 (remaining gas: 1039962.762 units remaining) + - location: 38 (remaining gas: 1039967.522 units remaining) [ { { True ; True ; True ; False ; False } ; { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } { True ; True ; False ; False ; False } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 44 (remaining gas: 1039962.752 units remaining) + - location: 44 (remaining gas: 1039967.512 units remaining) [ { True ; True ; False ; False ; False } { { True ; True ; True ; False ; False } ; { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 45 (remaining gas: 1039962.737 units remaining) + - location: 45 (remaining gas: 1039967.502 units remaining) [ { { True ; True ; False ; False ; False } ; { True ; True ; True ; False ; False } ; { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 46 (remaining gas: 1039962.722 units remaining) + - location: 46 (remaining gas: 1039967.492 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 48 (remaining gas: 1039962.712 units remaining) + - location: 48 (remaining gas: 1039967.482 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039962.712 units remaining) + - location: 49 (remaining gas: 1039967.482 units remaining) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039962.697 units remaining) + - location: 51 (remaining gas: 1039967.472 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039962.682 units remaining) + - location: 49 (remaining gas: 1039967.462 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039962.667 units remaining) + - location: 51 (remaining gas: 1039967.452 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039962.652 units remaining) + - location: 49 (remaining gas: 1039967.442 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039962.637 units remaining) + - location: 51 (remaining gas: 1039967.432 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039962.622 units remaining) + - location: 49 (remaining gas: 1039967.422 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039962.607 units remaining) + - location: 51 (remaining gas: 1039967.412 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039962.592 units remaining) + - location: 49 (remaining gas: 1039967.402 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039962.577 units remaining) + - location: 51 (remaining gas: 1039967.392 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039962.562 units remaining) + - location: 49 (remaining gas: 1039967.382 units remaining) [ { False ; False ; True ; True ; True } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 46 (remaining gas: 1039962.532 units remaining) + - location: 46 (remaining gas: 1039967.362 units remaining) [ { { True ; True ; False ; False ; False } ; { True ; True ; True ; False ; False } ; { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } { False ; False ; True ; True ; True } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 52 (remaining gas: 1039962.522 units remaining) + - location: 52 (remaining gas: 1039967.352 units remaining) [ { False ; False ; True ; True ; True } { { True ; True ; False ; False ; False } ; { True ; True ; True ; False ; False } ; { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 53 (remaining gas: 1039962.507 units remaining) + - location: 53 (remaining gas: 1039967.342 units remaining) [ { { False ; False ; True ; True ; True } ; { True ; True ; False ; False ; False } ; { True ; True ; True ; False ; False } ; { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 54 (remaining gas: 1039962.492 units remaining) + - location: 54 (remaining gas: 1039967.332 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 56 (remaining gas: 1039962.492 units remaining) + - location: 56 (remaining gas: 1039967.332 units remaining) [ -9999999 ] - - location: 58 (remaining gas: 1039962.477 units remaining) + - location: 58 (remaining gas: 1039967.322 units remaining) [ False ] - - location: 56 (remaining gas: 1039962.462 units remaining) + - location: 56 (remaining gas: 1039967.312 units remaining) [ -1 ] - - location: 58 (remaining gas: 1039962.447 units remaining) + - location: 58 (remaining gas: 1039967.302 units remaining) [ False ] - - location: 56 (remaining gas: 1039962.432 units remaining) + - location: 56 (remaining gas: 1039967.292 units remaining) [ 0 ] - - location: 58 (remaining gas: 1039962.417 units remaining) + - location: 58 (remaining gas: 1039967.282 units remaining) [ False ] - - location: 56 (remaining gas: 1039962.402 units remaining) + - location: 56 (remaining gas: 1039967.272 units remaining) [ 1 ] - - location: 58 (remaining gas: 1039962.387 units remaining) + - location: 58 (remaining gas: 1039967.262 units remaining) [ True ] - - location: 56 (remaining gas: 1039962.372 units remaining) + - location: 56 (remaining gas: 1039967.252 units remaining) [ 9999999 ] - - location: 58 (remaining gas: 1039962.357 units remaining) + - location: 58 (remaining gas: 1039967.242 units remaining) [ True ] - - location: 56 (remaining gas: 1039962.342 units remaining) + - location: 56 (remaining gas: 1039967.232 units remaining) [ { False ; False ; False ; True ; True } ] - - location: 54 (remaining gas: 1039962.312 units remaining) + - location: 54 (remaining gas: 1039967.212 units remaining) [ { { False ; False ; True ; True ; True } ; { True ; True ; False ; False ; False } ; { True ; True ; True ; False ; False } ; { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } { False ; False ; False ; True ; True } ] - - location: 59 (remaining gas: 1039962.302 units remaining) + - location: 59 (remaining gas: 1039967.202 units remaining) [ { False ; False ; False ; True ; True } { { False ; False ; True ; True ; True } ; { True ; True ; False ; False ; False } ; { True ; True ; True ; False ; False } ; { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } ] - - location: 60 (remaining gas: 1039962.287 units remaining) + - location: 60 (remaining gas: 1039967.192 units remaining) [ { { False ; False ; False ; True ; True } ; { False ; False ; True ; True ; True } ; { True ; True ; False ; False ; False } ; { True ; True ; True ; False ; False } ; { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } ] - - location: 61 (remaining gas: 1039962.272 units remaining) + - location: 61 (remaining gas: 1039967.182 units remaining) [ {} { { False ; False ; False ; True ; True } ; { False ; False ; True ; True ; True } ; @@ -339,7 +339,7 @@ trace { True ; True ; True ; False ; False } ; { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } ] - - location: 63 (remaining gas: 1039962.257 units remaining) + - location: 63 (remaining gas: 1039967.172 units remaining) [ (Pair {} { { False ; False ; False ; True ; True } ; { False ; False ; True ; True ; True } ; diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" index e88cf2ef28e0..d91071f1fa01 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"World!\" }-{ \"Hello World!\" }].out" @@ -7,22 +7,22 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.315 units remaining) + - location: 9 (remaining gas: 1039993.115 units remaining) [ (Pair { "World!" } {}) ] - - location: 9 (remaining gas: 1039992.305 units remaining) + - location: 9 (remaining gas: 1039993.105 units remaining) [ { "World!" } ] - - location: 10 (remaining gas: 1039992.305 units remaining) + - location: 10 (remaining gas: 1039993.105 units remaining) [ "World!" ] - - location: 12 (remaining gas: 1039992.295 units remaining) + - location: 12 (remaining gas: 1039993.095 units remaining) [ "Hello " "World!" ] - - location: 15 (remaining gas: 1039992.230 units remaining) + - location: 15 (remaining gas: 1039993.050 units remaining) [ "Hello World!" ] - - location: 10 (remaining gas: 1039992.215 units remaining) + - location: 10 (remaining gas: 1039993.040 units remaining) [ { "Hello World!" } ] - - location: 16 (remaining gas: 1039992.200 units remaining) + - location: 16 (remaining gas: 1039993.030 units remaining) [ {} { "Hello World!" } ] - - location: 18 (remaining gas: 1039992.185 units remaining) + - location: 18 (remaining gas: 1039993.020 units remaining) [ (Pair {} { "Hello World!" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" index 36f826790ecd..2513c6bc9180 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{ \"test1\" ; \"test2\" }-{ \"Hello test1.c27e8c3ee6.out" @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.161 units remaining) + - location: 9 (remaining gas: 1039992.961 units remaining) [ (Pair { "test1" ; "test2" } {}) ] - - location: 9 (remaining gas: 1039992.151 units remaining) + - location: 9 (remaining gas: 1039992.951 units remaining) [ { "test1" ; "test2" } ] - - location: 10 (remaining gas: 1039992.151 units remaining) + - location: 10 (remaining gas: 1039992.951 units remaining) [ "test1" ] - - location: 12 (remaining gas: 1039992.141 units remaining) + - location: 12 (remaining gas: 1039992.941 units remaining) [ "Hello " "test1" ] - - location: 15 (remaining gas: 1039992.076 units remaining) + - location: 15 (remaining gas: 1039992.896 units remaining) [ "Hello test1" ] - - location: 10 (remaining gas: 1039992.061 units remaining) + - location: 10 (remaining gas: 1039992.886 units remaining) [ "test2" ] - - location: 12 (remaining gas: 1039992.051 units remaining) + - location: 12 (remaining gas: 1039992.876 units remaining) [ "Hello " "test2" ] - - location: 15 (remaining gas: 1039991.986 units remaining) + - location: 15 (remaining gas: 1039992.831 units remaining) [ "Hello test2" ] - - location: 10 (remaining gas: 1039991.971 units remaining) + - location: 10 (remaining gas: 1039992.821 units remaining) [ { "Hello test1" ; "Hello test2" } ] - - location: 16 (remaining gas: 1039991.956 units remaining) + - location: 16 (remaining gas: 1039992.811 units remaining) [ {} { "Hello test1" ; "Hello test2" } ] - - location: 18 (remaining gas: 1039991.941 units remaining) + - location: 18 (remaining gas: 1039992.801 units remaining) [ (Pair {} { "Hello test1" ; "Hello test2" }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out index 9af1337fbe87..69572d5af697 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello.tz-{}-{}-{}].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.489 units remaining) + - location: 9 (remaining gas: 1039993.289 units remaining) [ (Pair {} {}) ] - - location: 9 (remaining gas: 1039992.479 units remaining) + - location: 9 (remaining gas: 1039993.279 units remaining) [ {} ] - - location: 10 (remaining gas: 1039992.479 units remaining) + - location: 10 (remaining gas: 1039993.279 units remaining) [ {} ] - - location: 16 (remaining gas: 1039992.464 units remaining) + - location: 16 (remaining gas: 1039993.269 units remaining) [ {} {} ] - - location: 18 (remaining gas: 1039992.449 units remaining) + - location: 18 (remaining gas: 1039993.259 units remaining) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out index 549079261d91..b61205aa9df4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.408 units remaining) + - location: 9 (remaining gas: 1039993.208 units remaining) [ (Pair { 0xab ; 0xcd } {}) ] - - location: 9 (remaining gas: 1039992.398 units remaining) + - location: 9 (remaining gas: 1039993.198 units remaining) [ { 0xab ; 0xcd } ] - - location: 10 (remaining gas: 1039992.398 units remaining) + - location: 10 (remaining gas: 1039993.198 units remaining) [ 0xab ] - - location: 12 (remaining gas: 1039992.388 units remaining) + - location: 12 (remaining gas: 1039993.188 units remaining) [ 0xff 0xab ] - - location: 15 (remaining gas: 1039992.323 units remaining) + - location: 15 (remaining gas: 1039993.143 units remaining) [ 0xffab ] - - location: 10 (remaining gas: 1039992.308 units remaining) + - location: 10 (remaining gas: 1039993.133 units remaining) [ 0xcd ] - - location: 12 (remaining gas: 1039992.298 units remaining) + - location: 12 (remaining gas: 1039993.123 units remaining) [ 0xff 0xcd ] - - location: 15 (remaining gas: 1039992.233 units remaining) + - location: 15 (remaining gas: 1039993.078 units remaining) [ 0xffcd ] - - location: 10 (remaining gas: 1039992.218 units remaining) + - location: 10 (remaining gas: 1039993.068 units remaining) [ { 0xffab ; 0xffcd } ] - - location: 16 (remaining gas: 1039992.203 units remaining) + - location: 16 (remaining gas: 1039993.058 units remaining) [ {} { 0xffab ; 0xffcd } ] - - location: 18 (remaining gas: 1039992.188 units remaining) + - location: 18 (remaining gas: 1039993.048 units remaining) [ (Pair {} { 0xffab ; 0xffcd }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out index b7a2f30e144f..eb284297fc8f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out @@ -7,22 +7,22 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.508 units remaining) + - location: 9 (remaining gas: 1039993.308 units remaining) [ (Pair { 0xcd } {}) ] - - location: 9 (remaining gas: 1039992.498 units remaining) + - location: 9 (remaining gas: 1039993.298 units remaining) [ { 0xcd } ] - - location: 10 (remaining gas: 1039992.498 units remaining) + - location: 10 (remaining gas: 1039993.298 units remaining) [ 0xcd ] - - location: 12 (remaining gas: 1039992.488 units remaining) + - location: 12 (remaining gas: 1039993.288 units remaining) [ 0xff 0xcd ] - - location: 15 (remaining gas: 1039992.423 units remaining) + - location: 15 (remaining gas: 1039993.243 units remaining) [ 0xffcd ] - - location: 10 (remaining gas: 1039992.408 units remaining) + - location: 10 (remaining gas: 1039993.233 units remaining) [ { 0xffcd } ] - - location: 16 (remaining gas: 1039992.393 units remaining) + - location: 16 (remaining gas: 1039993.223 units remaining) [ {} { 0xffcd } ] - - location: 18 (remaining gas: 1039992.378 units remaining) + - location: 18 (remaining gas: 1039993.213 units remaining) [ (Pair {} { 0xffcd }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out index e97a1a0b9ac7..57e8d7107be9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_hello_bytes.tz-{}-{}-{}].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.608 units remaining) + - location: 9 (remaining gas: 1039993.408 units remaining) [ (Pair {} {}) ] - - location: 9 (remaining gas: 1039992.598 units remaining) + - location: 9 (remaining gas: 1039993.398 units remaining) [ {} ] - - location: 10 (remaining gas: 1039992.598 units remaining) + - location: 10 (remaining gas: 1039993.398 units remaining) [ {} ] - - location: 16 (remaining gas: 1039992.583 units remaining) + - location: 16 (remaining gas: 1039993.388 units remaining) [ {} {} ] - - location: 18 (remaining gas: 1039992.568 units remaining) + - location: 18 (remaining gas: 1039993.378 units remaining) [ (Pair {} {}) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" index f177953acc84..0e9e3276ed81 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"Hello\" ; \" \" ; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" @@ -7,113 +7,113 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039987.227 units remaining) + - location: 8 (remaining gas: 1039988.347 units remaining) [ (Pair { "Hello" ; " " ; "World" ; "!" } "") ] - - location: 8 (remaining gas: 1039987.217 units remaining) + - location: 8 (remaining gas: 1039988.337 units remaining) [ { "Hello" ; " " ; "World" ; "!" } ] - - location: 9 (remaining gas: 1039987.207 units remaining) + - location: 9 (remaining gas: 1039988.327 units remaining) [ "" { "Hello" ; " " ; "World" ; "!" } ] - - location: 12 (remaining gas: 1039987.197 units remaining) + - location: 12 (remaining gas: 1039988.317 units remaining) [ { "Hello" ; " " ; "World" ; "!" } "" ] - - location: 13 (remaining gas: 1039987.197 units remaining) + - location: 13 (remaining gas: 1039988.317 units remaining) [ "Hello" "" ] - - location: 15 (remaining gas: 1039987.187 units remaining) + - location: 15 (remaining gas: 1039988.307 units remaining) [ "" "Hello" ] - - location: 16 (remaining gas: 1039987.172 units remaining) + - location: 16 (remaining gas: 1039988.297 units remaining) [ "Hello" ] - - location: 18 (remaining gas: 1039987.157 units remaining) + - location: 18 (remaining gas: 1039988.287 units remaining) [ {} "Hello" ] - - location: 20 (remaining gas: 1039987.147 units remaining) + - location: 20 (remaining gas: 1039988.277 units remaining) [ "Hello" {} ] - - location: 21 (remaining gas: 1039987.132 units remaining) + - location: 21 (remaining gas: 1039988.267 units remaining) [ { "Hello" } ] - - location: 16 (remaining gas: 1039987.102 units remaining) + - location: 16 (remaining gas: 1039988.247 units remaining) [ "" { "Hello" } ] - - location: 22 (remaining gas: 1039987.087 units remaining) + - location: 22 (remaining gas: 1039988.237 units remaining) [ { "" ; "Hello" } ] - - location: 23 (remaining gas: 1039986.967 units remaining) + - location: 23 (remaining gas: 1039988.117 units remaining) [ "Hello" ] - - location: 13 (remaining gas: 1039986.952 units remaining) + - location: 13 (remaining gas: 1039988.107 units remaining) [ " " "Hello" ] - - location: 15 (remaining gas: 1039986.942 units remaining) + - location: 15 (remaining gas: 1039988.097 units remaining) [ "Hello" " " ] - - location: 16 (remaining gas: 1039986.927 units remaining) + - location: 16 (remaining gas: 1039988.087 units remaining) [ " " ] - - location: 18 (remaining gas: 1039986.912 units remaining) + - location: 18 (remaining gas: 1039988.077 units remaining) [ {} " " ] - - location: 20 (remaining gas: 1039986.902 units remaining) + - location: 20 (remaining gas: 1039988.067 units remaining) [ " " {} ] - - location: 21 (remaining gas: 1039986.887 units remaining) + - location: 21 (remaining gas: 1039988.057 units remaining) [ { " " } ] - - location: 16 (remaining gas: 1039986.857 units remaining) + - location: 16 (remaining gas: 1039988.037 units remaining) [ "Hello" { " " } ] - - location: 22 (remaining gas: 1039986.842 units remaining) + - location: 22 (remaining gas: 1039988.027 units remaining) [ { "Hello" ; " " } ] - - location: 23 (remaining gas: 1039986.722 units remaining) + - location: 23 (remaining gas: 1039987.907 units remaining) [ "Hello " ] - - location: 13 (remaining gas: 1039986.707 units remaining) + - location: 13 (remaining gas: 1039987.897 units remaining) [ "World" "Hello " ] - - location: 15 (remaining gas: 1039986.697 units remaining) + - location: 15 (remaining gas: 1039987.887 units remaining) [ "Hello " "World" ] - - location: 16 (remaining gas: 1039986.682 units remaining) + - location: 16 (remaining gas: 1039987.877 units remaining) [ "World" ] - - location: 18 (remaining gas: 1039986.667 units remaining) + - location: 18 (remaining gas: 1039987.867 units remaining) [ {} "World" ] - - location: 20 (remaining gas: 1039986.657 units remaining) + - location: 20 (remaining gas: 1039987.857 units remaining) [ "World" {} ] - - location: 21 (remaining gas: 1039986.642 units remaining) + - location: 21 (remaining gas: 1039987.847 units remaining) [ { "World" } ] - - location: 16 (remaining gas: 1039986.612 units remaining) + - location: 16 (remaining gas: 1039987.827 units remaining) [ "Hello " { "World" } ] - - location: 22 (remaining gas: 1039986.597 units remaining) + - location: 22 (remaining gas: 1039987.817 units remaining) [ { "Hello " ; "World" } ] - - location: 23 (remaining gas: 1039986.476 units remaining) + - location: 23 (remaining gas: 1039987.696 units remaining) [ "Hello World" ] - - location: 13 (remaining gas: 1039986.461 units remaining) + - location: 13 (remaining gas: 1039987.686 units remaining) [ "!" "Hello World" ] - - location: 15 (remaining gas: 1039986.451 units remaining) + - location: 15 (remaining gas: 1039987.676 units remaining) [ "Hello World" "!" ] - - location: 16 (remaining gas: 1039986.436 units remaining) + - location: 16 (remaining gas: 1039987.666 units remaining) [ "!" ] - - location: 18 (remaining gas: 1039986.421 units remaining) + - location: 18 (remaining gas: 1039987.656 units remaining) [ {} "!" ] - - location: 20 (remaining gas: 1039986.411 units remaining) + - location: 20 (remaining gas: 1039987.646 units remaining) [ "!" {} ] - - location: 21 (remaining gas: 1039986.396 units remaining) + - location: 21 (remaining gas: 1039987.636 units remaining) [ { "!" } ] - - location: 16 (remaining gas: 1039986.366 units remaining) + - location: 16 (remaining gas: 1039987.616 units remaining) [ "Hello World" { "!" } ] - - location: 22 (remaining gas: 1039986.351 units remaining) + - location: 22 (remaining gas: 1039987.606 units remaining) [ { "Hello World" ; "!" } ] - - location: 23 (remaining gas: 1039986.230 units remaining) + - location: 23 (remaining gas: 1039987.485 units remaining) [ "Hello World!" ] - - location: 13 (remaining gas: 1039986.215 units remaining) + - location: 13 (remaining gas: 1039987.475 units remaining) [ "Hello World!" ] - - location: 24 (remaining gas: 1039986.200 units remaining) + - location: 24 (remaining gas: 1039987.465 units remaining) [ {} "Hello World!" ] - - location: 26 (remaining gas: 1039986.185 units remaining) + - location: 26 (remaining gas: 1039987.455 units remaining) [ (Pair {} "Hello World!") ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" index 826d8b79377a..cd24376650f9 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" @@ -7,90 +7,90 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039987.431 units remaining) + - location: 8 (remaining gas: 1039988.551 units remaining) [ (Pair { "a" ; "b" ; "c" } "") ] - - location: 8 (remaining gas: 1039987.421 units remaining) + - location: 8 (remaining gas: 1039988.541 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 9 (remaining gas: 1039987.411 units remaining) + - location: 9 (remaining gas: 1039988.531 units remaining) [ "" { "a" ; "b" ; "c" } ] - - location: 12 (remaining gas: 1039987.401 units remaining) + - location: 12 (remaining gas: 1039988.521 units remaining) [ { "a" ; "b" ; "c" } "" ] - - location: 13 (remaining gas: 1039987.401 units remaining) + - location: 13 (remaining gas: 1039988.521 units remaining) [ "a" "" ] - - location: 15 (remaining gas: 1039987.391 units remaining) + - location: 15 (remaining gas: 1039988.511 units remaining) [ "" "a" ] - - location: 16 (remaining gas: 1039987.376 units remaining) + - location: 16 (remaining gas: 1039988.501 units remaining) [ "a" ] - - location: 18 (remaining gas: 1039987.361 units remaining) + - location: 18 (remaining gas: 1039988.491 units remaining) [ {} "a" ] - - location: 20 (remaining gas: 1039987.351 units remaining) + - location: 20 (remaining gas: 1039988.481 units remaining) [ "a" {} ] - - location: 21 (remaining gas: 1039987.336 units remaining) + - location: 21 (remaining gas: 1039988.471 units remaining) [ { "a" } ] - - location: 16 (remaining gas: 1039987.306 units remaining) + - location: 16 (remaining gas: 1039988.451 units remaining) [ "" { "a" } ] - - location: 22 (remaining gas: 1039987.291 units remaining) + - location: 22 (remaining gas: 1039988.441 units remaining) [ { "" ; "a" } ] - - location: 23 (remaining gas: 1039987.171 units remaining) + - location: 23 (remaining gas: 1039988.321 units remaining) [ "a" ] - - location: 13 (remaining gas: 1039987.156 units remaining) + - location: 13 (remaining gas: 1039988.311 units remaining) [ "b" "a" ] - - location: 15 (remaining gas: 1039987.146 units remaining) + - location: 15 (remaining gas: 1039988.301 units remaining) [ "a" "b" ] - - location: 16 (remaining gas: 1039987.131 units remaining) + - location: 16 (remaining gas: 1039988.291 units remaining) [ "b" ] - - location: 18 (remaining gas: 1039987.116 units remaining) + - location: 18 (remaining gas: 1039988.281 units remaining) [ {} "b" ] - - location: 20 (remaining gas: 1039987.106 units remaining) + - location: 20 (remaining gas: 1039988.271 units remaining) [ "b" {} ] - - location: 21 (remaining gas: 1039987.091 units remaining) + - location: 21 (remaining gas: 1039988.261 units remaining) [ { "b" } ] - - location: 16 (remaining gas: 1039987.061 units remaining) + - location: 16 (remaining gas: 1039988.241 units remaining) [ "a" { "b" } ] - - location: 22 (remaining gas: 1039987.046 units remaining) + - location: 22 (remaining gas: 1039988.231 units remaining) [ { "a" ; "b" } ] - - location: 23 (remaining gas: 1039986.926 units remaining) + - location: 23 (remaining gas: 1039988.111 units remaining) [ "ab" ] - - location: 13 (remaining gas: 1039986.911 units remaining) + - location: 13 (remaining gas: 1039988.101 units remaining) [ "c" "ab" ] - - location: 15 (remaining gas: 1039986.901 units remaining) + - location: 15 (remaining gas: 1039988.091 units remaining) [ "ab" "c" ] - - location: 16 (remaining gas: 1039986.886 units remaining) + - location: 16 (remaining gas: 1039988.081 units remaining) [ "c" ] - - location: 18 (remaining gas: 1039986.871 units remaining) + - location: 18 (remaining gas: 1039988.071 units remaining) [ {} "c" ] - - location: 20 (remaining gas: 1039986.861 units remaining) + - location: 20 (remaining gas: 1039988.061 units remaining) [ "c" {} ] - - location: 21 (remaining gas: 1039986.846 units remaining) + - location: 21 (remaining gas: 1039988.051 units remaining) [ { "c" } ] - - location: 16 (remaining gas: 1039986.816 units remaining) + - location: 16 (remaining gas: 1039988.031 units remaining) [ "ab" { "c" } ] - - location: 22 (remaining gas: 1039986.801 units remaining) + - location: 22 (remaining gas: 1039988.021 units remaining) [ { "ab" ; "c" } ] - - location: 23 (remaining gas: 1039986.681 units remaining) + - location: 23 (remaining gas: 1039987.901 units remaining) [ "abc" ] - - location: 13 (remaining gas: 1039986.666 units remaining) + - location: 13 (remaining gas: 1039987.891 units remaining) [ "abc" ] - - location: 24 (remaining gas: 1039986.651 units remaining) + - location: 24 (remaining gas: 1039987.881 units remaining) [ {} "abc" ] - - location: 26 (remaining gas: 1039986.636 units remaining) + - location: 26 (remaining gas: 1039987.871 units remaining) [ (Pair {} "abc") ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" index dd07a31d5e8e..529ecabe4cc6 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[concat_list.tz-\"\"-{}-\"\"].out" @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039987.803 units remaining) + - location: 8 (remaining gas: 1039988.923 units remaining) [ (Pair {} "") ] - - location: 8 (remaining gas: 1039987.793 units remaining) + - location: 8 (remaining gas: 1039988.913 units remaining) [ {} ] - - location: 9 (remaining gas: 1039987.783 units remaining) + - location: 9 (remaining gas: 1039988.903 units remaining) [ "" {} ] - - location: 12 (remaining gas: 1039987.773 units remaining) + - location: 12 (remaining gas: 1039988.893 units remaining) [ {} "" ] - - location: 13 (remaining gas: 1039987.773 units remaining) + - location: 13 (remaining gas: 1039988.893 units remaining) [ "" ] - - location: 24 (remaining gas: 1039987.758 units remaining) + - location: 24 (remaining gas: 1039988.883 units remaining) [ {} "" ] - - location: 26 (remaining gas: 1039987.743 units remaining) + - location: 26 (remaining gas: 1039988.873 units remaining) [ (Pair {} "") ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out index 63ef83aa6a7b..90f2d387e615 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ -5 ; 10 }-99-{ 99 ; -5 ; 10 }].out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.100 units remaining) + - location: 8 (remaining gas: 1039995.060 units remaining) [ (Pair 99 { -5 ; 10 }) ] - - location: 8 (remaining gas: 1039994.090 units remaining) + - location: 8 (remaining gas: 1039995.050 units remaining) [ 99 { -5 ; 10 } ] - - location: 9 (remaining gas: 1039994.075 units remaining) + - location: 9 (remaining gas: 1039995.040 units remaining) [ { 99 ; -5 ; 10 } ] - - location: 10 (remaining gas: 1039994.060 units remaining) + - location: 10 (remaining gas: 1039995.030 units remaining) [ {} { 99 ; -5 ; 10 } ] - - location: 12 (remaining gas: 1039994.045 units remaining) + - location: 12 (remaining gas: 1039995.020 units remaining) [ (Pair {} { 99 ; -5 ; 10 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out index 8f7771efb9e0..9afa6329c747 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{ 10 }--5-{ -5 ; 10 }].out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.200 units remaining) + - location: 8 (remaining gas: 1039995.160 units remaining) [ (Pair -5 { 10 }) ] - - location: 8 (remaining gas: 1039994.190 units remaining) + - location: 8 (remaining gas: 1039995.150 units remaining) [ -5 { 10 } ] - - location: 9 (remaining gas: 1039994.175 units remaining) + - location: 9 (remaining gas: 1039995.140 units remaining) [ { -5 ; 10 } ] - - location: 10 (remaining gas: 1039994.160 units remaining) + - location: 10 (remaining gas: 1039995.130 units remaining) [ {} { -5 ; 10 } ] - - location: 12 (remaining gas: 1039994.145 units remaining) + - location: 12 (remaining gas: 1039995.120 units remaining) [ (Pair {} { -5 ; 10 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out index 33c5368e025c..dbaa8068611e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[cons.tz-{}-10-{ 10 }].out @@ -7,16 +7,16 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.300 units remaining) + - location: 8 (remaining gas: 1039995.260 units remaining) [ (Pair 10 {}) ] - - location: 8 (remaining gas: 1039994.290 units remaining) + - location: 8 (remaining gas: 1039995.250 units remaining) [ 10 {} ] - - location: 9 (remaining gas: 1039994.275 units remaining) + - location: 9 (remaining gas: 1039995.240 units remaining) [ { 10 } ] - - location: 10 (remaining gas: 1039994.260 units remaining) + - location: 10 (remaining gas: 1039995.230 units remaining) [ {} { 10 } ] - - location: 12 (remaining gas: 1039994.245 units remaining) + - location: 12 (remaining gas: 1039995.220 units remaining) [ (Pair {} { 10 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" index 69cdae188cf1..f507559c7a61 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"A\" } { \"B\" })-(Some False)].out" @@ -7,160 +7,160 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039963.234 units remaining) + - location: 12 (remaining gas: 1039965.634 units remaining) [ (Pair (Pair { "A" } { "B" }) None) ] - - location: 12 (remaining gas: 1039963.224 units remaining) + - location: 12 (remaining gas: 1039965.624 units remaining) [ (Pair { "A" } { "B" }) ] - - location: 13 (remaining gas: 1039963.214 units remaining) + - location: 13 (remaining gas: 1039965.614 units remaining) [ (Pair { "A" } { "B" }) (Pair { "A" } { "B" }) ] - - location: 14 (remaining gas: 1039963.204 units remaining) + - location: 14 (remaining gas: 1039965.604 units remaining) [ { "A" } (Pair { "A" } { "B" }) ] - - location: 15 (remaining gas: 1039963.189 units remaining) + - location: 15 (remaining gas: 1039965.594 units remaining) [ (Pair { "A" } { "B" }) ] - - location: 17 (remaining gas: 1039963.179 units remaining) + - location: 17 (remaining gas: 1039965.584 units remaining) [ { "B" } ] - - location: 15 (remaining gas: 1039963.149 units remaining) + - location: 15 (remaining gas: 1039965.564 units remaining) [ { "A" } { "B" } ] - - location: 18 (remaining gas: 1039962.929 units remaining) + - location: 18 (remaining gas: 1039965.344 units remaining) [ {} { "A" } { "B" } ] - - location: 20 (remaining gas: 1039962.919 units remaining) + - location: 20 (remaining gas: 1039965.334 units remaining) [ { "A" } {} { "B" } ] - - location: 21 (remaining gas: 1039962.919 units remaining) + - location: 21 (remaining gas: 1039965.334 units remaining) [ "A" {} { "B" } ] - - location: 23 (remaining gas: 1039962.904 units remaining) + - location: 23 (remaining gas: 1039965.324 units remaining) [ (Pair "A" {}) { "B" } ] - - location: 24 (remaining gas: 1039962.894 units remaining) + - location: 24 (remaining gas: 1039965.314 units remaining) [ (Pair "A" {}) (Pair "A" {}) { "B" } ] - - location: 25 (remaining gas: 1039962.884 units remaining) + - location: 25 (remaining gas: 1039965.304 units remaining) [ "A" (Pair "A" {}) { "B" } ] - - location: 26 (remaining gas: 1039962.869 units remaining) + - location: 26 (remaining gas: 1039965.294 units remaining) [ (Pair "A" {}) { "B" } ] - - location: 28 (remaining gas: 1039962.859 units remaining) + - location: 28 (remaining gas: 1039965.284 units remaining) [ {} { "B" } ] - - location: 26 (remaining gas: 1039962.829 units remaining) + - location: 26 (remaining gas: 1039965.264 units remaining) [ "A" {} { "B" } ] - - location: 29 (remaining gas: 1039962.819 units remaining) + - location: 29 (remaining gas: 1039965.254 units remaining) [ True "A" {} { "B" } ] - - location: 32 (remaining gas: 1039962.809 units remaining) + - location: 32 (remaining gas: 1039965.244 units remaining) [ "A" True {} { "B" } ] - - location: 33 (remaining gas: 1039962.677 units remaining) + - location: 33 (remaining gas: 1039965.112 units remaining) [ { "A" } { "B" } ] - - location: 21 (remaining gas: 1039962.662 units remaining) + - location: 21 (remaining gas: 1039965.102 units remaining) [ { "A" } { "B" } ] - - location: 34 (remaining gas: 1039962.652 units remaining) + - location: 34 (remaining gas: 1039965.092 units remaining) [ True { "A" } { "B" } ] - - location: 37 (remaining gas: 1039962.642 units remaining) + - location: 37 (remaining gas: 1039965.082 units remaining) [ { "A" } True { "B" } ] - - location: 38 (remaining gas: 1039962.627 units remaining) + - location: 38 (remaining gas: 1039965.072 units remaining) [ (Pair { "A" } True) { "B" } ] - - location: 39 (remaining gas: 1039962.617 units remaining) + - location: 39 (remaining gas: 1039965.062 units remaining) [ { "B" } (Pair { "A" } True) ] - - location: 40 (remaining gas: 1039962.617 units remaining) + - location: 40 (remaining gas: 1039965.062 units remaining) [ "B" (Pair { "A" } True) ] - - location: 42 (remaining gas: 1039962.602 units remaining) + - location: 42 (remaining gas: 1039965.052 units remaining) [ (Pair "B" { "A" } True) ] - - location: 43 (remaining gas: 1039962.592 units remaining) + - location: 43 (remaining gas: 1039965.042 units remaining) [ (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 44 (remaining gas: 1039962.582 units remaining) + - location: 44 (remaining gas: 1039965.032 units remaining) [ (Pair "B" { "A" } True) (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 45 (remaining gas: 1039962.572 units remaining) + - location: 45 (remaining gas: 1039965.022 units remaining) [ "B" (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 46 (remaining gas: 1039962.557 units remaining) + - location: 46 (remaining gas: 1039965.012 units remaining) [ (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 49 (remaining gas: 1039962.547 units remaining) + - location: 49 (remaining gas: 1039965.002 units remaining) [ (Pair { "A" } True) (Pair "B" { "A" } True) ] - - location: 50 (remaining gas: 1039962.537 units remaining) + - location: 50 (remaining gas: 1039964.992 units remaining) [ { "A" } (Pair "B" { "A" } True) ] - - location: 51 (remaining gas: 1039962.522 units remaining) + - location: 51 (remaining gas: 1039964.982 units remaining) [ (Pair "B" { "A" } True) ] - - location: 54 (remaining gas: 1039962.512 units remaining) + - location: 54 (remaining gas: 1039964.972 units remaining) [ (Pair { "A" } True) ] - - location: 55 (remaining gas: 1039962.502 units remaining) + - location: 55 (remaining gas: 1039964.962 units remaining) [ True ] - - location: 51 (remaining gas: 1039962.472 units remaining) + - location: 51 (remaining gas: 1039964.942 units remaining) [ { "A" } True ] - - location: 56 (remaining gas: 1039962.462 units remaining) + - location: 56 (remaining gas: 1039964.932 units remaining) [ { "A" } { "A" } True ] - - location: 46 (remaining gas: 1039962.432 units remaining) + - location: 46 (remaining gas: 1039964.912 units remaining) [ "B" { "A" } { "A" } True ] - - location: 57 (remaining gas: 1039962.315 units remaining) + - location: 57 (remaining gas: 1039964.795 units remaining) [ False { "A" } True ] - - location: 58 (remaining gas: 1039962.300 units remaining) + - location: 58 (remaining gas: 1039964.785 units remaining) [ { "A" } True ] - - location: 60 (remaining gas: 1039962.290 units remaining) + - location: 60 (remaining gas: 1039964.775 units remaining) [ True { "A" } ] - - location: 58 (remaining gas: 1039962.260 units remaining) + - location: 58 (remaining gas: 1039964.755 units remaining) [ False True { "A" } ] - - location: 61 (remaining gas: 1039962.240 units remaining) + - location: 61 (remaining gas: 1039964.745 units remaining) [ False { "A" } ] - - location: 62 (remaining gas: 1039962.230 units remaining) + - location: 62 (remaining gas: 1039964.735 units remaining) [ { "A" } False ] - - location: 63 (remaining gas: 1039962.215 units remaining) + - location: 63 (remaining gas: 1039964.725 units remaining) [ (Pair { "A" } False) ] - - location: 40 (remaining gas: 1039962.200 units remaining) + - location: 40 (remaining gas: 1039964.715 units remaining) [ (Pair { "A" } False) ] - - location: 64 (remaining gas: 1039962.190 units remaining) + - location: 64 (remaining gas: 1039964.705 units remaining) [ False ] - - location: 65 (remaining gas: 1039962.175 units remaining) + - location: 65 (remaining gas: 1039964.695 units remaining) [ (Some False) ] - - location: 66 (remaining gas: 1039962.160 units remaining) + - location: 66 (remaining gas: 1039964.685 units remaining) [ {} (Some False) ] - - location: 68 (remaining gas: 1039962.145 units remaining) + - location: 68 (remaining gas: 1039964.675 units remaining) [ (Pair {} (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" index 624f63b45f94..90e5259febcc 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" @@ -7,404 +7,404 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039962.554 units remaining) + - location: 12 (remaining gas: 1039964.954 units remaining) [ (Pair (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) None) ] - - location: 12 (remaining gas: 1039962.544 units remaining) + - location: 12 (remaining gas: 1039964.944 units remaining) [ (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 13 (remaining gas: 1039962.534 units remaining) + - location: 13 (remaining gas: 1039964.934 units remaining) [ (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 14 (remaining gas: 1039962.524 units remaining) + - location: 14 (remaining gas: 1039964.924 units remaining) [ { "B" ; "B" ; "asdf" ; "C" } (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 15 (remaining gas: 1039962.509 units remaining) + - location: 15 (remaining gas: 1039964.914 units remaining) [ (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 17 (remaining gas: 1039962.499 units remaining) + - location: 17 (remaining gas: 1039964.904 units remaining) [ { "B" ; "C" ; "asdf" } ] - - location: 15 (remaining gas: 1039962.469 units remaining) + - location: 15 (remaining gas: 1039964.884 units remaining) [ { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" } ] - - location: 18 (remaining gas: 1039962.249 units remaining) + - location: 18 (remaining gas: 1039964.664 units remaining) [ {} { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" } ] - - location: 20 (remaining gas: 1039962.239 units remaining) + - location: 20 (remaining gas: 1039964.654 units remaining) [ { "B" ; "B" ; "asdf" ; "C" } {} { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039962.239 units remaining) + - location: 21 (remaining gas: 1039964.654 units remaining) [ "B" {} { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039962.224 units remaining) + - location: 23 (remaining gas: 1039964.644 units remaining) [ (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039962.214 units remaining) + - location: 24 (remaining gas: 1039964.634 units remaining) [ (Pair "B" {}) (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039962.204 units remaining) + - location: 25 (remaining gas: 1039964.624 units remaining) [ "B" (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039962.189 units remaining) + - location: 26 (remaining gas: 1039964.614 units remaining) [ (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039962.179 units remaining) + - location: 28 (remaining gas: 1039964.604 units remaining) [ {} { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039962.149 units remaining) + - location: 26 (remaining gas: 1039964.584 units remaining) [ "B" {} { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039962.139 units remaining) + - location: 29 (remaining gas: 1039964.574 units remaining) [ True "B" {} { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039962.129 units remaining) + - location: 32 (remaining gas: 1039964.564 units remaining) [ "B" True {} { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039961.997 units remaining) + - location: 33 (remaining gas: 1039964.432 units remaining) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039961.982 units remaining) + - location: 21 (remaining gas: 1039964.422 units remaining) [ "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039961.967 units remaining) + - location: 23 (remaining gas: 1039964.412 units remaining) [ (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039961.957 units remaining) + - location: 24 (remaining gas: 1039964.402 units remaining) [ (Pair "B" { "B" }) (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039961.947 units remaining) + - location: 25 (remaining gas: 1039964.392 units remaining) [ "B" (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039961.932 units remaining) + - location: 26 (remaining gas: 1039964.382 units remaining) [ (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039961.922 units remaining) + - location: 28 (remaining gas: 1039964.372 units remaining) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039961.892 units remaining) + - location: 26 (remaining gas: 1039964.352 units remaining) [ "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039961.882 units remaining) + - location: 29 (remaining gas: 1039964.342 units remaining) [ True "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039961.872 units remaining) + - location: 32 (remaining gas: 1039964.332 units remaining) [ "B" True { "B" } { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039961.738 units remaining) + - location: 33 (remaining gas: 1039964.198 units remaining) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039961.723 units remaining) + - location: 21 (remaining gas: 1039964.188 units remaining) [ "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039961.708 units remaining) + - location: 23 (remaining gas: 1039964.178 units remaining) [ (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039961.698 units remaining) + - location: 24 (remaining gas: 1039964.168 units remaining) [ (Pair "asdf" { "B" }) (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039961.688 units remaining) + - location: 25 (remaining gas: 1039964.158 units remaining) [ "asdf" (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039961.673 units remaining) + - location: 26 (remaining gas: 1039964.148 units remaining) [ (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039961.663 units remaining) + - location: 28 (remaining gas: 1039964.138 units remaining) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039961.633 units remaining) + - location: 26 (remaining gas: 1039964.118 units remaining) [ "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039961.623 units remaining) + - location: 29 (remaining gas: 1039964.108 units remaining) [ True "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039961.613 units remaining) + - location: 32 (remaining gas: 1039964.098 units remaining) [ "asdf" True { "B" } { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039961.467 units remaining) + - location: 33 (remaining gas: 1039963.952 units remaining) [ { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039961.452 units remaining) + - location: 21 (remaining gas: 1039963.942 units remaining) [ "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039961.437 units remaining) + - location: 23 (remaining gas: 1039963.932 units remaining) [ (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039961.427 units remaining) + - location: 24 (remaining gas: 1039963.922 units remaining) [ (Pair "C" { "B" ; "asdf" }) (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039961.417 units remaining) + - location: 25 (remaining gas: 1039963.912 units remaining) [ "C" (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039961.402 units remaining) + - location: 26 (remaining gas: 1039963.902 units remaining) [ (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039961.392 units remaining) + - location: 28 (remaining gas: 1039963.892 units remaining) [ { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039961.362 units remaining) + - location: 26 (remaining gas: 1039963.872 units remaining) [ "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039961.352 units remaining) + - location: 29 (remaining gas: 1039963.862 units remaining) [ True "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039961.342 units remaining) + - location: 32 (remaining gas: 1039963.852 units remaining) [ "C" True { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039961.206 units remaining) + - location: 33 (remaining gas: 1039963.716 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039961.191 units remaining) + - location: 21 (remaining gas: 1039963.706 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 34 (remaining gas: 1039961.181 units remaining) + - location: 34 (remaining gas: 1039963.696 units remaining) [ True { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 37 (remaining gas: 1039961.171 units remaining) + - location: 37 (remaining gas: 1039963.686 units remaining) [ { "B" ; "C" ; "asdf" } True { "B" ; "C" ; "asdf" } ] - - location: 38 (remaining gas: 1039961.156 units remaining) + - location: 38 (remaining gas: 1039963.676 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) { "B" ; "C" ; "asdf" } ] - - location: 39 (remaining gas: 1039961.146 units remaining) + - location: 39 (remaining gas: 1039963.666 units remaining) [ { "B" ; "C" ; "asdf" } (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039961.146 units remaining) + - location: 40 (remaining gas: 1039963.666 units remaining) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039961.131 units remaining) + - location: 42 (remaining gas: 1039963.656 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039961.121 units remaining) + - location: 43 (remaining gas: 1039963.646 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039961.111 units remaining) + - location: 44 (remaining gas: 1039963.636 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (remaining gas: 1039961.101 units remaining) + - location: 45 (remaining gas: 1039963.626 units remaining) [ "B" (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039961.086 units remaining) + - location: 46 (remaining gas: 1039963.616 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039961.076 units remaining) + - location: 49 (remaining gas: 1039963.606 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039961.066 units remaining) + - location: 50 (remaining gas: 1039963.596 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039961.051 units remaining) + - location: 51 (remaining gas: 1039963.586 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039961.041 units remaining) + - location: 54 (remaining gas: 1039963.576 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039961.031 units remaining) + - location: 55 (remaining gas: 1039963.566 units remaining) [ True ] - - location: 51 (remaining gas: 1039961.001 units remaining) + - location: 51 (remaining gas: 1039963.546 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039960.991 units remaining) + - location: 56 (remaining gas: 1039963.536 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039960.961 units remaining) + - location: 46 (remaining gas: 1039963.516 units remaining) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039960.843 units remaining) + - location: 57 (remaining gas: 1039963.398 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039960.828 units remaining) + - location: 58 (remaining gas: 1039963.388 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039960.818 units remaining) + - location: 60 (remaining gas: 1039963.378 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039960.788 units remaining) + - location: 58 (remaining gas: 1039963.358 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039960.768 units remaining) + - location: 61 (remaining gas: 1039963.348 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039960.758 units remaining) + - location: 62 (remaining gas: 1039963.338 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039960.743 units remaining) + - location: 63 (remaining gas: 1039963.328 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039960.728 units remaining) + - location: 40 (remaining gas: 1039963.318 units remaining) [ "C" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039960.713 units remaining) + - location: 42 (remaining gas: 1039963.308 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039960.703 units remaining) + - location: 43 (remaining gas: 1039963.298 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039960.693 units remaining) + - location: 44 (remaining gas: 1039963.288 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (remaining gas: 1039960.683 units remaining) + - location: 45 (remaining gas: 1039963.278 units remaining) [ "C" (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039960.668 units remaining) + - location: 46 (remaining gas: 1039963.268 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039960.658 units remaining) + - location: 49 (remaining gas: 1039963.258 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039960.648 units remaining) + - location: 50 (remaining gas: 1039963.248 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039960.633 units remaining) + - location: 51 (remaining gas: 1039963.238 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039960.623 units remaining) + - location: 54 (remaining gas: 1039963.228 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039960.613 units remaining) + - location: 55 (remaining gas: 1039963.218 units remaining) [ True ] - - location: 51 (remaining gas: 1039960.583 units remaining) + - location: 51 (remaining gas: 1039963.198 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039960.573 units remaining) + - location: 56 (remaining gas: 1039963.188 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039960.543 units remaining) + - location: 46 (remaining gas: 1039963.168 units remaining) [ "C" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039960.425 units remaining) + - location: 57 (remaining gas: 1039963.050 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039960.410 units remaining) + - location: 58 (remaining gas: 1039963.040 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039960.400 units remaining) + - location: 60 (remaining gas: 1039963.030 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039960.370 units remaining) + - location: 58 (remaining gas: 1039963.010 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039960.350 units remaining) + - location: 61 (remaining gas: 1039963 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039960.340 units remaining) + - location: 62 (remaining gas: 1039962.990 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039960.325 units remaining) + - location: 63 (remaining gas: 1039962.980 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039960.310 units remaining) + - location: 40 (remaining gas: 1039962.970 units remaining) [ "asdf" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039960.295 units remaining) + - location: 42 (remaining gas: 1039962.960 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039960.285 units remaining) + - location: 43 (remaining gas: 1039962.950 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039960.275 units remaining) + - location: 44 (remaining gas: 1039962.940 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (remaining gas: 1039960.265 units remaining) + - location: 45 (remaining gas: 1039962.930 units remaining) [ "asdf" (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039960.250 units remaining) + - location: 46 (remaining gas: 1039962.920 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039960.240 units remaining) + - location: 49 (remaining gas: 1039962.910 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039960.230 units remaining) + - location: 50 (remaining gas: 1039962.900 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039960.215 units remaining) + - location: 51 (remaining gas: 1039962.890 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039960.205 units remaining) + - location: 54 (remaining gas: 1039962.880 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039960.195 units remaining) + - location: 55 (remaining gas: 1039962.870 units remaining) [ True ] - - location: 51 (remaining gas: 1039960.165 units remaining) + - location: 51 (remaining gas: 1039962.850 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039960.155 units remaining) + - location: 56 (remaining gas: 1039962.840 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039960.125 units remaining) + - location: 46 (remaining gas: 1039962.820 units remaining) [ "asdf" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039959.998 units remaining) + - location: 57 (remaining gas: 1039962.693 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039959.983 units remaining) + - location: 58 (remaining gas: 1039962.683 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039959.973 units remaining) + - location: 60 (remaining gas: 1039962.673 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039959.943 units remaining) + - location: 58 (remaining gas: 1039962.653 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039959.923 units remaining) + - location: 61 (remaining gas: 1039962.643 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039959.913 units remaining) + - location: 62 (remaining gas: 1039962.633 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039959.898 units remaining) + - location: 63 (remaining gas: 1039962.623 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039959.883 units remaining) + - location: 40 (remaining gas: 1039962.613 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 64 (remaining gas: 1039959.873 units remaining) + - location: 64 (remaining gas: 1039962.603 units remaining) [ True ] - - location: 65 (remaining gas: 1039959.858 units remaining) + - location: 65 (remaining gas: 1039962.593 units remaining) [ (Some True) ] - - location: 66 (remaining gas: 1039959.843 units remaining) + - location: 66 (remaining gas: 1039962.583 units remaining) [ {} (Some True) ] - - location: 68 (remaining gas: 1039959.828 units remaining) + - location: 68 (remaining gas: 1039962.573 units remaining) [ (Pair {} (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" index 0fe7e0aaacec..e004123a9723 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" ; \"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" @@ -7,431 +7,431 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039962.554 units remaining) + - location: 12 (remaining gas: 1039964.954 units remaining) [ (Pair (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) None) ] - - location: 12 (remaining gas: 1039962.544 units remaining) + - location: 12 (remaining gas: 1039964.944 units remaining) [ (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 13 (remaining gas: 1039962.534 units remaining) + - location: 13 (remaining gas: 1039964.934 units remaining) [ (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 14 (remaining gas: 1039962.524 units remaining) + - location: 14 (remaining gas: 1039964.924 units remaining) [ { "B" ; "C" ; "asdf" } (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 15 (remaining gas: 1039962.509 units remaining) + - location: 15 (remaining gas: 1039964.914 units remaining) [ (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 17 (remaining gas: 1039962.499 units remaining) + - location: 17 (remaining gas: 1039964.904 units remaining) [ { "B" ; "B" ; "asdf" ; "C" } ] - - location: 15 (remaining gas: 1039962.469 units remaining) + - location: 15 (remaining gas: 1039964.884 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 18 (remaining gas: 1039962.249 units remaining) + - location: 18 (remaining gas: 1039964.664 units remaining) [ {} { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 20 (remaining gas: 1039962.239 units remaining) + - location: 20 (remaining gas: 1039964.654 units remaining) [ { "B" ; "C" ; "asdf" } {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039962.239 units remaining) + - location: 21 (remaining gas: 1039964.654 units remaining) [ "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (remaining gas: 1039962.224 units remaining) + - location: 23 (remaining gas: 1039964.644 units remaining) [ (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (remaining gas: 1039962.214 units remaining) + - location: 24 (remaining gas: 1039964.634 units remaining) [ (Pair "B" {}) (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 25 (remaining gas: 1039962.204 units remaining) + - location: 25 (remaining gas: 1039964.624 units remaining) [ "B" (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039962.189 units remaining) + - location: 26 (remaining gas: 1039964.614 units remaining) [ (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (remaining gas: 1039962.179 units remaining) + - location: 28 (remaining gas: 1039964.604 units remaining) [ {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039962.149 units remaining) + - location: 26 (remaining gas: 1039964.584 units remaining) [ "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (remaining gas: 1039962.139 units remaining) + - location: 29 (remaining gas: 1039964.574 units remaining) [ True "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (remaining gas: 1039962.129 units remaining) + - location: 32 (remaining gas: 1039964.564 units remaining) [ "B" True {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (remaining gas: 1039961.997 units remaining) + - location: 33 (remaining gas: 1039964.432 units remaining) [ { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039961.982 units remaining) + - location: 21 (remaining gas: 1039964.422 units remaining) [ "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (remaining gas: 1039961.967 units remaining) + - location: 23 (remaining gas: 1039964.412 units remaining) [ (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (remaining gas: 1039961.957 units remaining) + - location: 24 (remaining gas: 1039964.402 units remaining) [ (Pair "C" { "B" }) (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 25 (remaining gas: 1039961.947 units remaining) + - location: 25 (remaining gas: 1039964.392 units remaining) [ "C" (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039961.932 units remaining) + - location: 26 (remaining gas: 1039964.382 units remaining) [ (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (remaining gas: 1039961.922 units remaining) + - location: 28 (remaining gas: 1039964.372 units remaining) [ { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039961.892 units remaining) + - location: 26 (remaining gas: 1039964.352 units remaining) [ "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (remaining gas: 1039961.882 units remaining) + - location: 29 (remaining gas: 1039964.342 units remaining) [ True "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (remaining gas: 1039961.872 units remaining) + - location: 32 (remaining gas: 1039964.332 units remaining) [ "C" True { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (remaining gas: 1039961.738 units remaining) + - location: 33 (remaining gas: 1039964.198 units remaining) [ { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039961.723 units remaining) + - location: 21 (remaining gas: 1039964.188 units remaining) [ "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (remaining gas: 1039961.708 units remaining) + - location: 23 (remaining gas: 1039964.178 units remaining) [ (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (remaining gas: 1039961.698 units remaining) + - location: 24 (remaining gas: 1039964.168 units remaining) [ (Pair "asdf" { "B" ; "C" }) (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 25 (remaining gas: 1039961.688 units remaining) + - location: 25 (remaining gas: 1039964.158 units remaining) [ "asdf" (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039961.673 units remaining) + - location: 26 (remaining gas: 1039964.148 units remaining) [ (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (remaining gas: 1039961.663 units remaining) + - location: 28 (remaining gas: 1039964.138 units remaining) [ { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039961.633 units remaining) + - location: 26 (remaining gas: 1039964.118 units remaining) [ "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (remaining gas: 1039961.623 units remaining) + - location: 29 (remaining gas: 1039964.108 units remaining) [ True "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (remaining gas: 1039961.613 units remaining) + - location: 32 (remaining gas: 1039964.098 units remaining) [ "asdf" True { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (remaining gas: 1039961.459 units remaining) + - location: 33 (remaining gas: 1039963.944 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039961.444 units remaining) + - location: 21 (remaining gas: 1039963.934 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 34 (remaining gas: 1039961.434 units remaining) + - location: 34 (remaining gas: 1039963.924 units remaining) [ True { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 37 (remaining gas: 1039961.424 units remaining) + - location: 37 (remaining gas: 1039963.914 units remaining) [ { "B" ; "C" ; "asdf" } True { "B" ; "B" ; "asdf" ; "C" } ] - - location: 38 (remaining gas: 1039961.409 units remaining) + - location: 38 (remaining gas: 1039963.904 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 39 (remaining gas: 1039961.399 units remaining) + - location: 39 (remaining gas: 1039963.894 units remaining) [ { "B" ; "B" ; "asdf" ; "C" } (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039961.399 units remaining) + - location: 40 (remaining gas: 1039963.894 units remaining) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039961.384 units remaining) + - location: 42 (remaining gas: 1039963.884 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039961.374 units remaining) + - location: 43 (remaining gas: 1039963.874 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039961.364 units remaining) + - location: 44 (remaining gas: 1039963.864 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (remaining gas: 1039961.354 units remaining) + - location: 45 (remaining gas: 1039963.854 units remaining) [ "B" (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039961.339 units remaining) + - location: 46 (remaining gas: 1039963.844 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039961.329 units remaining) + - location: 49 (remaining gas: 1039963.834 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039961.319 units remaining) + - location: 50 (remaining gas: 1039963.824 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039961.304 units remaining) + - location: 51 (remaining gas: 1039963.814 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039961.294 units remaining) + - location: 54 (remaining gas: 1039963.804 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039961.284 units remaining) + - location: 55 (remaining gas: 1039963.794 units remaining) [ True ] - - location: 51 (remaining gas: 1039961.254 units remaining) + - location: 51 (remaining gas: 1039963.774 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039961.244 units remaining) + - location: 56 (remaining gas: 1039963.764 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039961.214 units remaining) + - location: 46 (remaining gas: 1039963.744 units remaining) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039961.096 units remaining) + - location: 57 (remaining gas: 1039963.626 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039961.081 units remaining) + - location: 58 (remaining gas: 1039963.616 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039961.071 units remaining) + - location: 60 (remaining gas: 1039963.606 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039961.041 units remaining) + - location: 58 (remaining gas: 1039963.586 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039961.021 units remaining) + - location: 61 (remaining gas: 1039963.576 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039961.011 units remaining) + - location: 62 (remaining gas: 1039963.566 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039960.996 units remaining) + - location: 63 (remaining gas: 1039963.556 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039960.981 units remaining) + - location: 40 (remaining gas: 1039963.546 units remaining) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039960.966 units remaining) + - location: 42 (remaining gas: 1039963.536 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039960.956 units remaining) + - location: 43 (remaining gas: 1039963.526 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039960.946 units remaining) + - location: 44 (remaining gas: 1039963.516 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (remaining gas: 1039960.936 units remaining) + - location: 45 (remaining gas: 1039963.506 units remaining) [ "B" (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039960.921 units remaining) + - location: 46 (remaining gas: 1039963.496 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039960.911 units remaining) + - location: 49 (remaining gas: 1039963.486 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039960.901 units remaining) + - location: 50 (remaining gas: 1039963.476 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039960.886 units remaining) + - location: 51 (remaining gas: 1039963.466 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039960.876 units remaining) + - location: 54 (remaining gas: 1039963.456 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039960.866 units remaining) + - location: 55 (remaining gas: 1039963.446 units remaining) [ True ] - - location: 51 (remaining gas: 1039960.836 units remaining) + - location: 51 (remaining gas: 1039963.426 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039960.826 units remaining) + - location: 56 (remaining gas: 1039963.416 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039960.796 units remaining) + - location: 46 (remaining gas: 1039963.396 units remaining) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039960.678 units remaining) + - location: 57 (remaining gas: 1039963.278 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039960.663 units remaining) + - location: 58 (remaining gas: 1039963.268 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039960.653 units remaining) + - location: 60 (remaining gas: 1039963.258 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039960.623 units remaining) + - location: 58 (remaining gas: 1039963.238 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039960.603 units remaining) + - location: 61 (remaining gas: 1039963.228 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039960.593 units remaining) + - location: 62 (remaining gas: 1039963.218 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039960.578 units remaining) + - location: 63 (remaining gas: 1039963.208 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039960.563 units remaining) + - location: 40 (remaining gas: 1039963.198 units remaining) [ "asdf" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039960.548 units remaining) + - location: 42 (remaining gas: 1039963.188 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039960.538 units remaining) + - location: 43 (remaining gas: 1039963.178 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039960.528 units remaining) + - location: 44 (remaining gas: 1039963.168 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (remaining gas: 1039960.518 units remaining) + - location: 45 (remaining gas: 1039963.158 units remaining) [ "asdf" (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039960.503 units remaining) + - location: 46 (remaining gas: 1039963.148 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039960.493 units remaining) + - location: 49 (remaining gas: 1039963.138 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039960.483 units remaining) + - location: 50 (remaining gas: 1039963.128 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039960.468 units remaining) + - location: 51 (remaining gas: 1039963.118 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039960.458 units remaining) + - location: 54 (remaining gas: 1039963.108 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039960.448 units remaining) + - location: 55 (remaining gas: 1039963.098 units remaining) [ True ] - - location: 51 (remaining gas: 1039960.418 units remaining) + - location: 51 (remaining gas: 1039963.078 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039960.408 units remaining) + - location: 56 (remaining gas: 1039963.068 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039960.378 units remaining) + - location: 46 (remaining gas: 1039963.048 units remaining) [ "asdf" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039960.251 units remaining) + - location: 57 (remaining gas: 1039962.921 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039960.236 units remaining) + - location: 58 (remaining gas: 1039962.911 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039960.226 units remaining) + - location: 60 (remaining gas: 1039962.901 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039960.196 units remaining) + - location: 58 (remaining gas: 1039962.881 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039960.176 units remaining) + - location: 61 (remaining gas: 1039962.871 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039960.166 units remaining) + - location: 62 (remaining gas: 1039962.861 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039960.151 units remaining) + - location: 63 (remaining gas: 1039962.851 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039960.136 units remaining) + - location: 40 (remaining gas: 1039962.841 units remaining) [ "C" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039960.121 units remaining) + - location: 42 (remaining gas: 1039962.831 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039960.111 units remaining) + - location: 43 (remaining gas: 1039962.821 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039960.101 units remaining) + - location: 44 (remaining gas: 1039962.811 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (remaining gas: 1039960.091 units remaining) + - location: 45 (remaining gas: 1039962.801 units remaining) [ "C" (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039960.076 units remaining) + - location: 46 (remaining gas: 1039962.791 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039960.066 units remaining) + - location: 49 (remaining gas: 1039962.781 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039960.056 units remaining) + - location: 50 (remaining gas: 1039962.771 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039960.041 units remaining) + - location: 51 (remaining gas: 1039962.761 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039960.031 units remaining) + - location: 54 (remaining gas: 1039962.751 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039960.021 units remaining) + - location: 55 (remaining gas: 1039962.741 units remaining) [ True ] - - location: 51 (remaining gas: 1039959.991 units remaining) + - location: 51 (remaining gas: 1039962.721 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039959.981 units remaining) + - location: 56 (remaining gas: 1039962.711 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039959.951 units remaining) + - location: 46 (remaining gas: 1039962.691 units remaining) [ "C" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039959.833 units remaining) + - location: 57 (remaining gas: 1039962.573 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039959.818 units remaining) + - location: 58 (remaining gas: 1039962.563 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039959.808 units remaining) + - location: 60 (remaining gas: 1039962.553 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039959.778 units remaining) + - location: 58 (remaining gas: 1039962.533 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039959.758 units remaining) + - location: 61 (remaining gas: 1039962.523 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039959.748 units remaining) + - location: 62 (remaining gas: 1039962.513 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039959.733 units remaining) + - location: 63 (remaining gas: 1039962.503 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039959.718 units remaining) + - location: 40 (remaining gas: 1039962.493 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 64 (remaining gas: 1039959.708 units remaining) + - location: 64 (remaining gas: 1039962.483 units remaining) [ True ] - - location: 65 (remaining gas: 1039959.693 units remaining) + - location: 65 (remaining gas: 1039962.473 units remaining) [ (Some True) ] - - location: 66 (remaining gas: 1039959.678 units remaining) + - location: 66 (remaining gas: 1039962.463 units remaining) [ {} (Some True) ] - - location: 68 (remaining gas: 1039959.663 units remaining) + - location: 68 (remaining gas: 1039962.453 units remaining) [ (Pair {} (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" index c80623431a2a..195f29395d03 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"B\" } { \"B\" })-(Some True)].out" @@ -7,160 +7,160 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039963.234 units remaining) + - location: 12 (remaining gas: 1039965.634 units remaining) [ (Pair (Pair { "B" } { "B" }) None) ] - - location: 12 (remaining gas: 1039963.224 units remaining) + - location: 12 (remaining gas: 1039965.624 units remaining) [ (Pair { "B" } { "B" }) ] - - location: 13 (remaining gas: 1039963.214 units remaining) + - location: 13 (remaining gas: 1039965.614 units remaining) [ (Pair { "B" } { "B" }) (Pair { "B" } { "B" }) ] - - location: 14 (remaining gas: 1039963.204 units remaining) + - location: 14 (remaining gas: 1039965.604 units remaining) [ { "B" } (Pair { "B" } { "B" }) ] - - location: 15 (remaining gas: 1039963.189 units remaining) + - location: 15 (remaining gas: 1039965.594 units remaining) [ (Pair { "B" } { "B" }) ] - - location: 17 (remaining gas: 1039963.179 units remaining) + - location: 17 (remaining gas: 1039965.584 units remaining) [ { "B" } ] - - location: 15 (remaining gas: 1039963.149 units remaining) + - location: 15 (remaining gas: 1039965.564 units remaining) [ { "B" } { "B" } ] - - location: 18 (remaining gas: 1039962.929 units remaining) + - location: 18 (remaining gas: 1039965.344 units remaining) [ {} { "B" } { "B" } ] - - location: 20 (remaining gas: 1039962.919 units remaining) + - location: 20 (remaining gas: 1039965.334 units remaining) [ { "B" } {} { "B" } ] - - location: 21 (remaining gas: 1039962.919 units remaining) + - location: 21 (remaining gas: 1039965.334 units remaining) [ "B" {} { "B" } ] - - location: 23 (remaining gas: 1039962.904 units remaining) + - location: 23 (remaining gas: 1039965.324 units remaining) [ (Pair "B" {}) { "B" } ] - - location: 24 (remaining gas: 1039962.894 units remaining) + - location: 24 (remaining gas: 1039965.314 units remaining) [ (Pair "B" {}) (Pair "B" {}) { "B" } ] - - location: 25 (remaining gas: 1039962.884 units remaining) + - location: 25 (remaining gas: 1039965.304 units remaining) [ "B" (Pair "B" {}) { "B" } ] - - location: 26 (remaining gas: 1039962.869 units remaining) + - location: 26 (remaining gas: 1039965.294 units remaining) [ (Pair "B" {}) { "B" } ] - - location: 28 (remaining gas: 1039962.859 units remaining) + - location: 28 (remaining gas: 1039965.284 units remaining) [ {} { "B" } ] - - location: 26 (remaining gas: 1039962.829 units remaining) + - location: 26 (remaining gas: 1039965.264 units remaining) [ "B" {} { "B" } ] - - location: 29 (remaining gas: 1039962.819 units remaining) + - location: 29 (remaining gas: 1039965.254 units remaining) [ True "B" {} { "B" } ] - - location: 32 (remaining gas: 1039962.809 units remaining) + - location: 32 (remaining gas: 1039965.244 units remaining) [ "B" True {} { "B" } ] - - location: 33 (remaining gas: 1039962.677 units remaining) + - location: 33 (remaining gas: 1039965.112 units remaining) [ { "B" } { "B" } ] - - location: 21 (remaining gas: 1039962.662 units remaining) + - location: 21 (remaining gas: 1039965.102 units remaining) [ { "B" } { "B" } ] - - location: 34 (remaining gas: 1039962.652 units remaining) + - location: 34 (remaining gas: 1039965.092 units remaining) [ True { "B" } { "B" } ] - - location: 37 (remaining gas: 1039962.642 units remaining) + - location: 37 (remaining gas: 1039965.082 units remaining) [ { "B" } True { "B" } ] - - location: 38 (remaining gas: 1039962.627 units remaining) + - location: 38 (remaining gas: 1039965.072 units remaining) [ (Pair { "B" } True) { "B" } ] - - location: 39 (remaining gas: 1039962.617 units remaining) + - location: 39 (remaining gas: 1039965.062 units remaining) [ { "B" } (Pair { "B" } True) ] - - location: 40 (remaining gas: 1039962.617 units remaining) + - location: 40 (remaining gas: 1039965.062 units remaining) [ "B" (Pair { "B" } True) ] - - location: 42 (remaining gas: 1039962.602 units remaining) + - location: 42 (remaining gas: 1039965.052 units remaining) [ (Pair "B" { "B" } True) ] - - location: 43 (remaining gas: 1039962.592 units remaining) + - location: 43 (remaining gas: 1039965.042 units remaining) [ (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 44 (remaining gas: 1039962.582 units remaining) + - location: 44 (remaining gas: 1039965.032 units remaining) [ (Pair "B" { "B" } True) (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 45 (remaining gas: 1039962.572 units remaining) + - location: 45 (remaining gas: 1039965.022 units remaining) [ "B" (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 46 (remaining gas: 1039962.557 units remaining) + - location: 46 (remaining gas: 1039965.012 units remaining) [ (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 49 (remaining gas: 1039962.547 units remaining) + - location: 49 (remaining gas: 1039965.002 units remaining) [ (Pair { "B" } True) (Pair "B" { "B" } True) ] - - location: 50 (remaining gas: 1039962.537 units remaining) + - location: 50 (remaining gas: 1039964.992 units remaining) [ { "B" } (Pair "B" { "B" } True) ] - - location: 51 (remaining gas: 1039962.522 units remaining) + - location: 51 (remaining gas: 1039964.982 units remaining) [ (Pair "B" { "B" } True) ] - - location: 54 (remaining gas: 1039962.512 units remaining) + - location: 54 (remaining gas: 1039964.972 units remaining) [ (Pair { "B" } True) ] - - location: 55 (remaining gas: 1039962.502 units remaining) + - location: 55 (remaining gas: 1039964.962 units remaining) [ True ] - - location: 51 (remaining gas: 1039962.472 units remaining) + - location: 51 (remaining gas: 1039964.942 units remaining) [ { "B" } True ] - - location: 56 (remaining gas: 1039962.462 units remaining) + - location: 56 (remaining gas: 1039964.932 units remaining) [ { "B" } { "B" } True ] - - location: 46 (remaining gas: 1039962.432 units remaining) + - location: 46 (remaining gas: 1039964.912 units remaining) [ "B" { "B" } { "B" } True ] - - location: 57 (remaining gas: 1039962.315 units remaining) + - location: 57 (remaining gas: 1039964.795 units remaining) [ True { "B" } True ] - - location: 58 (remaining gas: 1039962.300 units remaining) + - location: 58 (remaining gas: 1039964.785 units remaining) [ { "B" } True ] - - location: 60 (remaining gas: 1039962.290 units remaining) + - location: 60 (remaining gas: 1039964.775 units remaining) [ True { "B" } ] - - location: 58 (remaining gas: 1039962.260 units remaining) + - location: 58 (remaining gas: 1039964.755 units remaining) [ True True { "B" } ] - - location: 61 (remaining gas: 1039962.240 units remaining) + - location: 61 (remaining gas: 1039964.745 units remaining) [ True { "B" } ] - - location: 62 (remaining gas: 1039962.230 units remaining) + - location: 62 (remaining gas: 1039964.735 units remaining) [ { "B" } True ] - - location: 63 (remaining gas: 1039962.215 units remaining) + - location: 63 (remaining gas: 1039964.725 units remaining) [ (Pair { "B" } True) ] - - location: 40 (remaining gas: 1039962.200 units remaining) + - location: 40 (remaining gas: 1039964.715 units remaining) [ (Pair { "B" } True) ] - - location: 64 (remaining gas: 1039962.190 units remaining) + - location: 64 (remaining gas: 1039964.705 units remaining) [ True ] - - location: 65 (remaining gas: 1039962.175 units remaining) + - location: 65 (remaining gas: 1039964.695 units remaining) [ (Some True) ] - - location: 66 (remaining gas: 1039962.160 units remaining) + - location: 66 (remaining gas: 1039964.685 units remaining) [ {} (Some True) ] - - location: 68 (remaining gas: 1039962.145 units remaining) + - location: 68 (remaining gas: 1039964.675 units remaining) [ (Pair {} (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" index 922482d26fd2..f3b88080270b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair { \"c\" } { \"B\" })-(Some False)].out" @@ -7,160 +7,160 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039963.234 units remaining) + - location: 12 (remaining gas: 1039965.634 units remaining) [ (Pair (Pair { "c" } { "B" }) None) ] - - location: 12 (remaining gas: 1039963.224 units remaining) + - location: 12 (remaining gas: 1039965.624 units remaining) [ (Pair { "c" } { "B" }) ] - - location: 13 (remaining gas: 1039963.214 units remaining) + - location: 13 (remaining gas: 1039965.614 units remaining) [ (Pair { "c" } { "B" }) (Pair { "c" } { "B" }) ] - - location: 14 (remaining gas: 1039963.204 units remaining) + - location: 14 (remaining gas: 1039965.604 units remaining) [ { "c" } (Pair { "c" } { "B" }) ] - - location: 15 (remaining gas: 1039963.189 units remaining) + - location: 15 (remaining gas: 1039965.594 units remaining) [ (Pair { "c" } { "B" }) ] - - location: 17 (remaining gas: 1039963.179 units remaining) + - location: 17 (remaining gas: 1039965.584 units remaining) [ { "B" } ] - - location: 15 (remaining gas: 1039963.149 units remaining) + - location: 15 (remaining gas: 1039965.564 units remaining) [ { "c" } { "B" } ] - - location: 18 (remaining gas: 1039962.929 units remaining) + - location: 18 (remaining gas: 1039965.344 units remaining) [ {} { "c" } { "B" } ] - - location: 20 (remaining gas: 1039962.919 units remaining) + - location: 20 (remaining gas: 1039965.334 units remaining) [ { "c" } {} { "B" } ] - - location: 21 (remaining gas: 1039962.919 units remaining) + - location: 21 (remaining gas: 1039965.334 units remaining) [ "c" {} { "B" } ] - - location: 23 (remaining gas: 1039962.904 units remaining) + - location: 23 (remaining gas: 1039965.324 units remaining) [ (Pair "c" {}) { "B" } ] - - location: 24 (remaining gas: 1039962.894 units remaining) + - location: 24 (remaining gas: 1039965.314 units remaining) [ (Pair "c" {}) (Pair "c" {}) { "B" } ] - - location: 25 (remaining gas: 1039962.884 units remaining) + - location: 25 (remaining gas: 1039965.304 units remaining) [ "c" (Pair "c" {}) { "B" } ] - - location: 26 (remaining gas: 1039962.869 units remaining) + - location: 26 (remaining gas: 1039965.294 units remaining) [ (Pair "c" {}) { "B" } ] - - location: 28 (remaining gas: 1039962.859 units remaining) + - location: 28 (remaining gas: 1039965.284 units remaining) [ {} { "B" } ] - - location: 26 (remaining gas: 1039962.829 units remaining) + - location: 26 (remaining gas: 1039965.264 units remaining) [ "c" {} { "B" } ] - - location: 29 (remaining gas: 1039962.819 units remaining) + - location: 29 (remaining gas: 1039965.254 units remaining) [ True "c" {} { "B" } ] - - location: 32 (remaining gas: 1039962.809 units remaining) + - location: 32 (remaining gas: 1039965.244 units remaining) [ "c" True {} { "B" } ] - - location: 33 (remaining gas: 1039962.677 units remaining) + - location: 33 (remaining gas: 1039965.112 units remaining) [ { "c" } { "B" } ] - - location: 21 (remaining gas: 1039962.662 units remaining) + - location: 21 (remaining gas: 1039965.102 units remaining) [ { "c" } { "B" } ] - - location: 34 (remaining gas: 1039962.652 units remaining) + - location: 34 (remaining gas: 1039965.092 units remaining) [ True { "c" } { "B" } ] - - location: 37 (remaining gas: 1039962.642 units remaining) + - location: 37 (remaining gas: 1039965.082 units remaining) [ { "c" } True { "B" } ] - - location: 38 (remaining gas: 1039962.627 units remaining) + - location: 38 (remaining gas: 1039965.072 units remaining) [ (Pair { "c" } True) { "B" } ] - - location: 39 (remaining gas: 1039962.617 units remaining) + - location: 39 (remaining gas: 1039965.062 units remaining) [ { "B" } (Pair { "c" } True) ] - - location: 40 (remaining gas: 1039962.617 units remaining) + - location: 40 (remaining gas: 1039965.062 units remaining) [ "B" (Pair { "c" } True) ] - - location: 42 (remaining gas: 1039962.602 units remaining) + - location: 42 (remaining gas: 1039965.052 units remaining) [ (Pair "B" { "c" } True) ] - - location: 43 (remaining gas: 1039962.592 units remaining) + - location: 43 (remaining gas: 1039965.042 units remaining) [ (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 44 (remaining gas: 1039962.582 units remaining) + - location: 44 (remaining gas: 1039965.032 units remaining) [ (Pair "B" { "c" } True) (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 45 (remaining gas: 1039962.572 units remaining) + - location: 45 (remaining gas: 1039965.022 units remaining) [ "B" (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 46 (remaining gas: 1039962.557 units remaining) + - location: 46 (remaining gas: 1039965.012 units remaining) [ (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 49 (remaining gas: 1039962.547 units remaining) + - location: 49 (remaining gas: 1039965.002 units remaining) [ (Pair { "c" } True) (Pair "B" { "c" } True) ] - - location: 50 (remaining gas: 1039962.537 units remaining) + - location: 50 (remaining gas: 1039964.992 units remaining) [ { "c" } (Pair "B" { "c" } True) ] - - location: 51 (remaining gas: 1039962.522 units remaining) + - location: 51 (remaining gas: 1039964.982 units remaining) [ (Pair "B" { "c" } True) ] - - location: 54 (remaining gas: 1039962.512 units remaining) + - location: 54 (remaining gas: 1039964.972 units remaining) [ (Pair { "c" } True) ] - - location: 55 (remaining gas: 1039962.502 units remaining) + - location: 55 (remaining gas: 1039964.962 units remaining) [ True ] - - location: 51 (remaining gas: 1039962.472 units remaining) + - location: 51 (remaining gas: 1039964.942 units remaining) [ { "c" } True ] - - location: 56 (remaining gas: 1039962.462 units remaining) + - location: 56 (remaining gas: 1039964.932 units remaining) [ { "c" } { "c" } True ] - - location: 46 (remaining gas: 1039962.432 units remaining) + - location: 46 (remaining gas: 1039964.912 units remaining) [ "B" { "c" } { "c" } True ] - - location: 57 (remaining gas: 1039962.315 units remaining) + - location: 57 (remaining gas: 1039964.795 units remaining) [ False { "c" } True ] - - location: 58 (remaining gas: 1039962.300 units remaining) + - location: 58 (remaining gas: 1039964.785 units remaining) [ { "c" } True ] - - location: 60 (remaining gas: 1039962.290 units remaining) + - location: 60 (remaining gas: 1039964.775 units remaining) [ True { "c" } ] - - location: 58 (remaining gas: 1039962.260 units remaining) + - location: 58 (remaining gas: 1039964.755 units remaining) [ False True { "c" } ] - - location: 61 (remaining gas: 1039962.240 units remaining) + - location: 61 (remaining gas: 1039964.745 units remaining) [ False { "c" } ] - - location: 62 (remaining gas: 1039962.230 units remaining) + - location: 62 (remaining gas: 1039964.735 units remaining) [ { "c" } False ] - - location: 63 (remaining gas: 1039962.215 units remaining) + - location: 63 (remaining gas: 1039964.725 units remaining) [ (Pair { "c" } False) ] - - location: 40 (remaining gas: 1039962.200 units remaining) + - location: 40 (remaining gas: 1039964.715 units remaining) [ (Pair { "c" } False) ] - - location: 64 (remaining gas: 1039962.190 units remaining) + - location: 64 (remaining gas: 1039964.705 units remaining) [ False ] - - location: 65 (remaining gas: 1039962.175 units remaining) + - location: 65 (remaining gas: 1039964.695 units remaining) [ (Some False) ] - - location: 66 (remaining gas: 1039962.160 units remaining) + - location: 66 (remaining gas: 1039964.685 units remaining) [ {} (Some False) ] - - location: 68 (remaining gas: 1039962.145 units remaining) + - location: 68 (remaining gas: 1039964.675 units remaining) [ (Pair {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out index 91393ee0af88..a0782fbc9a63 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contains_all.tz-None-(Pair {} {})-(Some True)].out @@ -7,57 +7,57 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039963.482 units remaining) + - location: 12 (remaining gas: 1039965.882 units remaining) [ (Pair (Pair {} {}) None) ] - - location: 12 (remaining gas: 1039963.472 units remaining) + - location: 12 (remaining gas: 1039965.872 units remaining) [ (Pair {} {}) ] - - location: 13 (remaining gas: 1039963.462 units remaining) + - location: 13 (remaining gas: 1039965.862 units remaining) [ (Pair {} {}) (Pair {} {}) ] - - location: 14 (remaining gas: 1039963.452 units remaining) + - location: 14 (remaining gas: 1039965.852 units remaining) [ {} (Pair {} {}) ] - - location: 15 (remaining gas: 1039963.437 units remaining) + - location: 15 (remaining gas: 1039965.842 units remaining) [ (Pair {} {}) ] - - location: 17 (remaining gas: 1039963.427 units remaining) + - location: 17 (remaining gas: 1039965.832 units remaining) [ {} ] - - location: 15 (remaining gas: 1039963.397 units remaining) + - location: 15 (remaining gas: 1039965.812 units remaining) [ {} {} ] - - location: 18 (remaining gas: 1039963.177 units remaining) + - location: 18 (remaining gas: 1039965.592 units remaining) [ {} {} {} ] - - location: 20 (remaining gas: 1039963.167 units remaining) + - location: 20 (remaining gas: 1039965.582 units remaining) [ {} {} {} ] - - location: 21 (remaining gas: 1039963.167 units remaining) + - location: 21 (remaining gas: 1039965.582 units remaining) [ {} {} ] - - location: 34 (remaining gas: 1039963.157 units remaining) + - location: 34 (remaining gas: 1039965.572 units remaining) [ True {} {} ] - - location: 37 (remaining gas: 1039963.147 units remaining) + - location: 37 (remaining gas: 1039965.562 units remaining) [ {} True {} ] - - location: 38 (remaining gas: 1039963.132 units remaining) + - location: 38 (remaining gas: 1039965.552 units remaining) [ (Pair {} True) {} ] - - location: 39 (remaining gas: 1039963.122 units remaining) + - location: 39 (remaining gas: 1039965.542 units remaining) [ {} (Pair {} True) ] - - location: 40 (remaining gas: 1039963.122 units remaining) + - location: 40 (remaining gas: 1039965.542 units remaining) [ (Pair {} True) ] - - location: 64 (remaining gas: 1039963.112 units remaining) + - location: 64 (remaining gas: 1039965.532 units remaining) [ True ] - - location: 65 (remaining gas: 1039963.097 units remaining) + - location: 65 (remaining gas: 1039965.522 units remaining) [ (Some True) ] - - location: 66 (remaining gas: 1039963.082 units remaining) + - location: 66 (remaining gas: 1039965.512 units remaining) [ {} (Some True) ] - - location: 68 (remaining gas: 1039963.067 units remaining) + - location: 68 (remaining gas: 1039965.502 units remaining) [ (Pair {} (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" index bc6d97809655..38b102903707 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[contract.tz-Unit-\"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" @@ -7,23 +7,23 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039340.490 units remaining) + - location: 7 (remaining gas: 1039984.530 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" Unit) ] - - location: 7 (remaining gas: 1039340.480 units remaining) + - location: 7 (remaining gas: 1039984.520 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 8 (remaining gas: 1039340.230 units remaining) + - location: 8 (remaining gas: 1039984.430 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 11 (remaining gas: 1039340.220 units remaining) + - location: 11 (remaining gas: 1039984.420 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 11 (remaining gas: 1039340.205 units remaining) + - location: 11 (remaining gas: 1039984.410 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 17 (remaining gas: 1039340.195 units remaining) + - location: 17 (remaining gas: 1039984.400 units remaining) [ ] - - location: 18 (remaining gas: 1039340.185 units remaining) + - location: 18 (remaining gas: 1039984.390 units remaining) [ Unit ] - - location: 19 (remaining gas: 1039340.170 units remaining) + - location: 19 (remaining gas: 1039984.380 units remaining) [ {} Unit ] - - location: 21 (remaining gas: 1039340.155 units remaining) + - location: 21 (remaining gas: 1039984.370 units remaining) [ (Pair {} Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" index 98ec1d692733..22855f1149aa 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[create_contract.tz-None-Unit-(Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" @@ -13,37 +13,37 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039984.654 units remaining) + - location: 8 (remaining gas: 1039987.534 units remaining) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039984.644 units remaining) + - location: 8 (remaining gas: 1039987.524 units remaining) [ ] - - location: 9 (remaining gas: 1039984.634 units remaining) + - location: 9 (remaining gas: 1039987.514 units remaining) [ Unit ] - - location: 10 (remaining gas: 1039984.619 units remaining) + - location: 10 (remaining gas: 1039987.504 units remaining) [ 50000 Unit ] - - location: 11 (remaining gas: 1039984.604 units remaining) + - location: 11 (remaining gas: 1039987.494 units remaining) [ None 50000 Unit ] - - location: 13 (remaining gas: 1039984.038 units remaining) + - location: 13 (remaining gas: 1039986.928 units remaining) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm" ] - - location: 25 (remaining gas: 1039984.023 units remaining) + - location: 25 (remaining gas: 1039986.918 units remaining) [ "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm" ] - - location: 27 (remaining gas: 1039984.008 units remaining) + - location: 27 (remaining gas: 1039986.908 units remaining) [ (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 28 (remaining gas: 1039983.993 units remaining) + - location: 28 (remaining gas: 1039986.898 units remaining) [ {} (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 25 (remaining gas: 1039983.963 units remaining) + - location: 25 (remaining gas: 1039986.878 units remaining) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b {} (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 30 (remaining gas: 1039983.948 units remaining) + - location: 30 (remaining gas: 1039986.868 units remaining) [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b } (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 31 (remaining gas: 1039983.933 units remaining) + - location: 31 (remaining gas: 1039986.858 units remaining) [ (Pair { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b } (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" index dc7d892b88e4..fba1ecc9932c 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair \"1970-01-01T00:03:20Z\" \"19.90e9215d17.out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039991.318 units remaining) + - location: 9 (remaining gas: 1039990.498 units remaining) [ (Pair (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") 111) ] - - location: 9 (remaining gas: 1039991.308 units remaining) + - location: 9 (remaining gas: 1039990.488 units remaining) [ (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") ] - - location: 10 (remaining gas: 1039991.298 units remaining) + - location: 10 (remaining gas: 1039990.478 units remaining) [ (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") ] - - location: 11 (remaining gas: 1039991.288 units remaining) + - location: 11 (remaining gas: 1039990.468 units remaining) [ "1970-01-01T00:03:20Z" (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") ] - - location: 12 (remaining gas: 1039991.273 units remaining) + - location: 12 (remaining gas: 1039990.458 units remaining) [ (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") ] - - location: 14 (remaining gas: 1039991.263 units remaining) + - location: 14 (remaining gas: 1039990.448 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 12 (remaining gas: 1039991.233 units remaining) + - location: 12 (remaining gas: 1039990.428 units remaining) [ "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z" ] - - location: 15 (remaining gas: 1039991.178 units remaining) + - location: 15 (remaining gas: 1039990.393 units remaining) [ 200 ] - - location: 16 (remaining gas: 1039991.163 units remaining) + - location: 16 (remaining gas: 1039990.383 units remaining) [ {} 200 ] - - location: 18 (remaining gas: 1039991.148 units remaining) + - location: 18 (remaining gas: 1039990.373 units remaining) [ (Pair {} 200) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out index 2c0bbf81baf2..60f9bedf457a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 0)-0].out @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039991.518 units remaining) + - location: 9 (remaining gas: 1039992.158 units remaining) [ (Pair (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") 111) ] - - location: 9 (remaining gas: 1039991.508 units remaining) + - location: 9 (remaining gas: 1039992.148 units remaining) [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") ] - - location: 10 (remaining gas: 1039991.498 units remaining) + - location: 10 (remaining gas: 1039992.138 units remaining) [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") ] - - location: 11 (remaining gas: 1039991.488 units remaining) + - location: 11 (remaining gas: 1039992.128 units remaining) [ "1970-01-01T00:00:00Z" (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") ] - - location: 12 (remaining gas: 1039991.473 units remaining) + - location: 12 (remaining gas: 1039992.118 units remaining) [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") ] - - location: 14 (remaining gas: 1039991.463 units remaining) + - location: 14 (remaining gas: 1039992.108 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 12 (remaining gas: 1039991.433 units remaining) + - location: 12 (remaining gas: 1039992.088 units remaining) [ "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z" ] - - location: 15 (remaining gas: 1039991.378 units remaining) + - location: 15 (remaining gas: 1039992.053 units remaining) [ 0 ] - - location: 16 (remaining gas: 1039991.363 units remaining) + - location: 16 (remaining gas: 1039992.043 units remaining) [ {} 0 ] - - location: 18 (remaining gas: 1039991.348 units remaining) + - location: 18 (remaining gas: 1039992.033 units remaining) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out index 46c9387e6cab..58f1a351f777 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 0 1)--1].out @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039991.518 units remaining) + - location: 9 (remaining gas: 1039992.158 units remaining) [ (Pair (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") 111) ] - - location: 9 (remaining gas: 1039991.508 units remaining) + - location: 9 (remaining gas: 1039992.148 units remaining) [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") ] - - location: 10 (remaining gas: 1039991.498 units remaining) + - location: 10 (remaining gas: 1039992.138 units remaining) [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") ] - - location: 11 (remaining gas: 1039991.488 units remaining) + - location: 11 (remaining gas: 1039992.128 units remaining) [ "1970-01-01T00:00:00Z" (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") ] - - location: 12 (remaining gas: 1039991.473 units remaining) + - location: 12 (remaining gas: 1039992.118 units remaining) [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") ] - - location: 14 (remaining gas: 1039991.463 units remaining) + - location: 14 (remaining gas: 1039992.108 units remaining) [ "1970-01-01T00:00:01Z" ] - - location: 12 (remaining gas: 1039991.433 units remaining) + - location: 12 (remaining gas: 1039992.088 units remaining) [ "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z" ] - - location: 15 (remaining gas: 1039991.378 units remaining) + - location: 15 (remaining gas: 1039992.053 units remaining) [ -1 ] - - location: 16 (remaining gas: 1039991.363 units remaining) + - location: 16 (remaining gas: 1039992.043 units remaining) [ {} -1 ] - - location: 18 (remaining gas: 1039991.348 units remaining) + - location: 18 (remaining gas: 1039992.033 units remaining) [ (Pair {} -1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out index 2fc1c7d6bc33..1efe72851783 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[diff_timestamps.tz-111-(Pair 1 0)-1].out @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039991.518 units remaining) + - location: 9 (remaining gas: 1039992.158 units remaining) [ (Pair (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") 111) ] - - location: 9 (remaining gas: 1039991.508 units remaining) + - location: 9 (remaining gas: 1039992.148 units remaining) [ (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") ] - - location: 10 (remaining gas: 1039991.498 units remaining) + - location: 10 (remaining gas: 1039992.138 units remaining) [ (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") ] - - location: 11 (remaining gas: 1039991.488 units remaining) + - location: 11 (remaining gas: 1039992.128 units remaining) [ "1970-01-01T00:00:01Z" (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") ] - - location: 12 (remaining gas: 1039991.473 units remaining) + - location: 12 (remaining gas: 1039992.118 units remaining) [ (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") ] - - location: 14 (remaining gas: 1039991.463 units remaining) + - location: 14 (remaining gas: 1039992.108 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 12 (remaining gas: 1039991.433 units remaining) + - location: 12 (remaining gas: 1039992.088 units remaining) [ "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z" ] - - location: 15 (remaining gas: 1039991.378 units remaining) + - location: 15 (remaining gas: 1039992.053 units remaining) [ 1 ] - - location: 16 (remaining gas: 1039991.363 units remaining) + - location: 16 (remaining gas: 1039992.043 units remaining) [ {} 1 ] - - location: 18 (remaining gas: 1039991.348 units remaining) + - location: 18 (remaining gas: 1039992.033 units remaining) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out index c5a04f479be2..2f638e4df92b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out @@ -7,111 +7,111 @@ emitted operations big_map diff trace - - location: 24 (remaining gas: 1039868.717 units remaining) + - location: 24 (remaining gas: 1039874.637 units remaining) [ (Pair (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) Unit) ] - - location: 24 (remaining gas: 1039868.707 units remaining) + - location: 24 (remaining gas: 1039874.627 units remaining) [ (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 25 (remaining gas: 1039868.697 units remaining) + - location: 25 (remaining gas: 1039874.617 units remaining) [ (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 27 (remaining gas: 1039868.687 units remaining) + - location: 27 (remaining gas: 1039874.607 units remaining) [ 17 (Pair 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 28 (remaining gas: 1039868.672 units remaining) + - location: 28 (remaining gas: 1039874.597 units remaining) [ (Pair 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 30 (remaining gas: 1039868.662 units remaining) + - location: 30 (remaining gas: 1039874.587 units remaining) [ 16 (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 28 (remaining gas: 1039868.632 units remaining) + - location: 28 (remaining gas: 1039874.567 units remaining) [ 17 16 (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 31 (remaining gas: 1039868.584 units remaining) + - location: 31 (remaining gas: 1039874.532 units remaining) [ (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 34 (remaining gas: 1039868.574 units remaining) + - location: 34 (remaining gas: 1039874.522 units remaining) [ 15 (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 31 (remaining gas: 1039868.549 units remaining) + - location: 31 (remaining gas: 1039874.502 units remaining) [ 16 15 (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 31 (remaining gas: 1039868.539 units remaining) + - location: 31 (remaining gas: 1039874.492 units remaining) [ 17 16 15 (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 31 (remaining gas: 1039868.539 units remaining) + - location: 31 (remaining gas: 1039874.492 units remaining) [ 17 16 15 (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 35 (remaining gas: 1039868.490 units remaining) + - location: 35 (remaining gas: 1039874.455 units remaining) [ (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 38 (remaining gas: 1039868.480 units remaining) + - location: 38 (remaining gas: 1039874.445 units remaining) [ 14 (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 35 (remaining gas: 1039868.455 units remaining) + - location: 35 (remaining gas: 1039874.425 units remaining) [ 15 14 (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 35 (remaining gas: 1039868.445 units remaining) + - location: 35 (remaining gas: 1039874.415 units remaining) [ 16 15 14 (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 35 (remaining gas: 1039868.435 units remaining) + - location: 35 (remaining gas: 1039874.405 units remaining) [ 17 16 15 14 (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 35 (remaining gas: 1039868.435 units remaining) + - location: 35 (remaining gas: 1039874.405 units remaining) [ 17 16 15 14 (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 39 (remaining gas: 1039868.384 units remaining) + - location: 39 (remaining gas: 1039874.365 units remaining) [ (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 42 (remaining gas: 1039868.374 units remaining) + - location: 42 (remaining gas: 1039874.355 units remaining) [ 13 (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 39 (remaining gas: 1039868.349 units remaining) + - location: 39 (remaining gas: 1039874.335 units remaining) [ 14 13 (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 39 (remaining gas: 1039868.339 units remaining) + - location: 39 (remaining gas: 1039874.325 units remaining) [ 15 14 13 (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 39 (remaining gas: 1039868.329 units remaining) + - location: 39 (remaining gas: 1039874.315 units remaining) [ 16 15 14 13 (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 39 (remaining gas: 1039868.319 units remaining) + - location: 39 (remaining gas: 1039874.305 units remaining) [ 17 16 15 @@ -119,7 +119,7 @@ trace 13 (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 39 (remaining gas: 1039868.319 units remaining) + - location: 39 (remaining gas: 1039874.305 units remaining) [ 17 16 15 @@ -127,32 +127,32 @@ trace 13 (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 43 (remaining gas: 1039868.267 units remaining) + - location: 43 (remaining gas: 1039874.263 units remaining) [ (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 46 (remaining gas: 1039868.257 units remaining) + - location: 46 (remaining gas: 1039874.253 units remaining) [ 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 43 (remaining gas: 1039868.232 units remaining) + - location: 43 (remaining gas: 1039874.233 units remaining) [ 13 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 43 (remaining gas: 1039868.222 units remaining) + - location: 43 (remaining gas: 1039874.223 units remaining) [ 14 13 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 43 (remaining gas: 1039868.212 units remaining) + - location: 43 (remaining gas: 1039874.213 units remaining) [ 15 14 13 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 43 (remaining gas: 1039868.202 units remaining) + - location: 43 (remaining gas: 1039874.203 units remaining) [ 16 15 14 @@ -160,7 +160,7 @@ trace 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 43 (remaining gas: 1039868.192 units remaining) + - location: 43 (remaining gas: 1039874.193 units remaining) [ 17 16 15 @@ -169,7 +169,7 @@ trace 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 43 (remaining gas: 1039868.192 units remaining) + - location: 43 (remaining gas: 1039874.193 units remaining) [ 17 16 15 @@ -178,32 +178,32 @@ trace 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (remaining gas: 1039868.138 units remaining) + - location: 47 (remaining gas: 1039874.148 units remaining) [ (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 50 (remaining gas: 1039868.128 units remaining) + - location: 50 (remaining gas: 1039874.138 units remaining) [ 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (remaining gas: 1039868.103 units remaining) + - location: 47 (remaining gas: 1039874.118 units remaining) [ 12 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (remaining gas: 1039868.093 units remaining) + - location: 47 (remaining gas: 1039874.108 units remaining) [ 13 12 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (remaining gas: 1039868.083 units remaining) + - location: 47 (remaining gas: 1039874.098 units remaining) [ 14 13 12 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (remaining gas: 1039868.073 units remaining) + - location: 47 (remaining gas: 1039874.088 units remaining) [ 15 14 13 @@ -211,7 +211,7 @@ trace 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (remaining gas: 1039868.063 units remaining) + - location: 47 (remaining gas: 1039874.078 units remaining) [ 16 15 14 @@ -220,7 +220,7 @@ trace 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (remaining gas: 1039868.053 units remaining) + - location: 47 (remaining gas: 1039874.068 units remaining) [ 17 16 15 @@ -230,7 +230,7 @@ trace 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (remaining gas: 1039868.053 units remaining) + - location: 47 (remaining gas: 1039874.068 units remaining) [ 17 16 15 @@ -240,32 +240,32 @@ trace 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (remaining gas: 1039867.998 units remaining) + - location: 51 (remaining gas: 1039874.021 units remaining) [ (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 54 (remaining gas: 1039867.988 units remaining) + - location: 54 (remaining gas: 1039874.011 units remaining) [ 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (remaining gas: 1039867.963 units remaining) + - location: 51 (remaining gas: 1039873.991 units remaining) [ 11 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (remaining gas: 1039867.953 units remaining) + - location: 51 (remaining gas: 1039873.981 units remaining) [ 12 11 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (remaining gas: 1039867.943 units remaining) + - location: 51 (remaining gas: 1039873.971 units remaining) [ 13 12 11 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (remaining gas: 1039867.933 units remaining) + - location: 51 (remaining gas: 1039873.961 units remaining) [ 14 13 12 @@ -273,7 +273,7 @@ trace 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (remaining gas: 1039867.923 units remaining) + - location: 51 (remaining gas: 1039873.951 units remaining) [ 15 14 13 @@ -282,7 +282,7 @@ trace 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (remaining gas: 1039867.913 units remaining) + - location: 51 (remaining gas: 1039873.941 units remaining) [ 16 15 14 @@ -292,7 +292,7 @@ trace 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (remaining gas: 1039867.903 units remaining) + - location: 51 (remaining gas: 1039873.931 units remaining) [ 17 16 15 @@ -303,7 +303,7 @@ trace 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (remaining gas: 1039867.903 units remaining) + - location: 51 (remaining gas: 1039873.931 units remaining) [ 17 16 15 @@ -314,32 +314,32 @@ trace 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (remaining gas: 1039867.845 units remaining) + - location: 55 (remaining gas: 1039873.880 units remaining) [ (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 58 (remaining gas: 1039867.835 units remaining) + - location: 58 (remaining gas: 1039873.870 units remaining) [ 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (remaining gas: 1039867.810 units remaining) + - location: 55 (remaining gas: 1039873.850 units remaining) [ 10 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (remaining gas: 1039867.800 units remaining) + - location: 55 (remaining gas: 1039873.840 units remaining) [ 11 10 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (remaining gas: 1039867.790 units remaining) + - location: 55 (remaining gas: 1039873.830 units remaining) [ 12 11 10 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (remaining gas: 1039867.780 units remaining) + - location: 55 (remaining gas: 1039873.820 units remaining) [ 13 12 11 @@ -347,7 +347,7 @@ trace 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (remaining gas: 1039867.770 units remaining) + - location: 55 (remaining gas: 1039873.810 units remaining) [ 14 13 12 @@ -356,7 +356,7 @@ trace 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (remaining gas: 1039867.760 units remaining) + - location: 55 (remaining gas: 1039873.800 units remaining) [ 15 14 13 @@ -366,7 +366,7 @@ trace 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (remaining gas: 1039867.750 units remaining) + - location: 55 (remaining gas: 1039873.790 units remaining) [ 16 15 14 @@ -377,7 +377,7 @@ trace 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (remaining gas: 1039867.740 units remaining) + - location: 55 (remaining gas: 1039873.780 units remaining) [ 17 16 15 @@ -389,7 +389,7 @@ trace 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (remaining gas: 1039867.740 units remaining) + - location: 55 (remaining gas: 1039873.780 units remaining) [ 17 16 15 @@ -401,32 +401,32 @@ trace 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (remaining gas: 1039867.681 units remaining) + - location: 59 (remaining gas: 1039873.727 units remaining) [ (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 62 (remaining gas: 1039867.671 units remaining) + - location: 62 (remaining gas: 1039873.717 units remaining) [ 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (remaining gas: 1039867.646 units remaining) + - location: 59 (remaining gas: 1039873.697 units remaining) [ 9 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (remaining gas: 1039867.636 units remaining) + - location: 59 (remaining gas: 1039873.687 units remaining) [ 10 9 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (remaining gas: 1039867.626 units remaining) + - location: 59 (remaining gas: 1039873.677 units remaining) [ 11 10 9 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (remaining gas: 1039867.616 units remaining) + - location: 59 (remaining gas: 1039873.667 units remaining) [ 12 11 10 @@ -434,7 +434,7 @@ trace 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (remaining gas: 1039867.606 units remaining) + - location: 59 (remaining gas: 1039873.657 units remaining) [ 13 12 11 @@ -443,7 +443,7 @@ trace 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (remaining gas: 1039867.596 units remaining) + - location: 59 (remaining gas: 1039873.647 units remaining) [ 14 13 12 @@ -453,7 +453,7 @@ trace 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (remaining gas: 1039867.586 units remaining) + - location: 59 (remaining gas: 1039873.637 units remaining) [ 15 14 13 @@ -464,7 +464,7 @@ trace 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (remaining gas: 1039867.576 units remaining) + - location: 59 (remaining gas: 1039873.627 units remaining) [ 16 15 14 @@ -476,7 +476,7 @@ trace 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (remaining gas: 1039867.566 units remaining) + - location: 59 (remaining gas: 1039873.617 units remaining) [ 17 16 15 @@ -489,7 +489,7 @@ trace 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (remaining gas: 1039867.566 units remaining) + - location: 59 (remaining gas: 1039873.617 units remaining) [ 17 16 15 @@ -502,32 +502,32 @@ trace 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (remaining gas: 1039867.505 units remaining) + - location: 63 (remaining gas: 1039873.561 units remaining) [ (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 66 (remaining gas: 1039867.495 units remaining) + - location: 66 (remaining gas: 1039873.551 units remaining) [ 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (remaining gas: 1039867.470 units remaining) + - location: 63 (remaining gas: 1039873.531 units remaining) [ 8 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (remaining gas: 1039867.460 units remaining) + - location: 63 (remaining gas: 1039873.521 units remaining) [ 9 8 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (remaining gas: 1039867.450 units remaining) + - location: 63 (remaining gas: 1039873.511 units remaining) [ 10 9 8 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (remaining gas: 1039867.440 units remaining) + - location: 63 (remaining gas: 1039873.501 units remaining) [ 11 10 9 @@ -535,7 +535,7 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (remaining gas: 1039867.430 units remaining) + - location: 63 (remaining gas: 1039873.491 units remaining) [ 12 11 10 @@ -544,7 +544,7 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (remaining gas: 1039867.420 units remaining) + - location: 63 (remaining gas: 1039873.481 units remaining) [ 13 12 11 @@ -554,7 +554,7 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (remaining gas: 1039867.410 units remaining) + - location: 63 (remaining gas: 1039873.471 units remaining) [ 14 13 12 @@ -565,7 +565,7 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (remaining gas: 1039867.400 units remaining) + - location: 63 (remaining gas: 1039873.461 units remaining) [ 15 14 13 @@ -577,7 +577,7 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (remaining gas: 1039867.390 units remaining) + - location: 63 (remaining gas: 1039873.451 units remaining) [ 16 15 14 @@ -590,7 +590,7 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (remaining gas: 1039867.380 units remaining) + - location: 63 (remaining gas: 1039873.441 units remaining) [ 17 16 15 @@ -604,7 +604,7 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (remaining gas: 1039867.380 units remaining) + - location: 63 (remaining gas: 1039873.441 units remaining) [ 17 16 15 @@ -618,32 +618,32 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (remaining gas: 1039867.318 units remaining) + - location: 67 (remaining gas: 1039873.383 units remaining) [ (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 70 (remaining gas: 1039867.308 units remaining) + - location: 70 (remaining gas: 1039873.373 units remaining) [ 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (remaining gas: 1039867.283 units remaining) + - location: 67 (remaining gas: 1039873.353 units remaining) [ 7 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (remaining gas: 1039867.273 units remaining) + - location: 67 (remaining gas: 1039873.343 units remaining) [ 8 7 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (remaining gas: 1039867.263 units remaining) + - location: 67 (remaining gas: 1039873.333 units remaining) [ 9 8 7 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (remaining gas: 1039867.253 units remaining) + - location: 67 (remaining gas: 1039873.323 units remaining) [ 10 9 8 @@ -651,7 +651,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (remaining gas: 1039867.243 units remaining) + - location: 67 (remaining gas: 1039873.313 units remaining) [ 11 10 9 @@ -660,7 +660,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (remaining gas: 1039867.233 units remaining) + - location: 67 (remaining gas: 1039873.303 units remaining) [ 12 11 10 @@ -670,7 +670,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (remaining gas: 1039867.223 units remaining) + - location: 67 (remaining gas: 1039873.293 units remaining) [ 13 12 11 @@ -681,7 +681,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (remaining gas: 1039867.213 units remaining) + - location: 67 (remaining gas: 1039873.283 units remaining) [ 14 13 12 @@ -693,7 +693,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (remaining gas: 1039867.203 units remaining) + - location: 67 (remaining gas: 1039873.273 units remaining) [ 15 14 13 @@ -706,7 +706,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (remaining gas: 1039867.193 units remaining) + - location: 67 (remaining gas: 1039873.263 units remaining) [ 16 15 14 @@ -720,7 +720,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (remaining gas: 1039867.183 units remaining) + - location: 67 (remaining gas: 1039873.253 units remaining) [ 17 16 15 @@ -735,7 +735,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (remaining gas: 1039867.183 units remaining) + - location: 67 (remaining gas: 1039873.253 units remaining) [ 17 16 15 @@ -750,32 +750,32 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (remaining gas: 1039867.119 units remaining) + - location: 71 (remaining gas: 1039873.192 units remaining) [ (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 74 (remaining gas: 1039867.109 units remaining) + - location: 74 (remaining gas: 1039873.182 units remaining) [ 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (remaining gas: 1039867.084 units remaining) + - location: 71 (remaining gas: 1039873.162 units remaining) [ 6 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (remaining gas: 1039867.074 units remaining) + - location: 71 (remaining gas: 1039873.152 units remaining) [ 7 6 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (remaining gas: 1039867.064 units remaining) + - location: 71 (remaining gas: 1039873.142 units remaining) [ 8 7 6 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (remaining gas: 1039867.054 units remaining) + - location: 71 (remaining gas: 1039873.132 units remaining) [ 9 8 7 @@ -783,7 +783,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (remaining gas: 1039867.044 units remaining) + - location: 71 (remaining gas: 1039873.122 units remaining) [ 10 9 8 @@ -792,7 +792,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (remaining gas: 1039867.034 units remaining) + - location: 71 (remaining gas: 1039873.112 units remaining) [ 11 10 9 @@ -802,7 +802,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (remaining gas: 1039867.024 units remaining) + - location: 71 (remaining gas: 1039873.102 units remaining) [ 12 11 10 @@ -813,7 +813,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (remaining gas: 1039867.014 units remaining) + - location: 71 (remaining gas: 1039873.092 units remaining) [ 13 12 11 @@ -825,7 +825,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (remaining gas: 1039867.004 units remaining) + - location: 71 (remaining gas: 1039873.082 units remaining) [ 14 13 12 @@ -838,7 +838,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (remaining gas: 1039866.994 units remaining) + - location: 71 (remaining gas: 1039873.072 units remaining) [ 15 14 13 @@ -852,7 +852,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (remaining gas: 1039866.984 units remaining) + - location: 71 (remaining gas: 1039873.062 units remaining) [ 16 15 14 @@ -867,7 +867,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (remaining gas: 1039866.974 units remaining) + - location: 71 (remaining gas: 1039873.052 units remaining) [ 17 16 15 @@ -883,7 +883,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (remaining gas: 1039866.974 units remaining) + - location: 71 (remaining gas: 1039873.052 units remaining) [ 17 16 15 @@ -899,32 +899,32 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.909 units remaining) + - location: 75 (remaining gas: 1039872.989 units remaining) [ (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 78 (remaining gas: 1039866.899 units remaining) + - location: 78 (remaining gas: 1039872.979 units remaining) [ 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.874 units remaining) + - location: 75 (remaining gas: 1039872.959 units remaining) [ 5 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.864 units remaining) + - location: 75 (remaining gas: 1039872.949 units remaining) [ 6 5 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.854 units remaining) + - location: 75 (remaining gas: 1039872.939 units remaining) [ 7 6 5 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.844 units remaining) + - location: 75 (remaining gas: 1039872.929 units remaining) [ 8 7 6 @@ -932,7 +932,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.834 units remaining) + - location: 75 (remaining gas: 1039872.919 units remaining) [ 9 8 7 @@ -941,7 +941,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.824 units remaining) + - location: 75 (remaining gas: 1039872.909 units remaining) [ 10 9 8 @@ -951,7 +951,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.814 units remaining) + - location: 75 (remaining gas: 1039872.899 units remaining) [ 11 10 9 @@ -962,7 +962,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.804 units remaining) + - location: 75 (remaining gas: 1039872.889 units remaining) [ 12 11 10 @@ -974,7 +974,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.794 units remaining) + - location: 75 (remaining gas: 1039872.879 units remaining) [ 13 12 11 @@ -987,7 +987,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.784 units remaining) + - location: 75 (remaining gas: 1039872.869 units remaining) [ 14 13 12 @@ -1001,7 +1001,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.774 units remaining) + - location: 75 (remaining gas: 1039872.859 units remaining) [ 15 14 13 @@ -1016,7 +1016,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.764 units remaining) + - location: 75 (remaining gas: 1039872.849 units remaining) [ 16 15 14 @@ -1032,7 +1032,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.754 units remaining) + - location: 75 (remaining gas: 1039872.839 units remaining) [ 17 16 15 @@ -1049,7 +1049,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (remaining gas: 1039866.754 units remaining) + - location: 75 (remaining gas: 1039872.839 units remaining) [ 17 16 15 @@ -1066,32 +1066,32 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.687 units remaining) + - location: 79 (remaining gas: 1039872.773 units remaining) [ (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 82 (remaining gas: 1039866.677 units remaining) + - location: 82 (remaining gas: 1039872.763 units remaining) [ 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.652 units remaining) + - location: 79 (remaining gas: 1039872.743 units remaining) [ 4 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.642 units remaining) + - location: 79 (remaining gas: 1039872.733 units remaining) [ 5 4 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.632 units remaining) + - location: 79 (remaining gas: 1039872.723 units remaining) [ 6 5 4 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.622 units remaining) + - location: 79 (remaining gas: 1039872.713 units remaining) [ 7 6 5 @@ -1099,7 +1099,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.612 units remaining) + - location: 79 (remaining gas: 1039872.703 units remaining) [ 8 7 6 @@ -1108,7 +1108,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.602 units remaining) + - location: 79 (remaining gas: 1039872.693 units remaining) [ 9 8 7 @@ -1118,7 +1118,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.592 units remaining) + - location: 79 (remaining gas: 1039872.683 units remaining) [ 10 9 8 @@ -1129,7 +1129,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.582 units remaining) + - location: 79 (remaining gas: 1039872.673 units remaining) [ 11 10 9 @@ -1141,7 +1141,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.572 units remaining) + - location: 79 (remaining gas: 1039872.663 units remaining) [ 12 11 10 @@ -1154,7 +1154,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.562 units remaining) + - location: 79 (remaining gas: 1039872.653 units remaining) [ 13 12 11 @@ -1168,7 +1168,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.552 units remaining) + - location: 79 (remaining gas: 1039872.643 units remaining) [ 14 13 12 @@ -1183,7 +1183,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.542 units remaining) + - location: 79 (remaining gas: 1039872.633 units remaining) [ 15 14 13 @@ -1199,7 +1199,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.532 units remaining) + - location: 79 (remaining gas: 1039872.623 units remaining) [ 16 15 14 @@ -1216,7 +1216,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.522 units remaining) + - location: 79 (remaining gas: 1039872.613 units remaining) [ 17 16 15 @@ -1234,7 +1234,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (remaining gas: 1039866.522 units remaining) + - location: 79 (remaining gas: 1039872.613 units remaining) [ 17 16 15 @@ -1252,32 +1252,32 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.454 units remaining) + - location: 83 (remaining gas: 1039872.545 units remaining) [ (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 86 (remaining gas: 1039866.444 units remaining) + - location: 86 (remaining gas: 1039872.535 units remaining) [ 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.419 units remaining) + - location: 83 (remaining gas: 1039872.515 units remaining) [ 3 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.409 units remaining) + - location: 83 (remaining gas: 1039872.505 units remaining) [ 4 3 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.399 units remaining) + - location: 83 (remaining gas: 1039872.495 units remaining) [ 5 4 3 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.389 units remaining) + - location: 83 (remaining gas: 1039872.485 units remaining) [ 6 5 4 @@ -1285,7 +1285,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.379 units remaining) + - location: 83 (remaining gas: 1039872.475 units remaining) [ 7 6 5 @@ -1294,7 +1294,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.369 units remaining) + - location: 83 (remaining gas: 1039872.465 units remaining) [ 8 7 6 @@ -1304,7 +1304,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.359 units remaining) + - location: 83 (remaining gas: 1039872.455 units remaining) [ 9 8 7 @@ -1315,7 +1315,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.349 units remaining) + - location: 83 (remaining gas: 1039872.445 units remaining) [ 10 9 8 @@ -1327,7 +1327,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.339 units remaining) + - location: 83 (remaining gas: 1039872.435 units remaining) [ 11 10 9 @@ -1340,7 +1340,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.329 units remaining) + - location: 83 (remaining gas: 1039872.425 units remaining) [ 12 11 10 @@ -1354,7 +1354,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.319 units remaining) + - location: 83 (remaining gas: 1039872.415 units remaining) [ 13 12 11 @@ -1369,7 +1369,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.309 units remaining) + - location: 83 (remaining gas: 1039872.405 units remaining) [ 14 13 12 @@ -1385,7 +1385,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.299 units remaining) + - location: 83 (remaining gas: 1039872.395 units remaining) [ 15 14 13 @@ -1402,7 +1402,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.289 units remaining) + - location: 83 (remaining gas: 1039872.385 units remaining) [ 16 15 14 @@ -1420,7 +1420,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.279 units remaining) + - location: 83 (remaining gas: 1039872.375 units remaining) [ 17 16 15 @@ -1439,7 +1439,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (remaining gas: 1039866.279 units remaining) + - location: 83 (remaining gas: 1039872.375 units remaining) [ 17 16 15 @@ -1458,7 +1458,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 87 (remaining gas: 1039866.219 units remaining) + - location: 87 (remaining gas: 1039872.345 units remaining) [ 17 16 15 @@ -1477,7 +1477,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 89 (remaining gas: 1039866.153 units remaining) + - location: 89 (remaining gas: 1039872.309 units remaining) [ 16 17 15 @@ -1496,7 +1496,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 91 (remaining gas: 1039866.080 units remaining) + - location: 91 (remaining gas: 1039872.266 units remaining) [ 15 16 17 @@ -1515,7 +1515,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 93 (remaining gas: 1039866.001 units remaining) + - location: 93 (remaining gas: 1039872.217 units remaining) [ 14 15 16 @@ -1534,7 +1534,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 95 (remaining gas: 1039865.914 units remaining) + - location: 95 (remaining gas: 1039872.160 units remaining) [ 13 14 15 @@ -1553,7 +1553,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 97 (remaining gas: 1039865.821 units remaining) + - location: 97 (remaining gas: 1039872.097 units remaining) [ 12 13 14 @@ -1572,7 +1572,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 99 (remaining gas: 1039865.721 units remaining) + - location: 99 (remaining gas: 1039872.027 units remaining) [ 11 12 13 @@ -1591,7 +1591,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 101 (remaining gas: 1039865.615 units remaining) + - location: 101 (remaining gas: 1039871.951 units remaining) [ 10 11 12 @@ -1610,7 +1610,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 103 (remaining gas: 1039865.501 units remaining) + - location: 103 (remaining gas: 1039871.867 units remaining) [ 9 10 11 @@ -1629,7 +1629,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 105 (remaining gas: 1039865.381 units remaining) + - location: 105 (remaining gas: 1039871.777 units remaining) [ 8 9 10 @@ -1648,7 +1648,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 107 (remaining gas: 1039865.254 units remaining) + - location: 107 (remaining gas: 1039871.680 units remaining) [ 7 8 9 @@ -1667,7 +1667,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 109 (remaining gas: 1039865.121 units remaining) + - location: 109 (remaining gas: 1039871.577 units remaining) [ 6 7 8 @@ -1686,7 +1686,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 111 (remaining gas: 1039864.980 units remaining) + - location: 111 (remaining gas: 1039871.466 units remaining) [ 5 6 7 @@ -1705,7 +1705,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 113 (remaining gas: 1039864.833 units remaining) + - location: 113 (remaining gas: 1039871.349 units remaining) [ 4 5 6 @@ -1724,7 +1724,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 115 (remaining gas: 1039864.679 units remaining) + - location: 115 (remaining gas: 1039871.225 units remaining) [ 3 4 5 @@ -1743,7 +1743,7 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 117 (remaining gas: 1039864.519 units remaining) + - location: 117 (remaining gas: 1039871.095 units remaining) [ 2 3 4 @@ -1762,7 +1762,7 @@ trace 17 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 119 (remaining gas: 1039864.351 units remaining) + - location: 119 (remaining gas: 1039870.957 units remaining) [ 1 2 3 @@ -1781,7 +1781,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 121 (remaining gas: 1039864.291 units remaining) + - location: 121 (remaining gas: 1039870.927 units remaining) [ 1 2 3 @@ -1800,7 +1800,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 123 (remaining gas: 1039864.225 units remaining) + - location: 123 (remaining gas: 1039870.891 units remaining) [ 2 1 3 @@ -1819,7 +1819,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 125 (remaining gas: 1039864.152 units remaining) + - location: 125 (remaining gas: 1039870.848 units remaining) [ 3 2 1 @@ -1838,7 +1838,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 127 (remaining gas: 1039864.073 units remaining) + - location: 127 (remaining gas: 1039870.799 units remaining) [ 4 3 2 @@ -1857,7 +1857,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 129 (remaining gas: 1039863.986 units remaining) + - location: 129 (remaining gas: 1039870.742 units remaining) [ 5 4 3 @@ -1876,7 +1876,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 131 (remaining gas: 1039863.893 units remaining) + - location: 131 (remaining gas: 1039870.679 units remaining) [ 6 5 4 @@ -1895,7 +1895,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 133 (remaining gas: 1039863.793 units remaining) + - location: 133 (remaining gas: 1039870.609 units remaining) [ 7 6 5 @@ -1914,7 +1914,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 135 (remaining gas: 1039863.687 units remaining) + - location: 135 (remaining gas: 1039870.533 units remaining) [ 8 7 6 @@ -1933,7 +1933,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 137 (remaining gas: 1039863.573 units remaining) + - location: 137 (remaining gas: 1039870.449 units remaining) [ 9 8 7 @@ -1952,7 +1952,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 139 (remaining gas: 1039863.453 units remaining) + - location: 139 (remaining gas: 1039870.359 units remaining) [ 10 9 8 @@ -1971,7 +1971,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 141 (remaining gas: 1039863.326 units remaining) + - location: 141 (remaining gas: 1039870.262 units remaining) [ 11 10 9 @@ -1990,7 +1990,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 143 (remaining gas: 1039863.193 units remaining) + - location: 143 (remaining gas: 1039870.159 units remaining) [ 12 11 10 @@ -2009,7 +2009,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 145 (remaining gas: 1039863.052 units remaining) + - location: 145 (remaining gas: 1039870.048 units remaining) [ 13 12 11 @@ -2028,7 +2028,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 147 (remaining gas: 1039862.905 units remaining) + - location: 147 (remaining gas: 1039869.931 units remaining) [ 14 13 12 @@ -2047,7 +2047,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 149 (remaining gas: 1039862.751 units remaining) + - location: 149 (remaining gas: 1039869.807 units remaining) [ 15 14 13 @@ -2066,7 +2066,7 @@ trace 16 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 151 (remaining gas: 1039862.591 units remaining) + - location: 151 (remaining gas: 1039869.677 units remaining) [ 16 15 14 @@ -2085,7 +2085,7 @@ trace 1 17 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 153 (remaining gas: 1039862.423 units remaining) + - location: 153 (remaining gas: 1039869.539 units remaining) [ 17 16 15 @@ -2104,36 +2104,36 @@ trace 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.355 units remaining) + - location: 156 (remaining gas: 1039869.471 units remaining) [ 2 1 (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 159 (remaining gas: 1039862.340 units remaining) + - location: 159 (remaining gas: 1039869.461 units remaining) [ (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.315 units remaining) + - location: 156 (remaining gas: 1039869.441 units remaining) [ 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.305 units remaining) + - location: 156 (remaining gas: 1039869.431 units remaining) [ 4 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.295 units remaining) + - location: 156 (remaining gas: 1039869.421 units remaining) [ 5 4 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.285 units remaining) + - location: 156 (remaining gas: 1039869.411 units remaining) [ 6 5 4 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.275 units remaining) + - location: 156 (remaining gas: 1039869.401 units remaining) [ 7 6 5 @@ -2141,7 +2141,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.265 units remaining) + - location: 156 (remaining gas: 1039869.391 units remaining) [ 8 7 6 @@ -2150,7 +2150,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.255 units remaining) + - location: 156 (remaining gas: 1039869.381 units remaining) [ 9 8 7 @@ -2160,7 +2160,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.245 units remaining) + - location: 156 (remaining gas: 1039869.371 units remaining) [ 10 9 8 @@ -2171,7 +2171,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.235 units remaining) + - location: 156 (remaining gas: 1039869.361 units remaining) [ 11 10 9 @@ -2183,7 +2183,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.225 units remaining) + - location: 156 (remaining gas: 1039869.351 units remaining) [ 12 11 10 @@ -2196,7 +2196,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.215 units remaining) + - location: 156 (remaining gas: 1039869.341 units remaining) [ 13 12 11 @@ -2210,7 +2210,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.205 units remaining) + - location: 156 (remaining gas: 1039869.331 units remaining) [ 14 13 12 @@ -2225,7 +2225,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.195 units remaining) + - location: 156 (remaining gas: 1039869.321 units remaining) [ 15 14 13 @@ -2241,7 +2241,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.185 units remaining) + - location: 156 (remaining gas: 1039869.311 units remaining) [ 16 15 14 @@ -2258,7 +2258,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.175 units remaining) + - location: 156 (remaining gas: 1039869.301 units remaining) [ 17 16 15 @@ -2276,7 +2276,7 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (remaining gas: 1039862.175 units remaining) + - location: 156 (remaining gas: 1039869.301 units remaining) [ 17 16 15 @@ -2294,36 +2294,36 @@ trace 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039862.108 units remaining) + - location: 160 (remaining gas: 1039869.235 units remaining) [ 3 (Pair 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 163 (remaining gas: 1039862.093 units remaining) + - location: 163 (remaining gas: 1039869.225 units remaining) [ (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039862.068 units remaining) + - location: 160 (remaining gas: 1039869.205 units remaining) [ 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039862.058 units remaining) + - location: 160 (remaining gas: 1039869.195 units remaining) [ 5 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039862.048 units remaining) + - location: 160 (remaining gas: 1039869.185 units remaining) [ 6 5 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039862.038 units remaining) + - location: 160 (remaining gas: 1039869.175 units remaining) [ 7 6 5 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039862.028 units remaining) + - location: 160 (remaining gas: 1039869.165 units remaining) [ 8 7 6 @@ -2331,7 +2331,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039862.018 units remaining) + - location: 160 (remaining gas: 1039869.155 units remaining) [ 9 8 7 @@ -2340,7 +2340,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039862.008 units remaining) + - location: 160 (remaining gas: 1039869.145 units remaining) [ 10 9 8 @@ -2350,7 +2350,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039861.998 units remaining) + - location: 160 (remaining gas: 1039869.135 units remaining) [ 11 10 9 @@ -2361,7 +2361,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039861.988 units remaining) + - location: 160 (remaining gas: 1039869.125 units remaining) [ 12 11 10 @@ -2373,7 +2373,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039861.978 units remaining) + - location: 160 (remaining gas: 1039869.115 units remaining) [ 13 12 11 @@ -2386,7 +2386,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039861.968 units remaining) + - location: 160 (remaining gas: 1039869.105 units remaining) [ 14 13 12 @@ -2400,7 +2400,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039861.958 units remaining) + - location: 160 (remaining gas: 1039869.095 units remaining) [ 15 14 13 @@ -2415,7 +2415,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039861.948 units remaining) + - location: 160 (remaining gas: 1039869.085 units remaining) [ 16 15 14 @@ -2431,7 +2431,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039861.938 units remaining) + - location: 160 (remaining gas: 1039869.075 units remaining) [ 17 16 15 @@ -2448,7 +2448,7 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (remaining gas: 1039861.938 units remaining) + - location: 160 (remaining gas: 1039869.075 units remaining) [ 17 16 15 @@ -2465,36 +2465,36 @@ trace 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.873 units remaining) + - location: 164 (remaining gas: 1039869.012 units remaining) [ 4 (Pair 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 167 (remaining gas: 1039861.858 units remaining) + - location: 167 (remaining gas: 1039869.002 units remaining) [ (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.833 units remaining) + - location: 164 (remaining gas: 1039868.982 units remaining) [ 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.823 units remaining) + - location: 164 (remaining gas: 1039868.972 units remaining) [ 6 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.813 units remaining) + - location: 164 (remaining gas: 1039868.962 units remaining) [ 7 6 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.803 units remaining) + - location: 164 (remaining gas: 1039868.952 units remaining) [ 8 7 6 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.793 units remaining) + - location: 164 (remaining gas: 1039868.942 units remaining) [ 9 8 7 @@ -2502,7 +2502,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.783 units remaining) + - location: 164 (remaining gas: 1039868.932 units remaining) [ 10 9 8 @@ -2511,7 +2511,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.773 units remaining) + - location: 164 (remaining gas: 1039868.922 units remaining) [ 11 10 9 @@ -2521,7 +2521,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.763 units remaining) + - location: 164 (remaining gas: 1039868.912 units remaining) [ 12 11 10 @@ -2532,7 +2532,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.753 units remaining) + - location: 164 (remaining gas: 1039868.902 units remaining) [ 13 12 11 @@ -2544,7 +2544,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.743 units remaining) + - location: 164 (remaining gas: 1039868.892 units remaining) [ 14 13 12 @@ -2557,7 +2557,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.733 units remaining) + - location: 164 (remaining gas: 1039868.882 units remaining) [ 15 14 13 @@ -2571,7 +2571,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.723 units remaining) + - location: 164 (remaining gas: 1039868.872 units remaining) [ 16 15 14 @@ -2586,7 +2586,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.713 units remaining) + - location: 164 (remaining gas: 1039868.862 units remaining) [ 17 16 15 @@ -2602,7 +2602,7 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (remaining gas: 1039861.713 units remaining) + - location: 164 (remaining gas: 1039868.862 units remaining) [ 17 16 15 @@ -2618,36 +2618,36 @@ trace 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (remaining gas: 1039861.649 units remaining) + - location: 168 (remaining gas: 1039868.801 units remaining) [ 5 (Pair 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 171 (remaining gas: 1039861.634 units remaining) + - location: 171 (remaining gas: 1039868.791 units remaining) [ (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (remaining gas: 1039861.609 units remaining) + - location: 168 (remaining gas: 1039868.771 units remaining) [ 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (remaining gas: 1039861.599 units remaining) + - location: 168 (remaining gas: 1039868.761 units remaining) [ 7 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (remaining gas: 1039861.589 units remaining) + - location: 168 (remaining gas: 1039868.751 units remaining) [ 8 7 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (remaining gas: 1039861.579 units remaining) + - location: 168 (remaining gas: 1039868.741 units remaining) [ 9 8 7 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (remaining gas: 1039861.569 units remaining) + - location: 168 (remaining gas: 1039868.731 units remaining) [ 10 9 8 @@ -2655,7 +2655,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (remaining gas: 1039861.559 units remaining) + - location: 168 (remaining gas: 1039868.721 units remaining) [ 11 10 9 @@ -2664,7 +2664,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (remaining gas: 1039861.549 units remaining) + - location: 168 (remaining gas: 1039868.711 units remaining) [ 12 11 10 @@ -2674,7 +2674,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (remaining gas: 1039861.539 units remaining) + - location: 168 (remaining gas: 1039868.701 units remaining) [ 13 12 11 @@ -2685,7 +2685,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (remaining gas: 1039861.529 units remaining) + - location: 168 (remaining gas: 1039868.691 units remaining) [ 14 13 12 @@ -2697,7 +2697,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (remaining gas: 1039861.519 units remaining) + - location: 168 (remaining gas: 1039868.681 units remaining) [ 15 14 13 @@ -2710,7 +2710,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (remaining gas: 1039861.509 units remaining) + - location: 168 (remaining gas: 1039868.671 units remaining) [ 16 15 14 @@ -2724,7 +2724,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (remaining gas: 1039861.499 units remaining) + - location: 168 (remaining gas: 1039868.661 units remaining) [ 17 16 15 @@ -2739,7 +2739,7 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (remaining gas: 1039861.499 units remaining) + - location: 168 (remaining gas: 1039868.661 units remaining) [ 17 16 15 @@ -2754,36 +2754,36 @@ trace 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (remaining gas: 1039861.437 units remaining) + - location: 172 (remaining gas: 1039868.603 units remaining) [ 6 (Pair 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 175 (remaining gas: 1039861.422 units remaining) + - location: 175 (remaining gas: 1039868.593 units remaining) [ (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (remaining gas: 1039861.397 units remaining) + - location: 172 (remaining gas: 1039868.573 units remaining) [ 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (remaining gas: 1039861.387 units remaining) + - location: 172 (remaining gas: 1039868.563 units remaining) [ 8 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (remaining gas: 1039861.377 units remaining) + - location: 172 (remaining gas: 1039868.553 units remaining) [ 9 8 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (remaining gas: 1039861.367 units remaining) + - location: 172 (remaining gas: 1039868.543 units remaining) [ 10 9 8 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (remaining gas: 1039861.357 units remaining) + - location: 172 (remaining gas: 1039868.533 units remaining) [ 11 10 9 @@ -2791,7 +2791,7 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (remaining gas: 1039861.347 units remaining) + - location: 172 (remaining gas: 1039868.523 units remaining) [ 12 11 10 @@ -2800,7 +2800,7 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (remaining gas: 1039861.337 units remaining) + - location: 172 (remaining gas: 1039868.513 units remaining) [ 13 12 11 @@ -2810,7 +2810,7 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (remaining gas: 1039861.327 units remaining) + - location: 172 (remaining gas: 1039868.503 units remaining) [ 14 13 12 @@ -2821,7 +2821,7 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (remaining gas: 1039861.317 units remaining) + - location: 172 (remaining gas: 1039868.493 units remaining) [ 15 14 13 @@ -2833,7 +2833,7 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (remaining gas: 1039861.307 units remaining) + - location: 172 (remaining gas: 1039868.483 units remaining) [ 16 15 14 @@ -2846,7 +2846,7 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (remaining gas: 1039861.297 units remaining) + - location: 172 (remaining gas: 1039868.473 units remaining) [ 17 16 15 @@ -2860,7 +2860,7 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (remaining gas: 1039861.297 units remaining) + - location: 172 (remaining gas: 1039868.473 units remaining) [ 17 16 15 @@ -2874,36 +2874,36 @@ trace 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (remaining gas: 1039861.236 units remaining) + - location: 176 (remaining gas: 1039868.417 units remaining) [ 7 (Pair 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 179 (remaining gas: 1039861.221 units remaining) + - location: 179 (remaining gas: 1039868.407 units remaining) [ (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (remaining gas: 1039861.196 units remaining) + - location: 176 (remaining gas: 1039868.387 units remaining) [ 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (remaining gas: 1039861.186 units remaining) + - location: 176 (remaining gas: 1039868.377 units remaining) [ 9 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (remaining gas: 1039861.176 units remaining) + - location: 176 (remaining gas: 1039868.367 units remaining) [ 10 9 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (remaining gas: 1039861.166 units remaining) + - location: 176 (remaining gas: 1039868.357 units remaining) [ 11 10 9 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (remaining gas: 1039861.156 units remaining) + - location: 176 (remaining gas: 1039868.347 units remaining) [ 12 11 10 @@ -2911,7 +2911,7 @@ trace 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (remaining gas: 1039861.146 units remaining) + - location: 176 (remaining gas: 1039868.337 units remaining) [ 13 12 11 @@ -2920,7 +2920,7 @@ trace 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (remaining gas: 1039861.136 units remaining) + - location: 176 (remaining gas: 1039868.327 units remaining) [ 14 13 12 @@ -2930,7 +2930,7 @@ trace 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (remaining gas: 1039861.126 units remaining) + - location: 176 (remaining gas: 1039868.317 units remaining) [ 15 14 13 @@ -2941,7 +2941,7 @@ trace 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (remaining gas: 1039861.116 units remaining) + - location: 176 (remaining gas: 1039868.307 units remaining) [ 16 15 14 @@ -2953,7 +2953,7 @@ trace 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (remaining gas: 1039861.106 units remaining) + - location: 176 (remaining gas: 1039868.297 units remaining) [ 17 16 15 @@ -2966,7 +2966,7 @@ trace 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (remaining gas: 1039861.106 units remaining) + - location: 176 (remaining gas: 1039868.297 units remaining) [ 17 16 15 @@ -2979,36 +2979,36 @@ trace 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (remaining gas: 1039861.047 units remaining) + - location: 180 (remaining gas: 1039868.244 units remaining) [ 8 (Pair 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 183 (remaining gas: 1039861.032 units remaining) + - location: 183 (remaining gas: 1039868.234 units remaining) [ (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (remaining gas: 1039861.007 units remaining) + - location: 180 (remaining gas: 1039868.214 units remaining) [ 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (remaining gas: 1039860.997 units remaining) + - location: 180 (remaining gas: 1039868.204 units remaining) [ 10 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (remaining gas: 1039860.987 units remaining) + - location: 180 (remaining gas: 1039868.194 units remaining) [ 11 10 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (remaining gas: 1039860.977 units remaining) + - location: 180 (remaining gas: 1039868.184 units remaining) [ 12 11 10 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (remaining gas: 1039860.967 units remaining) + - location: 180 (remaining gas: 1039868.174 units remaining) [ 13 12 11 @@ -3016,7 +3016,7 @@ trace 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (remaining gas: 1039860.957 units remaining) + - location: 180 (remaining gas: 1039868.164 units remaining) [ 14 13 12 @@ -3025,7 +3025,7 @@ trace 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (remaining gas: 1039860.947 units remaining) + - location: 180 (remaining gas: 1039868.154 units remaining) [ 15 14 13 @@ -3035,7 +3035,7 @@ trace 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (remaining gas: 1039860.937 units remaining) + - location: 180 (remaining gas: 1039868.144 units remaining) [ 16 15 14 @@ -3046,7 +3046,7 @@ trace 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (remaining gas: 1039860.927 units remaining) + - location: 180 (remaining gas: 1039868.134 units remaining) [ 17 16 15 @@ -3058,7 +3058,7 @@ trace 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (remaining gas: 1039860.927 units remaining) + - location: 180 (remaining gas: 1039868.134 units remaining) [ 17 16 15 @@ -3070,36 +3070,36 @@ trace 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (remaining gas: 1039860.869 units remaining) + - location: 184 (remaining gas: 1039868.083 units remaining) [ 9 (Pair 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 187 (remaining gas: 1039860.854 units remaining) + - location: 187 (remaining gas: 1039868.073 units remaining) [ (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (remaining gas: 1039860.829 units remaining) + - location: 184 (remaining gas: 1039868.053 units remaining) [ 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (remaining gas: 1039860.819 units remaining) + - location: 184 (remaining gas: 1039868.043 units remaining) [ 11 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (remaining gas: 1039860.809 units remaining) + - location: 184 (remaining gas: 1039868.033 units remaining) [ 12 11 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (remaining gas: 1039860.799 units remaining) + - location: 184 (remaining gas: 1039868.023 units remaining) [ 13 12 11 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (remaining gas: 1039860.789 units remaining) + - location: 184 (remaining gas: 1039868.013 units remaining) [ 14 13 12 @@ -3107,7 +3107,7 @@ trace 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (remaining gas: 1039860.779 units remaining) + - location: 184 (remaining gas: 1039868.003 units remaining) [ 15 14 13 @@ -3116,7 +3116,7 @@ trace 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (remaining gas: 1039860.769 units remaining) + - location: 184 (remaining gas: 1039867.993 units remaining) [ 16 15 14 @@ -3126,7 +3126,7 @@ trace 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (remaining gas: 1039860.759 units remaining) + - location: 184 (remaining gas: 1039867.983 units remaining) [ 17 16 15 @@ -3137,7 +3137,7 @@ trace 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (remaining gas: 1039860.759 units remaining) + - location: 184 (remaining gas: 1039867.983 units remaining) [ 17 16 15 @@ -3148,36 +3148,36 @@ trace 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (remaining gas: 1039860.704 units remaining) + - location: 188 (remaining gas: 1039867.936 units remaining) [ 10 (Pair 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 191 (remaining gas: 1039860.689 units remaining) + - location: 191 (remaining gas: 1039867.926 units remaining) [ (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (remaining gas: 1039860.664 units remaining) + - location: 188 (remaining gas: 1039867.906 units remaining) [ 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (remaining gas: 1039860.654 units remaining) + - location: 188 (remaining gas: 1039867.896 units remaining) [ 12 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (remaining gas: 1039860.644 units remaining) + - location: 188 (remaining gas: 1039867.886 units remaining) [ 13 12 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (remaining gas: 1039860.634 units remaining) + - location: 188 (remaining gas: 1039867.876 units remaining) [ 14 13 12 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (remaining gas: 1039860.624 units remaining) + - location: 188 (remaining gas: 1039867.866 units remaining) [ 15 14 13 @@ -3185,7 +3185,7 @@ trace 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (remaining gas: 1039860.614 units remaining) + - location: 188 (remaining gas: 1039867.856 units remaining) [ 16 15 14 @@ -3194,7 +3194,7 @@ trace 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (remaining gas: 1039860.604 units remaining) + - location: 188 (remaining gas: 1039867.846 units remaining) [ 17 16 15 @@ -3204,7 +3204,7 @@ trace 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (remaining gas: 1039860.604 units remaining) + - location: 188 (remaining gas: 1039867.846 units remaining) [ 17 16 15 @@ -3214,36 +3214,36 @@ trace 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (remaining gas: 1039860.550 units remaining) + - location: 192 (remaining gas: 1039867.801 units remaining) [ 11 (Pair 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 195 (remaining gas: 1039860.535 units remaining) + - location: 195 (remaining gas: 1039867.791 units remaining) [ (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (remaining gas: 1039860.510 units remaining) + - location: 192 (remaining gas: 1039867.771 units remaining) [ 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (remaining gas: 1039860.500 units remaining) + - location: 192 (remaining gas: 1039867.761 units remaining) [ 13 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (remaining gas: 1039860.490 units remaining) + - location: 192 (remaining gas: 1039867.751 units remaining) [ 14 13 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (remaining gas: 1039860.480 units remaining) + - location: 192 (remaining gas: 1039867.741 units remaining) [ 15 14 13 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (remaining gas: 1039860.470 units remaining) + - location: 192 (remaining gas: 1039867.731 units remaining) [ 16 15 14 @@ -3251,7 +3251,7 @@ trace 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (remaining gas: 1039860.460 units remaining) + - location: 192 (remaining gas: 1039867.721 units remaining) [ 17 16 15 @@ -3260,7 +3260,7 @@ trace 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (remaining gas: 1039860.460 units remaining) + - location: 192 (remaining gas: 1039867.721 units remaining) [ 17 16 15 @@ -3269,36 +3269,36 @@ trace 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 196 (remaining gas: 1039860.408 units remaining) + - location: 196 (remaining gas: 1039867.679 units remaining) [ 12 (Pair 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 199 (remaining gas: 1039860.393 units remaining) + - location: 199 (remaining gas: 1039867.669 units remaining) [ (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 196 (remaining gas: 1039860.368 units remaining) + - location: 196 (remaining gas: 1039867.649 units remaining) [ 13 (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 196 (remaining gas: 1039860.358 units remaining) + - location: 196 (remaining gas: 1039867.639 units remaining) [ 14 13 (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 196 (remaining gas: 1039860.348 units remaining) + - location: 196 (remaining gas: 1039867.629 units remaining) [ 15 14 13 (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 196 (remaining gas: 1039860.338 units remaining) + - location: 196 (remaining gas: 1039867.619 units remaining) [ 16 15 14 13 (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 196 (remaining gas: 1039860.328 units remaining) + - location: 196 (remaining gas: 1039867.609 units remaining) [ 17 16 15 @@ -3306,7 +3306,7 @@ trace 13 (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 196 (remaining gas: 1039860.328 units remaining) + - location: 196 (remaining gas: 1039867.609 units remaining) [ 17 16 15 @@ -3314,118 +3314,118 @@ trace 13 (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 200 (remaining gas: 1039860.277 units remaining) + - location: 200 (remaining gas: 1039867.569 units remaining) [ 13 (Pair 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 203 (remaining gas: 1039860.262 units remaining) + - location: 203 (remaining gas: 1039867.559 units remaining) [ (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 200 (remaining gas: 1039860.237 units remaining) + - location: 200 (remaining gas: 1039867.539 units remaining) [ 14 (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 200 (remaining gas: 1039860.227 units remaining) + - location: 200 (remaining gas: 1039867.529 units remaining) [ 15 14 (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 200 (remaining gas: 1039860.217 units remaining) + - location: 200 (remaining gas: 1039867.519 units remaining) [ 16 15 14 (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 200 (remaining gas: 1039860.207 units remaining) + - location: 200 (remaining gas: 1039867.509 units remaining) [ 17 16 15 14 (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 200 (remaining gas: 1039860.207 units remaining) + - location: 200 (remaining gas: 1039867.509 units remaining) [ 17 16 15 14 (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 204 (remaining gas: 1039860.158 units remaining) + - location: 204 (remaining gas: 1039867.472 units remaining) [ 14 (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 207 (remaining gas: 1039860.143 units remaining) + - location: 207 (remaining gas: 1039867.462 units remaining) [ (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 204 (remaining gas: 1039860.118 units remaining) + - location: 204 (remaining gas: 1039867.442 units remaining) [ 15 (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 204 (remaining gas: 1039860.108 units remaining) + - location: 204 (remaining gas: 1039867.432 units remaining) [ 16 15 (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 204 (remaining gas: 1039860.098 units remaining) + - location: 204 (remaining gas: 1039867.422 units remaining) [ 17 16 15 (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 204 (remaining gas: 1039860.098 units remaining) + - location: 204 (remaining gas: 1039867.422 units remaining) [ 17 16 15 (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 208 (remaining gas: 1039860.050 units remaining) + - location: 208 (remaining gas: 1039867.387 units remaining) [ 15 (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 211 (remaining gas: 1039860.035 units remaining) + - location: 211 (remaining gas: 1039867.377 units remaining) [ (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 208 (remaining gas: 1039860.010 units remaining) + - location: 208 (remaining gas: 1039867.357 units remaining) [ 16 (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 208 (remaining gas: 1039860 units remaining) + - location: 208 (remaining gas: 1039867.347 units remaining) [ 17 16 (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 208 (remaining gas: 1039860 units remaining) + - location: 208 (remaining gas: 1039867.347 units remaining) [ 17 16 (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 212 (remaining gas: 1039859.985 units remaining) + - location: 212 (remaining gas: 1039867.337 units remaining) [ 16 (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 214 (remaining gas: 1039859.970 units remaining) + - location: 214 (remaining gas: 1039867.327 units remaining) [ (Pair 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 212 (remaining gas: 1039859.940 units remaining) + - location: 212 (remaining gas: 1039867.307 units remaining) [ 17 (Pair 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 215 (remaining gas: 1039859.925 units remaining) + - location: 215 (remaining gas: 1039867.297 units remaining) [ (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 218 (remaining gas: 1039859.170 units remaining) + - location: 218 (remaining gas: 1039866.542 units remaining) [ 0 ] - - location: 219 (remaining gas: 1039859.155 units remaining) + - location: 219 (remaining gas: 1039866.532 units remaining) [ True ] - - location: 220 (remaining gas: 1039859.145 units remaining) + - location: 220 (remaining gas: 1039866.522 units remaining) [ ] - - location: 220 (remaining gas: 1039859.130 units remaining) + - location: 220 (remaining gas: 1039866.512 units remaining) [ ] - - location: 226 (remaining gas: 1039859.120 units remaining) + - location: 226 (remaining gas: 1039866.502 units remaining) [ Unit ] - - location: 227 (remaining gas: 1039859.105 units remaining) + - location: 227 (remaining gas: 1039866.492 units remaining) [ {} Unit ] - - location: 229 (remaining gas: 1039859.090 units remaining) + - location: 229 (remaining gas: 1039866.482 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out index 08d428d6c23f..1a9ce1edb66a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dig_eq.tz-Unit-(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out @@ -7,111 +7,111 @@ emitted operations big_map diff trace - - location: 24 (remaining gas: 1039868.717 units remaining) + - location: 24 (remaining gas: 1039874.637 units remaining) [ (Pair (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) Unit) ] - - location: 24 (remaining gas: 1039868.707 units remaining) + - location: 24 (remaining gas: 1039874.627 units remaining) [ (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 25 (remaining gas: 1039868.697 units remaining) + - location: 25 (remaining gas: 1039874.617 units remaining) [ (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 27 (remaining gas: 1039868.687 units remaining) + - location: 27 (remaining gas: 1039874.607 units remaining) [ 2 (Pair 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 28 (remaining gas: 1039868.672 units remaining) + - location: 28 (remaining gas: 1039874.597 units remaining) [ (Pair 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 30 (remaining gas: 1039868.662 units remaining) + - location: 30 (remaining gas: 1039874.587 units remaining) [ 3 (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 28 (remaining gas: 1039868.632 units remaining) + - location: 28 (remaining gas: 1039874.567 units remaining) [ 2 3 (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 31 (remaining gas: 1039868.584 units remaining) + - location: 31 (remaining gas: 1039874.532 units remaining) [ (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 34 (remaining gas: 1039868.574 units remaining) + - location: 34 (remaining gas: 1039874.522 units remaining) [ 12 (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 31 (remaining gas: 1039868.549 units remaining) + - location: 31 (remaining gas: 1039874.502 units remaining) [ 3 12 (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 31 (remaining gas: 1039868.539 units remaining) + - location: 31 (remaining gas: 1039874.492 units remaining) [ 2 3 12 (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 31 (remaining gas: 1039868.539 units remaining) + - location: 31 (remaining gas: 1039874.492 units remaining) [ 2 3 12 (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 35 (remaining gas: 1039868.490 units remaining) + - location: 35 (remaining gas: 1039874.455 units remaining) [ (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 38 (remaining gas: 1039868.480 units remaining) + - location: 38 (remaining gas: 1039874.445 units remaining) [ 16 (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 35 (remaining gas: 1039868.455 units remaining) + - location: 35 (remaining gas: 1039874.425 units remaining) [ 12 16 (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 35 (remaining gas: 1039868.445 units remaining) + - location: 35 (remaining gas: 1039874.415 units remaining) [ 3 12 16 (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 35 (remaining gas: 1039868.435 units remaining) + - location: 35 (remaining gas: 1039874.405 units remaining) [ 2 3 12 16 (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 35 (remaining gas: 1039868.435 units remaining) + - location: 35 (remaining gas: 1039874.405 units remaining) [ 2 3 12 16 (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 39 (remaining gas: 1039868.384 units remaining) + - location: 39 (remaining gas: 1039874.365 units remaining) [ (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 42 (remaining gas: 1039868.374 units remaining) + - location: 42 (remaining gas: 1039874.355 units remaining) [ 10 (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 39 (remaining gas: 1039868.349 units remaining) + - location: 39 (remaining gas: 1039874.335 units remaining) [ 16 10 (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 39 (remaining gas: 1039868.339 units remaining) + - location: 39 (remaining gas: 1039874.325 units remaining) [ 12 16 10 (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 39 (remaining gas: 1039868.329 units remaining) + - location: 39 (remaining gas: 1039874.315 units remaining) [ 3 12 16 10 (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 39 (remaining gas: 1039868.319 units remaining) + - location: 39 (remaining gas: 1039874.305 units remaining) [ 2 3 12 @@ -119,7 +119,7 @@ trace 10 (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 39 (remaining gas: 1039868.319 units remaining) + - location: 39 (remaining gas: 1039874.305 units remaining) [ 2 3 12 @@ -127,32 +127,32 @@ trace 10 (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 43 (remaining gas: 1039868.267 units remaining) + - location: 43 (remaining gas: 1039874.263 units remaining) [ (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 46 (remaining gas: 1039868.257 units remaining) + - location: 46 (remaining gas: 1039874.253 units remaining) [ 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 43 (remaining gas: 1039868.232 units remaining) + - location: 43 (remaining gas: 1039874.233 units remaining) [ 10 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 43 (remaining gas: 1039868.222 units remaining) + - location: 43 (remaining gas: 1039874.223 units remaining) [ 16 10 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 43 (remaining gas: 1039868.212 units remaining) + - location: 43 (remaining gas: 1039874.213 units remaining) [ 12 16 10 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 43 (remaining gas: 1039868.202 units remaining) + - location: 43 (remaining gas: 1039874.203 units remaining) [ 3 12 16 @@ -160,7 +160,7 @@ trace 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 43 (remaining gas: 1039868.192 units remaining) + - location: 43 (remaining gas: 1039874.193 units remaining) [ 2 3 12 @@ -169,7 +169,7 @@ trace 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 43 (remaining gas: 1039868.192 units remaining) + - location: 43 (remaining gas: 1039874.193 units remaining) [ 2 3 12 @@ -178,32 +178,32 @@ trace 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (remaining gas: 1039868.138 units remaining) + - location: 47 (remaining gas: 1039874.148 units remaining) [ (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 50 (remaining gas: 1039868.128 units remaining) + - location: 50 (remaining gas: 1039874.138 units remaining) [ 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (remaining gas: 1039868.103 units remaining) + - location: 47 (remaining gas: 1039874.118 units remaining) [ 14 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (remaining gas: 1039868.093 units remaining) + - location: 47 (remaining gas: 1039874.108 units remaining) [ 10 14 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (remaining gas: 1039868.083 units remaining) + - location: 47 (remaining gas: 1039874.098 units remaining) [ 16 10 14 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (remaining gas: 1039868.073 units remaining) + - location: 47 (remaining gas: 1039874.088 units remaining) [ 12 16 10 @@ -211,7 +211,7 @@ trace 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (remaining gas: 1039868.063 units remaining) + - location: 47 (remaining gas: 1039874.078 units remaining) [ 3 12 16 @@ -220,7 +220,7 @@ trace 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (remaining gas: 1039868.053 units remaining) + - location: 47 (remaining gas: 1039874.068 units remaining) [ 2 3 12 @@ -230,7 +230,7 @@ trace 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (remaining gas: 1039868.053 units remaining) + - location: 47 (remaining gas: 1039874.068 units remaining) [ 2 3 12 @@ -240,32 +240,32 @@ trace 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (remaining gas: 1039867.998 units remaining) + - location: 51 (remaining gas: 1039874.021 units remaining) [ (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 54 (remaining gas: 1039867.988 units remaining) + - location: 54 (remaining gas: 1039874.011 units remaining) [ 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (remaining gas: 1039867.963 units remaining) + - location: 51 (remaining gas: 1039873.991 units remaining) [ 19 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (remaining gas: 1039867.953 units remaining) + - location: 51 (remaining gas: 1039873.981 units remaining) [ 14 19 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (remaining gas: 1039867.943 units remaining) + - location: 51 (remaining gas: 1039873.971 units remaining) [ 10 14 19 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (remaining gas: 1039867.933 units remaining) + - location: 51 (remaining gas: 1039873.961 units remaining) [ 16 10 14 @@ -273,7 +273,7 @@ trace 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (remaining gas: 1039867.923 units remaining) + - location: 51 (remaining gas: 1039873.951 units remaining) [ 12 16 10 @@ -282,7 +282,7 @@ trace 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (remaining gas: 1039867.913 units remaining) + - location: 51 (remaining gas: 1039873.941 units remaining) [ 3 12 16 @@ -292,7 +292,7 @@ trace 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (remaining gas: 1039867.903 units remaining) + - location: 51 (remaining gas: 1039873.931 units remaining) [ 2 3 12 @@ -303,7 +303,7 @@ trace 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (remaining gas: 1039867.903 units remaining) + - location: 51 (remaining gas: 1039873.931 units remaining) [ 2 3 12 @@ -314,32 +314,32 @@ trace 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (remaining gas: 1039867.845 units remaining) + - location: 55 (remaining gas: 1039873.880 units remaining) [ (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 58 (remaining gas: 1039867.835 units remaining) + - location: 58 (remaining gas: 1039873.870 units remaining) [ 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (remaining gas: 1039867.810 units remaining) + - location: 55 (remaining gas: 1039873.850 units remaining) [ 9 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (remaining gas: 1039867.800 units remaining) + - location: 55 (remaining gas: 1039873.840 units remaining) [ 19 9 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (remaining gas: 1039867.790 units remaining) + - location: 55 (remaining gas: 1039873.830 units remaining) [ 14 19 9 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (remaining gas: 1039867.780 units remaining) + - location: 55 (remaining gas: 1039873.820 units remaining) [ 10 14 19 @@ -347,7 +347,7 @@ trace 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (remaining gas: 1039867.770 units remaining) + - location: 55 (remaining gas: 1039873.810 units remaining) [ 16 10 14 @@ -356,7 +356,7 @@ trace 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (remaining gas: 1039867.760 units remaining) + - location: 55 (remaining gas: 1039873.800 units remaining) [ 12 16 10 @@ -366,7 +366,7 @@ trace 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (remaining gas: 1039867.750 units remaining) + - location: 55 (remaining gas: 1039873.790 units remaining) [ 3 12 16 @@ -377,7 +377,7 @@ trace 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (remaining gas: 1039867.740 units remaining) + - location: 55 (remaining gas: 1039873.780 units remaining) [ 2 3 12 @@ -389,7 +389,7 @@ trace 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (remaining gas: 1039867.740 units remaining) + - location: 55 (remaining gas: 1039873.780 units remaining) [ 2 3 12 @@ -401,32 +401,32 @@ trace 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (remaining gas: 1039867.681 units remaining) + - location: 59 (remaining gas: 1039873.727 units remaining) [ (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 62 (remaining gas: 1039867.671 units remaining) + - location: 62 (remaining gas: 1039873.717 units remaining) [ 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (remaining gas: 1039867.646 units remaining) + - location: 59 (remaining gas: 1039873.697 units remaining) [ 18 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (remaining gas: 1039867.636 units remaining) + - location: 59 (remaining gas: 1039873.687 units remaining) [ 9 18 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (remaining gas: 1039867.626 units remaining) + - location: 59 (remaining gas: 1039873.677 units remaining) [ 19 9 18 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (remaining gas: 1039867.616 units remaining) + - location: 59 (remaining gas: 1039873.667 units remaining) [ 14 19 9 @@ -434,7 +434,7 @@ trace 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (remaining gas: 1039867.606 units remaining) + - location: 59 (remaining gas: 1039873.657 units remaining) [ 10 14 19 @@ -443,7 +443,7 @@ trace 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (remaining gas: 1039867.596 units remaining) + - location: 59 (remaining gas: 1039873.647 units remaining) [ 16 10 14 @@ -453,7 +453,7 @@ trace 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (remaining gas: 1039867.586 units remaining) + - location: 59 (remaining gas: 1039873.637 units remaining) [ 12 16 10 @@ -464,7 +464,7 @@ trace 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (remaining gas: 1039867.576 units remaining) + - location: 59 (remaining gas: 1039873.627 units remaining) [ 3 12 16 @@ -476,7 +476,7 @@ trace 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (remaining gas: 1039867.566 units remaining) + - location: 59 (remaining gas: 1039873.617 units remaining) [ 2 3 12 @@ -489,7 +489,7 @@ trace 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (remaining gas: 1039867.566 units remaining) + - location: 59 (remaining gas: 1039873.617 units remaining) [ 2 3 12 @@ -502,32 +502,32 @@ trace 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (remaining gas: 1039867.505 units remaining) + - location: 63 (remaining gas: 1039873.561 units remaining) [ (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 66 (remaining gas: 1039867.495 units remaining) + - location: 66 (remaining gas: 1039873.551 units remaining) [ 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (remaining gas: 1039867.470 units remaining) + - location: 63 (remaining gas: 1039873.531 units remaining) [ 6 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (remaining gas: 1039867.460 units remaining) + - location: 63 (remaining gas: 1039873.521 units remaining) [ 18 6 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (remaining gas: 1039867.450 units remaining) + - location: 63 (remaining gas: 1039873.511 units remaining) [ 9 18 6 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (remaining gas: 1039867.440 units remaining) + - location: 63 (remaining gas: 1039873.501 units remaining) [ 19 9 18 @@ -535,7 +535,7 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (remaining gas: 1039867.430 units remaining) + - location: 63 (remaining gas: 1039873.491 units remaining) [ 14 19 9 @@ -544,7 +544,7 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (remaining gas: 1039867.420 units remaining) + - location: 63 (remaining gas: 1039873.481 units remaining) [ 10 14 19 @@ -554,7 +554,7 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (remaining gas: 1039867.410 units remaining) + - location: 63 (remaining gas: 1039873.471 units remaining) [ 16 10 14 @@ -565,7 +565,7 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (remaining gas: 1039867.400 units remaining) + - location: 63 (remaining gas: 1039873.461 units remaining) [ 12 16 10 @@ -577,7 +577,7 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (remaining gas: 1039867.390 units remaining) + - location: 63 (remaining gas: 1039873.451 units remaining) [ 3 12 16 @@ -590,7 +590,7 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (remaining gas: 1039867.380 units remaining) + - location: 63 (remaining gas: 1039873.441 units remaining) [ 2 3 12 @@ -604,7 +604,7 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (remaining gas: 1039867.380 units remaining) + - location: 63 (remaining gas: 1039873.441 units remaining) [ 2 3 12 @@ -618,32 +618,32 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (remaining gas: 1039867.318 units remaining) + - location: 67 (remaining gas: 1039873.383 units remaining) [ (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 70 (remaining gas: 1039867.308 units remaining) + - location: 70 (remaining gas: 1039873.373 units remaining) [ 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (remaining gas: 1039867.283 units remaining) + - location: 67 (remaining gas: 1039873.353 units remaining) [ 8 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (remaining gas: 1039867.273 units remaining) + - location: 67 (remaining gas: 1039873.343 units remaining) [ 6 8 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (remaining gas: 1039867.263 units remaining) + - location: 67 (remaining gas: 1039873.333 units remaining) [ 18 6 8 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (remaining gas: 1039867.253 units remaining) + - location: 67 (remaining gas: 1039873.323 units remaining) [ 9 18 6 @@ -651,7 +651,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (remaining gas: 1039867.243 units remaining) + - location: 67 (remaining gas: 1039873.313 units remaining) [ 19 9 18 @@ -660,7 +660,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (remaining gas: 1039867.233 units remaining) + - location: 67 (remaining gas: 1039873.303 units remaining) [ 14 19 9 @@ -670,7 +670,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (remaining gas: 1039867.223 units remaining) + - location: 67 (remaining gas: 1039873.293 units remaining) [ 10 14 19 @@ -681,7 +681,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (remaining gas: 1039867.213 units remaining) + - location: 67 (remaining gas: 1039873.283 units remaining) [ 16 10 14 @@ -693,7 +693,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (remaining gas: 1039867.203 units remaining) + - location: 67 (remaining gas: 1039873.273 units remaining) [ 12 16 10 @@ -706,7 +706,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (remaining gas: 1039867.193 units remaining) + - location: 67 (remaining gas: 1039873.263 units remaining) [ 3 12 16 @@ -720,7 +720,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (remaining gas: 1039867.183 units remaining) + - location: 67 (remaining gas: 1039873.253 units remaining) [ 2 3 12 @@ -735,7 +735,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (remaining gas: 1039867.183 units remaining) + - location: 67 (remaining gas: 1039873.253 units remaining) [ 2 3 12 @@ -750,32 +750,32 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (remaining gas: 1039867.119 units remaining) + - location: 71 (remaining gas: 1039873.192 units remaining) [ (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 74 (remaining gas: 1039867.109 units remaining) + - location: 74 (remaining gas: 1039873.182 units remaining) [ 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (remaining gas: 1039867.084 units remaining) + - location: 71 (remaining gas: 1039873.162 units remaining) [ 11 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (remaining gas: 1039867.074 units remaining) + - location: 71 (remaining gas: 1039873.152 units remaining) [ 8 11 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (remaining gas: 1039867.064 units remaining) + - location: 71 (remaining gas: 1039873.142 units remaining) [ 6 8 11 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (remaining gas: 1039867.054 units remaining) + - location: 71 (remaining gas: 1039873.132 units remaining) [ 18 6 8 @@ -783,7 +783,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (remaining gas: 1039867.044 units remaining) + - location: 71 (remaining gas: 1039873.122 units remaining) [ 9 18 6 @@ -792,7 +792,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (remaining gas: 1039867.034 units remaining) + - location: 71 (remaining gas: 1039873.112 units remaining) [ 19 9 18 @@ -802,7 +802,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (remaining gas: 1039867.024 units remaining) + - location: 71 (remaining gas: 1039873.102 units remaining) [ 14 19 9 @@ -813,7 +813,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (remaining gas: 1039867.014 units remaining) + - location: 71 (remaining gas: 1039873.092 units remaining) [ 10 14 19 @@ -825,7 +825,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (remaining gas: 1039867.004 units remaining) + - location: 71 (remaining gas: 1039873.082 units remaining) [ 16 10 14 @@ -838,7 +838,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (remaining gas: 1039866.994 units remaining) + - location: 71 (remaining gas: 1039873.072 units remaining) [ 12 16 10 @@ -852,7 +852,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (remaining gas: 1039866.984 units remaining) + - location: 71 (remaining gas: 1039873.062 units remaining) [ 3 12 16 @@ -867,7 +867,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (remaining gas: 1039866.974 units remaining) + - location: 71 (remaining gas: 1039873.052 units remaining) [ 2 3 12 @@ -883,7 +883,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (remaining gas: 1039866.974 units remaining) + - location: 71 (remaining gas: 1039873.052 units remaining) [ 2 3 12 @@ -899,32 +899,32 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.909 units remaining) + - location: 75 (remaining gas: 1039872.989 units remaining) [ (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 78 (remaining gas: 1039866.899 units remaining) + - location: 78 (remaining gas: 1039872.979 units remaining) [ 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.874 units remaining) + - location: 75 (remaining gas: 1039872.959 units remaining) [ 4 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.864 units remaining) + - location: 75 (remaining gas: 1039872.949 units remaining) [ 11 4 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.854 units remaining) + - location: 75 (remaining gas: 1039872.939 units remaining) [ 8 11 4 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.844 units remaining) + - location: 75 (remaining gas: 1039872.929 units remaining) [ 6 8 11 @@ -932,7 +932,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.834 units remaining) + - location: 75 (remaining gas: 1039872.919 units remaining) [ 18 6 8 @@ -941,7 +941,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.824 units remaining) + - location: 75 (remaining gas: 1039872.909 units remaining) [ 9 18 6 @@ -951,7 +951,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.814 units remaining) + - location: 75 (remaining gas: 1039872.899 units remaining) [ 19 9 18 @@ -962,7 +962,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.804 units remaining) + - location: 75 (remaining gas: 1039872.889 units remaining) [ 14 19 9 @@ -974,7 +974,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.794 units remaining) + - location: 75 (remaining gas: 1039872.879 units remaining) [ 10 14 19 @@ -987,7 +987,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.784 units remaining) + - location: 75 (remaining gas: 1039872.869 units remaining) [ 16 10 14 @@ -1001,7 +1001,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.774 units remaining) + - location: 75 (remaining gas: 1039872.859 units remaining) [ 12 16 10 @@ -1016,7 +1016,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.764 units remaining) + - location: 75 (remaining gas: 1039872.849 units remaining) [ 3 12 16 @@ -1032,7 +1032,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.754 units remaining) + - location: 75 (remaining gas: 1039872.839 units remaining) [ 2 3 12 @@ -1049,7 +1049,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (remaining gas: 1039866.754 units remaining) + - location: 75 (remaining gas: 1039872.839 units remaining) [ 2 3 12 @@ -1066,32 +1066,32 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.687 units remaining) + - location: 79 (remaining gas: 1039872.773 units remaining) [ (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 82 (remaining gas: 1039866.677 units remaining) + - location: 82 (remaining gas: 1039872.763 units remaining) [ 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.652 units remaining) + - location: 79 (remaining gas: 1039872.743 units remaining) [ 13 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.642 units remaining) + - location: 79 (remaining gas: 1039872.733 units remaining) [ 4 13 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.632 units remaining) + - location: 79 (remaining gas: 1039872.723 units remaining) [ 11 4 13 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.622 units remaining) + - location: 79 (remaining gas: 1039872.713 units remaining) [ 8 11 4 @@ -1099,7 +1099,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.612 units remaining) + - location: 79 (remaining gas: 1039872.703 units remaining) [ 6 8 11 @@ -1108,7 +1108,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.602 units remaining) + - location: 79 (remaining gas: 1039872.693 units remaining) [ 18 6 8 @@ -1118,7 +1118,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.592 units remaining) + - location: 79 (remaining gas: 1039872.683 units remaining) [ 9 18 6 @@ -1129,7 +1129,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.582 units remaining) + - location: 79 (remaining gas: 1039872.673 units remaining) [ 19 9 18 @@ -1141,7 +1141,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.572 units remaining) + - location: 79 (remaining gas: 1039872.663 units remaining) [ 14 19 9 @@ -1154,7 +1154,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.562 units remaining) + - location: 79 (remaining gas: 1039872.653 units remaining) [ 10 14 19 @@ -1168,7 +1168,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.552 units remaining) + - location: 79 (remaining gas: 1039872.643 units remaining) [ 16 10 14 @@ -1183,7 +1183,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.542 units remaining) + - location: 79 (remaining gas: 1039872.633 units remaining) [ 12 16 10 @@ -1199,7 +1199,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.532 units remaining) + - location: 79 (remaining gas: 1039872.623 units remaining) [ 3 12 16 @@ -1216,7 +1216,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.522 units remaining) + - location: 79 (remaining gas: 1039872.613 units remaining) [ 2 3 12 @@ -1234,7 +1234,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (remaining gas: 1039866.522 units remaining) + - location: 79 (remaining gas: 1039872.613 units remaining) [ 2 3 12 @@ -1252,32 +1252,32 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.454 units remaining) + - location: 83 (remaining gas: 1039872.545 units remaining) [ (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 86 (remaining gas: 1039866.444 units remaining) + - location: 86 (remaining gas: 1039872.535 units remaining) [ 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.419 units remaining) + - location: 83 (remaining gas: 1039872.515 units remaining) [ 15 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.409 units remaining) + - location: 83 (remaining gas: 1039872.505 units remaining) [ 13 15 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.399 units remaining) + - location: 83 (remaining gas: 1039872.495 units remaining) [ 4 13 15 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.389 units remaining) + - location: 83 (remaining gas: 1039872.485 units remaining) [ 11 4 13 @@ -1285,7 +1285,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.379 units remaining) + - location: 83 (remaining gas: 1039872.475 units remaining) [ 8 11 4 @@ -1294,7 +1294,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.369 units remaining) + - location: 83 (remaining gas: 1039872.465 units remaining) [ 6 8 11 @@ -1304,7 +1304,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.359 units remaining) + - location: 83 (remaining gas: 1039872.455 units remaining) [ 18 6 8 @@ -1315,7 +1315,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.349 units remaining) + - location: 83 (remaining gas: 1039872.445 units remaining) [ 9 18 6 @@ -1327,7 +1327,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.339 units remaining) + - location: 83 (remaining gas: 1039872.435 units remaining) [ 19 9 18 @@ -1340,7 +1340,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.329 units remaining) + - location: 83 (remaining gas: 1039872.425 units remaining) [ 14 19 9 @@ -1354,7 +1354,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.319 units remaining) + - location: 83 (remaining gas: 1039872.415 units remaining) [ 10 14 19 @@ -1369,7 +1369,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.309 units remaining) + - location: 83 (remaining gas: 1039872.405 units remaining) [ 16 10 14 @@ -1385,7 +1385,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.299 units remaining) + - location: 83 (remaining gas: 1039872.395 units remaining) [ 12 16 10 @@ -1402,7 +1402,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.289 units remaining) + - location: 83 (remaining gas: 1039872.385 units remaining) [ 3 12 16 @@ -1420,7 +1420,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.279 units remaining) + - location: 83 (remaining gas: 1039872.375 units remaining) [ 2 3 12 @@ -1439,7 +1439,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (remaining gas: 1039866.279 units remaining) + - location: 83 (remaining gas: 1039872.375 units remaining) [ 2 3 12 @@ -1458,7 +1458,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 87 (remaining gas: 1039866.219 units remaining) + - location: 87 (remaining gas: 1039872.345 units remaining) [ 2 3 12 @@ -1477,7 +1477,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 89 (remaining gas: 1039866.153 units remaining) + - location: 89 (remaining gas: 1039872.309 units remaining) [ 3 2 12 @@ -1496,7 +1496,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 91 (remaining gas: 1039866.080 units remaining) + - location: 91 (remaining gas: 1039872.266 units remaining) [ 12 3 2 @@ -1515,7 +1515,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 93 (remaining gas: 1039866.001 units remaining) + - location: 93 (remaining gas: 1039872.217 units remaining) [ 16 12 3 @@ -1534,7 +1534,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 95 (remaining gas: 1039865.914 units remaining) + - location: 95 (remaining gas: 1039872.160 units remaining) [ 10 16 12 @@ -1553,7 +1553,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 97 (remaining gas: 1039865.821 units remaining) + - location: 97 (remaining gas: 1039872.097 units remaining) [ 14 10 16 @@ -1572,7 +1572,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 99 (remaining gas: 1039865.721 units remaining) + - location: 99 (remaining gas: 1039872.027 units remaining) [ 19 14 10 @@ -1591,7 +1591,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 101 (remaining gas: 1039865.615 units remaining) + - location: 101 (remaining gas: 1039871.951 units remaining) [ 9 19 14 @@ -1610,7 +1610,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 103 (remaining gas: 1039865.501 units remaining) + - location: 103 (remaining gas: 1039871.867 units remaining) [ 18 9 19 @@ -1629,7 +1629,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 105 (remaining gas: 1039865.381 units remaining) + - location: 105 (remaining gas: 1039871.777 units remaining) [ 6 18 9 @@ -1648,7 +1648,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 107 (remaining gas: 1039865.254 units remaining) + - location: 107 (remaining gas: 1039871.680 units remaining) [ 8 6 18 @@ -1667,7 +1667,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 109 (remaining gas: 1039865.121 units remaining) + - location: 109 (remaining gas: 1039871.577 units remaining) [ 11 8 6 @@ -1686,7 +1686,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 111 (remaining gas: 1039864.980 units remaining) + - location: 111 (remaining gas: 1039871.466 units remaining) [ 4 11 8 @@ -1705,7 +1705,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 113 (remaining gas: 1039864.833 units remaining) + - location: 113 (remaining gas: 1039871.349 units remaining) [ 13 4 11 @@ -1724,7 +1724,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 115 (remaining gas: 1039864.679 units remaining) + - location: 115 (remaining gas: 1039871.225 units remaining) [ 15 13 4 @@ -1743,7 +1743,7 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 117 (remaining gas: 1039864.519 units remaining) + - location: 117 (remaining gas: 1039871.095 units remaining) [ 5 15 13 @@ -1762,7 +1762,7 @@ trace 2 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 119 (remaining gas: 1039864.351 units remaining) + - location: 119 (remaining gas: 1039870.957 units remaining) [ 1 5 15 @@ -1781,7 +1781,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 121 (remaining gas: 1039864.291 units remaining) + - location: 121 (remaining gas: 1039870.927 units remaining) [ 1 5 15 @@ -1800,7 +1800,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 123 (remaining gas: 1039864.225 units remaining) + - location: 123 (remaining gas: 1039870.891 units remaining) [ 5 1 15 @@ -1819,7 +1819,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 125 (remaining gas: 1039864.152 units remaining) + - location: 125 (remaining gas: 1039870.848 units remaining) [ 15 5 1 @@ -1838,7 +1838,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 127 (remaining gas: 1039864.073 units remaining) + - location: 127 (remaining gas: 1039870.799 units remaining) [ 13 15 5 @@ -1857,7 +1857,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 129 (remaining gas: 1039863.986 units remaining) + - location: 129 (remaining gas: 1039870.742 units remaining) [ 4 13 15 @@ -1876,7 +1876,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 131 (remaining gas: 1039863.893 units remaining) + - location: 131 (remaining gas: 1039870.679 units remaining) [ 11 4 13 @@ -1895,7 +1895,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 133 (remaining gas: 1039863.793 units remaining) + - location: 133 (remaining gas: 1039870.609 units remaining) [ 8 11 4 @@ -1914,7 +1914,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 135 (remaining gas: 1039863.687 units remaining) + - location: 135 (remaining gas: 1039870.533 units remaining) [ 6 8 11 @@ -1933,7 +1933,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 137 (remaining gas: 1039863.573 units remaining) + - location: 137 (remaining gas: 1039870.449 units remaining) [ 18 6 8 @@ -1952,7 +1952,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 139 (remaining gas: 1039863.453 units remaining) + - location: 139 (remaining gas: 1039870.359 units remaining) [ 9 18 6 @@ -1971,7 +1971,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 141 (remaining gas: 1039863.326 units remaining) + - location: 141 (remaining gas: 1039870.262 units remaining) [ 19 9 18 @@ -1990,7 +1990,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 143 (remaining gas: 1039863.193 units remaining) + - location: 143 (remaining gas: 1039870.159 units remaining) [ 14 19 9 @@ -2009,7 +2009,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 145 (remaining gas: 1039863.052 units remaining) + - location: 145 (remaining gas: 1039870.048 units remaining) [ 10 14 19 @@ -2028,7 +2028,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 147 (remaining gas: 1039862.905 units remaining) + - location: 147 (remaining gas: 1039869.931 units remaining) [ 16 10 14 @@ -2047,7 +2047,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 149 (remaining gas: 1039862.751 units remaining) + - location: 149 (remaining gas: 1039869.807 units remaining) [ 12 16 10 @@ -2066,7 +2066,7 @@ trace 3 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 151 (remaining gas: 1039862.591 units remaining) + - location: 151 (remaining gas: 1039869.677 units remaining) [ 3 12 16 @@ -2085,7 +2085,7 @@ trace 1 2 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 153 (remaining gas: 1039862.423 units remaining) + - location: 153 (remaining gas: 1039869.539 units remaining) [ 2 3 12 @@ -2104,36 +2104,36 @@ trace 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.355 units remaining) + - location: 156 (remaining gas: 1039869.471 units remaining) [ 5 1 (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 159 (remaining gas: 1039862.340 units remaining) + - location: 159 (remaining gas: 1039869.461 units remaining) [ (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.315 units remaining) + - location: 156 (remaining gas: 1039869.441 units remaining) [ 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.305 units remaining) + - location: 156 (remaining gas: 1039869.431 units remaining) [ 13 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.295 units remaining) + - location: 156 (remaining gas: 1039869.421 units remaining) [ 4 13 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.285 units remaining) + - location: 156 (remaining gas: 1039869.411 units remaining) [ 11 4 13 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.275 units remaining) + - location: 156 (remaining gas: 1039869.401 units remaining) [ 8 11 4 @@ -2141,7 +2141,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.265 units remaining) + - location: 156 (remaining gas: 1039869.391 units remaining) [ 6 8 11 @@ -2150,7 +2150,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.255 units remaining) + - location: 156 (remaining gas: 1039869.381 units remaining) [ 18 6 8 @@ -2160,7 +2160,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.245 units remaining) + - location: 156 (remaining gas: 1039869.371 units remaining) [ 9 18 6 @@ -2171,7 +2171,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.235 units remaining) + - location: 156 (remaining gas: 1039869.361 units remaining) [ 19 9 18 @@ -2183,7 +2183,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.225 units remaining) + - location: 156 (remaining gas: 1039869.351 units remaining) [ 14 19 9 @@ -2196,7 +2196,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.215 units remaining) + - location: 156 (remaining gas: 1039869.341 units remaining) [ 10 14 19 @@ -2210,7 +2210,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.205 units remaining) + - location: 156 (remaining gas: 1039869.331 units remaining) [ 16 10 14 @@ -2225,7 +2225,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.195 units remaining) + - location: 156 (remaining gas: 1039869.321 units remaining) [ 12 16 10 @@ -2241,7 +2241,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.185 units remaining) + - location: 156 (remaining gas: 1039869.311 units remaining) [ 3 12 16 @@ -2258,7 +2258,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.175 units remaining) + - location: 156 (remaining gas: 1039869.301 units remaining) [ 2 3 12 @@ -2276,7 +2276,7 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (remaining gas: 1039862.175 units remaining) + - location: 156 (remaining gas: 1039869.301 units remaining) [ 2 3 12 @@ -2294,36 +2294,36 @@ trace 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039862.108 units remaining) + - location: 160 (remaining gas: 1039869.235 units remaining) [ 15 (Pair 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 163 (remaining gas: 1039862.093 units remaining) + - location: 163 (remaining gas: 1039869.225 units remaining) [ (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039862.068 units remaining) + - location: 160 (remaining gas: 1039869.205 units remaining) [ 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039862.058 units remaining) + - location: 160 (remaining gas: 1039869.195 units remaining) [ 4 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039862.048 units remaining) + - location: 160 (remaining gas: 1039869.185 units remaining) [ 11 4 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039862.038 units remaining) + - location: 160 (remaining gas: 1039869.175 units remaining) [ 8 11 4 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039862.028 units remaining) + - location: 160 (remaining gas: 1039869.165 units remaining) [ 6 8 11 @@ -2331,7 +2331,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039862.018 units remaining) + - location: 160 (remaining gas: 1039869.155 units remaining) [ 18 6 8 @@ -2340,7 +2340,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039862.008 units remaining) + - location: 160 (remaining gas: 1039869.145 units remaining) [ 9 18 6 @@ -2350,7 +2350,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039861.998 units remaining) + - location: 160 (remaining gas: 1039869.135 units remaining) [ 19 9 18 @@ -2361,7 +2361,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039861.988 units remaining) + - location: 160 (remaining gas: 1039869.125 units remaining) [ 14 19 9 @@ -2373,7 +2373,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039861.978 units remaining) + - location: 160 (remaining gas: 1039869.115 units remaining) [ 10 14 19 @@ -2386,7 +2386,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039861.968 units remaining) + - location: 160 (remaining gas: 1039869.105 units remaining) [ 16 10 14 @@ -2400,7 +2400,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039861.958 units remaining) + - location: 160 (remaining gas: 1039869.095 units remaining) [ 12 16 10 @@ -2415,7 +2415,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039861.948 units remaining) + - location: 160 (remaining gas: 1039869.085 units remaining) [ 3 12 16 @@ -2431,7 +2431,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039861.938 units remaining) + - location: 160 (remaining gas: 1039869.075 units remaining) [ 2 3 12 @@ -2448,7 +2448,7 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (remaining gas: 1039861.938 units remaining) + - location: 160 (remaining gas: 1039869.075 units remaining) [ 2 3 12 @@ -2465,36 +2465,36 @@ trace 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.873 units remaining) + - location: 164 (remaining gas: 1039869.012 units remaining) [ 13 (Pair 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 167 (remaining gas: 1039861.858 units remaining) + - location: 167 (remaining gas: 1039869.002 units remaining) [ (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.833 units remaining) + - location: 164 (remaining gas: 1039868.982 units remaining) [ 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.823 units remaining) + - location: 164 (remaining gas: 1039868.972 units remaining) [ 11 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.813 units remaining) + - location: 164 (remaining gas: 1039868.962 units remaining) [ 8 11 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.803 units remaining) + - location: 164 (remaining gas: 1039868.952 units remaining) [ 6 8 11 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.793 units remaining) + - location: 164 (remaining gas: 1039868.942 units remaining) [ 18 6 8 @@ -2502,7 +2502,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.783 units remaining) + - location: 164 (remaining gas: 1039868.932 units remaining) [ 9 18 6 @@ -2511,7 +2511,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.773 units remaining) + - location: 164 (remaining gas: 1039868.922 units remaining) [ 19 9 18 @@ -2521,7 +2521,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.763 units remaining) + - location: 164 (remaining gas: 1039868.912 units remaining) [ 14 19 9 @@ -2532,7 +2532,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.753 units remaining) + - location: 164 (remaining gas: 1039868.902 units remaining) [ 10 14 19 @@ -2544,7 +2544,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.743 units remaining) + - location: 164 (remaining gas: 1039868.892 units remaining) [ 16 10 14 @@ -2557,7 +2557,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.733 units remaining) + - location: 164 (remaining gas: 1039868.882 units remaining) [ 12 16 10 @@ -2571,7 +2571,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.723 units remaining) + - location: 164 (remaining gas: 1039868.872 units remaining) [ 3 12 16 @@ -2586,7 +2586,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.713 units remaining) + - location: 164 (remaining gas: 1039868.862 units remaining) [ 2 3 12 @@ -2602,7 +2602,7 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (remaining gas: 1039861.713 units remaining) + - location: 164 (remaining gas: 1039868.862 units remaining) [ 2 3 12 @@ -2618,36 +2618,36 @@ trace 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (remaining gas: 1039861.649 units remaining) + - location: 168 (remaining gas: 1039868.801 units remaining) [ 4 (Pair 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 171 (remaining gas: 1039861.634 units remaining) + - location: 171 (remaining gas: 1039868.791 units remaining) [ (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (remaining gas: 1039861.609 units remaining) + - location: 168 (remaining gas: 1039868.771 units remaining) [ 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (remaining gas: 1039861.599 units remaining) + - location: 168 (remaining gas: 1039868.761 units remaining) [ 8 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (remaining gas: 1039861.589 units remaining) + - location: 168 (remaining gas: 1039868.751 units remaining) [ 6 8 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (remaining gas: 1039861.579 units remaining) + - location: 168 (remaining gas: 1039868.741 units remaining) [ 18 6 8 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (remaining gas: 1039861.569 units remaining) + - location: 168 (remaining gas: 1039868.731 units remaining) [ 9 18 6 @@ -2655,7 +2655,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (remaining gas: 1039861.559 units remaining) + - location: 168 (remaining gas: 1039868.721 units remaining) [ 19 9 18 @@ -2664,7 +2664,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (remaining gas: 1039861.549 units remaining) + - location: 168 (remaining gas: 1039868.711 units remaining) [ 14 19 9 @@ -2674,7 +2674,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (remaining gas: 1039861.539 units remaining) + - location: 168 (remaining gas: 1039868.701 units remaining) [ 10 14 19 @@ -2685,7 +2685,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (remaining gas: 1039861.529 units remaining) + - location: 168 (remaining gas: 1039868.691 units remaining) [ 16 10 14 @@ -2697,7 +2697,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (remaining gas: 1039861.519 units remaining) + - location: 168 (remaining gas: 1039868.681 units remaining) [ 12 16 10 @@ -2710,7 +2710,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (remaining gas: 1039861.509 units remaining) + - location: 168 (remaining gas: 1039868.671 units remaining) [ 3 12 16 @@ -2724,7 +2724,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (remaining gas: 1039861.499 units remaining) + - location: 168 (remaining gas: 1039868.661 units remaining) [ 2 3 12 @@ -2739,7 +2739,7 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (remaining gas: 1039861.499 units remaining) + - location: 168 (remaining gas: 1039868.661 units remaining) [ 2 3 12 @@ -2754,36 +2754,36 @@ trace 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (remaining gas: 1039861.437 units remaining) + - location: 172 (remaining gas: 1039868.603 units remaining) [ 11 (Pair 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 175 (remaining gas: 1039861.422 units remaining) + - location: 175 (remaining gas: 1039868.593 units remaining) [ (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (remaining gas: 1039861.397 units remaining) + - location: 172 (remaining gas: 1039868.573 units remaining) [ 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (remaining gas: 1039861.387 units remaining) + - location: 172 (remaining gas: 1039868.563 units remaining) [ 6 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (remaining gas: 1039861.377 units remaining) + - location: 172 (remaining gas: 1039868.553 units remaining) [ 18 6 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (remaining gas: 1039861.367 units remaining) + - location: 172 (remaining gas: 1039868.543 units remaining) [ 9 18 6 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (remaining gas: 1039861.357 units remaining) + - location: 172 (remaining gas: 1039868.533 units remaining) [ 19 9 18 @@ -2791,7 +2791,7 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (remaining gas: 1039861.347 units remaining) + - location: 172 (remaining gas: 1039868.523 units remaining) [ 14 19 9 @@ -2800,7 +2800,7 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (remaining gas: 1039861.337 units remaining) + - location: 172 (remaining gas: 1039868.513 units remaining) [ 10 14 19 @@ -2810,7 +2810,7 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (remaining gas: 1039861.327 units remaining) + - location: 172 (remaining gas: 1039868.503 units remaining) [ 16 10 14 @@ -2821,7 +2821,7 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (remaining gas: 1039861.317 units remaining) + - location: 172 (remaining gas: 1039868.493 units remaining) [ 12 16 10 @@ -2833,7 +2833,7 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (remaining gas: 1039861.307 units remaining) + - location: 172 (remaining gas: 1039868.483 units remaining) [ 3 12 16 @@ -2846,7 +2846,7 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (remaining gas: 1039861.297 units remaining) + - location: 172 (remaining gas: 1039868.473 units remaining) [ 2 3 12 @@ -2860,7 +2860,7 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (remaining gas: 1039861.297 units remaining) + - location: 172 (remaining gas: 1039868.473 units remaining) [ 2 3 12 @@ -2874,36 +2874,36 @@ trace 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (remaining gas: 1039861.236 units remaining) + - location: 176 (remaining gas: 1039868.417 units remaining) [ 8 (Pair 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 179 (remaining gas: 1039861.221 units remaining) + - location: 179 (remaining gas: 1039868.407 units remaining) [ (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (remaining gas: 1039861.196 units remaining) + - location: 176 (remaining gas: 1039868.387 units remaining) [ 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (remaining gas: 1039861.186 units remaining) + - location: 176 (remaining gas: 1039868.377 units remaining) [ 18 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (remaining gas: 1039861.176 units remaining) + - location: 176 (remaining gas: 1039868.367 units remaining) [ 9 18 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (remaining gas: 1039861.166 units remaining) + - location: 176 (remaining gas: 1039868.357 units remaining) [ 19 9 18 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (remaining gas: 1039861.156 units remaining) + - location: 176 (remaining gas: 1039868.347 units remaining) [ 14 19 9 @@ -2911,7 +2911,7 @@ trace 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (remaining gas: 1039861.146 units remaining) + - location: 176 (remaining gas: 1039868.337 units remaining) [ 10 14 19 @@ -2920,7 +2920,7 @@ trace 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (remaining gas: 1039861.136 units remaining) + - location: 176 (remaining gas: 1039868.327 units remaining) [ 16 10 14 @@ -2930,7 +2930,7 @@ trace 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (remaining gas: 1039861.126 units remaining) + - location: 176 (remaining gas: 1039868.317 units remaining) [ 12 16 10 @@ -2941,7 +2941,7 @@ trace 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (remaining gas: 1039861.116 units remaining) + - location: 176 (remaining gas: 1039868.307 units remaining) [ 3 12 16 @@ -2953,7 +2953,7 @@ trace 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (remaining gas: 1039861.106 units remaining) + - location: 176 (remaining gas: 1039868.297 units remaining) [ 2 3 12 @@ -2966,7 +2966,7 @@ trace 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (remaining gas: 1039861.106 units remaining) + - location: 176 (remaining gas: 1039868.297 units remaining) [ 2 3 12 @@ -2979,36 +2979,36 @@ trace 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (remaining gas: 1039861.047 units remaining) + - location: 180 (remaining gas: 1039868.244 units remaining) [ 6 (Pair 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 183 (remaining gas: 1039861.032 units remaining) + - location: 183 (remaining gas: 1039868.234 units remaining) [ (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (remaining gas: 1039861.007 units remaining) + - location: 180 (remaining gas: 1039868.214 units remaining) [ 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (remaining gas: 1039860.997 units remaining) + - location: 180 (remaining gas: 1039868.204 units remaining) [ 9 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (remaining gas: 1039860.987 units remaining) + - location: 180 (remaining gas: 1039868.194 units remaining) [ 19 9 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (remaining gas: 1039860.977 units remaining) + - location: 180 (remaining gas: 1039868.184 units remaining) [ 14 19 9 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (remaining gas: 1039860.967 units remaining) + - location: 180 (remaining gas: 1039868.174 units remaining) [ 10 14 19 @@ -3016,7 +3016,7 @@ trace 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (remaining gas: 1039860.957 units remaining) + - location: 180 (remaining gas: 1039868.164 units remaining) [ 16 10 14 @@ -3025,7 +3025,7 @@ trace 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (remaining gas: 1039860.947 units remaining) + - location: 180 (remaining gas: 1039868.154 units remaining) [ 12 16 10 @@ -3035,7 +3035,7 @@ trace 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (remaining gas: 1039860.937 units remaining) + - location: 180 (remaining gas: 1039868.144 units remaining) [ 3 12 16 @@ -3046,7 +3046,7 @@ trace 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (remaining gas: 1039860.927 units remaining) + - location: 180 (remaining gas: 1039868.134 units remaining) [ 2 3 12 @@ -3058,7 +3058,7 @@ trace 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (remaining gas: 1039860.927 units remaining) + - location: 180 (remaining gas: 1039868.134 units remaining) [ 2 3 12 @@ -3070,36 +3070,36 @@ trace 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (remaining gas: 1039860.869 units remaining) + - location: 184 (remaining gas: 1039868.083 units remaining) [ 18 (Pair 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 187 (remaining gas: 1039860.854 units remaining) + - location: 187 (remaining gas: 1039868.073 units remaining) [ (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (remaining gas: 1039860.829 units remaining) + - location: 184 (remaining gas: 1039868.053 units remaining) [ 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (remaining gas: 1039860.819 units remaining) + - location: 184 (remaining gas: 1039868.043 units remaining) [ 19 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (remaining gas: 1039860.809 units remaining) + - location: 184 (remaining gas: 1039868.033 units remaining) [ 14 19 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (remaining gas: 1039860.799 units remaining) + - location: 184 (remaining gas: 1039868.023 units remaining) [ 10 14 19 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (remaining gas: 1039860.789 units remaining) + - location: 184 (remaining gas: 1039868.013 units remaining) [ 16 10 14 @@ -3107,7 +3107,7 @@ trace 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (remaining gas: 1039860.779 units remaining) + - location: 184 (remaining gas: 1039868.003 units remaining) [ 12 16 10 @@ -3116,7 +3116,7 @@ trace 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (remaining gas: 1039860.769 units remaining) + - location: 184 (remaining gas: 1039867.993 units remaining) [ 3 12 16 @@ -3126,7 +3126,7 @@ trace 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (remaining gas: 1039860.759 units remaining) + - location: 184 (remaining gas: 1039867.983 units remaining) [ 2 3 12 @@ -3137,7 +3137,7 @@ trace 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (remaining gas: 1039860.759 units remaining) + - location: 184 (remaining gas: 1039867.983 units remaining) [ 2 3 12 @@ -3148,36 +3148,36 @@ trace 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (remaining gas: 1039860.704 units remaining) + - location: 188 (remaining gas: 1039867.936 units remaining) [ 9 (Pair 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 191 (remaining gas: 1039860.689 units remaining) + - location: 191 (remaining gas: 1039867.926 units remaining) [ (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (remaining gas: 1039860.664 units remaining) + - location: 188 (remaining gas: 1039867.906 units remaining) [ 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (remaining gas: 1039860.654 units remaining) + - location: 188 (remaining gas: 1039867.896 units remaining) [ 14 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (remaining gas: 1039860.644 units remaining) + - location: 188 (remaining gas: 1039867.886 units remaining) [ 10 14 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (remaining gas: 1039860.634 units remaining) + - location: 188 (remaining gas: 1039867.876 units remaining) [ 16 10 14 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (remaining gas: 1039860.624 units remaining) + - location: 188 (remaining gas: 1039867.866 units remaining) [ 12 16 10 @@ -3185,7 +3185,7 @@ trace 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (remaining gas: 1039860.614 units remaining) + - location: 188 (remaining gas: 1039867.856 units remaining) [ 3 12 16 @@ -3194,7 +3194,7 @@ trace 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (remaining gas: 1039860.604 units remaining) + - location: 188 (remaining gas: 1039867.846 units remaining) [ 2 3 12 @@ -3204,7 +3204,7 @@ trace 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (remaining gas: 1039860.604 units remaining) + - location: 188 (remaining gas: 1039867.846 units remaining) [ 2 3 12 @@ -3214,36 +3214,36 @@ trace 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (remaining gas: 1039860.550 units remaining) + - location: 192 (remaining gas: 1039867.801 units remaining) [ 19 (Pair 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 195 (remaining gas: 1039860.535 units remaining) + - location: 195 (remaining gas: 1039867.791 units remaining) [ (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (remaining gas: 1039860.510 units remaining) + - location: 192 (remaining gas: 1039867.771 units remaining) [ 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (remaining gas: 1039860.500 units remaining) + - location: 192 (remaining gas: 1039867.761 units remaining) [ 10 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (remaining gas: 1039860.490 units remaining) + - location: 192 (remaining gas: 1039867.751 units remaining) [ 16 10 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (remaining gas: 1039860.480 units remaining) + - location: 192 (remaining gas: 1039867.741 units remaining) [ 12 16 10 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (remaining gas: 1039860.470 units remaining) + - location: 192 (remaining gas: 1039867.731 units remaining) [ 3 12 16 @@ -3251,7 +3251,7 @@ trace 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (remaining gas: 1039860.460 units remaining) + - location: 192 (remaining gas: 1039867.721 units remaining) [ 2 3 12 @@ -3260,7 +3260,7 @@ trace 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (remaining gas: 1039860.460 units remaining) + - location: 192 (remaining gas: 1039867.721 units remaining) [ 2 3 12 @@ -3269,36 +3269,36 @@ trace 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 196 (remaining gas: 1039860.408 units remaining) + - location: 196 (remaining gas: 1039867.679 units remaining) [ 14 (Pair 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 199 (remaining gas: 1039860.393 units remaining) + - location: 199 (remaining gas: 1039867.669 units remaining) [ (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 196 (remaining gas: 1039860.368 units remaining) + - location: 196 (remaining gas: 1039867.649 units remaining) [ 10 (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 196 (remaining gas: 1039860.358 units remaining) + - location: 196 (remaining gas: 1039867.639 units remaining) [ 16 10 (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 196 (remaining gas: 1039860.348 units remaining) + - location: 196 (remaining gas: 1039867.629 units remaining) [ 12 16 10 (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 196 (remaining gas: 1039860.338 units remaining) + - location: 196 (remaining gas: 1039867.619 units remaining) [ 3 12 16 10 (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 196 (remaining gas: 1039860.328 units remaining) + - location: 196 (remaining gas: 1039867.609 units remaining) [ 2 3 12 @@ -3306,7 +3306,7 @@ trace 10 (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 196 (remaining gas: 1039860.328 units remaining) + - location: 196 (remaining gas: 1039867.609 units remaining) [ 2 3 12 @@ -3314,118 +3314,118 @@ trace 10 (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 200 (remaining gas: 1039860.277 units remaining) + - location: 200 (remaining gas: 1039867.569 units remaining) [ 10 (Pair 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 203 (remaining gas: 1039860.262 units remaining) + - location: 203 (remaining gas: 1039867.559 units remaining) [ (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 200 (remaining gas: 1039860.237 units remaining) + - location: 200 (remaining gas: 1039867.539 units remaining) [ 16 (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 200 (remaining gas: 1039860.227 units remaining) + - location: 200 (remaining gas: 1039867.529 units remaining) [ 12 16 (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 200 (remaining gas: 1039860.217 units remaining) + - location: 200 (remaining gas: 1039867.519 units remaining) [ 3 12 16 (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 200 (remaining gas: 1039860.207 units remaining) + - location: 200 (remaining gas: 1039867.509 units remaining) [ 2 3 12 16 (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 200 (remaining gas: 1039860.207 units remaining) + - location: 200 (remaining gas: 1039867.509 units remaining) [ 2 3 12 16 (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 204 (remaining gas: 1039860.158 units remaining) + - location: 204 (remaining gas: 1039867.472 units remaining) [ 16 (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 207 (remaining gas: 1039860.143 units remaining) + - location: 207 (remaining gas: 1039867.462 units remaining) [ (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 204 (remaining gas: 1039860.118 units remaining) + - location: 204 (remaining gas: 1039867.442 units remaining) [ 12 (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 204 (remaining gas: 1039860.108 units remaining) + - location: 204 (remaining gas: 1039867.432 units remaining) [ 3 12 (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 204 (remaining gas: 1039860.098 units remaining) + - location: 204 (remaining gas: 1039867.422 units remaining) [ 2 3 12 (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 204 (remaining gas: 1039860.098 units remaining) + - location: 204 (remaining gas: 1039867.422 units remaining) [ 2 3 12 (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 208 (remaining gas: 1039860.050 units remaining) + - location: 208 (remaining gas: 1039867.387 units remaining) [ 12 (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 211 (remaining gas: 1039860.035 units remaining) + - location: 211 (remaining gas: 1039867.377 units remaining) [ (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 208 (remaining gas: 1039860.010 units remaining) + - location: 208 (remaining gas: 1039867.357 units remaining) [ 3 (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 208 (remaining gas: 1039860 units remaining) + - location: 208 (remaining gas: 1039867.347 units remaining) [ 2 3 (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 208 (remaining gas: 1039860 units remaining) + - location: 208 (remaining gas: 1039867.347 units remaining) [ 2 3 (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 212 (remaining gas: 1039859.985 units remaining) + - location: 212 (remaining gas: 1039867.337 units remaining) [ 3 (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 214 (remaining gas: 1039859.970 units remaining) + - location: 214 (remaining gas: 1039867.327 units remaining) [ (Pair 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 212 (remaining gas: 1039859.940 units remaining) + - location: 212 (remaining gas: 1039867.307 units remaining) [ 2 (Pair 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 215 (remaining gas: 1039859.925 units remaining) + - location: 215 (remaining gas: 1039867.297 units remaining) [ (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 218 (remaining gas: 1039859.170 units remaining) + - location: 218 (remaining gas: 1039866.542 units remaining) [ 0 ] - - location: 219 (remaining gas: 1039859.155 units remaining) + - location: 219 (remaining gas: 1039866.532 units remaining) [ True ] - - location: 220 (remaining gas: 1039859.145 units remaining) + - location: 220 (remaining gas: 1039866.522 units remaining) [ ] - - location: 220 (remaining gas: 1039859.130 units remaining) + - location: 220 (remaining gas: 1039866.512 units remaining) [ ] - - location: 226 (remaining gas: 1039859.120 units remaining) + - location: 226 (remaining gas: 1039866.502 units remaining) [ Unit ] - - location: 227 (remaining gas: 1039859.105 units remaining) + - location: 227 (remaining gas: 1039866.492 units remaining) [ {} Unit ] - - location: 229 (remaining gas: 1039859.090 units remaining) + - location: 229 (remaining gas: 1039866.482 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out index 59872a393f88..0a9d59340936 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dign.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out @@ -7,55 +7,55 @@ emitted operations big_map diff trace - - location: 15 (remaining gas: 1039987.135 units remaining) + - location: 15 (remaining gas: 1039987.775 units remaining) [ (Pair (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) 0) ] - - location: 15 (remaining gas: 1039987.125 units remaining) + - location: 15 (remaining gas: 1039987.765 units remaining) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (remaining gas: 1039987.115 units remaining) + - location: 16 (remaining gas: 1039987.755 units remaining) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (remaining gas: 1039987.105 units remaining) + - location: 17 (remaining gas: 1039987.745 units remaining) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (remaining gas: 1039987.095 units remaining) + - location: 18 (remaining gas: 1039987.735 units remaining) [ (Pair 1 2) 3 4 5 ] - - location: 19 (remaining gas: 1039987.085 units remaining) + - location: 19 (remaining gas: 1039987.725 units remaining) [ 1 2 3 4 5 ] - - location: 20 (remaining gas: 1039986.998 units remaining) + - location: 20 (remaining gas: 1039987.668 units remaining) [ 5 1 2 3 4 ] - - location: 22 (remaining gas: 1039986.983 units remaining) + - location: 22 (remaining gas: 1039987.658 units remaining) [ 1 2 3 4 ] - - location: 24 (remaining gas: 1039986.973 units remaining) + - location: 24 (remaining gas: 1039987.648 units remaining) [ 2 3 4 ] - - location: 25 (remaining gas: 1039986.963 units remaining) + - location: 25 (remaining gas: 1039987.638 units remaining) [ 3 4 ] - - location: 26 (remaining gas: 1039986.953 units remaining) + - location: 26 (remaining gas: 1039987.628 units remaining) [ 4 ] - - location: 27 (remaining gas: 1039986.943 units remaining) + - location: 27 (remaining gas: 1039987.618 units remaining) [ ] - - location: 22 (remaining gas: 1039986.913 units remaining) + - location: 22 (remaining gas: 1039987.598 units remaining) [ 5 ] - - location: 28 (remaining gas: 1039986.898 units remaining) + - location: 28 (remaining gas: 1039987.588 units remaining) [ {} 5 ] - - location: 30 (remaining gas: 1039986.883 units remaining) + - location: 30 (remaining gas: 1039987.578 units remaining) [ (Pair {} 5) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out index 6af54bd22461..3817bf93ef7e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039990.723 units remaining) + - location: 11 (remaining gas: 1039991.683 units remaining) [ (Pair (Pair 1 1) 0 0) ] - - location: 11 (remaining gas: 1039990.713 units remaining) + - location: 11 (remaining gas: 1039991.673 units remaining) [ (Pair 1 1) ] - - location: 12 (remaining gas: 1039990.703 units remaining) + - location: 12 (remaining gas: 1039991.663 units remaining) [ 1 1 ] - - location: 13 (remaining gas: 1039990.693 units remaining) + - location: 13 (remaining gas: 1039991.653 units remaining) [ 1 1 1 ] - - location: 14 (remaining gas: 1039990.678 units remaining) + - location: 14 (remaining gas: 1039991.643 units remaining) [ 1 1 ] - - location: 16 (remaining gas: 1039990.623 units remaining) + - location: 16 (remaining gas: 1039991.608 units remaining) [ 2 ] - - location: 14 (remaining gas: 1039990.593 units remaining) + - location: 14 (remaining gas: 1039991.588 units remaining) [ 1 2 ] - - location: 17 (remaining gas: 1039990.578 units remaining) + - location: 17 (remaining gas: 1039991.578 units remaining) [ (Pair 1 2) ] - - location: 18 (remaining gas: 1039990.563 units remaining) + - location: 18 (remaining gas: 1039991.568 units remaining) [ {} (Pair 1 2) ] - - location: 20 (remaining gas: 1039990.548 units remaining) + - location: 20 (remaining gas: 1039991.558 units remaining) [ (Pair {} 1 2) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out index a893c50eb3a5..58dacd42936b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dip.tz-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039990.723 units remaining) + - location: 11 (remaining gas: 1039991.683 units remaining) [ (Pair (Pair 15 9) 0 0) ] - - location: 11 (remaining gas: 1039990.713 units remaining) + - location: 11 (remaining gas: 1039991.673 units remaining) [ (Pair 15 9) ] - - location: 12 (remaining gas: 1039990.703 units remaining) + - location: 12 (remaining gas: 1039991.663 units remaining) [ 15 9 ] - - location: 13 (remaining gas: 1039990.693 units remaining) + - location: 13 (remaining gas: 1039991.653 units remaining) [ 15 15 9 ] - - location: 14 (remaining gas: 1039990.678 units remaining) + - location: 14 (remaining gas: 1039991.643 units remaining) [ 15 9 ] - - location: 16 (remaining gas: 1039990.623 units remaining) + - location: 16 (remaining gas: 1039991.608 units remaining) [ 24 ] - - location: 14 (remaining gas: 1039990.593 units remaining) + - location: 14 (remaining gas: 1039991.588 units remaining) [ 15 24 ] - - location: 17 (remaining gas: 1039990.578 units remaining) + - location: 17 (remaining gas: 1039991.578 units remaining) [ (Pair 15 24) ] - - location: 18 (remaining gas: 1039990.563 units remaining) + - location: 18 (remaining gas: 1039991.568 units remaining) [ {} (Pair 15 24) ] - - location: 20 (remaining gas: 1039990.548 units remaining) + - location: 20 (remaining gas: 1039991.558 units remaining) [ (Pair {} 15 24) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out index cb7c3722fbb0..1ad578858e58 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dipn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out @@ -7,87 +7,87 @@ emitted operations big_map diff trace - - location: 15 (remaining gas: 1039985.975 units remaining) + - location: 15 (remaining gas: 1039986.615 units remaining) [ (Pair (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) 0) ] - - location: 15 (remaining gas: 1039985.965 units remaining) + - location: 15 (remaining gas: 1039986.605 units remaining) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (remaining gas: 1039985.955 units remaining) + - location: 16 (remaining gas: 1039986.595 units remaining) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (remaining gas: 1039985.945 units remaining) + - location: 17 (remaining gas: 1039986.585 units remaining) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (remaining gas: 1039985.935 units remaining) + - location: 18 (remaining gas: 1039986.575 units remaining) [ (Pair 1 2) 3 4 5 ] - - location: 19 (remaining gas: 1039985.925 units remaining) + - location: 19 (remaining gas: 1039986.565 units remaining) [ 1 2 3 4 5 ] - - location: 20 (remaining gas: 1039985.873 units remaining) + - location: 20 (remaining gas: 1039986.523 units remaining) [ ] - - location: 23 (remaining gas: 1039985.863 units remaining) + - location: 23 (remaining gas: 1039986.513 units remaining) [ 6 ] - - location: 20 (remaining gas: 1039985.838 units remaining) + - location: 20 (remaining gas: 1039986.493 units remaining) [ 5 6 ] - - location: 20 (remaining gas: 1039985.828 units remaining) + - location: 20 (remaining gas: 1039986.483 units remaining) [ 4 5 6 ] - - location: 20 (remaining gas: 1039985.818 units remaining) + - location: 20 (remaining gas: 1039986.473 units remaining) [ 3 4 5 6 ] - - location: 20 (remaining gas: 1039985.808 units remaining) + - location: 20 (remaining gas: 1039986.463 units remaining) [ 2 3 4 5 6 ] - - location: 20 (remaining gas: 1039985.798 units remaining) + - location: 20 (remaining gas: 1039986.453 units remaining) [ 1 2 3 4 5 6 ] - - location: 20 (remaining gas: 1039985.798 units remaining) + - location: 20 (remaining gas: 1039986.453 units remaining) [ 1 2 3 4 5 6 ] - - location: 26 (remaining gas: 1039985.788 units remaining) + - location: 26 (remaining gas: 1039986.443 units remaining) [ 2 3 4 5 6 ] - - location: 27 (remaining gas: 1039985.778 units remaining) + - location: 27 (remaining gas: 1039986.433 units remaining) [ 3 4 5 6 ] - - location: 28 (remaining gas: 1039985.768 units remaining) + - location: 28 (remaining gas: 1039986.423 units remaining) [ 4 5 6 ] - - location: 29 (remaining gas: 1039985.758 units remaining) + - location: 29 (remaining gas: 1039986.413 units remaining) [ 5 6 ] - - location: 30 (remaining gas: 1039985.748 units remaining) + - location: 30 (remaining gas: 1039986.403 units remaining) [ 6 ] - - location: 31 (remaining gas: 1039985.733 units remaining) + - location: 31 (remaining gas: 1039986.393 units remaining) [ {} 6 ] - - location: 33 (remaining gas: 1039985.718 units remaining) + - location: 33 (remaining gas: 1039986.383 units remaining) [ (Pair {} 6) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out index 41e806f2d751..4ebf7260960b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dropn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out @@ -7,33 +7,33 @@ emitted operations big_map diff trace - - location: 15 (remaining gas: 1039990.312 units remaining) + - location: 15 (remaining gas: 1039990.952 units remaining) [ (Pair (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) 0) ] - - location: 15 (remaining gas: 1039990.302 units remaining) + - location: 15 (remaining gas: 1039990.942 units remaining) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (remaining gas: 1039990.292 units remaining) + - location: 16 (remaining gas: 1039990.932 units remaining) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (remaining gas: 1039990.282 units remaining) + - location: 17 (remaining gas: 1039990.922 units remaining) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (remaining gas: 1039990.272 units remaining) + - location: 18 (remaining gas: 1039990.912 units remaining) [ (Pair 1 2) 3 4 5 ] - - location: 19 (remaining gas: 1039990.262 units remaining) + - location: 19 (remaining gas: 1039990.902 units remaining) [ 1 2 3 4 5 ] - - location: 20 (remaining gas: 1039990.192 units remaining) + - location: 20 (remaining gas: 1039990.862 units remaining) [ 5 ] - - location: 22 (remaining gas: 1039990.177 units remaining) + - location: 22 (remaining gas: 1039990.852 units remaining) [ {} 5 ] - - location: 24 (remaining gas: 1039990.162 units remaining) + - location: 24 (remaining gas: 1039990.842 units remaining) [ (Pair {} 5) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out index e92f19d3bddd..8fd478c75983 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dugn.tz-0-(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)-1].out @@ -7,51 +7,51 @@ emitted operations big_map diff trace - - location: 15 (remaining gas: 1039987.901 units remaining) + - location: 15 (remaining gas: 1039988.541 units remaining) [ (Pair (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) 0) ] - - location: 15 (remaining gas: 1039987.891 units remaining) + - location: 15 (remaining gas: 1039988.531 units remaining) [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (remaining gas: 1039987.881 units remaining) + - location: 16 (remaining gas: 1039988.521 units remaining) [ (Pair (Pair (Pair 1 2) 3) 4) 5 ] - - location: 17 (remaining gas: 1039987.871 units remaining) + - location: 17 (remaining gas: 1039988.511 units remaining) [ (Pair (Pair 1 2) 3) 4 5 ] - - location: 18 (remaining gas: 1039987.861 units remaining) + - location: 18 (remaining gas: 1039988.501 units remaining) [ (Pair 1 2) 3 4 5 ] - - location: 19 (remaining gas: 1039987.851 units remaining) + - location: 19 (remaining gas: 1039988.491 units remaining) [ 1 2 3 4 5 ] - - location: 20 (remaining gas: 1039987.764 units remaining) + - location: 20 (remaining gas: 1039988.429 units remaining) [ 2 3 4 5 1 ] - - location: 22 (remaining gas: 1039987.754 units remaining) + - location: 22 (remaining gas: 1039988.419 units remaining) [ 3 4 5 1 ] - - location: 23 (remaining gas: 1039987.744 units remaining) + - location: 23 (remaining gas: 1039988.409 units remaining) [ 4 5 1 ] - - location: 24 (remaining gas: 1039987.734 units remaining) + - location: 24 (remaining gas: 1039988.399 units remaining) [ 5 1 ] - - location: 25 (remaining gas: 1039987.724 units remaining) + - location: 25 (remaining gas: 1039988.389 units remaining) [ 1 ] - - location: 26 (remaining gas: 1039987.709 units remaining) + - location: 26 (remaining gas: 1039988.379 units remaining) [ {} 1 ] - - location: 28 (remaining gas: 1039987.694 units remaining) + - location: 28 (remaining gas: 1039988.369 units remaining) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out index 09cb77db9cd5..3b25bd616fa1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[dup-n.tz-Unit-Unit-Unit].out @@ -7,38 +7,38 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039954.427 units remaining) + - location: 7 (remaining gas: 1039955.867 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039954.417 units remaining) + - location: 7 (remaining gas: 1039955.857 units remaining) [ ] - - location: 8 (remaining gas: 1039954.407 units remaining) + - location: 8 (remaining gas: 1039955.847 units remaining) [ 5 ] - - location: 11 (remaining gas: 1039954.397 units remaining) + - location: 11 (remaining gas: 1039955.837 units remaining) [ 4 5 ] - - location: 14 (remaining gas: 1039954.387 units remaining) + - location: 14 (remaining gas: 1039955.827 units remaining) [ 3 4 5 ] - - location: 17 (remaining gas: 1039954.377 units remaining) + - location: 17 (remaining gas: 1039955.817 units remaining) [ 2 3 4 5 ] - - location: 20 (remaining gas: 1039954.367 units remaining) + - location: 20 (remaining gas: 1039955.807 units remaining) [ 1 2 3 4 5 ] - - location: 23 (remaining gas: 1039954.346 units remaining) + - location: 23 (remaining gas: 1039955.786 units remaining) [ 1 1 2 3 4 5 ] - - location: 25 (remaining gas: 1039954.336 units remaining) + - location: 25 (remaining gas: 1039955.776 units remaining) [ 1 1 1 @@ -46,40 +46,40 @@ trace 3 4 5 ] - - location: 30 (remaining gas: 1039954.301 units remaining) + - location: 30 (remaining gas: 1039955.741 units remaining) [ 0 1 2 3 4 5 ] - - location: 31 (remaining gas: 1039954.286 units remaining) + - location: 31 (remaining gas: 1039955.731 units remaining) [ True 1 2 3 4 5 ] - - location: 32 (remaining gas: 1039954.276 units remaining) + - location: 32 (remaining gas: 1039955.721 units remaining) [ 1 2 3 4 5 ] - - location: 32 (remaining gas: 1039954.261 units remaining) + - location: 32 (remaining gas: 1039955.711 units remaining) [ 1 2 3 4 5 ] - - location: 38 (remaining gas: 1039954.239 units remaining) + - location: 38 (remaining gas: 1039955.689 units remaining) [ 2 1 2 3 4 5 ] - - location: 40 (remaining gas: 1039954.229 units remaining) + - location: 40 (remaining gas: 1039955.679 units remaining) [ 2 2 1 @@ -87,40 +87,40 @@ trace 3 4 5 ] - - location: 45 (remaining gas: 1039954.194 units remaining) + - location: 45 (remaining gas: 1039955.644 units remaining) [ 0 1 2 3 4 5 ] - - location: 46 (remaining gas: 1039954.179 units remaining) + - location: 46 (remaining gas: 1039955.634 units remaining) [ True 1 2 3 4 5 ] - - location: 47 (remaining gas: 1039954.169 units remaining) + - location: 47 (remaining gas: 1039955.624 units remaining) [ 1 2 3 4 5 ] - - location: 47 (remaining gas: 1039954.154 units remaining) + - location: 47 (remaining gas: 1039955.614 units remaining) [ 1 2 3 4 5 ] - - location: 53 (remaining gas: 1039954.131 units remaining) + - location: 53 (remaining gas: 1039955.591 units remaining) [ 3 1 2 3 4 5 ] - - location: 55 (remaining gas: 1039954.121 units remaining) + - location: 55 (remaining gas: 1039955.581 units remaining) [ 3 3 1 @@ -128,40 +128,40 @@ trace 3 4 5 ] - - location: 60 (remaining gas: 1039954.086 units remaining) + - location: 60 (remaining gas: 1039955.546 units remaining) [ 0 1 2 3 4 5 ] - - location: 61 (remaining gas: 1039954.071 units remaining) + - location: 61 (remaining gas: 1039955.536 units remaining) [ True 1 2 3 4 5 ] - - location: 62 (remaining gas: 1039954.061 units remaining) + - location: 62 (remaining gas: 1039955.526 units remaining) [ 1 2 3 4 5 ] - - location: 62 (remaining gas: 1039954.046 units remaining) + - location: 62 (remaining gas: 1039955.516 units remaining) [ 1 2 3 4 5 ] - - location: 68 (remaining gas: 1039954.022 units remaining) + - location: 68 (remaining gas: 1039955.492 units remaining) [ 4 1 2 3 4 5 ] - - location: 70 (remaining gas: 1039954.012 units remaining) + - location: 70 (remaining gas: 1039955.482 units remaining) [ 4 4 1 @@ -169,40 +169,40 @@ trace 3 4 5 ] - - location: 75 (remaining gas: 1039953.977 units remaining) + - location: 75 (remaining gas: 1039955.447 units remaining) [ 0 1 2 3 4 5 ] - - location: 76 (remaining gas: 1039953.962 units remaining) + - location: 76 (remaining gas: 1039955.437 units remaining) [ True 1 2 3 4 5 ] - - location: 77 (remaining gas: 1039953.952 units remaining) + - location: 77 (remaining gas: 1039955.427 units remaining) [ 1 2 3 4 5 ] - - location: 77 (remaining gas: 1039953.937 units remaining) + - location: 77 (remaining gas: 1039955.417 units remaining) [ 1 2 3 4 5 ] - - location: 83 (remaining gas: 1039953.912 units remaining) + - location: 83 (remaining gas: 1039955.392 units remaining) [ 5 1 2 3 4 5 ] - - location: 85 (remaining gas: 1039953.902 units remaining) + - location: 85 (remaining gas: 1039955.382 units remaining) [ 5 5 1 @@ -210,39 +210,39 @@ trace 3 4 5 ] - - location: 90 (remaining gas: 1039953.867 units remaining) + - location: 90 (remaining gas: 1039955.347 units remaining) [ 0 1 2 3 4 5 ] - - location: 91 (remaining gas: 1039953.852 units remaining) + - location: 91 (remaining gas: 1039955.337 units remaining) [ True 1 2 3 4 5 ] - - location: 92 (remaining gas: 1039953.842 units remaining) + - location: 92 (remaining gas: 1039955.327 units remaining) [ 1 2 3 4 5 ] - - location: 92 (remaining gas: 1039953.827 units remaining) + - location: 92 (remaining gas: 1039955.317 units remaining) [ 1 2 3 4 5 ] - - location: 98 (remaining gas: 1039953.755 units remaining) + - location: 98 (remaining gas: 1039955.275 units remaining) [ ] - - location: 100 (remaining gas: 1039953.745 units remaining) + - location: 100 (remaining gas: 1039955.265 units remaining) [ Unit ] - - location: 101 (remaining gas: 1039953.730 units remaining) + - location: 101 (remaining gas: 1039955.255 units remaining) [ {} Unit ] - - location: 103 (remaining gas: 1039953.715 units remaining) + - location: 103 (remaining gas: 1039955.245 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out index 00cb54ca79a2..dac75da4144e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out @@ -7,136 +7,136 @@ emitted operations big_map diff trace - - location: 25 (remaining gas: 1039969.928 units remaining) + - location: 25 (remaining gas: 1039973.448 units remaining) [ (Pair (Pair -8 2) None None None None) ] - - location: 25 (remaining gas: 1039969.918 units remaining) + - location: 25 (remaining gas: 1039973.438 units remaining) [ (Pair -8 2) ] - - location: 26 (remaining gas: 1039969.908 units remaining) + - location: 26 (remaining gas: 1039973.428 units remaining) [ (Pair -8 2) (Pair -8 2) ] - - location: 27 (remaining gas: 1039969.898 units remaining) + - location: 27 (remaining gas: 1039973.418 units remaining) [ -8 2 (Pair -8 2) ] - - location: 28 (remaining gas: 1039969.873 units remaining) + - location: 28 (remaining gas: 1039973.398 units remaining) [ 8 2 (Pair -8 2) ] - - location: 29 (remaining gas: 1039969.858 units remaining) + - location: 29 (remaining gas: 1039973.388 units remaining) [ 2 (Pair -8 2) ] - - location: 31 (remaining gas: 1039969.833 units remaining) + - location: 31 (remaining gas: 1039973.368 units remaining) [ 2 (Pair -8 2) ] - - location: 29 (remaining gas: 1039969.803 units remaining) + - location: 29 (remaining gas: 1039973.348 units remaining) [ 8 2 (Pair -8 2) ] - - location: 32 (remaining gas: 1039969.663 units remaining) + - location: 32 (remaining gas: 1039973.243 units remaining) [ (Some (Pair 4 0)) (Pair -8 2) ] - - location: 33 (remaining gas: 1039969.653 units remaining) + - location: 33 (remaining gas: 1039973.233 units remaining) [ (Pair -8 2) (Some (Pair 4 0)) ] - - location: 34 (remaining gas: 1039969.643 units remaining) + - location: 34 (remaining gas: 1039973.223 units remaining) [ (Pair -8 2) (Pair -8 2) (Some (Pair 4 0)) ] - - location: 35 (remaining gas: 1039969.633 units remaining) + - location: 35 (remaining gas: 1039973.213 units remaining) [ -8 2 (Pair -8 2) (Some (Pair 4 0)) ] - - location: 36 (remaining gas: 1039969.608 units remaining) + - location: 36 (remaining gas: 1039973.193 units remaining) [ 8 2 (Pair -8 2) (Some (Pair 4 0)) ] - - location: 37 (remaining gas: 1039969.468 units remaining) + - location: 37 (remaining gas: 1039973.088 units remaining) [ (Some (Pair 4 0)) (Pair -8 2) (Some (Pair 4 0)) ] - - location: 38 (remaining gas: 1039969.458 units remaining) + - location: 38 (remaining gas: 1039973.078 units remaining) [ (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 39 (remaining gas: 1039969.448 units remaining) + - location: 39 (remaining gas: 1039973.068 units remaining) [ (Pair -8 2) (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 40 (remaining gas: 1039969.438 units remaining) + - location: 40 (remaining gas: 1039973.058 units remaining) [ -8 2 (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 41 (remaining gas: 1039969.423 units remaining) + - location: 41 (remaining gas: 1039973.048 units remaining) [ 2 (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 43 (remaining gas: 1039969.398 units remaining) + - location: 43 (remaining gas: 1039973.028 units remaining) [ 2 (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 41 (remaining gas: 1039969.368 units remaining) + - location: 41 (remaining gas: 1039973.008 units remaining) [ -8 2 (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 44 (remaining gas: 1039969.228 units remaining) + - location: 44 (remaining gas: 1039972.903 units remaining) [ (Some (Pair -4 0)) (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 45 (remaining gas: 1039969.218 units remaining) + - location: 45 (remaining gas: 1039972.893 units remaining) [ (Pair -8 2) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 46 (remaining gas: 1039969.208 units remaining) + - location: 46 (remaining gas: 1039972.883 units remaining) [ -8 2 (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 47 (remaining gas: 1039969.068 units remaining) + - location: 47 (remaining gas: 1039972.778 units remaining) [ (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 49 (remaining gas: 1039969.020 units remaining) + - location: 49 (remaining gas: 1039972.743 units remaining) [ (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 52 (remaining gas: 1039969.005 units remaining) + - location: 52 (remaining gas: 1039972.733 units remaining) [ (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 49 (remaining gas: 1039968.980 units remaining) + - location: 49 (remaining gas: 1039972.713 units remaining) [ (Some (Pair -4 0)) (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 49 (remaining gas: 1039968.970 units remaining) + - location: 49 (remaining gas: 1039972.703 units remaining) [ (Some (Pair -4 0)) (Some (Pair -4 0)) (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 49 (remaining gas: 1039968.970 units remaining) + - location: 49 (remaining gas: 1039972.703 units remaining) [ (Some (Pair -4 0)) (Some (Pair -4 0)) (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 53 (remaining gas: 1039968.955 units remaining) + - location: 53 (remaining gas: 1039972.693 units remaining) [ (Some (Pair -4 0)) (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 55 (remaining gas: 1039968.940 units remaining) + - location: 55 (remaining gas: 1039972.683 units remaining) [ (Pair (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 53 (remaining gas: 1039968.910 units remaining) + - location: 53 (remaining gas: 1039972.663 units remaining) [ (Some (Pair -4 0)) (Pair (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 56 (remaining gas: 1039968.895 units remaining) + - location: 56 (remaining gas: 1039972.653 units remaining) [ (Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 57 (remaining gas: 1039968.880 units remaining) + - location: 57 (remaining gas: 1039972.643 units remaining) [ {} (Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 59 (remaining gas: 1039968.865 units remaining) + - location: 59 (remaining gas: 1039972.633 units remaining) [ (Pair {} (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out index 0e7eafb3e6c8..989b58ff20c5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 -3)-(Pair (.3caea50555.out @@ -7,136 +7,136 @@ emitted operations big_map diff trace - - location: 25 (remaining gas: 1039969.928 units remaining) + - location: 25 (remaining gas: 1039973.448 units remaining) [ (Pair (Pair 10 -3) None None None None) ] - - location: 25 (remaining gas: 1039969.918 units remaining) + - location: 25 (remaining gas: 1039973.438 units remaining) [ (Pair 10 -3) ] - - location: 26 (remaining gas: 1039969.908 units remaining) + - location: 26 (remaining gas: 1039973.428 units remaining) [ (Pair 10 -3) (Pair 10 -3) ] - - location: 27 (remaining gas: 1039969.898 units remaining) + - location: 27 (remaining gas: 1039973.418 units remaining) [ 10 -3 (Pair 10 -3) ] - - location: 28 (remaining gas: 1039969.873 units remaining) + - location: 28 (remaining gas: 1039973.398 units remaining) [ 10 -3 (Pair 10 -3) ] - - location: 29 (remaining gas: 1039969.858 units remaining) + - location: 29 (remaining gas: 1039973.388 units remaining) [ -3 (Pair 10 -3) ] - - location: 31 (remaining gas: 1039969.833 units remaining) + - location: 31 (remaining gas: 1039973.368 units remaining) [ 3 (Pair 10 -3) ] - - location: 29 (remaining gas: 1039969.803 units remaining) + - location: 29 (remaining gas: 1039973.348 units remaining) [ 10 3 (Pair 10 -3) ] - - location: 32 (remaining gas: 1039969.663 units remaining) + - location: 32 (remaining gas: 1039973.243 units remaining) [ (Some (Pair 3 1)) (Pair 10 -3) ] - - location: 33 (remaining gas: 1039969.653 units remaining) + - location: 33 (remaining gas: 1039973.233 units remaining) [ (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 34 (remaining gas: 1039969.643 units remaining) + - location: 34 (remaining gas: 1039973.223 units remaining) [ (Pair 10 -3) (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 35 (remaining gas: 1039969.633 units remaining) + - location: 35 (remaining gas: 1039973.213 units remaining) [ 10 -3 (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 36 (remaining gas: 1039969.608 units remaining) + - location: 36 (remaining gas: 1039973.193 units remaining) [ 10 -3 (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 37 (remaining gas: 1039969.468 units remaining) + - location: 37 (remaining gas: 1039973.088 units remaining) [ (Some (Pair -3 1)) (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 38 (remaining gas: 1039969.458 units remaining) + - location: 38 (remaining gas: 1039973.078 units remaining) [ (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 39 (remaining gas: 1039969.448 units remaining) + - location: 39 (remaining gas: 1039973.068 units remaining) [ (Pair 10 -3) (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 40 (remaining gas: 1039969.438 units remaining) + - location: 40 (remaining gas: 1039973.058 units remaining) [ 10 -3 (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 41 (remaining gas: 1039969.423 units remaining) + - location: 41 (remaining gas: 1039973.048 units remaining) [ -3 (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 43 (remaining gas: 1039969.398 units remaining) + - location: 43 (remaining gas: 1039973.028 units remaining) [ 3 (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 41 (remaining gas: 1039969.368 units remaining) + - location: 41 (remaining gas: 1039973.008 units remaining) [ 10 3 (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 44 (remaining gas: 1039969.228 units remaining) + - location: 44 (remaining gas: 1039972.903 units remaining) [ (Some (Pair 3 1)) (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 45 (remaining gas: 1039969.218 units remaining) + - location: 45 (remaining gas: 1039972.893 units remaining) [ (Pair 10 -3) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 46 (remaining gas: 1039969.208 units remaining) + - location: 46 (remaining gas: 1039972.883 units remaining) [ 10 -3 (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 47 (remaining gas: 1039969.068 units remaining) + - location: 47 (remaining gas: 1039972.778 units remaining) [ (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 49 (remaining gas: 1039969.020 units remaining) + - location: 49 (remaining gas: 1039972.743 units remaining) [ (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 52 (remaining gas: 1039969.005 units remaining) + - location: 52 (remaining gas: 1039972.733 units remaining) [ (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 49 (remaining gas: 1039968.980 units remaining) + - location: 49 (remaining gas: 1039972.713 units remaining) [ (Some (Pair 3 1)) (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 49 (remaining gas: 1039968.970 units remaining) + - location: 49 (remaining gas: 1039972.703 units remaining) [ (Some (Pair -3 1)) (Some (Pair 3 1)) (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 49 (remaining gas: 1039968.970 units remaining) + - location: 49 (remaining gas: 1039972.703 units remaining) [ (Some (Pair -3 1)) (Some (Pair 3 1)) (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 53 (remaining gas: 1039968.955 units remaining) + - location: 53 (remaining gas: 1039972.693 units remaining) [ (Some (Pair 3 1)) (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 55 (remaining gas: 1039968.940 units remaining) + - location: 55 (remaining gas: 1039972.683 units remaining) [ (Pair (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 53 (remaining gas: 1039968.910 units remaining) + - location: 53 (remaining gas: 1039972.663 units remaining) [ (Some (Pair -3 1)) (Pair (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 56 (remaining gas: 1039968.895 units remaining) + - location: 56 (remaining gas: 1039972.653 units remaining) [ (Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 57 (remaining gas: 1039968.880 units remaining) + - location: 57 (remaining gas: 1039972.643 units remaining) [ {} (Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 59 (remaining gas: 1039968.865 units remaining) + - location: 59 (remaining gas: 1039972.633 units remaining) [ (Pair {} (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out index 563a089aca93..e0dd8285cc26 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv.tz-(Pair None None None None)-(Pair 10 0)-(Pair No.f9448c04fb.out @@ -7,136 +7,136 @@ emitted operations big_map diff trace - - location: 25 (remaining gas: 1039969.928 units remaining) + - location: 25 (remaining gas: 1039973.448 units remaining) [ (Pair (Pair 10 0) None None None None) ] - - location: 25 (remaining gas: 1039969.918 units remaining) + - location: 25 (remaining gas: 1039973.438 units remaining) [ (Pair 10 0) ] - - location: 26 (remaining gas: 1039969.908 units remaining) + - location: 26 (remaining gas: 1039973.428 units remaining) [ (Pair 10 0) (Pair 10 0) ] - - location: 27 (remaining gas: 1039969.898 units remaining) + - location: 27 (remaining gas: 1039973.418 units remaining) [ 10 0 (Pair 10 0) ] - - location: 28 (remaining gas: 1039969.873 units remaining) + - location: 28 (remaining gas: 1039973.398 units remaining) [ 10 0 (Pair 10 0) ] - - location: 29 (remaining gas: 1039969.858 units remaining) + - location: 29 (remaining gas: 1039973.388 units remaining) [ 0 (Pair 10 0) ] - - location: 31 (remaining gas: 1039969.833 units remaining) + - location: 31 (remaining gas: 1039973.368 units remaining) [ 0 (Pair 10 0) ] - - location: 29 (remaining gas: 1039969.803 units remaining) + - location: 29 (remaining gas: 1039973.348 units remaining) [ 10 0 (Pair 10 0) ] - - location: 32 (remaining gas: 1039969.663 units remaining) + - location: 32 (remaining gas: 1039973.243 units remaining) [ None (Pair 10 0) ] - - location: 33 (remaining gas: 1039969.653 units remaining) + - location: 33 (remaining gas: 1039973.233 units remaining) [ (Pair 10 0) None ] - - location: 34 (remaining gas: 1039969.643 units remaining) + - location: 34 (remaining gas: 1039973.223 units remaining) [ (Pair 10 0) (Pair 10 0) None ] - - location: 35 (remaining gas: 1039969.633 units remaining) + - location: 35 (remaining gas: 1039973.213 units remaining) [ 10 0 (Pair 10 0) None ] - - location: 36 (remaining gas: 1039969.608 units remaining) + - location: 36 (remaining gas: 1039973.193 units remaining) [ 10 0 (Pair 10 0) None ] - - location: 37 (remaining gas: 1039969.468 units remaining) + - location: 37 (remaining gas: 1039973.088 units remaining) [ None (Pair 10 0) None ] - - location: 38 (remaining gas: 1039969.458 units remaining) + - location: 38 (remaining gas: 1039973.078 units remaining) [ (Pair 10 0) None None ] - - location: 39 (remaining gas: 1039969.448 units remaining) + - location: 39 (remaining gas: 1039973.068 units remaining) [ (Pair 10 0) (Pair 10 0) None None ] - - location: 40 (remaining gas: 1039969.438 units remaining) + - location: 40 (remaining gas: 1039973.058 units remaining) [ 10 0 (Pair 10 0) None None ] - - location: 41 (remaining gas: 1039969.423 units remaining) + - location: 41 (remaining gas: 1039973.048 units remaining) [ 0 (Pair 10 0) None None ] - - location: 43 (remaining gas: 1039969.398 units remaining) + - location: 43 (remaining gas: 1039973.028 units remaining) [ 0 (Pair 10 0) None None ] - - location: 41 (remaining gas: 1039969.368 units remaining) + - location: 41 (remaining gas: 1039973.008 units remaining) [ 10 0 (Pair 10 0) None None ] - - location: 44 (remaining gas: 1039969.228 units remaining) + - location: 44 (remaining gas: 1039972.903 units remaining) [ None (Pair 10 0) None None ] - - location: 45 (remaining gas: 1039969.218 units remaining) + - location: 45 (remaining gas: 1039972.893 units remaining) [ (Pair 10 0) None None None ] - - location: 46 (remaining gas: 1039969.208 units remaining) + - location: 46 (remaining gas: 1039972.883 units remaining) [ 10 0 None None None ] - - location: 47 (remaining gas: 1039969.068 units remaining) + - location: 47 (remaining gas: 1039972.778 units remaining) [ None None None None ] - - location: 49 (remaining gas: 1039969.020 units remaining) + - location: 49 (remaining gas: 1039972.743 units remaining) [ None None ] - - location: 52 (remaining gas: 1039969.005 units remaining) + - location: 52 (remaining gas: 1039972.733 units remaining) [ (Pair None None) ] - - location: 49 (remaining gas: 1039968.980 units remaining) + - location: 49 (remaining gas: 1039972.713 units remaining) [ None (Pair None None) ] - - location: 49 (remaining gas: 1039968.970 units remaining) + - location: 49 (remaining gas: 1039972.703 units remaining) [ None None (Pair None None) ] - - location: 49 (remaining gas: 1039968.970 units remaining) + - location: 49 (remaining gas: 1039972.703 units remaining) [ None None (Pair None None) ] - - location: 53 (remaining gas: 1039968.955 units remaining) + - location: 53 (remaining gas: 1039972.693 units remaining) [ None (Pair None None) ] - - location: 55 (remaining gas: 1039968.940 units remaining) + - location: 55 (remaining gas: 1039972.683 units remaining) [ (Pair None None None) ] - - location: 53 (remaining gas: 1039968.910 units remaining) + - location: 53 (remaining gas: 1039972.663 units remaining) [ None (Pair None None None) ] - - location: 56 (remaining gas: 1039968.895 units remaining) + - location: 56 (remaining gas: 1039972.653 units remaining) [ (Pair None None None None) ] - - location: 57 (remaining gas: 1039968.880 units remaining) + - location: 57 (remaining gas: 1039972.643 units remaining) [ {} (Pair None None None None) ] - - location: 59 (remaining gas: 1039968.865 units remaining) + - location: 59 (remaining gas: 1039972.633 units remaining) [ (Pair {} None None None None) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out index 8762c57b0216..5d81a14b0ce4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 0))-(Left None)].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 19 (remaining gas: 1039982.361 units remaining) + - location: 19 (remaining gas: 1039985.721 units remaining) [ (Pair (Pair 10 (Left 0)) (Left None)) ] - - location: 19 (remaining gas: 1039982.351 units remaining) + - location: 19 (remaining gas: 1039985.711 units remaining) [ (Pair 10 (Left 0)) ] - - location: 20 (remaining gas: 1039982.341 units remaining) + - location: 20 (remaining gas: 1039985.701 units remaining) [ 10 (Left 0) ] - - location: 21 (remaining gas: 1039982.331 units remaining) + - location: 21 (remaining gas: 1039985.691 units remaining) [ (Left 0) 10 ] - - location: 22 (remaining gas: 1039982.321 units remaining) + - location: 22 (remaining gas: 1039985.681 units remaining) [ 0 10 ] - - location: 24 (remaining gas: 1039982.311 units remaining) + - location: 24 (remaining gas: 1039985.671 units remaining) [ 10 0 ] - - location: 25 (remaining gas: 1039982.171 units remaining) + - location: 25 (remaining gas: 1039985.591 units remaining) [ None ] - - location: 26 (remaining gas: 1039982.156 units remaining) + - location: 26 (remaining gas: 1039985.581 units remaining) [ (Left None) ] - - location: 22 (remaining gas: 1039982.141 units remaining) + - location: 22 (remaining gas: 1039985.571 units remaining) [ (Left None) ] - - location: 39 (remaining gas: 1039982.126 units remaining) + - location: 39 (remaining gas: 1039985.561 units remaining) [ {} (Left None) ] - - location: 41 (remaining gas: 1039982.111 units remaining) + - location: 41 (remaining gas: 1039985.551 units remaining) [ (Pair {} (Left None)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out index 774169e27305..d435d20411ad 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 10))-(Left (So.f782cc1dec.out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 19 (remaining gas: 1039982.361 units remaining) + - location: 19 (remaining gas: 1039985.721 units remaining) [ (Pair (Pair 10 (Left 10)) (Left None)) ] - - location: 19 (remaining gas: 1039982.351 units remaining) + - location: 19 (remaining gas: 1039985.711 units remaining) [ (Pair 10 (Left 10)) ] - - location: 20 (remaining gas: 1039982.341 units remaining) + - location: 20 (remaining gas: 1039985.701 units remaining) [ 10 (Left 10) ] - - location: 21 (remaining gas: 1039982.331 units remaining) + - location: 21 (remaining gas: 1039985.691 units remaining) [ (Left 10) 10 ] - - location: 22 (remaining gas: 1039982.321 units remaining) + - location: 22 (remaining gas: 1039985.681 units remaining) [ 10 10 ] - - location: 24 (remaining gas: 1039982.311 units remaining) + - location: 24 (remaining gas: 1039985.671 units remaining) [ 10 10 ] - - location: 25 (remaining gas: 1039982.171 units remaining) + - location: 25 (remaining gas: 1039985.591 units remaining) [ (Some (Pair 1 0)) ] - - location: 26 (remaining gas: 1039982.156 units remaining) + - location: 26 (remaining gas: 1039985.581 units remaining) [ (Left (Some (Pair 1 0))) ] - - location: 22 (remaining gas: 1039982.141 units remaining) + - location: 22 (remaining gas: 1039985.571 units remaining) [ (Left (Some (Pair 1 0))) ] - - location: 39 (remaining gas: 1039982.126 units remaining) + - location: 39 (remaining gas: 1039985.561 units remaining) [ {} (Left (Some (Pair 1 0))) ] - - location: 41 (remaining gas: 1039982.111 units remaining) + - location: 41 (remaining gas: 1039985.551 units remaining) [ (Pair {} (Left (Some (Pair 1 0)))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out index 6b91e21b2883..63172eafb4bd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Left 3))-(Left (Som.016b4db96c.out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 19 (remaining gas: 1039982.361 units remaining) + - location: 19 (remaining gas: 1039985.721 units remaining) [ (Pair (Pair 10 (Left 3)) (Left None)) ] - - location: 19 (remaining gas: 1039982.351 units remaining) + - location: 19 (remaining gas: 1039985.711 units remaining) [ (Pair 10 (Left 3)) ] - - location: 20 (remaining gas: 1039982.341 units remaining) + - location: 20 (remaining gas: 1039985.701 units remaining) [ 10 (Left 3) ] - - location: 21 (remaining gas: 1039982.331 units remaining) + - location: 21 (remaining gas: 1039985.691 units remaining) [ (Left 3) 10 ] - - location: 22 (remaining gas: 1039982.321 units remaining) + - location: 22 (remaining gas: 1039985.681 units remaining) [ 3 10 ] - - location: 24 (remaining gas: 1039982.311 units remaining) + - location: 24 (remaining gas: 1039985.671 units remaining) [ 10 3 ] - - location: 25 (remaining gas: 1039982.171 units remaining) + - location: 25 (remaining gas: 1039985.591 units remaining) [ (Some (Pair 3 1)) ] - - location: 26 (remaining gas: 1039982.156 units remaining) + - location: 26 (remaining gas: 1039985.581 units remaining) [ (Left (Some (Pair 3 1))) ] - - location: 22 (remaining gas: 1039982.141 units remaining) + - location: 22 (remaining gas: 1039985.571 units remaining) [ (Left (Some (Pair 3 1))) ] - - location: 39 (remaining gas: 1039982.126 units remaining) + - location: 39 (remaining gas: 1039985.561 units remaining) [ {} (Left (Some (Pair 3 1))) ] - - location: 41 (remaining gas: 1039982.111 units remaining) + - location: 41 (remaining gas: 1039985.551 units remaining) [ (Pair {} (Left (Some (Pair 3 1)))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out index fc0546765d60..164bf22861c9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 0))-(Right None)].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 19 (remaining gas: 1039982.361 units remaining) + - location: 19 (remaining gas: 1039985.721 units remaining) [ (Pair (Pair 10 (Right 0)) (Left None)) ] - - location: 19 (remaining gas: 1039982.351 units remaining) + - location: 19 (remaining gas: 1039985.711 units remaining) [ (Pair 10 (Right 0)) ] - - location: 20 (remaining gas: 1039982.341 units remaining) + - location: 20 (remaining gas: 1039985.701 units remaining) [ 10 (Right 0) ] - - location: 21 (remaining gas: 1039982.331 units remaining) + - location: 21 (remaining gas: 1039985.691 units remaining) [ (Right 0) 10 ] - - location: 22 (remaining gas: 1039982.321 units remaining) + - location: 22 (remaining gas: 1039985.681 units remaining) [ 0 10 ] - - location: 32 (remaining gas: 1039982.311 units remaining) + - location: 32 (remaining gas: 1039985.671 units remaining) [ 10 0 ] - - location: 33 (remaining gas: 1039982.171 units remaining) + - location: 33 (remaining gas: 1039985.601 units remaining) [ None ] - - location: 34 (remaining gas: 1039982.156 units remaining) + - location: 34 (remaining gas: 1039985.591 units remaining) [ (Right None) ] - - location: 22 (remaining gas: 1039982.141 units remaining) + - location: 22 (remaining gas: 1039985.581 units remaining) [ (Right None) ] - - location: 39 (remaining gas: 1039982.126 units remaining) + - location: 39 (remaining gas: 1039985.571 units remaining) [ {} (Right None) ] - - location: 41 (remaining gas: 1039982.111 units remaining) + - location: 41 (remaining gas: 1039985.561 units remaining) [ (Pair {} (Right None)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out index 2a6d724b3589..9df6e32c0789 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 10))-(Right (.e705a30e07.out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 19 (remaining gas: 1039982.361 units remaining) + - location: 19 (remaining gas: 1039985.721 units remaining) [ (Pair (Pair 10 (Right 10)) (Left None)) ] - - location: 19 (remaining gas: 1039982.351 units remaining) + - location: 19 (remaining gas: 1039985.711 units remaining) [ (Pair 10 (Right 10)) ] - - location: 20 (remaining gas: 1039982.341 units remaining) + - location: 20 (remaining gas: 1039985.701 units remaining) [ 10 (Right 10) ] - - location: 21 (remaining gas: 1039982.331 units remaining) + - location: 21 (remaining gas: 1039985.691 units remaining) [ (Right 10) 10 ] - - location: 22 (remaining gas: 1039982.321 units remaining) + - location: 22 (remaining gas: 1039985.681 units remaining) [ 10 10 ] - - location: 32 (remaining gas: 1039982.311 units remaining) + - location: 32 (remaining gas: 1039985.671 units remaining) [ 10 10 ] - - location: 33 (remaining gas: 1039982.171 units remaining) + - location: 33 (remaining gas: 1039985.601 units remaining) [ (Some (Pair 1 0)) ] - - location: 34 (remaining gas: 1039982.156 units remaining) + - location: 34 (remaining gas: 1039985.591 units remaining) [ (Right (Some (Pair 1 0))) ] - - location: 22 (remaining gas: 1039982.141 units remaining) + - location: 22 (remaining gas: 1039985.581 units remaining) [ (Right (Some (Pair 1 0))) ] - - location: 39 (remaining gas: 1039982.126 units remaining) + - location: 39 (remaining gas: 1039985.571 units remaining) [ {} (Right (Some (Pair 1 0))) ] - - location: 41 (remaining gas: 1039982.111 units remaining) + - location: 41 (remaining gas: 1039985.561 units remaining) [ (Pair {} (Right (Some (Pair 1 0)))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out index 668510393037..8e5884d6d2cc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 10 (Right 3))-(Right (S.44485eda6a.out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 19 (remaining gas: 1039982.361 units remaining) + - location: 19 (remaining gas: 1039985.721 units remaining) [ (Pair (Pair 10 (Right 3)) (Left None)) ] - - location: 19 (remaining gas: 1039982.351 units remaining) + - location: 19 (remaining gas: 1039985.711 units remaining) [ (Pair 10 (Right 3)) ] - - location: 20 (remaining gas: 1039982.341 units remaining) + - location: 20 (remaining gas: 1039985.701 units remaining) [ 10 (Right 3) ] - - location: 21 (remaining gas: 1039982.331 units remaining) + - location: 21 (remaining gas: 1039985.691 units remaining) [ (Right 3) 10 ] - - location: 22 (remaining gas: 1039982.321 units remaining) + - location: 22 (remaining gas: 1039985.681 units remaining) [ 3 10 ] - - location: 32 (remaining gas: 1039982.311 units remaining) + - location: 32 (remaining gas: 1039985.671 units remaining) [ 10 3 ] - - location: 33 (remaining gas: 1039982.171 units remaining) + - location: 33 (remaining gas: 1039985.601 units remaining) [ (Some (Pair 3 1)) ] - - location: 34 (remaining gas: 1039982.156 units remaining) + - location: 34 (remaining gas: 1039985.591 units remaining) [ (Right (Some (Pair 3 1))) ] - - location: 22 (remaining gas: 1039982.141 units remaining) + - location: 22 (remaining gas: 1039985.581 units remaining) [ (Right (Some (Pair 3 1))) ] - - location: 39 (remaining gas: 1039982.126 units remaining) + - location: 39 (remaining gas: 1039985.571 units remaining) [ {} (Right (Some (Pair 3 1))) ] - - location: 41 (remaining gas: 1039982.111 units remaining) + - location: 41 (remaining gas: 1039985.561 units remaining) [ (Pair {} (Right (Some (Pair 3 1)))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out index 103f433bfc7a..d7adc1bb0e1a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ediv_mutez.tz-(Left None)-(Pair 5 (Right 10))-(Right (S.8ab987af15.out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 19 (remaining gas: 1039982.361 units remaining) + - location: 19 (remaining gas: 1039985.721 units remaining) [ (Pair (Pair 5 (Right 10)) (Left None)) ] - - location: 19 (remaining gas: 1039982.351 units remaining) + - location: 19 (remaining gas: 1039985.711 units remaining) [ (Pair 5 (Right 10)) ] - - location: 20 (remaining gas: 1039982.341 units remaining) + - location: 20 (remaining gas: 1039985.701 units remaining) [ 5 (Right 10) ] - - location: 21 (remaining gas: 1039982.331 units remaining) + - location: 21 (remaining gas: 1039985.691 units remaining) [ (Right 10) 5 ] - - location: 22 (remaining gas: 1039982.321 units remaining) + - location: 22 (remaining gas: 1039985.681 units remaining) [ 10 5 ] - - location: 32 (remaining gas: 1039982.311 units remaining) + - location: 32 (remaining gas: 1039985.671 units remaining) [ 5 10 ] - - location: 33 (remaining gas: 1039982.171 units remaining) + - location: 33 (remaining gas: 1039985.601 units remaining) [ (Some (Pair 0 5)) ] - - location: 34 (remaining gas: 1039982.156 units remaining) + - location: 34 (remaining gas: 1039985.591 units remaining) [ (Right (Some (Pair 0 5))) ] - - location: 22 (remaining gas: 1039982.141 units remaining) + - location: 22 (remaining gas: 1039985.581 units remaining) [ (Right (Some (Pair 0 5))) ] - - location: 39 (remaining gas: 1039982.126 units remaining) + - location: 39 (remaining gas: 1039985.571 units remaining) [ {} (Right (Some (Pair 0 5))) ] - - location: 41 (remaining gas: 1039982.111 units remaining) + - location: 41 (remaining gas: 1039985.561 units remaining) [ (Pair {} (Right (Some (Pair 0 5)))) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" index 723cda5f81f8..6a530f682d46 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[empty_map.tz-{}-Unit-{ Elt \"hello\" \"world\" }].out" @@ -7,27 +7,27 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039990.071 units remaining) + - location: 9 (remaining gas: 1039991.351 units remaining) [ (Pair Unit {}) ] - - location: 9 (remaining gas: 1039990.061 units remaining) + - location: 9 (remaining gas: 1039991.341 units remaining) [ ] - - location: 10 (remaining gas: 1039989.841 units remaining) + - location: 10 (remaining gas: 1039991.121 units remaining) [ {} ] - - location: 13 (remaining gas: 1039989.831 units remaining) + - location: 13 (remaining gas: 1039991.111 units remaining) [ "world" {} ] - - location: 16 (remaining gas: 1039989.816 units remaining) + - location: 16 (remaining gas: 1039991.101 units remaining) [ (Some "world") {} ] - - location: 17 (remaining gas: 1039989.806 units remaining) + - location: 17 (remaining gas: 1039991.091 units remaining) [ "hello" (Some "world") {} ] - - location: 20 (remaining gas: 1039989.716 units remaining) + - location: 20 (remaining gas: 1039991.001 units remaining) [ { Elt "hello" "world" } ] - - location: 21 (remaining gas: 1039989.701 units remaining) + - location: 21 (remaining gas: 1039990.991 units remaining) [ {} { Elt "hello" "world" } ] - - location: 23 (remaining gas: 1039989.686 units remaining) + - location: 23 (remaining gas: 1039990.981 units remaining) [ (Pair {} { Elt "hello" "world" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" index f623674d44b0..32ce63c5e4c5 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" @@ -7,42 +7,42 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039987.279 units remaining) + - location: 7 (remaining gas: 1039988.559 units remaining) [ (Pair "" "?") ] - - location: 7 (remaining gas: 1039987.269 units remaining) + - location: 7 (remaining gas: 1039988.549 units remaining) [ "" ] - - location: 8 (remaining gas: 1039987.259 units remaining) + - location: 8 (remaining gas: 1039988.539 units remaining) [ { PUSH string "_abc" ; NIL string ; SWAP ; CONS ; SWAP ; CONS ; CONCAT } "" ] - - location: 22 (remaining gas: 1039987.249 units remaining) + - location: 22 (remaining gas: 1039988.529 units remaining) [ "" { PUSH string "_abc" ; NIL string ; SWAP ; CONS ; SWAP ; CONS ; CONCAT } ] - - location: 12 (remaining gas: 1039987.239 units remaining) + - location: 12 (remaining gas: 1039988.519 units remaining) [ "_abc" "" ] - - location: 15 (remaining gas: 1039987.224 units remaining) + - location: 15 (remaining gas: 1039988.509 units remaining) [ {} "_abc" "" ] - - location: 17 (remaining gas: 1039987.214 units remaining) + - location: 17 (remaining gas: 1039988.499 units remaining) [ "_abc" {} "" ] - - location: 18 (remaining gas: 1039987.199 units remaining) + - location: 18 (remaining gas: 1039988.489 units remaining) [ { "_abc" } "" ] - - location: 19 (remaining gas: 1039987.189 units remaining) + - location: 19 (remaining gas: 1039988.479 units remaining) [ "" { "_abc" } ] - - location: 20 (remaining gas: 1039987.174 units remaining) + - location: 20 (remaining gas: 1039988.469 units remaining) [ { "" ; "_abc" } ] - - location: 21 (remaining gas: 1039987.054 units remaining) + - location: 21 (remaining gas: 1039988.349 units remaining) [ "_abc" ] - - location: 23 (remaining gas: 1039987.024 units remaining) + - location: 23 (remaining gas: 1039988.329 units remaining) [ "_abc" ] - - location: 24 (remaining gas: 1039987.009 units remaining) + - location: 24 (remaining gas: 1039988.319 units remaining) [ {} "_abc" ] - - location: 26 (remaining gas: 1039986.994 units remaining) + - location: 26 (remaining gas: 1039988.309 units remaining) [ (Pair {} "_abc") ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" index 22076adb6d63..b2e83dbe65dc 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[exec_concat.tz-\"?\"-\"test\"-\"test_abc\"].out" @@ -7,42 +7,42 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039987.239 units remaining) + - location: 7 (remaining gas: 1039988.519 units remaining) [ (Pair "test" "?") ] - - location: 7 (remaining gas: 1039987.229 units remaining) + - location: 7 (remaining gas: 1039988.509 units remaining) [ "test" ] - - location: 8 (remaining gas: 1039987.219 units remaining) + - location: 8 (remaining gas: 1039988.499 units remaining) [ { PUSH string "_abc" ; NIL string ; SWAP ; CONS ; SWAP ; CONS ; CONCAT } "test" ] - - location: 22 (remaining gas: 1039987.209 units remaining) + - location: 22 (remaining gas: 1039988.489 units remaining) [ "test" { PUSH string "_abc" ; NIL string ; SWAP ; CONS ; SWAP ; CONS ; CONCAT } ] - - location: 12 (remaining gas: 1039987.199 units remaining) + - location: 12 (remaining gas: 1039988.479 units remaining) [ "_abc" "test" ] - - location: 15 (remaining gas: 1039987.184 units remaining) + - location: 15 (remaining gas: 1039988.469 units remaining) [ {} "_abc" "test" ] - - location: 17 (remaining gas: 1039987.174 units remaining) + - location: 17 (remaining gas: 1039988.459 units remaining) [ "_abc" {} "test" ] - - location: 18 (remaining gas: 1039987.159 units remaining) + - location: 18 (remaining gas: 1039988.449 units remaining) [ { "_abc" } "test" ] - - location: 19 (remaining gas: 1039987.149 units remaining) + - location: 19 (remaining gas: 1039988.439 units remaining) [ "test" { "_abc" } ] - - location: 20 (remaining gas: 1039987.134 units remaining) + - location: 20 (remaining gas: 1039988.429 units remaining) [ { "test" ; "_abc" } ] - - location: 21 (remaining gas: 1039987.014 units remaining) + - location: 21 (remaining gas: 1039988.309 units remaining) [ "test_abc" ] - - location: 23 (remaining gas: 1039986.984 units remaining) + - location: 23 (remaining gas: 1039988.289 units remaining) [ "test_abc" ] - - location: 24 (remaining gas: 1039986.969 units remaining) + - location: 24 (remaining gas: 1039988.279 units remaining) [ {} "test_abc" ] - - location: 26 (remaining gas: 1039986.954 units remaining) + - location: 26 (remaining gas: 1039988.269 units remaining) [ (Pair {} "test_abc") ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out index 61a0e323bc8f..091227a57c88 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039991.133 units remaining) + - location: 8 (remaining gas: 1039991.773 units remaining) [ (Pair { 1 ; 2 ; 3 ; 4 } 111) ] - - location: 8 (remaining gas: 1039991.123 units remaining) + - location: 8 (remaining gas: 1039991.763 units remaining) [ { 1 ; 2 ; 3 ; 4 } ] - - location: 9 (remaining gas: 1039991.113 units remaining) + - location: 9 (remaining gas: 1039991.753 units remaining) [ 1 { 2 ; 3 ; 4 } ] - - location: 11 (remaining gas: 1039991.098 units remaining) + - location: 11 (remaining gas: 1039991.743 units remaining) [ { 2 ; 3 ; 4 } ] - - location: 13 (remaining gas: 1039991.088 units remaining) + - location: 13 (remaining gas: 1039991.733 units remaining) [ ] - - location: 11 (remaining gas: 1039991.058 units remaining) + - location: 11 (remaining gas: 1039991.713 units remaining) [ 1 ] - - location: 9 (remaining gas: 1039991.043 units remaining) + - location: 9 (remaining gas: 1039991.703 units remaining) [ 1 ] - - location: 18 (remaining gas: 1039991.028 units remaining) + - location: 18 (remaining gas: 1039991.693 units remaining) [ {} 1 ] - - location: 20 (remaining gas: 1039991.013 units remaining) + - location: 20 (remaining gas: 1039991.683 units remaining) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out index c027b2ef5869..7865e871f9c9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[first.tz-111-{ 4 }-4].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039991.433 units remaining) + - location: 8 (remaining gas: 1039992.073 units remaining) [ (Pair { 4 } 111) ] - - location: 8 (remaining gas: 1039991.423 units remaining) + - location: 8 (remaining gas: 1039992.063 units remaining) [ { 4 } ] - - location: 9 (remaining gas: 1039991.413 units remaining) + - location: 9 (remaining gas: 1039992.053 units remaining) [ 4 {} ] - - location: 11 (remaining gas: 1039991.398 units remaining) + - location: 11 (remaining gas: 1039992.043 units remaining) [ {} ] - - location: 13 (remaining gas: 1039991.388 units remaining) + - location: 13 (remaining gas: 1039992.033 units remaining) [ ] - - location: 11 (remaining gas: 1039991.358 units remaining) + - location: 11 (remaining gas: 1039992.013 units remaining) [ 4 ] - - location: 9 (remaining gas: 1039991.343 units remaining) + - location: 9 (remaining gas: 1039992.003 units remaining) [ 4 ] - - location: 18 (remaining gas: 1039991.328 units remaining) + - location: 18 (remaining gas: 1039991.993 units remaining) [ {} 4 ] - - location: 20 (remaining gas: 1039991.313 units remaining) + - location: 20 (remaining gas: 1039991.983 units remaining) [ (Pair {} 4) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" index 04741a23e71e..59180f11a28b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 4) {})-\"hello\"-(Pair .161d86cef6.out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039989.801 units remaining) + - location: 13 (remaining gas: 1039991.561 units remaining) [ (Pair "hello" (Some 4) {}) ] - - location: 13 (remaining gas: 1039989.791 units remaining) + - location: 13 (remaining gas: 1039991.551 units remaining) [ "hello" (Pair (Some 4) {}) ] - - location: 14 (remaining gas: 1039989.776 units remaining) + - location: 14 (remaining gas: 1039991.541 units remaining) [ (Pair (Some 4) {}) ] - - location: 16 (remaining gas: 1039989.766 units remaining) + - location: 16 (remaining gas: 1039991.531 units remaining) [ (Some 4) {} ] - - location: 14 (remaining gas: 1039989.736 units remaining) + - location: 14 (remaining gas: 1039991.511 units remaining) [ "hello" (Some 4) {} ] - - location: 17 (remaining gas: 1039989.641 units remaining) + - location: 17 (remaining gas: 1039991.416 units remaining) [ None { Elt "hello" 4 } ] - - location: 18 (remaining gas: 1039989.626 units remaining) + - location: 18 (remaining gas: 1039991.406 units remaining) [ (Pair None { Elt "hello" 4 }) ] - - location: 19 (remaining gas: 1039989.611 units remaining) + - location: 19 (remaining gas: 1039991.396 units remaining) [ {} (Pair None { Elt "hello" 4 }) ] - - location: 21 (remaining gas: 1039989.596 units remaining) + - location: 21 (remaining gas: 1039991.386 units remaining) [ (Pair {} None { Elt "hello" 4 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" index 81e3d779aa30..ab7144a40de7 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).684ab7e326.out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039989.477 units remaining) + - location: 13 (remaining gas: 1039991.237 units remaining) [ (Pair "hi" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039989.467 units remaining) + - location: 13 (remaining gas: 1039991.227 units remaining) [ "hi" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039989.452 units remaining) + - location: 14 (remaining gas: 1039991.217 units remaining) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039989.442 units remaining) + - location: 16 (remaining gas: 1039991.207 units remaining) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039989.412 units remaining) + - location: 14 (remaining gas: 1039991.187 units remaining) [ "hi" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039989.320 units remaining) + - location: 17 (remaining gas: 1039991.095 units remaining) [ None { Elt "hello" 4 ; Elt "hi" 5 } ] - - location: 18 (remaining gas: 1039989.305 units remaining) + - location: 18 (remaining gas: 1039991.085 units remaining) [ (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 19 (remaining gas: 1039989.290 units remaining) + - location: 19 (remaining gas: 1039991.075 units remaining) [ {} (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 21 (remaining gas: 1039989.275 units remaining) + - location: 21 (remaining gas: 1039991.065 units remaining) [ (Pair {} None { Elt "hello" 4 ; Elt "hi" 5 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" index b5cfd0be9663..a7f88bbee2eb 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair (Some 5) { Elt \"hello\" 4 }).d49817fb83.out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039989.447 units remaining) + - location: 13 (remaining gas: 1039991.207 units remaining) [ (Pair "hello" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039989.437 units remaining) + - location: 13 (remaining gas: 1039991.197 units remaining) [ "hello" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039989.422 units remaining) + - location: 14 (remaining gas: 1039991.187 units remaining) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039989.412 units remaining) + - location: 16 (remaining gas: 1039991.177 units remaining) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039989.382 units remaining) + - location: 14 (remaining gas: 1039991.157 units remaining) [ "hello" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039989.272 units remaining) + - location: 17 (remaining gas: 1039991.047 units remaining) [ (Some 4) { Elt "hello" 5 } ] - - location: 18 (remaining gas: 1039989.257 units remaining) + - location: 18 (remaining gas: 1039991.037 units remaining) [ (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 19 (remaining gas: 1039989.242 units remaining) + - location: 19 (remaining gas: 1039991.027 units remaining) [ {} (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 21 (remaining gas: 1039989.227 units remaining) + - location: 21 (remaining gas: 1039991.017 units remaining) [ (Pair {} (Some 4) { Elt "hello" 5 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" index cb7e2b348b54..5a32d2bf8049 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .6900b1da14.out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039989.292 units remaining) + - location: 13 (remaining gas: 1039991.052 units remaining) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (remaining gas: 1039989.282 units remaining) + - location: 13 (remaining gas: 1039991.042 units remaining) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (remaining gas: 1039989.267 units remaining) + - location: 14 (remaining gas: 1039991.032 units remaining) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (remaining gas: 1039989.257 units remaining) + - location: 16 (remaining gas: 1039991.022 units remaining) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039989.227 units remaining) + - location: 14 (remaining gas: 1039991.002 units remaining) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039989.138 units remaining) + - location: 17 (remaining gas: 1039990.913 units remaining) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039989.123 units remaining) + - location: 18 (remaining gas: 1039990.903 units remaining) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039989.108 units remaining) + - location: 19 (remaining gas: 1039990.893 units remaining) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039989.093 units remaining) + - location: 21 (remaining gas: 1039990.883 units remaining) [ (Pair {} (Some 1) { Elt "2" 2 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" index 7659cdc408b5..dde6e35bfdc3 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"1\" 1 ; .bca0ede8be.out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039989.292 units remaining) + - location: 13 (remaining gas: 1039991.052 units remaining) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (remaining gas: 1039989.282 units remaining) + - location: 13 (remaining gas: 1039991.042 units remaining) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (remaining gas: 1039989.267 units remaining) + - location: 14 (remaining gas: 1039991.032 units remaining) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (remaining gas: 1039989.257 units remaining) + - location: 16 (remaining gas: 1039991.022 units remaining) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039989.227 units remaining) + - location: 14 (remaining gas: 1039991.002 units remaining) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039989.138 units remaining) + - location: 17 (remaining gas: 1039990.913 units remaining) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039989.123 units remaining) + - location: 18 (remaining gas: 1039990.903 units remaining) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039989.108 units remaining) + - location: 19 (remaining gas: 1039990.893 units remaining) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039989.093 units remaining) + - location: 21 (remaining gas: 1039990.883 units remaining) [ (Pair {} (Some 1) { Elt "2" 2 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" index a4110c1e65c5..456f75d3e14a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039989.547 units remaining) + - location: 13 (remaining gas: 1039991.307 units remaining) [ (Pair "hello" None { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039989.537 units remaining) + - location: 13 (remaining gas: 1039991.297 units remaining) [ "hello" (Pair None { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039989.522 units remaining) + - location: 14 (remaining gas: 1039991.287 units remaining) [ (Pair None { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039989.512 units remaining) + - location: 16 (remaining gas: 1039991.277 units remaining) [ None { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039989.482 units remaining) + - location: 14 (remaining gas: 1039991.257 units remaining) [ "hello" None { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039989.372 units remaining) + - location: 17 (remaining gas: 1039991.147 units remaining) [ (Some 4) {} ] - - location: 18 (remaining gas: 1039989.357 units remaining) + - location: 18 (remaining gas: 1039991.137 units remaining) [ (Pair (Some 4) {}) ] - - location: 19 (remaining gas: 1039989.342 units remaining) + - location: 19 (remaining gas: 1039991.127 units remaining) [ {} (Pair (Some 4) {}) ] - - location: 21 (remaining gas: 1039989.327 units remaining) + - location: 21 (remaining gas: 1039991.117 units remaining) [ (Pair {} (Some 4) {}) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" index 03e11eaf2f5d..5d6cf951067f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_and_update_map.tz-(Pair None {})-\"hello\"-(Pair None {})].out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039989.901 units remaining) + - location: 13 (remaining gas: 1039991.661 units remaining) [ (Pair "hello" None {}) ] - - location: 13 (remaining gas: 1039989.891 units remaining) + - location: 13 (remaining gas: 1039991.651 units remaining) [ "hello" (Pair None {}) ] - - location: 14 (remaining gas: 1039989.876 units remaining) + - location: 14 (remaining gas: 1039991.641 units remaining) [ (Pair None {}) ] - - location: 16 (remaining gas: 1039989.866 units remaining) + - location: 16 (remaining gas: 1039991.631 units remaining) [ None {} ] - - location: 14 (remaining gas: 1039989.836 units remaining) + - location: 14 (remaining gas: 1039991.611 units remaining) [ "hello" None {} ] - - location: 17 (remaining gas: 1039989.741 units remaining) + - location: 17 (remaining gas: 1039991.516 units remaining) [ None {} ] - - location: 18 (remaining gas: 1039989.726 units remaining) + - location: 18 (remaining gas: 1039991.506 units remaining) [ (Pair None {}) ] - - location: 19 (remaining gas: 1039989.711 units remaining) + - location: 19 (remaining gas: 1039991.496 units remaining) [ {} (Pair None {}) ] - - location: 21 (remaining gas: 1039989.696 units remaining) + - location: 21 (remaining gas: 1039991.486 units remaining) [ (Pair {} None {}) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" index 43f32db00b52..393751009318 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"1\" \"one\" ; .bc4127094e.out" @@ -7,35 +7,35 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039986.716 units remaining) + - location: 12 (remaining gas: 1039988.316 units remaining) [ (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 12 (remaining gas: 1039986.706 units remaining) + - location: 12 (remaining gas: 1039988.306 units remaining) [ (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 13 (remaining gas: 1039986.696 units remaining) + - location: 13 (remaining gas: 1039988.296 units remaining) [ "1" (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 14 (remaining gas: 1039986.681 units remaining) + - location: 14 (remaining gas: 1039988.286 units remaining) [ (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 17 (remaining gas: 1039986.671 units remaining) + - location: 17 (remaining gas: 1039988.276 units remaining) [ (Pair None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 18 (remaining gas: 1039986.661 units remaining) + - location: 18 (remaining gas: 1039988.266 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } ] - - location: 19 (remaining gas: 1039986.651 units remaining) + - location: 19 (remaining gas: 1039988.256 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } { Elt "1" "one" ; Elt "2" "two" } ] - - location: 14 (remaining gas: 1039986.621 units remaining) + - location: 14 (remaining gas: 1039988.236 units remaining) [ "1" { Elt "1" "one" ; Elt "2" "two" } { Elt "1" "one" ; Elt "2" "two" } ] - - location: 20 (remaining gas: 1039986.538 units remaining) + - location: 20 (remaining gas: 1039988.153 units remaining) [ (Some "one") { Elt "1" "one" ; Elt "2" "two" } ] - - location: 21 (remaining gas: 1039986.523 units remaining) + - location: 21 (remaining gas: 1039988.143 units remaining) [ (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 22 (remaining gas: 1039986.508 units remaining) + - location: 22 (remaining gas: 1039988.133 units remaining) [ {} (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 24 (remaining gas: 1039986.493 units remaining) + - location: 24 (remaining gas: 1039988.123 units remaining) [ (Pair {} (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" index 8eb283c6fcda..1aba8737244f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"\"-(P.0c03056487.out" @@ -7,35 +7,35 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039987.075 units remaining) + - location: 12 (remaining gas: 1039988.675 units remaining) [ (Pair "" None { Elt "hello" "hi" }) ] - - location: 12 (remaining gas: 1039987.065 units remaining) + - location: 12 (remaining gas: 1039988.665 units remaining) [ (Pair "" None { Elt "hello" "hi" }) (Pair "" None { Elt "hello" "hi" }) ] - - location: 13 (remaining gas: 1039987.055 units remaining) + - location: 13 (remaining gas: 1039988.655 units remaining) [ "" (Pair "" None { Elt "hello" "hi" }) ] - - location: 14 (remaining gas: 1039987.040 units remaining) + - location: 14 (remaining gas: 1039988.645 units remaining) [ (Pair "" None { Elt "hello" "hi" }) ] - - location: 17 (remaining gas: 1039987.030 units remaining) + - location: 17 (remaining gas: 1039988.635 units remaining) [ (Pair None { Elt "hello" "hi" }) ] - - location: 18 (remaining gas: 1039987.020 units remaining) + - location: 18 (remaining gas: 1039988.625 units remaining) [ { Elt "hello" "hi" } ] - - location: 19 (remaining gas: 1039987.010 units remaining) + - location: 19 (remaining gas: 1039988.615 units remaining) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039986.980 units remaining) + - location: 14 (remaining gas: 1039988.595 units remaining) [ "" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039986.900 units remaining) + - location: 20 (remaining gas: 1039988.515 units remaining) [ None { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039986.885 units remaining) + - location: 21 (remaining gas: 1039988.505 units remaining) [ (Pair None { Elt "hello" "hi" }) ] - - location: 22 (remaining gas: 1039986.870 units remaining) + - location: 22 (remaining gas: 1039988.495 units remaining) [ {} (Pair None { Elt "hello" "hi" }) ] - - location: 24 (remaining gas: 1039986.855 units remaining) + - location: 24 (remaining gas: 1039988.485 units remaining) [ (Pair {} None { Elt "hello" "hi" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" index 99ee022e31d5..b71f61f8138e 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[get_map_value.tz-(Pair None { Elt \"hello\" \"hi\" })-\"hell.cc45544c66.out" @@ -7,35 +7,35 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039987.025 units remaining) + - location: 12 (remaining gas: 1039988.625 units remaining) [ (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 12 (remaining gas: 1039987.015 units remaining) + - location: 12 (remaining gas: 1039988.615 units remaining) [ (Pair "hello" None { Elt "hello" "hi" }) (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 13 (remaining gas: 1039987.005 units remaining) + - location: 13 (remaining gas: 1039988.605 units remaining) [ "hello" (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 14 (remaining gas: 1039986.990 units remaining) + - location: 14 (remaining gas: 1039988.595 units remaining) [ (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 17 (remaining gas: 1039986.980 units remaining) + - location: 17 (remaining gas: 1039988.585 units remaining) [ (Pair None { Elt "hello" "hi" }) ] - - location: 18 (remaining gas: 1039986.970 units remaining) + - location: 18 (remaining gas: 1039988.575 units remaining) [ { Elt "hello" "hi" } ] - - location: 19 (remaining gas: 1039986.960 units remaining) + - location: 19 (remaining gas: 1039988.565 units remaining) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039986.930 units remaining) + - location: 14 (remaining gas: 1039988.545 units remaining) [ "hello" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039986.840 units remaining) + - location: 20 (remaining gas: 1039988.455 units remaining) [ (Some "hi") { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039986.825 units remaining) + - location: 21 (remaining gas: 1039988.445 units remaining) [ (Pair (Some "hi") { Elt "hello" "hi" }) ] - - location: 22 (remaining gas: 1039986.810 units remaining) + - location: 22 (remaining gas: 1039988.435 units remaining) [ {} (Pair (Some "hi") { Elt "hello" "hi" }) ] - - location: 24 (remaining gas: 1039986.795 units remaining) + - location: 24 (remaining gas: 1039988.425 units remaining) [ (Pair {} (Some "hi") { Elt "hello" "hi" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" index a3b9ef45c25b..aacf22f25d79 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAb.613ad6b637.out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039668.922 units remaining) + - location: 8 (remaining gas: 1039669.722 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" None) ] - - location: 8 (remaining gas: 1039668.912 units remaining) + - location: 8 (remaining gas: 1039669.712 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" ] - - location: 9 (remaining gas: 1039668.257 units remaining) + - location: 9 (remaining gas: 1039669.107 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 10 (remaining gas: 1039668.242 units remaining) + - location: 10 (remaining gas: 1039669.097 units remaining) [ (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") ] - - location: 11 (remaining gas: 1039668.227 units remaining) + - location: 11 (remaining gas: 1039669.087 units remaining) [ {} (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") ] - - location: 13 (remaining gas: 1039668.212 units remaining) + - location: 13 (remaining gas: 1039669.077 units remaining) [ (Pair {} (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" index 4eff0f9dee97..b6ba3bc7d502 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_key.tz-None-\"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTa.da50984e8d.out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039668.922 units remaining) + - location: 8 (remaining gas: 1039669.722 units remaining) [ (Pair "edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES" None) ] - - location: 8 (remaining gas: 1039668.912 units remaining) + - location: 8 (remaining gas: 1039669.712 units remaining) [ "edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES" ] - - location: 9 (remaining gas: 1039668.257 units remaining) + - location: 9 (remaining gas: 1039669.107 units remaining) [ "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k" ] - - location: 10 (remaining gas: 1039668.242 units remaining) + - location: 10 (remaining gas: 1039669.097 units remaining) [ (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") ] - - location: 11 (remaining gas: 1039668.227 units remaining) + - location: 11 (remaining gas: 1039669.087 units remaining) [ {} (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") ] - - location: 13 (remaining gas: 1039668.212 units remaining) + - location: 13 (remaining gas: 1039669.077 units remaining) [ (Pair {} (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" index 57a29f4430c9..a34aaf6acdde 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"12345\"-0xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.206 units remaining) + - location: 7 (remaining gas: 1039994.846 units remaining) [ (Pair "12345" 0x00) ] - - location: 7 (remaining gas: 1039994.196 units remaining) + - location: 7 (remaining gas: 1039994.836 units remaining) [ "12345" ] - - location: 8 (remaining gas: 1039993.705 units remaining) + - location: 8 (remaining gas: 1039994.345 units remaining) [ 0x0501000000053132333435 ] - - location: 9 (remaining gas: 1039993.263 units remaining) + - location: 9 (remaining gas: 1039993.903 units remaining) [ 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f ] - - location: 10 (remaining gas: 1039993.248 units remaining) + - location: 10 (remaining gas: 1039993.893 units remaining) [ {} 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f ] - - location: 12 (remaining gas: 1039993.233 units remaining) + - location: 12 (remaining gas: 1039993.883 units remaining) [ (Pair {} 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" index 619ef6fc1053..137be6ce2e22 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[hash_string.tz-0x00-\"abcdefg\"-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.186 units remaining) + - location: 7 (remaining gas: 1039994.826 units remaining) [ (Pair "abcdefg" 0x00) ] - - location: 7 (remaining gas: 1039994.176 units remaining) + - location: 7 (remaining gas: 1039994.816 units remaining) [ "abcdefg" ] - - location: 8 (remaining gas: 1039993.619 units remaining) + - location: 8 (remaining gas: 1039994.259 units remaining) [ 0x05010000000761626364656667 ] - - location: 9 (remaining gas: 1039993.175 units remaining) + - location: 9 (remaining gas: 1039993.815 units remaining) [ 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e ] - - location: 10 (remaining gas: 1039993.160 units remaining) + - location: 10 (remaining gas: 1039993.805 units remaining) [ {} 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e ] - - location: 12 (remaining gas: 1039993.145 units remaining) + - location: 12 (remaining gas: 1039993.795 units remaining) [ (Pair {} 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out index d8df31a0d468..99eb3ee98657 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-False-(Some False)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039991.405 units remaining) + - location: 8 (remaining gas: 1039992.365 units remaining) [ (Pair False None) ] - - location: 8 (remaining gas: 1039991.395 units remaining) + - location: 8 (remaining gas: 1039992.355 units remaining) [ False ] - - location: 9 (remaining gas: 1039991.385 units remaining) + - location: 9 (remaining gas: 1039992.345 units remaining) [ ] - - location: 15 (remaining gas: 1039991.375 units remaining) + - location: 15 (remaining gas: 1039992.335 units remaining) [ False ] - - location: 9 (remaining gas: 1039991.360 units remaining) + - location: 9 (remaining gas: 1039992.325 units remaining) [ False ] - - location: 18 (remaining gas: 1039991.345 units remaining) + - location: 18 (remaining gas: 1039992.315 units remaining) [ (Some False) ] - - location: 19 (remaining gas: 1039991.330 units remaining) + - location: 19 (remaining gas: 1039992.305 units remaining) [ {} (Some False) ] - - location: 21 (remaining gas: 1039991.315 units remaining) + - location: 21 (remaining gas: 1039992.295 units remaining) [ (Pair {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out index 6e0f70b965b5..b384ce5fb366 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if.tz-None-True-(Some True)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039991.405 units remaining) + - location: 8 (remaining gas: 1039992.365 units remaining) [ (Pair True None) ] - - location: 8 (remaining gas: 1039991.395 units remaining) + - location: 8 (remaining gas: 1039992.355 units remaining) [ True ] - - location: 9 (remaining gas: 1039991.385 units remaining) + - location: 9 (remaining gas: 1039992.345 units remaining) [ ] - - location: 11 (remaining gas: 1039991.375 units remaining) + - location: 11 (remaining gas: 1039992.335 units remaining) [ True ] - - location: 9 (remaining gas: 1039991.360 units remaining) + - location: 9 (remaining gas: 1039992.325 units remaining) [ True ] - - location: 18 (remaining gas: 1039991.345 units remaining) + - location: 18 (remaining gas: 1039992.315 units remaining) [ (Some True) ] - - location: 19 (remaining gas: 1039991.330 units remaining) + - location: 19 (remaining gas: 1039992.305 units remaining) [ {} (Some True) ] - - location: 21 (remaining gas: 1039991.315 units remaining) + - location: 21 (remaining gas: 1039992.295 units remaining) [ (Pair {} (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" index c53a481acfe1..ddd027753686 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-(Some \"hello\")-\"hello\"].out" @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039992.511 units remaining) + - location: 8 (remaining gas: 1039993.311 units remaining) [ (Pair (Some "hello") "?") ] - - location: 8 (remaining gas: 1039992.501 units remaining) + - location: 8 (remaining gas: 1039993.301 units remaining) [ (Some "hello") ] - - location: 10 (remaining gas: 1039992.491 units remaining) + - location: 10 (remaining gas: 1039993.291 units remaining) [ "hello" ] - - location: 10 (remaining gas: 1039992.476 units remaining) + - location: 10 (remaining gas: 1039993.281 units remaining) [ "hello" ] - - location: 16 (remaining gas: 1039992.461 units remaining) + - location: 16 (remaining gas: 1039993.271 units remaining) [ {} "hello" ] - - location: 18 (remaining gas: 1039992.446 units remaining) + - location: 18 (remaining gas: 1039993.261 units remaining) [ (Pair {} "hello") ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" index c6078e341ccf..03b7cf21ad43 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[if_some.tz-\"?\"-None-\"\"].out" @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039992.675 units remaining) + - location: 8 (remaining gas: 1039993.475 units remaining) [ (Pair None "?") ] - - location: 8 (remaining gas: 1039992.665 units remaining) + - location: 8 (remaining gas: 1039993.465 units remaining) [ None ] - - location: 10 (remaining gas: 1039992.655 units remaining) + - location: 10 (remaining gas: 1039993.455 units remaining) [ ] - - location: 12 (remaining gas: 1039992.645 units remaining) + - location: 12 (remaining gas: 1039993.445 units remaining) [ "" ] - - location: 10 (remaining gas: 1039992.630 units remaining) + - location: 10 (remaining gas: 1039993.435 units remaining) [ "" ] - - location: 16 (remaining gas: 1039992.615 units remaining) + - location: 16 (remaining gas: 1039993.425 units remaining) [ {} "" ] - - location: 18 (remaining gas: 1039992.600 units remaining) + - location: 18 (remaining gas: 1039993.415 units remaining) [ (Pair {} "") ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out index 8d78b6c68596..3e7e6aac1008 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-0-(Some 0)].out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.922 units remaining) + - location: 8 (remaining gas: 1039994.722 units remaining) [ (Pair 0 None) ] - - location: 8 (remaining gas: 1039993.912 units remaining) + - location: 8 (remaining gas: 1039994.712 units remaining) [ 0 ] - - location: 9 (remaining gas: 1039993.897 units remaining) + - location: 9 (remaining gas: 1039994.702 units remaining) [ 0 ] - - location: 10 (remaining gas: 1039993.882 units remaining) + - location: 10 (remaining gas: 1039994.692 units remaining) [ (Some 0) ] - - location: 11 (remaining gas: 1039993.867 units remaining) + - location: 11 (remaining gas: 1039994.682 units remaining) [ {} (Some 0) ] - - location: 13 (remaining gas: 1039993.852 units remaining) + - location: 13 (remaining gas: 1039994.672 units remaining) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out index 52562caf6018..f9a82cbb25b3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-1-(Some 1)].out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.922 units remaining) + - location: 8 (remaining gas: 1039994.722 units remaining) [ (Pair 1 None) ] - - location: 8 (remaining gas: 1039993.912 units remaining) + - location: 8 (remaining gas: 1039994.712 units remaining) [ 1 ] - - location: 9 (remaining gas: 1039993.897 units remaining) + - location: 9 (remaining gas: 1039994.702 units remaining) [ 1 ] - - location: 10 (remaining gas: 1039993.882 units remaining) + - location: 10 (remaining gas: 1039994.692 units remaining) [ (Some 1) ] - - location: 11 (remaining gas: 1039993.867 units remaining) + - location: 11 (remaining gas: 1039994.682 units remaining) [ {} (Some 1) ] - - location: 13 (remaining gas: 1039993.852 units remaining) + - location: 13 (remaining gas: 1039994.672 units remaining) [ (Pair {} (Some 1)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out index 27184d1204ac..174547fc600c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[int.tz-None-9999-(Some 9999)].out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.922 units remaining) + - location: 8 (remaining gas: 1039994.722 units remaining) [ (Pair 9999 None) ] - - location: 8 (remaining gas: 1039993.912 units remaining) + - location: 8 (remaining gas: 1039994.712 units remaining) [ 9999 ] - - location: 9 (remaining gas: 1039993.897 units remaining) + - location: 9 (remaining gas: 1039994.702 units remaining) [ 9999 ] - - location: 10 (remaining gas: 1039993.882 units remaining) + - location: 10 (remaining gas: 1039994.692 units remaining) [ (Some 9999) ] - - location: 11 (remaining gas: 1039993.867 units remaining) + - location: 11 (remaining gas: 1039994.682 units remaining) [ {} (Some 9999) ] - - location: 13 (remaining gas: 1039993.852 units remaining) + - location: 13 (remaining gas: 1039994.672 units remaining) [ (Pair {} (Some 9999)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out index 0fc27b979846..3120fd252a6e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[keccak.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xb6e.34c02678c9.out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.922 units remaining) + - location: 8 (remaining gas: 1039994.722 units remaining) [ (Pair 0x48656c6c6f2c20776f726c6421 None) ] - - location: 8 (remaining gas: 1039993.912 units remaining) + - location: 8 (remaining gas: 1039994.712 units remaining) [ 0x48656c6c6f2c20776f726c6421 ] - - location: 9 (remaining gas: 1039992.455 units remaining) + - location: 9 (remaining gas: 1039993.255 units remaining) [ 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4 ] - - location: 10 (remaining gas: 1039992.440 units remaining) + - location: 10 (remaining gas: 1039993.245 units remaining) [ (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) ] - - location: 11 (remaining gas: 1039992.425 units remaining) + - location: 11 (remaining gas: 1039993.235 units remaining) [ {} (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) ] - - location: 13 (remaining gas: 1039992.410 units remaining) + - location: 13 (remaining gas: 1039993.225 units remaining) [ (Pair {} (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" index 295ccfc446f0..f566320c161b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039991.046 units remaining) + - location: 11 (remaining gas: 1039992.486 units remaining) [ (Pair (Left True) (Left "X")) ] - - location: 11 (remaining gas: 1039991.036 units remaining) + - location: 11 (remaining gas: 1039992.476 units remaining) [ (Left True) ] - - location: 12 (remaining gas: 1039991.026 units remaining) + - location: 12 (remaining gas: 1039992.466 units remaining) [ True ] - - location: 14 (remaining gas: 1039991.011 units remaining) + - location: 14 (remaining gas: 1039992.456 units remaining) [ (Right True) ] - - location: 12 (remaining gas: 1039990.996 units remaining) + - location: 12 (remaining gas: 1039992.446 units remaining) [ (Right True) ] - - location: 19 (remaining gas: 1039990.981 units remaining) + - location: 19 (remaining gas: 1039992.436 units remaining) [ {} (Right True) ] - - location: 21 (remaining gas: 1039990.966 units remaining) + - location: 21 (remaining gas: 1039992.426 units remaining) [ (Pair {} (Right True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" index 30c50c6b4e04..47798746b552 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039991.022 units remaining) + - location: 11 (remaining gas: 1039992.462 units remaining) [ (Pair (Right "a") (Left "X")) ] - - location: 11 (remaining gas: 1039991.012 units remaining) + - location: 11 (remaining gas: 1039992.452 units remaining) [ (Right "a") ] - - location: 12 (remaining gas: 1039991.002 units remaining) + - location: 12 (remaining gas: 1039992.442 units remaining) [ "a" ] - - location: 17 (remaining gas: 1039990.987 units remaining) + - location: 17 (remaining gas: 1039992.432 units remaining) [ (Left "a") ] - - location: 12 (remaining gas: 1039990.972 units remaining) + - location: 12 (remaining gas: 1039992.422 units remaining) [ (Left "a") ] - - location: 19 (remaining gas: 1039990.957 units remaining) + - location: 19 (remaining gas: 1039992.412 units remaining) [ {} (Left "a") ] - - location: 21 (remaining gas: 1039990.942 units remaining) + - location: 21 (remaining gas: 1039992.402 units remaining) [ (Pair {} (Left "a")) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out index 95e375d860c4..f3992e56cdbb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[level.tz-111-Unit-1].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.913 units remaining) + - location: 7 (remaining gas: 1039995.553 units remaining) [ (Pair Unit 111) ] - - location: 7 (remaining gas: 1039994.903 units remaining) + - location: 7 (remaining gas: 1039995.543 units remaining) [ ] - - location: 8 (remaining gas: 1039994.888 units remaining) + - location: 8 (remaining gas: 1039995.533 units remaining) [ 1 ] - - location: 9 (remaining gas: 1039994.873 units remaining) + - location: 9 (remaining gas: 1039995.523 units remaining) [ {} 1 ] - - location: 11 (remaining gas: 1039994.858 units remaining) + - location: 11 (remaining gas: 1039995.513 units remaining) [ (Pair {} 1) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" index 32df68e11979..860fd1753fd4 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039992.953 units remaining) + - location: 8 (remaining gas: 1039993.753 units remaining) [ (Pair { "d" ; "e" ; "f" } "abc") ] - - location: 8 (remaining gas: 1039992.943 units remaining) + - location: 8 (remaining gas: 1039993.743 units remaining) [ { "d" ; "e" ; "f" } "abc" ] - - location: 9 (remaining gas: 1039992.933 units remaining) + - location: 9 (remaining gas: 1039993.733 units remaining) [ "abc" { "d" ; "e" ; "f" } ] - - location: 10 (remaining gas: 1039992.918 units remaining) + - location: 10 (remaining gas: 1039993.723 units remaining) [ { "abc" ; "d" ; "e" ; "f" } ] - - location: 11 (remaining gas: 1039992.778 units remaining) + - location: 11 (remaining gas: 1039993.583 units remaining) [ "abcdef" ] - - location: 12 (remaining gas: 1039992.763 units remaining) + - location: 12 (remaining gas: 1039993.573 units remaining) [ {} "abcdef" ] - - location: 14 (remaining gas: 1039992.748 units remaining) + - location: 14 (remaining gas: 1039993.563 units remaining) [ (Pair {} "abcdef") ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" index ae0ad05d9676..40b49bf327ef 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat.tz-\"abc\"-{}-\"abc\"].out" @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.325 units remaining) + - location: 8 (remaining gas: 1039994.125 units remaining) [ (Pair {} "abc") ] - - location: 8 (remaining gas: 1039993.315 units remaining) + - location: 8 (remaining gas: 1039994.115 units remaining) [ {} "abc" ] - - location: 9 (remaining gas: 1039993.305 units remaining) + - location: 9 (remaining gas: 1039994.105 units remaining) [ "abc" {} ] - - location: 10 (remaining gas: 1039993.290 units remaining) + - location: 10 (remaining gas: 1039994.095 units remaining) [ { "abc" } ] - - location: 11 (remaining gas: 1039993.180 units remaining) + - location: 11 (remaining gas: 1039993.985 units remaining) [ "abc" ] - - location: 12 (remaining gas: 1039993.165 units remaining) + - location: 12 (remaining gas: 1039993.975 units remaining) [ {} "abc" ] - - location: 14 (remaining gas: 1039993.150 units remaining) + - location: 14 (remaining gas: 1039993.965 units remaining) [ (Pair {} "abc") ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out index 60fae6ae4be3..6abc7fe8613d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.069 units remaining) + - location: 8 (remaining gas: 1039993.869 units remaining) [ (Pair { 0x00 ; 0x11 ; 0x00 } 0x) ] - - location: 8 (remaining gas: 1039993.059 units remaining) + - location: 8 (remaining gas: 1039993.859 units remaining) [ { 0x00 ; 0x11 ; 0x00 } 0x ] - - location: 9 (remaining gas: 1039993.049 units remaining) + - location: 9 (remaining gas: 1039993.849 units remaining) [ 0x { 0x00 ; 0x11 ; 0x00 } ] - - location: 10 (remaining gas: 1039993.034 units remaining) + - location: 10 (remaining gas: 1039993.839 units remaining) [ { 0x ; 0x00 ; 0x11 ; 0x00 } ] - - location: 11 (remaining gas: 1039992.894 units remaining) + - location: 11 (remaining gas: 1039993.699 units remaining) [ 0x001100 ] - - location: 12 (remaining gas: 1039992.879 units remaining) + - location: 12 (remaining gas: 1039993.689 units remaining) [ {} 0x001100 ] - - location: 14 (remaining gas: 1039992.864 units remaining) + - location: 14 (remaining gas: 1039993.679 units remaining) [ (Pair {} 0x001100) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out index 501f7618cf55..77a314911a5f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x-{}-0x].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.369 units remaining) + - location: 8 (remaining gas: 1039994.169 units remaining) [ (Pair {} 0x) ] - - location: 8 (remaining gas: 1039993.359 units remaining) + - location: 8 (remaining gas: 1039994.159 units remaining) [ {} 0x ] - - location: 9 (remaining gas: 1039993.349 units remaining) + - location: 9 (remaining gas: 1039994.149 units remaining) [ 0x {} ] - - location: 10 (remaining gas: 1039993.334 units remaining) + - location: 10 (remaining gas: 1039994.139 units remaining) [ { 0x } ] - - location: 11 (remaining gas: 1039993.224 units remaining) + - location: 11 (remaining gas: 1039994.029 units remaining) [ 0x ] - - location: 12 (remaining gas: 1039993.209 units remaining) + - location: 12 (remaining gas: 1039994.019 units remaining) [ {} 0x ] - - location: 14 (remaining gas: 1039993.194 units remaining) + - location: 14 (remaining gas: 1039994.009 units remaining) [ (Pair {} 0x) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out index b3fc3387aba8..22ca32d7086e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0x00ab-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.069 units remaining) + - location: 8 (remaining gas: 1039993.869 units remaining) [ (Pair { 0xcd ; 0xef ; 0x00 } 0x00ab) ] - - location: 8 (remaining gas: 1039993.059 units remaining) + - location: 8 (remaining gas: 1039993.859 units remaining) [ { 0xcd ; 0xef ; 0x00 } 0x00ab ] - - location: 9 (remaining gas: 1039993.049 units remaining) + - location: 9 (remaining gas: 1039993.849 units remaining) [ 0x00ab { 0xcd ; 0xef ; 0x00 } ] - - location: 10 (remaining gas: 1039993.034 units remaining) + - location: 10 (remaining gas: 1039993.839 units remaining) [ { 0x00ab ; 0xcd ; 0xef ; 0x00 } ] - - location: 11 (remaining gas: 1039992.894 units remaining) + - location: 11 (remaining gas: 1039993.699 units remaining) [ 0x00abcdef00 ] - - location: 12 (remaining gas: 1039992.879 units remaining) + - location: 12 (remaining gas: 1039993.689 units remaining) [ {} 0x00abcdef00 ] - - location: 14 (remaining gas: 1039992.864 units remaining) + - location: 14 (remaining gas: 1039993.679 units remaining) [ (Pair {} 0x00abcdef00) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out index f2c72061d75e..bfec653c1a0b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_concat_bytes.tz-0xabcd-{}-0xabcd].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.369 units remaining) + - location: 8 (remaining gas: 1039994.169 units remaining) [ (Pair {} 0xabcd) ] - - location: 8 (remaining gas: 1039993.359 units remaining) + - location: 8 (remaining gas: 1039994.159 units remaining) [ {} 0xabcd ] - - location: 9 (remaining gas: 1039993.349 units remaining) + - location: 9 (remaining gas: 1039994.149 units remaining) [ 0xabcd {} ] - - location: 10 (remaining gas: 1039993.334 units remaining) + - location: 10 (remaining gas: 1039994.139 units remaining) [ { 0xabcd } ] - - location: 11 (remaining gas: 1039993.224 units remaining) + - location: 11 (remaining gas: 1039994.029 units remaining) [ 0xabcd ] - - location: 12 (remaining gas: 1039993.209 units remaining) + - location: 12 (remaining gas: 1039994.019 units remaining) [ {} 0xabcd ] - - location: 14 (remaining gas: 1039993.194 units remaining) + - location: 14 (remaining gas: 1039994.009 units remaining) [ (Pair {} 0xabcd) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" index 9b2b3897a9ae..8303218cddfd 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.504 units remaining) + - location: 9 (remaining gas: 1039995.304 units remaining) [ (Pair { "1" ; "2" ; "3" } { "" }) ] - - location: 9 (remaining gas: 1039994.494 units remaining) + - location: 9 (remaining gas: 1039995.294 units remaining) [ { "1" ; "2" ; "3" } ] - - location: 10 (remaining gas: 1039994.479 units remaining) + - location: 10 (remaining gas: 1039995.284 units remaining) [ {} { "1" ; "2" ; "3" } ] - - location: 12 (remaining gas: 1039994.464 units remaining) + - location: 12 (remaining gas: 1039995.274 units remaining) [ (Pair {} { "1" ; "2" ; "3" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" index 321c62f44f73..6d9ade7b2eef 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.504 units remaining) + - location: 9 (remaining gas: 1039995.304 units remaining) [ (Pair { "a" ; "b" ; "c" } { "" }) ] - - location: 9 (remaining gas: 1039994.494 units remaining) + - location: 9 (remaining gas: 1039995.294 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 10 (remaining gas: 1039994.479 units remaining) + - location: 10 (remaining gas: 1039995.284 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 12 (remaining gas: 1039994.464 units remaining) + - location: 12 (remaining gas: 1039995.274 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" index cbc61ea2041f..6160beffe4a7 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id.tz-{\"\"}-{}-{}].out" @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.876 units remaining) + - location: 9 (remaining gas: 1039995.676 units remaining) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039994.866 units remaining) + - location: 9 (remaining gas: 1039995.666 units remaining) [ {} ] - - location: 10 (remaining gas: 1039994.851 units remaining) + - location: 10 (remaining gas: 1039995.656 units remaining) [ {} {} ] - - location: 12 (remaining gas: 1039994.836 units remaining) + - location: 12 (remaining gas: 1039995.646 units remaining) [ (Pair {} {}) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" index 4dc13bce4cb7..fee41e3c5d89 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"1\" ; \"2\" ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.528 units remaining) + - location: 9 (remaining gas: 1039994.328 units remaining) [ (Pair { "1" ; "2" ; "3" } { "" }) ] - - location: 9 (remaining gas: 1039993.518 units remaining) + - location: 9 (remaining gas: 1039994.318 units remaining) [ { "1" ; "2" ; "3" } ] - - location: 10 (remaining gas: 1039993.518 units remaining) + - location: 10 (remaining gas: 1039994.318 units remaining) [ "1" ] - - location: 10 (remaining gas: 1039993.503 units remaining) + - location: 10 (remaining gas: 1039994.308 units remaining) [ "2" ] - - location: 10 (remaining gas: 1039993.488 units remaining) + - location: 10 (remaining gas: 1039994.298 units remaining) [ "3" ] - - location: 10 (remaining gas: 1039993.473 units remaining) + - location: 10 (remaining gas: 1039994.288 units remaining) [ { "1" ; "2" ; "3" } ] - - location: 12 (remaining gas: 1039993.458 units remaining) + - location: 12 (remaining gas: 1039994.278 units remaining) [ {} { "1" ; "2" ; "3" } ] - - location: 14 (remaining gas: 1039993.443 units remaining) + - location: 14 (remaining gas: 1039994.268 units remaining) [ (Pair {} { "1" ; "2" ; "3" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" index f34b9468ad55..716f12dfe084 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.528 units remaining) + - location: 9 (remaining gas: 1039994.328 units remaining) [ (Pair { "a" ; "b" ; "c" } { "" }) ] - - location: 9 (remaining gas: 1039993.518 units remaining) + - location: 9 (remaining gas: 1039994.318 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 10 (remaining gas: 1039993.518 units remaining) + - location: 10 (remaining gas: 1039994.318 units remaining) [ "a" ] - - location: 10 (remaining gas: 1039993.503 units remaining) + - location: 10 (remaining gas: 1039994.308 units remaining) [ "b" ] - - location: 10 (remaining gas: 1039993.488 units remaining) + - location: 10 (remaining gas: 1039994.298 units remaining) [ "c" ] - - location: 10 (remaining gas: 1039993.473 units remaining) + - location: 10 (remaining gas: 1039994.288 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 12 (remaining gas: 1039993.458 units remaining) + - location: 12 (remaining gas: 1039994.278 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 14 (remaining gas: 1039993.443 units remaining) + - location: 14 (remaining gas: 1039994.268 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" index e16e18c591c7..0bfaf343ded3 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_id_map.tz-{\"\"}-{}-{}].out" @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.900 units remaining) + - location: 9 (remaining gas: 1039994.700 units remaining) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039993.890 units remaining) + - location: 9 (remaining gas: 1039994.690 units remaining) [ {} ] - - location: 10 (remaining gas: 1039993.890 units remaining) + - location: 10 (remaining gas: 1039994.690 units remaining) [ {} ] - - location: 12 (remaining gas: 1039993.875 units remaining) + - location: 12 (remaining gas: 1039994.680 units remaining) [ {} {} ] - - location: 14 (remaining gas: 1039993.860 units remaining) + - location: 14 (remaining gas: 1039994.670 units remaining) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out index 3f1e5986ff8a..c0510703b4dc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039991.883 units remaining) + - location: 8 (remaining gas: 1039992.683 units remaining) [ (Pair { 10 ; 2 ; 1 } 0) ] - - location: 8 (remaining gas: 1039991.873 units remaining) + - location: 8 (remaining gas: 1039992.673 units remaining) [ { 10 ; 2 ; 1 } ] - - location: 9 (remaining gas: 1039991.863 units remaining) + - location: 9 (remaining gas: 1039992.663 units remaining) [ 1 { 10 ; 2 ; 1 } ] - - location: 12 (remaining gas: 1039991.853 units remaining) + - location: 12 (remaining gas: 1039992.653 units remaining) [ { 10 ; 2 ; 1 } 1 ] - - location: 13 (remaining gas: 1039991.853 units remaining) + - location: 13 (remaining gas: 1039992.653 units remaining) [ 10 1 ] - - location: 15 (remaining gas: 1039991.749 units remaining) + - location: 15 (remaining gas: 1039992.594 units remaining) [ 10 ] - - location: 13 (remaining gas: 1039991.734 units remaining) + - location: 13 (remaining gas: 1039992.584 units remaining) [ 2 10 ] - - location: 15 (remaining gas: 1039991.630 units remaining) + - location: 15 (remaining gas: 1039992.525 units remaining) [ 20 ] - - location: 13 (remaining gas: 1039991.615 units remaining) + - location: 13 (remaining gas: 1039992.515 units remaining) [ 1 20 ] - - location: 15 (remaining gas: 1039991.511 units remaining) + - location: 15 (remaining gas: 1039992.456 units remaining) [ 20 ] - - location: 13 (remaining gas: 1039991.496 units remaining) + - location: 13 (remaining gas: 1039992.446 units remaining) [ 20 ] - - location: 16 (remaining gas: 1039991.481 units remaining) + - location: 16 (remaining gas: 1039992.436 units remaining) [ {} 20 ] - - location: 18 (remaining gas: 1039991.466 units remaining) + - location: 18 (remaining gas: 1039992.426 units remaining) [ (Pair {} 20) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out index 450e37fb004b..e7e8d686fc4c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039991.883 units remaining) + - location: 8 (remaining gas: 1039992.683 units remaining) [ (Pair { 3 ; 6 ; 9 } 0) ] - - location: 8 (remaining gas: 1039991.873 units remaining) + - location: 8 (remaining gas: 1039992.673 units remaining) [ { 3 ; 6 ; 9 } ] - - location: 9 (remaining gas: 1039991.863 units remaining) + - location: 9 (remaining gas: 1039992.663 units remaining) [ 1 { 3 ; 6 ; 9 } ] - - location: 12 (remaining gas: 1039991.853 units remaining) + - location: 12 (remaining gas: 1039992.653 units remaining) [ { 3 ; 6 ; 9 } 1 ] - - location: 13 (remaining gas: 1039991.853 units remaining) + - location: 13 (remaining gas: 1039992.653 units remaining) [ 3 1 ] - - location: 15 (remaining gas: 1039991.749 units remaining) + - location: 15 (remaining gas: 1039992.594 units remaining) [ 3 ] - - location: 13 (remaining gas: 1039991.734 units remaining) + - location: 13 (remaining gas: 1039992.584 units remaining) [ 6 3 ] - - location: 15 (remaining gas: 1039991.630 units remaining) + - location: 15 (remaining gas: 1039992.525 units remaining) [ 18 ] - - location: 13 (remaining gas: 1039991.615 units remaining) + - location: 13 (remaining gas: 1039992.515 units remaining) [ 9 18 ] - - location: 15 (remaining gas: 1039991.511 units remaining) + - location: 15 (remaining gas: 1039992.456 units remaining) [ 162 ] - - location: 13 (remaining gas: 1039991.496 units remaining) + - location: 13 (remaining gas: 1039992.446 units remaining) [ 162 ] - - location: 16 (remaining gas: 1039991.481 units remaining) + - location: 16 (remaining gas: 1039992.436 units remaining) [ {} 162 ] - - location: 18 (remaining gas: 1039991.466 units remaining) + - location: 18 (remaining gas: 1039992.426 units remaining) [ (Pair {} 162) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out index a45d7de5a9ff..d8be07275f69 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out @@ -7,130 +7,130 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039985.979 units remaining) + - location: 9 (remaining gas: 1039986.939 units remaining) [ (Pair { 1 ; 1 ; 1 ; 1 } { 0 }) ] - - location: 9 (remaining gas: 1039985.969 units remaining) + - location: 9 (remaining gas: 1039986.929 units remaining) [ { 1 ; 1 ; 1 ; 1 } ] - - location: 10 (remaining gas: 1039985.959 units remaining) + - location: 10 (remaining gas: 1039986.919 units remaining) [ 0 { 1 ; 1 ; 1 ; 1 } ] - - location: 13 (remaining gas: 1039985.949 units remaining) + - location: 13 (remaining gas: 1039986.909 units remaining) [ { 1 ; 1 ; 1 ; 1 } 0 ] - - location: 14 (remaining gas: 1039985.949 units remaining) + - location: 14 (remaining gas: 1039986.909 units remaining) [ 1 0 ] - - location: 16 (remaining gas: 1039985.934 units remaining) + - location: 16 (remaining gas: 1039986.899 units remaining) [ 0 ] - - location: 18 (remaining gas: 1039985.924 units remaining) + - location: 18 (remaining gas: 1039986.889 units remaining) [ 0 0 ] - - location: 16 (remaining gas: 1039985.894 units remaining) + - location: 16 (remaining gas: 1039986.869 units remaining) [ 1 0 0 ] - - location: 19 (remaining gas: 1039985.839 units remaining) + - location: 19 (remaining gas: 1039986.834 units remaining) [ 1 0 ] - - location: 20 (remaining gas: 1039985.824 units remaining) + - location: 20 (remaining gas: 1039986.824 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039985.814 units remaining) + - location: 22 (remaining gas: 1039986.814 units remaining) [ 1 0 ] - - location: 25 (remaining gas: 1039985.759 units remaining) + - location: 25 (remaining gas: 1039986.779 units remaining) [ 1 ] - - location: 20 (remaining gas: 1039985.729 units remaining) + - location: 20 (remaining gas: 1039986.759 units remaining) [ 1 1 ] - - location: 14 (remaining gas: 1039985.714 units remaining) + - location: 14 (remaining gas: 1039986.749 units remaining) [ 1 1 ] - - location: 16 (remaining gas: 1039985.699 units remaining) + - location: 16 (remaining gas: 1039986.739 units remaining) [ 1 ] - - location: 18 (remaining gas: 1039985.689 units remaining) + - location: 18 (remaining gas: 1039986.729 units remaining) [ 1 1 ] - - location: 16 (remaining gas: 1039985.659 units remaining) + - location: 16 (remaining gas: 1039986.709 units remaining) [ 1 1 1 ] - - location: 19 (remaining gas: 1039985.604 units remaining) + - location: 19 (remaining gas: 1039986.674 units remaining) [ 2 1 ] - - location: 20 (remaining gas: 1039985.589 units remaining) + - location: 20 (remaining gas: 1039986.664 units remaining) [ 1 ] - - location: 22 (remaining gas: 1039985.579 units remaining) + - location: 22 (remaining gas: 1039986.654 units remaining) [ 1 1 ] - - location: 25 (remaining gas: 1039985.524 units remaining) + - location: 25 (remaining gas: 1039986.619 units remaining) [ 2 ] - - location: 20 (remaining gas: 1039985.494 units remaining) + - location: 20 (remaining gas: 1039986.599 units remaining) [ 2 2 ] - - location: 14 (remaining gas: 1039985.479 units remaining) + - location: 14 (remaining gas: 1039986.589 units remaining) [ 1 2 ] - - location: 16 (remaining gas: 1039985.464 units remaining) + - location: 16 (remaining gas: 1039986.579 units remaining) [ 2 ] - - location: 18 (remaining gas: 1039985.454 units remaining) + - location: 18 (remaining gas: 1039986.569 units remaining) [ 2 2 ] - - location: 16 (remaining gas: 1039985.424 units remaining) + - location: 16 (remaining gas: 1039986.549 units remaining) [ 1 2 2 ] - - location: 19 (remaining gas: 1039985.369 units remaining) + - location: 19 (remaining gas: 1039986.514 units remaining) [ 3 2 ] - - location: 20 (remaining gas: 1039985.354 units remaining) + - location: 20 (remaining gas: 1039986.504 units remaining) [ 2 ] - - location: 22 (remaining gas: 1039985.344 units remaining) + - location: 22 (remaining gas: 1039986.494 units remaining) [ 1 2 ] - - location: 25 (remaining gas: 1039985.289 units remaining) + - location: 25 (remaining gas: 1039986.459 units remaining) [ 3 ] - - location: 20 (remaining gas: 1039985.259 units remaining) + - location: 20 (remaining gas: 1039986.439 units remaining) [ 3 3 ] - - location: 14 (remaining gas: 1039985.244 units remaining) + - location: 14 (remaining gas: 1039986.429 units remaining) [ 1 3 ] - - location: 16 (remaining gas: 1039985.229 units remaining) + - location: 16 (remaining gas: 1039986.419 units remaining) [ 3 ] - - location: 18 (remaining gas: 1039985.219 units remaining) + - location: 18 (remaining gas: 1039986.409 units remaining) [ 3 3 ] - - location: 16 (remaining gas: 1039985.189 units remaining) + - location: 16 (remaining gas: 1039986.389 units remaining) [ 1 3 3 ] - - location: 19 (remaining gas: 1039985.134 units remaining) + - location: 19 (remaining gas: 1039986.354 units remaining) [ 4 3 ] - - location: 20 (remaining gas: 1039985.119 units remaining) + - location: 20 (remaining gas: 1039986.344 units remaining) [ 3 ] - - location: 22 (remaining gas: 1039985.109 units remaining) + - location: 22 (remaining gas: 1039986.334 units remaining) [ 1 3 ] - - location: 25 (remaining gas: 1039985.054 units remaining) + - location: 25 (remaining gas: 1039986.299 units remaining) [ 4 ] - - location: 20 (remaining gas: 1039985.024 units remaining) + - location: 20 (remaining gas: 1039986.279 units remaining) [ 4 4 ] - - location: 14 (remaining gas: 1039985.009 units remaining) + - location: 14 (remaining gas: 1039986.269 units remaining) [ { 1 ; 2 ; 3 ; 4 } 4 ] - - location: 26 (remaining gas: 1039984.994 units remaining) + - location: 26 (remaining gas: 1039986.259 units remaining) [ {} { 1 ; 2 ; 3 ; 4 } 4 ] - - location: 28 (remaining gas: 1039984.979 units remaining) + - location: 28 (remaining gas: 1039986.249 units remaining) [ (Pair {} { 1 ; 2 ; 3 ; 4 }) 4 ] - - location: 29 (remaining gas: 1039984.964 units remaining) + - location: 29 (remaining gas: 1039986.239 units remaining) [ 4 ] - - location: 31 (remaining gas: 1039984.954 units remaining) + - location: 31 (remaining gas: 1039986.229 units remaining) [ ] - - location: 29 (remaining gas: 1039984.924 units remaining) + - location: 29 (remaining gas: 1039986.209 units remaining) [ (Pair {} { 1 ; 2 ; 3 ; 4 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out index e1aaec5aedc5..6e0910a95c80 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out @@ -7,130 +7,130 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039985.979 units remaining) + - location: 9 (remaining gas: 1039986.939 units remaining) [ (Pair { 1 ; 2 ; 3 ; 0 } { 0 }) ] - - location: 9 (remaining gas: 1039985.969 units remaining) + - location: 9 (remaining gas: 1039986.929 units remaining) [ { 1 ; 2 ; 3 ; 0 } ] - - location: 10 (remaining gas: 1039985.959 units remaining) + - location: 10 (remaining gas: 1039986.919 units remaining) [ 0 { 1 ; 2 ; 3 ; 0 } ] - - location: 13 (remaining gas: 1039985.949 units remaining) + - location: 13 (remaining gas: 1039986.909 units remaining) [ { 1 ; 2 ; 3 ; 0 } 0 ] - - location: 14 (remaining gas: 1039985.949 units remaining) + - location: 14 (remaining gas: 1039986.909 units remaining) [ 1 0 ] - - location: 16 (remaining gas: 1039985.934 units remaining) + - location: 16 (remaining gas: 1039986.899 units remaining) [ 0 ] - - location: 18 (remaining gas: 1039985.924 units remaining) + - location: 18 (remaining gas: 1039986.889 units remaining) [ 0 0 ] - - location: 16 (remaining gas: 1039985.894 units remaining) + - location: 16 (remaining gas: 1039986.869 units remaining) [ 1 0 0 ] - - location: 19 (remaining gas: 1039985.839 units remaining) + - location: 19 (remaining gas: 1039986.834 units remaining) [ 1 0 ] - - location: 20 (remaining gas: 1039985.824 units remaining) + - location: 20 (remaining gas: 1039986.824 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039985.814 units remaining) + - location: 22 (remaining gas: 1039986.814 units remaining) [ 1 0 ] - - location: 25 (remaining gas: 1039985.759 units remaining) + - location: 25 (remaining gas: 1039986.779 units remaining) [ 1 ] - - location: 20 (remaining gas: 1039985.729 units remaining) + - location: 20 (remaining gas: 1039986.759 units remaining) [ 1 1 ] - - location: 14 (remaining gas: 1039985.714 units remaining) + - location: 14 (remaining gas: 1039986.749 units remaining) [ 2 1 ] - - location: 16 (remaining gas: 1039985.699 units remaining) + - location: 16 (remaining gas: 1039986.739 units remaining) [ 1 ] - - location: 18 (remaining gas: 1039985.689 units remaining) + - location: 18 (remaining gas: 1039986.729 units remaining) [ 1 1 ] - - location: 16 (remaining gas: 1039985.659 units remaining) + - location: 16 (remaining gas: 1039986.709 units remaining) [ 2 1 1 ] - - location: 19 (remaining gas: 1039985.604 units remaining) + - location: 19 (remaining gas: 1039986.674 units remaining) [ 3 1 ] - - location: 20 (remaining gas: 1039985.589 units remaining) + - location: 20 (remaining gas: 1039986.664 units remaining) [ 1 ] - - location: 22 (remaining gas: 1039985.579 units remaining) + - location: 22 (remaining gas: 1039986.654 units remaining) [ 1 1 ] - - location: 25 (remaining gas: 1039985.524 units remaining) + - location: 25 (remaining gas: 1039986.619 units remaining) [ 2 ] - - location: 20 (remaining gas: 1039985.494 units remaining) + - location: 20 (remaining gas: 1039986.599 units remaining) [ 3 2 ] - - location: 14 (remaining gas: 1039985.479 units remaining) + - location: 14 (remaining gas: 1039986.589 units remaining) [ 3 2 ] - - location: 16 (remaining gas: 1039985.464 units remaining) + - location: 16 (remaining gas: 1039986.579 units remaining) [ 2 ] - - location: 18 (remaining gas: 1039985.454 units remaining) + - location: 18 (remaining gas: 1039986.569 units remaining) [ 2 2 ] - - location: 16 (remaining gas: 1039985.424 units remaining) + - location: 16 (remaining gas: 1039986.549 units remaining) [ 3 2 2 ] - - location: 19 (remaining gas: 1039985.369 units remaining) + - location: 19 (remaining gas: 1039986.514 units remaining) [ 5 2 ] - - location: 20 (remaining gas: 1039985.354 units remaining) + - location: 20 (remaining gas: 1039986.504 units remaining) [ 2 ] - - location: 22 (remaining gas: 1039985.344 units remaining) + - location: 22 (remaining gas: 1039986.494 units remaining) [ 1 2 ] - - location: 25 (remaining gas: 1039985.289 units remaining) + - location: 25 (remaining gas: 1039986.459 units remaining) [ 3 ] - - location: 20 (remaining gas: 1039985.259 units remaining) + - location: 20 (remaining gas: 1039986.439 units remaining) [ 5 3 ] - - location: 14 (remaining gas: 1039985.244 units remaining) + - location: 14 (remaining gas: 1039986.429 units remaining) [ 0 3 ] - - location: 16 (remaining gas: 1039985.229 units remaining) + - location: 16 (remaining gas: 1039986.419 units remaining) [ 3 ] - - location: 18 (remaining gas: 1039985.219 units remaining) + - location: 18 (remaining gas: 1039986.409 units remaining) [ 3 3 ] - - location: 16 (remaining gas: 1039985.189 units remaining) + - location: 16 (remaining gas: 1039986.389 units remaining) [ 0 3 3 ] - - location: 19 (remaining gas: 1039985.134 units remaining) + - location: 19 (remaining gas: 1039986.354 units remaining) [ 3 3 ] - - location: 20 (remaining gas: 1039985.119 units remaining) + - location: 20 (remaining gas: 1039986.344 units remaining) [ 3 ] - - location: 22 (remaining gas: 1039985.109 units remaining) + - location: 22 (remaining gas: 1039986.334 units remaining) [ 1 3 ] - - location: 25 (remaining gas: 1039985.054 units remaining) + - location: 25 (remaining gas: 1039986.299 units remaining) [ 4 ] - - location: 20 (remaining gas: 1039985.024 units remaining) + - location: 20 (remaining gas: 1039986.279 units remaining) [ 3 4 ] - - location: 14 (remaining gas: 1039985.009 units remaining) + - location: 14 (remaining gas: 1039986.269 units remaining) [ { 1 ; 3 ; 5 ; 3 } 4 ] - - location: 26 (remaining gas: 1039984.994 units remaining) + - location: 26 (remaining gas: 1039986.259 units remaining) [ {} { 1 ; 3 ; 5 ; 3 } 4 ] - - location: 28 (remaining gas: 1039984.979 units remaining) + - location: 28 (remaining gas: 1039986.249 units remaining) [ (Pair {} { 1 ; 3 ; 5 ; 3 }) 4 ] - - location: 29 (remaining gas: 1039984.964 units remaining) + - location: 29 (remaining gas: 1039986.239 units remaining) [ 4 ] - - location: 31 (remaining gas: 1039984.954 units remaining) + - location: 31 (remaining gas: 1039986.229 units remaining) [ ] - - location: 29 (remaining gas: 1039984.924 units remaining) + - location: 29 (remaining gas: 1039986.209 units remaining) [ (Pair {} { 1 ; 3 ; 5 ; 3 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out index 348f8127a8d2..ab21a8bb1aab 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_map_block.tz-{0}-{}-{}].out @@ -7,30 +7,30 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039986.379 units remaining) + - location: 9 (remaining gas: 1039987.339 units remaining) [ (Pair {} { 0 }) ] - - location: 9 (remaining gas: 1039986.369 units remaining) + - location: 9 (remaining gas: 1039987.329 units remaining) [ {} ] - - location: 10 (remaining gas: 1039986.359 units remaining) + - location: 10 (remaining gas: 1039987.319 units remaining) [ 0 {} ] - - location: 13 (remaining gas: 1039986.349 units remaining) + - location: 13 (remaining gas: 1039987.309 units remaining) [ {} 0 ] - - location: 14 (remaining gas: 1039986.349 units remaining) + - location: 14 (remaining gas: 1039987.309 units remaining) [ {} 0 ] - - location: 26 (remaining gas: 1039986.334 units remaining) + - location: 26 (remaining gas: 1039987.299 units remaining) [ {} {} 0 ] - - location: 28 (remaining gas: 1039986.319 units remaining) + - location: 28 (remaining gas: 1039987.289 units remaining) [ (Pair {} {}) 0 ] - - location: 29 (remaining gas: 1039986.304 units remaining) + - location: 29 (remaining gas: 1039987.279 units remaining) [ 0 ] - - location: 31 (remaining gas: 1039986.294 units remaining) + - location: 31 (remaining gas: 1039987.269 units remaining) [ ] - - location: 29 (remaining gas: 1039986.264 units remaining) + - location: 29 (remaining gas: 1039987.249 units remaining) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out index fcd637c1b31d..8d05d69adf12 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.185 units remaining) + - location: 8 (remaining gas: 1039994.825 units remaining) [ (Pair { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } 111) ] - - location: 8 (remaining gas: 1039994.175 units remaining) + - location: 8 (remaining gas: 1039994.815 units remaining) [ { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } ] - - location: 9 (remaining gas: 1039994.160 units remaining) + - location: 9 (remaining gas: 1039994.805 units remaining) [ 6 ] - - location: 10 (remaining gas: 1039994.145 units remaining) + - location: 10 (remaining gas: 1039994.795 units remaining) [ {} 6 ] - - location: 12 (remaining gas: 1039994.130 units remaining) + - location: 12 (remaining gas: 1039994.785 units remaining) [ (Pair {} 6) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out index 381694882c37..fbb0d9bd3dd1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 ; 2 ; 3 }-3].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.485 units remaining) + - location: 8 (remaining gas: 1039995.125 units remaining) [ (Pair { 1 ; 2 ; 3 } 111) ] - - location: 8 (remaining gas: 1039994.475 units remaining) + - location: 8 (remaining gas: 1039995.115 units remaining) [ { 1 ; 2 ; 3 } ] - - location: 9 (remaining gas: 1039994.460 units remaining) + - location: 9 (remaining gas: 1039995.105 units remaining) [ 3 ] - - location: 10 (remaining gas: 1039994.445 units remaining) + - location: 10 (remaining gas: 1039995.095 units remaining) [ {} 3 ] - - location: 12 (remaining gas: 1039994.430 units remaining) + - location: 12 (remaining gas: 1039995.085 units remaining) [ (Pair {} 3) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out index 4cd5d366db7d..d7974ea29b35 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{ 1 }-1].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.685 units remaining) + - location: 8 (remaining gas: 1039995.325 units remaining) [ (Pair { 1 } 111) ] - - location: 8 (remaining gas: 1039994.675 units remaining) + - location: 8 (remaining gas: 1039995.315 units remaining) [ { 1 } ] - - location: 9 (remaining gas: 1039994.660 units remaining) + - location: 9 (remaining gas: 1039995.305 units remaining) [ 1 ] - - location: 10 (remaining gas: 1039994.645 units remaining) + - location: 10 (remaining gas: 1039995.295 units remaining) [ {} 1 ] - - location: 12 (remaining gas: 1039994.630 units remaining) + - location: 12 (remaining gas: 1039995.285 units remaining) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out index 057263b03eaa..879528f7724c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[list_size.tz-111-{}-0].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.785 units remaining) + - location: 8 (remaining gas: 1039995.425 units remaining) [ (Pair {} 111) ] - - location: 8 (remaining gas: 1039994.775 units remaining) + - location: 8 (remaining gas: 1039995.415 units remaining) [ {} ] - - location: 9 (remaining gas: 1039994.760 units remaining) + - location: 9 (remaining gas: 1039995.405 units remaining) [ 0 ] - - location: 10 (remaining gas: 1039994.745 units remaining) + - location: 10 (remaining gas: 1039995.395 units remaining) [ {} 0 ] - - location: 12 (remaining gas: 1039994.730 units remaining) + - location: 12 (remaining gas: 1039995.385 units remaining) [ (Pair {} 0) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" index 5afa3a66f442..7ab7d183f173 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" @@ -7,157 +7,157 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039978.215 units remaining) + - location: 9 (remaining gas: 1039981.735 units remaining) [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (remaining gas: 1039978.205 units remaining) + - location: 9 (remaining gas: 1039981.725 units remaining) [ { "c" ; "b" ; "a" } ] - - location: 10 (remaining gas: 1039978.190 units remaining) + - location: 10 (remaining gas: 1039981.715 units remaining) [ {} { "c" ; "b" ; "a" } ] - - location: 12 (remaining gas: 1039978.180 units remaining) + - location: 12 (remaining gas: 1039981.705 units remaining) [ { "c" ; "b" ; "a" } {} ] - - location: 13 (remaining gas: 1039978.165 units remaining) + - location: 13 (remaining gas: 1039981.695 units remaining) [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 14 (remaining gas: 1039978.150 units remaining) + - location: 14 (remaining gas: 1039981.685 units remaining) [ (Left (Pair { "c" ; "b" ; "a" } {})) ] - - location: 17 (remaining gas: 1039978.150 units remaining) + - location: 17 (remaining gas: 1039981.685 units remaining) [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 19 (remaining gas: 1039978.140 units remaining) + - location: 19 (remaining gas: 1039981.675 units remaining) [ (Pair { "c" ; "b" ; "a" } {}) (Pair { "c" ; "b" ; "a" } {}) ] - - location: 20 (remaining gas: 1039978.130 units remaining) + - location: 20 (remaining gas: 1039981.665 units remaining) [ { "c" ; "b" ; "a" } (Pair { "c" ; "b" ; "a" } {}) ] - - location: 21 (remaining gas: 1039978.115 units remaining) + - location: 21 (remaining gas: 1039981.655 units remaining) [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 23 (remaining gas: 1039978.105 units remaining) + - location: 23 (remaining gas: 1039981.645 units remaining) [ {} ] - - location: 21 (remaining gas: 1039978.075 units remaining) + - location: 21 (remaining gas: 1039981.625 units remaining) [ { "c" ; "b" ; "a" } {} ] - - location: 24 (remaining gas: 1039978.065 units remaining) + - location: 24 (remaining gas: 1039981.615 units remaining) [ "c" { "b" ; "a" } {} ] - - location: 26 (remaining gas: 1039978.055 units remaining) + - location: 26 (remaining gas: 1039981.605 units remaining) [ { "b" ; "a" } "c" {} ] - - location: 27 (remaining gas: 1039978.040 units remaining) + - location: 27 (remaining gas: 1039981.595 units remaining) [ "c" {} ] - - location: 29 (remaining gas: 1039978.025 units remaining) + - location: 29 (remaining gas: 1039981.585 units remaining) [ { "c" } ] - - location: 27 (remaining gas: 1039977.995 units remaining) + - location: 27 (remaining gas: 1039981.565 units remaining) [ { "b" ; "a" } { "c" } ] - - location: 30 (remaining gas: 1039977.980 units remaining) + - location: 30 (remaining gas: 1039981.555 units remaining) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 31 (remaining gas: 1039977.965 units remaining) + - location: 31 (remaining gas: 1039981.545 units remaining) [ (Left (Pair { "b" ; "a" } { "c" })) ] - - location: 24 (remaining gas: 1039977.950 units remaining) + - location: 24 (remaining gas: 1039981.535 units remaining) [ (Left (Pair { "b" ; "a" } { "c" })) ] - - location: 17 (remaining gas: 1039977.935 units remaining) + - location: 17 (remaining gas: 1039981.525 units remaining) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 19 (remaining gas: 1039977.925 units remaining) + - location: 19 (remaining gas: 1039981.515 units remaining) [ (Pair { "b" ; "a" } { "c" }) (Pair { "b" ; "a" } { "c" }) ] - - location: 20 (remaining gas: 1039977.915 units remaining) + - location: 20 (remaining gas: 1039981.505 units remaining) [ { "b" ; "a" } (Pair { "b" ; "a" } { "c" }) ] - - location: 21 (remaining gas: 1039977.900 units remaining) + - location: 21 (remaining gas: 1039981.495 units remaining) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 23 (remaining gas: 1039977.890 units remaining) + - location: 23 (remaining gas: 1039981.485 units remaining) [ { "c" } ] - - location: 21 (remaining gas: 1039977.860 units remaining) + - location: 21 (remaining gas: 1039981.465 units remaining) [ { "b" ; "a" } { "c" } ] - - location: 24 (remaining gas: 1039977.850 units remaining) + - location: 24 (remaining gas: 1039981.455 units remaining) [ "b" { "a" } { "c" } ] - - location: 26 (remaining gas: 1039977.840 units remaining) + - location: 26 (remaining gas: 1039981.445 units remaining) [ { "a" } "b" { "c" } ] - - location: 27 (remaining gas: 1039977.825 units remaining) + - location: 27 (remaining gas: 1039981.435 units remaining) [ "b" { "c" } ] - - location: 29 (remaining gas: 1039977.810 units remaining) + - location: 29 (remaining gas: 1039981.425 units remaining) [ { "b" ; "c" } ] - - location: 27 (remaining gas: 1039977.780 units remaining) + - location: 27 (remaining gas: 1039981.405 units remaining) [ { "a" } { "b" ; "c" } ] - - location: 30 (remaining gas: 1039977.765 units remaining) + - location: 30 (remaining gas: 1039981.395 units remaining) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 31 (remaining gas: 1039977.750 units remaining) + - location: 31 (remaining gas: 1039981.385 units remaining) [ (Left (Pair { "a" } { "b" ; "c" })) ] - - location: 24 (remaining gas: 1039977.735 units remaining) + - location: 24 (remaining gas: 1039981.375 units remaining) [ (Left (Pair { "a" } { "b" ; "c" })) ] - - location: 17 (remaining gas: 1039977.720 units remaining) + - location: 17 (remaining gas: 1039981.365 units remaining) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 19 (remaining gas: 1039977.710 units remaining) + - location: 19 (remaining gas: 1039981.355 units remaining) [ (Pair { "a" } { "b" ; "c" }) (Pair { "a" } { "b" ; "c" }) ] - - location: 20 (remaining gas: 1039977.700 units remaining) + - location: 20 (remaining gas: 1039981.345 units remaining) [ { "a" } (Pair { "a" } { "b" ; "c" }) ] - - location: 21 (remaining gas: 1039977.685 units remaining) + - location: 21 (remaining gas: 1039981.335 units remaining) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 23 (remaining gas: 1039977.675 units remaining) + - location: 23 (remaining gas: 1039981.325 units remaining) [ { "b" ; "c" } ] - - location: 21 (remaining gas: 1039977.645 units remaining) + - location: 21 (remaining gas: 1039981.305 units remaining) [ { "a" } { "b" ; "c" } ] - - location: 24 (remaining gas: 1039977.635 units remaining) + - location: 24 (remaining gas: 1039981.295 units remaining) [ "a" {} { "b" ; "c" } ] - - location: 26 (remaining gas: 1039977.625 units remaining) + - location: 26 (remaining gas: 1039981.285 units remaining) [ {} "a" { "b" ; "c" } ] - - location: 27 (remaining gas: 1039977.610 units remaining) + - location: 27 (remaining gas: 1039981.275 units remaining) [ "a" { "b" ; "c" } ] - - location: 29 (remaining gas: 1039977.595 units remaining) + - location: 29 (remaining gas: 1039981.265 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 27 (remaining gas: 1039977.565 units remaining) + - location: 27 (remaining gas: 1039981.245 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 30 (remaining gas: 1039977.550 units remaining) + - location: 30 (remaining gas: 1039981.235 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 31 (remaining gas: 1039977.535 units remaining) + - location: 31 (remaining gas: 1039981.225 units remaining) [ (Left (Pair {} { "a" ; "b" ; "c" })) ] - - location: 24 (remaining gas: 1039977.520 units remaining) + - location: 24 (remaining gas: 1039981.215 units remaining) [ (Left (Pair {} { "a" ; "b" ; "c" })) ] - - location: 17 (remaining gas: 1039977.505 units remaining) + - location: 17 (remaining gas: 1039981.205 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 19 (remaining gas: 1039977.495 units remaining) + - location: 19 (remaining gas: 1039981.195 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) (Pair {} { "a" ; "b" ; "c" }) ] - - location: 20 (remaining gas: 1039977.485 units remaining) + - location: 20 (remaining gas: 1039981.185 units remaining) [ {} (Pair {} { "a" ; "b" ; "c" }) ] - - location: 21 (remaining gas: 1039977.470 units remaining) + - location: 21 (remaining gas: 1039981.175 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 23 (remaining gas: 1039977.460 units remaining) + - location: 23 (remaining gas: 1039981.165 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 21 (remaining gas: 1039977.430 units remaining) + - location: 21 (remaining gas: 1039981.145 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 24 (remaining gas: 1039977.420 units remaining) + - location: 24 (remaining gas: 1039981.135 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 35 (remaining gas: 1039977.405 units remaining) + - location: 35 (remaining gas: 1039981.125 units remaining) [ (Right { "a" ; "b" ; "c" }) ] - - location: 24 (remaining gas: 1039977.390 units remaining) + - location: 24 (remaining gas: 1039981.115 units remaining) [ (Right { "a" ; "b" ; "c" }) ] - - location: 17 (remaining gas: 1039977.375 units remaining) + - location: 17 (remaining gas: 1039981.105 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 41 (remaining gas: 1039977.360 units remaining) + - location: 41 (remaining gas: 1039981.095 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 43 (remaining gas: 1039977.345 units remaining) + - location: 43 (remaining gas: 1039981.085 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" index 6b410f8c35f8..0f3de780eecb 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[loop_left.tz-{\"\"}-{}-{}].out" @@ -7,46 +7,46 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039978.587 units remaining) + - location: 9 (remaining gas: 1039982.107 units remaining) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039978.577 units remaining) + - location: 9 (remaining gas: 1039982.097 units remaining) [ {} ] - - location: 10 (remaining gas: 1039978.562 units remaining) + - location: 10 (remaining gas: 1039982.087 units remaining) [ {} {} ] - - location: 12 (remaining gas: 1039978.552 units remaining) + - location: 12 (remaining gas: 1039982.077 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039978.537 units remaining) + - location: 13 (remaining gas: 1039982.067 units remaining) [ (Pair {} {}) ] - - location: 14 (remaining gas: 1039978.522 units remaining) + - location: 14 (remaining gas: 1039982.057 units remaining) [ (Left (Pair {} {})) ] - - location: 17 (remaining gas: 1039978.522 units remaining) + - location: 17 (remaining gas: 1039982.057 units remaining) [ (Pair {} {}) ] - - location: 19 (remaining gas: 1039978.512 units remaining) + - location: 19 (remaining gas: 1039982.047 units remaining) [ (Pair {} {}) (Pair {} {}) ] - - location: 20 (remaining gas: 1039978.502 units remaining) + - location: 20 (remaining gas: 1039982.037 units remaining) [ {} (Pair {} {}) ] - - location: 21 (remaining gas: 1039978.487 units remaining) + - location: 21 (remaining gas: 1039982.027 units remaining) [ (Pair {} {}) ] - - location: 23 (remaining gas: 1039978.477 units remaining) + - location: 23 (remaining gas: 1039982.017 units remaining) [ {} ] - - location: 21 (remaining gas: 1039978.447 units remaining) + - location: 21 (remaining gas: 1039981.997 units remaining) [ {} {} ] - - location: 24 (remaining gas: 1039978.437 units remaining) + - location: 24 (remaining gas: 1039981.987 units remaining) [ {} ] - - location: 35 (remaining gas: 1039978.422 units remaining) + - location: 35 (remaining gas: 1039981.977 units remaining) [ (Right {}) ] - - location: 24 (remaining gas: 1039978.407 units remaining) + - location: 24 (remaining gas: 1039981.967 units remaining) [ (Right {}) ] - - location: 17 (remaining gas: 1039978.392 units remaining) + - location: 17 (remaining gas: 1039981.957 units remaining) [ {} ] - - location: 41 (remaining gas: 1039978.377 units remaining) + - location: 41 (remaining gas: 1039981.947 units remaining) [ {} {} ] - - location: 43 (remaining gas: 1039978.362 units remaining) + - location: 43 (remaining gas: 1039981.937 units remaining) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out index 0b7d5de7273b..24d91426a762 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 ; Elt 3 4 }-{ Elt 0 0 ; Elt 3 4 }].out @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039993.874 units remaining) + - location: 11 (remaining gas: 1039994.834 units remaining) [ (Pair { Elt 0 0 ; Elt 3 4 } {}) ] - - location: 11 (remaining gas: 1039993.864 units remaining) + - location: 11 (remaining gas: 1039994.824 units remaining) [ { Elt 0 0 ; Elt 3 4 } ] - - location: 12 (remaining gas: 1039993.849 units remaining) + - location: 12 (remaining gas: 1039994.814 units remaining) [ {} { Elt 0 0 ; Elt 3 4 } ] - - location: 14 (remaining gas: 1039993.834 units remaining) + - location: 14 (remaining gas: 1039994.804 units remaining) [ (Pair {} { Elt 0 0 ; Elt 3 4 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out index 58efa01ae02e..1241a8993b2d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 0 }-{ Elt 0 0 }].out @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039994.189 units remaining) + - location: 11 (remaining gas: 1039995.149 units remaining) [ (Pair { Elt 0 0 } {}) ] - - location: 11 (remaining gas: 1039994.179 units remaining) + - location: 11 (remaining gas: 1039995.139 units remaining) [ { Elt 0 0 } ] - - location: 12 (remaining gas: 1039994.164 units remaining) + - location: 12 (remaining gas: 1039995.129 units remaining) [ {} { Elt 0 0 } ] - - location: 14 (remaining gas: 1039994.149 units remaining) + - location: 14 (remaining gas: 1039995.119 units remaining) [ (Pair {} { Elt 0 0 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out index fc97ae4ac76e..030c26b7a325 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_id.tz-{}-{ Elt 0 1 }-{ Elt 0 1 }].out @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039994.189 units remaining) + - location: 11 (remaining gas: 1039995.149 units remaining) [ (Pair { Elt 0 1 } {}) ] - - location: 11 (remaining gas: 1039994.179 units remaining) + - location: 11 (remaining gas: 1039995.139 units remaining) [ { Elt 0 1 } ] - - location: 12 (remaining gas: 1039994.164 units remaining) + - location: 12 (remaining gas: 1039995.129 units remaining) [ {} { Elt 0 1 } ] - - location: 14 (remaining gas: 1039994.149 units remaining) + - location: 14 (remaining gas: 1039995.119 units remaining) [ (Pair {} { Elt 0 1 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out index b12e7e9edc4c..802a64042c7e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out @@ -7,146 +7,146 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039978.684 units remaining) + - location: 11 (remaining gas: 1039980.124 units remaining) [ (Pair { Elt 0 100 ; Elt 2 100 } 0 0) ] - - location: 11 (remaining gas: 1039978.674 units remaining) + - location: 11 (remaining gas: 1039980.114 units remaining) [ { Elt 0 100 ; Elt 2 100 } ] - - location: 12 (remaining gas: 1039978.664 units remaining) + - location: 12 (remaining gas: 1039980.104 units remaining) [ 0 { Elt 0 100 ; Elt 2 100 } ] - - location: 15 (remaining gas: 1039978.654 units remaining) + - location: 15 (remaining gas: 1039980.094 units remaining) [ 0 0 { Elt 0 100 ; Elt 2 100 } ] - - location: 18 (remaining gas: 1039978.639 units remaining) + - location: 18 (remaining gas: 1039980.084 units remaining) [ (Pair 0 0) { Elt 0 100 ; Elt 2 100 } ] - - location: 19 (remaining gas: 1039978.629 units remaining) + - location: 19 (remaining gas: 1039980.074 units remaining) [ { Elt 0 100 ; Elt 2 100 } (Pair 0 0) ] - - location: 20 (remaining gas: 1039978.629 units remaining) + - location: 20 (remaining gas: 1039980.074 units remaining) [ (Pair 0 100) (Pair 0 0) ] - - location: 22 (remaining gas: 1039978.614 units remaining) + - location: 22 (remaining gas: 1039980.064 units remaining) [ (Pair 0 0) ] - - location: 24 (remaining gas: 1039978.604 units remaining) + - location: 24 (remaining gas: 1039980.054 units remaining) [ (Pair 0 0) (Pair 0 0) ] - - location: 25 (remaining gas: 1039978.594 units remaining) + - location: 25 (remaining gas: 1039980.044 units remaining) [ 0 (Pair 0 0) ] - - location: 26 (remaining gas: 1039978.579 units remaining) + - location: 26 (remaining gas: 1039980.034 units remaining) [ (Pair 0 0) ] - - location: 28 (remaining gas: 1039978.569 units remaining) + - location: 28 (remaining gas: 1039980.024 units remaining) [ 0 ] - - location: 26 (remaining gas: 1039978.539 units remaining) + - location: 26 (remaining gas: 1039980.004 units remaining) [ 0 0 ] - - location: 22 (remaining gas: 1039978.509 units remaining) + - location: 22 (remaining gas: 1039979.984 units remaining) [ (Pair 0 100) 0 0 ] - - location: 29 (remaining gas: 1039978.499 units remaining) + - location: 29 (remaining gas: 1039979.974 units remaining) [ (Pair 0 100) (Pair 0 100) 0 0 ] - - location: 30 (remaining gas: 1039978.484 units remaining) + - location: 30 (remaining gas: 1039979.964 units remaining) [ (Pair 0 100) 0 0 ] - - location: 32 (remaining gas: 1039978.474 units remaining) + - location: 32 (remaining gas: 1039979.954 units remaining) [ 0 0 0 ] - - location: 33 (remaining gas: 1039978.419 units remaining) + - location: 33 (remaining gas: 1039979.919 units remaining) [ 0 0 ] - - location: 30 (remaining gas: 1039978.389 units remaining) + - location: 30 (remaining gas: 1039979.899 units remaining) [ (Pair 0 100) 0 0 ] - - location: 34 (remaining gas: 1039978.379 units remaining) + - location: 34 (remaining gas: 1039979.889 units remaining) [ 0 (Pair 0 100) 0 ] - - location: 35 (remaining gas: 1039978.364 units remaining) + - location: 35 (remaining gas: 1039979.879 units remaining) [ (Pair 0 100) 0 ] - - location: 37 (remaining gas: 1039978.354 units remaining) + - location: 37 (remaining gas: 1039979.869 units remaining) [ 100 0 ] - - location: 38 (remaining gas: 1039978.299 units remaining) + - location: 38 (remaining gas: 1039979.834 units remaining) [ 100 ] - - location: 35 (remaining gas: 1039978.269 units remaining) + - location: 35 (remaining gas: 1039979.814 units remaining) [ 0 100 ] - - location: 39 (remaining gas: 1039978.254 units remaining) + - location: 39 (remaining gas: 1039979.804 units remaining) [ (Pair 0 100) ] - - location: 20 (remaining gas: 1039978.239 units remaining) + - location: 20 (remaining gas: 1039979.794 units remaining) [ (Pair 2 100) (Pair 0 100) ] - - location: 22 (remaining gas: 1039978.224 units remaining) + - location: 22 (remaining gas: 1039979.784 units remaining) [ (Pair 0 100) ] - - location: 24 (remaining gas: 1039978.214 units remaining) + - location: 24 (remaining gas: 1039979.774 units remaining) [ (Pair 0 100) (Pair 0 100) ] - - location: 25 (remaining gas: 1039978.204 units remaining) + - location: 25 (remaining gas: 1039979.764 units remaining) [ 0 (Pair 0 100) ] - - location: 26 (remaining gas: 1039978.189 units remaining) + - location: 26 (remaining gas: 1039979.754 units remaining) [ (Pair 0 100) ] - - location: 28 (remaining gas: 1039978.179 units remaining) + - location: 28 (remaining gas: 1039979.744 units remaining) [ 100 ] - - location: 26 (remaining gas: 1039978.149 units remaining) + - location: 26 (remaining gas: 1039979.724 units remaining) [ 0 100 ] - - location: 22 (remaining gas: 1039978.119 units remaining) + - location: 22 (remaining gas: 1039979.704 units remaining) [ (Pair 2 100) 0 100 ] - - location: 29 (remaining gas: 1039978.109 units remaining) + - location: 29 (remaining gas: 1039979.694 units remaining) [ (Pair 2 100) (Pair 2 100) 0 100 ] - - location: 30 (remaining gas: 1039978.094 units remaining) + - location: 30 (remaining gas: 1039979.684 units remaining) [ (Pair 2 100) 0 100 ] - - location: 32 (remaining gas: 1039978.084 units remaining) + - location: 32 (remaining gas: 1039979.674 units remaining) [ 2 0 100 ] - - location: 33 (remaining gas: 1039978.029 units remaining) + - location: 33 (remaining gas: 1039979.639 units remaining) [ 2 100 ] - - location: 30 (remaining gas: 1039977.999 units remaining) + - location: 30 (remaining gas: 1039979.619 units remaining) [ (Pair 2 100) 2 100 ] - - location: 34 (remaining gas: 1039977.989 units remaining) + - location: 34 (remaining gas: 1039979.609 units remaining) [ 2 (Pair 2 100) 100 ] - - location: 35 (remaining gas: 1039977.974 units remaining) + - location: 35 (remaining gas: 1039979.599 units remaining) [ (Pair 2 100) 100 ] - - location: 37 (remaining gas: 1039977.964 units remaining) + - location: 37 (remaining gas: 1039979.589 units remaining) [ 100 100 ] - - location: 38 (remaining gas: 1039977.909 units remaining) + - location: 38 (remaining gas: 1039979.554 units remaining) [ 200 ] - - location: 35 (remaining gas: 1039977.879 units remaining) + - location: 35 (remaining gas: 1039979.534 units remaining) [ 2 200 ] - - location: 39 (remaining gas: 1039977.864 units remaining) + - location: 39 (remaining gas: 1039979.524 units remaining) [ (Pair 2 200) ] - - location: 20 (remaining gas: 1039977.849 units remaining) + - location: 20 (remaining gas: 1039979.514 units remaining) [ (Pair 2 200) ] - - location: 40 (remaining gas: 1039977.834 units remaining) + - location: 40 (remaining gas: 1039979.504 units remaining) [ {} (Pair 2 200) ] - - location: 42 (remaining gas: 1039977.819 units remaining) + - location: 42 (remaining gas: 1039979.494 units remaining) [ (Pair {} 2 200) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out index adf09e43f4f3..645cbfa6bba5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_iter.tz-(Pair 0 0)-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out @@ -7,146 +7,146 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039978.684 units remaining) + - location: 11 (remaining gas: 1039980.124 units remaining) [ (Pair { Elt 1 1 ; Elt 2 100 } 0 0) ] - - location: 11 (remaining gas: 1039978.674 units remaining) + - location: 11 (remaining gas: 1039980.114 units remaining) [ { Elt 1 1 ; Elt 2 100 } ] - - location: 12 (remaining gas: 1039978.664 units remaining) + - location: 12 (remaining gas: 1039980.104 units remaining) [ 0 { Elt 1 1 ; Elt 2 100 } ] - - location: 15 (remaining gas: 1039978.654 units remaining) + - location: 15 (remaining gas: 1039980.094 units remaining) [ 0 0 { Elt 1 1 ; Elt 2 100 } ] - - location: 18 (remaining gas: 1039978.639 units remaining) + - location: 18 (remaining gas: 1039980.084 units remaining) [ (Pair 0 0) { Elt 1 1 ; Elt 2 100 } ] - - location: 19 (remaining gas: 1039978.629 units remaining) + - location: 19 (remaining gas: 1039980.074 units remaining) [ { Elt 1 1 ; Elt 2 100 } (Pair 0 0) ] - - location: 20 (remaining gas: 1039978.629 units remaining) + - location: 20 (remaining gas: 1039980.074 units remaining) [ (Pair 1 1) (Pair 0 0) ] - - location: 22 (remaining gas: 1039978.614 units remaining) + - location: 22 (remaining gas: 1039980.064 units remaining) [ (Pair 0 0) ] - - location: 24 (remaining gas: 1039978.604 units remaining) + - location: 24 (remaining gas: 1039980.054 units remaining) [ (Pair 0 0) (Pair 0 0) ] - - location: 25 (remaining gas: 1039978.594 units remaining) + - location: 25 (remaining gas: 1039980.044 units remaining) [ 0 (Pair 0 0) ] - - location: 26 (remaining gas: 1039978.579 units remaining) + - location: 26 (remaining gas: 1039980.034 units remaining) [ (Pair 0 0) ] - - location: 28 (remaining gas: 1039978.569 units remaining) + - location: 28 (remaining gas: 1039980.024 units remaining) [ 0 ] - - location: 26 (remaining gas: 1039978.539 units remaining) + - location: 26 (remaining gas: 1039980.004 units remaining) [ 0 0 ] - - location: 22 (remaining gas: 1039978.509 units remaining) + - location: 22 (remaining gas: 1039979.984 units remaining) [ (Pair 1 1) 0 0 ] - - location: 29 (remaining gas: 1039978.499 units remaining) + - location: 29 (remaining gas: 1039979.974 units remaining) [ (Pair 1 1) (Pair 1 1) 0 0 ] - - location: 30 (remaining gas: 1039978.484 units remaining) + - location: 30 (remaining gas: 1039979.964 units remaining) [ (Pair 1 1) 0 0 ] - - location: 32 (remaining gas: 1039978.474 units remaining) + - location: 32 (remaining gas: 1039979.954 units remaining) [ 1 0 0 ] - - location: 33 (remaining gas: 1039978.419 units remaining) + - location: 33 (remaining gas: 1039979.919 units remaining) [ 1 0 ] - - location: 30 (remaining gas: 1039978.389 units remaining) + - location: 30 (remaining gas: 1039979.899 units remaining) [ (Pair 1 1) 1 0 ] - - location: 34 (remaining gas: 1039978.379 units remaining) + - location: 34 (remaining gas: 1039979.889 units remaining) [ 1 (Pair 1 1) 0 ] - - location: 35 (remaining gas: 1039978.364 units remaining) + - location: 35 (remaining gas: 1039979.879 units remaining) [ (Pair 1 1) 0 ] - - location: 37 (remaining gas: 1039978.354 units remaining) + - location: 37 (remaining gas: 1039979.869 units remaining) [ 1 0 ] - - location: 38 (remaining gas: 1039978.299 units remaining) + - location: 38 (remaining gas: 1039979.834 units remaining) [ 1 ] - - location: 35 (remaining gas: 1039978.269 units remaining) + - location: 35 (remaining gas: 1039979.814 units remaining) [ 1 1 ] - - location: 39 (remaining gas: 1039978.254 units remaining) + - location: 39 (remaining gas: 1039979.804 units remaining) [ (Pair 1 1) ] - - location: 20 (remaining gas: 1039978.239 units remaining) + - location: 20 (remaining gas: 1039979.794 units remaining) [ (Pair 2 100) (Pair 1 1) ] - - location: 22 (remaining gas: 1039978.224 units remaining) + - location: 22 (remaining gas: 1039979.784 units remaining) [ (Pair 1 1) ] - - location: 24 (remaining gas: 1039978.214 units remaining) + - location: 24 (remaining gas: 1039979.774 units remaining) [ (Pair 1 1) (Pair 1 1) ] - - location: 25 (remaining gas: 1039978.204 units remaining) + - location: 25 (remaining gas: 1039979.764 units remaining) [ 1 (Pair 1 1) ] - - location: 26 (remaining gas: 1039978.189 units remaining) + - location: 26 (remaining gas: 1039979.754 units remaining) [ (Pair 1 1) ] - - location: 28 (remaining gas: 1039978.179 units remaining) + - location: 28 (remaining gas: 1039979.744 units remaining) [ 1 ] - - location: 26 (remaining gas: 1039978.149 units remaining) + - location: 26 (remaining gas: 1039979.724 units remaining) [ 1 1 ] - - location: 22 (remaining gas: 1039978.119 units remaining) + - location: 22 (remaining gas: 1039979.704 units remaining) [ (Pair 2 100) 1 1 ] - - location: 29 (remaining gas: 1039978.109 units remaining) + - location: 29 (remaining gas: 1039979.694 units remaining) [ (Pair 2 100) (Pair 2 100) 1 1 ] - - location: 30 (remaining gas: 1039978.094 units remaining) + - location: 30 (remaining gas: 1039979.684 units remaining) [ (Pair 2 100) 1 1 ] - - location: 32 (remaining gas: 1039978.084 units remaining) + - location: 32 (remaining gas: 1039979.674 units remaining) [ 2 1 1 ] - - location: 33 (remaining gas: 1039978.029 units remaining) + - location: 33 (remaining gas: 1039979.639 units remaining) [ 3 1 ] - - location: 30 (remaining gas: 1039977.999 units remaining) + - location: 30 (remaining gas: 1039979.619 units remaining) [ (Pair 2 100) 3 1 ] - - location: 34 (remaining gas: 1039977.989 units remaining) + - location: 34 (remaining gas: 1039979.609 units remaining) [ 3 (Pair 2 100) 1 ] - - location: 35 (remaining gas: 1039977.974 units remaining) + - location: 35 (remaining gas: 1039979.599 units remaining) [ (Pair 2 100) 1 ] - - location: 37 (remaining gas: 1039977.964 units remaining) + - location: 37 (remaining gas: 1039979.589 units remaining) [ 100 1 ] - - location: 38 (remaining gas: 1039977.909 units remaining) + - location: 38 (remaining gas: 1039979.554 units remaining) [ 101 ] - - location: 35 (remaining gas: 1039977.879 units remaining) + - location: 35 (remaining gas: 1039979.534 units remaining) [ 3 101 ] - - location: 39 (remaining gas: 1039977.864 units remaining) + - location: 39 (remaining gas: 1039979.524 units remaining) [ (Pair 3 101) ] - - location: 20 (remaining gas: 1039977.849 units remaining) + - location: 20 (remaining gas: 1039979.514 units remaining) [ (Pair 3 101) ] - - location: 40 (remaining gas: 1039977.834 units remaining) + - location: 40 (remaining gas: 1039979.504 units remaining) [ {} (Pair 3 101) ] - - location: 42 (remaining gas: 1039977.819 units remaining) + - location: 42 (remaining gas: 1039979.494 units remaining) [ (Pair {} 3 101) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" index c98bbb1f73e5..dee8dc59a271 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"bar\" 5 ; Elt \"foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" @@ -7,62 +7,62 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039988.198 units remaining) + - location: 9 (remaining gas: 1039989.318 units remaining) [ (Pair 15 { Elt "bar" 5 ; Elt "foo" 1 }) ] - - location: 9 (remaining gas: 1039988.188 units remaining) + - location: 9 (remaining gas: 1039989.308 units remaining) [ 15 { Elt "bar" 5 ; Elt "foo" 1 } ] - - location: 10 (remaining gas: 1039988.178 units remaining) + - location: 10 (remaining gas: 1039989.298 units remaining) [ { Elt "bar" 5 ; Elt "foo" 1 } 15 ] - - location: 11 (remaining gas: 1039988.178 units remaining) + - location: 11 (remaining gas: 1039989.298 units remaining) [ (Pair "bar" 5) 15 ] - - location: 13 (remaining gas: 1039988.168 units remaining) + - location: 13 (remaining gas: 1039989.288 units remaining) [ 5 15 ] - - location: 14 (remaining gas: 1039988.153 units remaining) + - location: 14 (remaining gas: 1039989.278 units remaining) [ 15 ] - - location: 16 (remaining gas: 1039988.143 units remaining) + - location: 16 (remaining gas: 1039989.268 units remaining) [ 15 15 ] - - location: 14 (remaining gas: 1039988.113 units remaining) + - location: 14 (remaining gas: 1039989.248 units remaining) [ 5 15 15 ] - - location: 17 (remaining gas: 1039988.058 units remaining) + - location: 17 (remaining gas: 1039989.213 units remaining) [ 20 15 ] - - location: 11 (remaining gas: 1039988.043 units remaining) + - location: 11 (remaining gas: 1039989.203 units remaining) [ (Pair "foo" 1) 15 ] - - location: 13 (remaining gas: 1039988.033 units remaining) + - location: 13 (remaining gas: 1039989.193 units remaining) [ 1 15 ] - - location: 14 (remaining gas: 1039988.018 units remaining) + - location: 14 (remaining gas: 1039989.183 units remaining) [ 15 ] - - location: 16 (remaining gas: 1039988.008 units remaining) + - location: 16 (remaining gas: 1039989.173 units remaining) [ 15 15 ] - - location: 14 (remaining gas: 1039987.978 units remaining) + - location: 14 (remaining gas: 1039989.153 units remaining) [ 1 15 15 ] - - location: 17 (remaining gas: 1039987.923 units remaining) + - location: 17 (remaining gas: 1039989.118 units remaining) [ 16 15 ] - - location: 11 (remaining gas: 1039987.908 units remaining) + - location: 11 (remaining gas: 1039989.108 units remaining) [ { Elt "bar" 20 ; Elt "foo" 16 } 15 ] - - location: 18 (remaining gas: 1039987.893 units remaining) + - location: 18 (remaining gas: 1039989.098 units remaining) [ 15 ] - - location: 20 (remaining gas: 1039987.883 units remaining) + - location: 20 (remaining gas: 1039989.088 units remaining) [ ] - - location: 18 (remaining gas: 1039987.853 units remaining) + - location: 18 (remaining gas: 1039989.068 units remaining) [ { Elt "bar" 20 ; Elt "foo" 16 } ] - - location: 21 (remaining gas: 1039987.838 units remaining) + - location: 21 (remaining gas: 1039989.058 units remaining) [ {} { Elt "bar" 20 ; Elt "foo" 16 } ] - - location: 23 (remaining gas: 1039987.823 units remaining) + - location: 23 (remaining gas: 1039989.048 units remaining) [ (Pair {} { Elt "bar" 20 ; Elt "foo" 16 }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" index 81ce1603cd6f..78d431164c61 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{ Elt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" @@ -7,44 +7,44 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039988.569 units remaining) + - location: 9 (remaining gas: 1039989.689 units remaining) [ (Pair 10 { Elt "foo" 1 }) ] - - location: 9 (remaining gas: 1039988.559 units remaining) + - location: 9 (remaining gas: 1039989.679 units remaining) [ 10 { Elt "foo" 1 } ] - - location: 10 (remaining gas: 1039988.549 units remaining) + - location: 10 (remaining gas: 1039989.669 units remaining) [ { Elt "foo" 1 } 10 ] - - location: 11 (remaining gas: 1039988.549 units remaining) + - location: 11 (remaining gas: 1039989.669 units remaining) [ (Pair "foo" 1) 10 ] - - location: 13 (remaining gas: 1039988.539 units remaining) + - location: 13 (remaining gas: 1039989.659 units remaining) [ 1 10 ] - - location: 14 (remaining gas: 1039988.524 units remaining) + - location: 14 (remaining gas: 1039989.649 units remaining) [ 10 ] - - location: 16 (remaining gas: 1039988.514 units remaining) + - location: 16 (remaining gas: 1039989.639 units remaining) [ 10 10 ] - - location: 14 (remaining gas: 1039988.484 units remaining) + - location: 14 (remaining gas: 1039989.619 units remaining) [ 1 10 10 ] - - location: 17 (remaining gas: 1039988.429 units remaining) + - location: 17 (remaining gas: 1039989.584 units remaining) [ 11 10 ] - - location: 11 (remaining gas: 1039988.414 units remaining) + - location: 11 (remaining gas: 1039989.574 units remaining) [ { Elt "foo" 11 } 10 ] - - location: 18 (remaining gas: 1039988.399 units remaining) + - location: 18 (remaining gas: 1039989.564 units remaining) [ 10 ] - - location: 20 (remaining gas: 1039988.389 units remaining) + - location: 20 (remaining gas: 1039989.554 units remaining) [ ] - - location: 18 (remaining gas: 1039988.359 units remaining) + - location: 18 (remaining gas: 1039989.534 units remaining) [ { Elt "foo" 11 } ] - - location: 21 (remaining gas: 1039988.344 units remaining) + - location: 21 (remaining gas: 1039989.524 units remaining) [ {} { Elt "foo" 11 } ] - - location: 23 (remaining gas: 1039988.329 units remaining) + - location: 23 (remaining gas: 1039989.514 units remaining) [ (Pair {} { Elt "foo" 11 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out index 9a6196b356c0..5a9fc6c62e4d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_map.tz-{}-10-{}].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039988.899 units remaining) + - location: 9 (remaining gas: 1039990.019 units remaining) [ (Pair 10 {}) ] - - location: 9 (remaining gas: 1039988.889 units remaining) + - location: 9 (remaining gas: 1039990.009 units remaining) [ 10 {} ] - - location: 10 (remaining gas: 1039988.879 units remaining) + - location: 10 (remaining gas: 1039989.999 units remaining) [ {} 10 ] - - location: 11 (remaining gas: 1039988.879 units remaining) + - location: 11 (remaining gas: 1039989.999 units remaining) [ {} 10 ] - - location: 18 (remaining gas: 1039988.864 units remaining) + - location: 18 (remaining gas: 1039989.989 units remaining) [ 10 ] - - location: 20 (remaining gas: 1039988.854 units remaining) + - location: 20 (remaining gas: 1039989.979 units remaining) [ ] - - location: 18 (remaining gas: 1039988.824 units remaining) + - location: 18 (remaining gas: 1039989.959 units remaining) [ {} ] - - location: 21 (remaining gas: 1039988.809 units remaining) + - location: 21 (remaining gas: 1039989.949 units remaining) [ {} {} ] - - location: 23 (remaining gas: 1039988.794 units remaining) + - location: 23 (remaining gas: 1039989.939 units remaining) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out index 7d5ed86e98b1..52f96d51b6c0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 0 1 } None)-1-(Pair { Elt 0 .7396e5f090.out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039988.189 units remaining) + - location: 12 (remaining gas: 1039989.789 units remaining) [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (remaining gas: 1039988.179 units remaining) + - location: 12 (remaining gas: 1039989.779 units remaining) [ 1 (Pair { Elt 0 1 } None) ] - - location: 13 (remaining gas: 1039988.164 units remaining) + - location: 13 (remaining gas: 1039989.769 units remaining) [ (Pair { Elt 0 1 } None) ] - - location: 15 (remaining gas: 1039988.154 units remaining) + - location: 15 (remaining gas: 1039989.759 units remaining) [ { Elt 0 1 } ] - - location: 16 (remaining gas: 1039988.144 units remaining) + - location: 16 (remaining gas: 1039989.749 units remaining) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (remaining gas: 1039988.114 units remaining) + - location: 13 (remaining gas: 1039989.729 units remaining) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (remaining gas: 1039988.034 units remaining) + - location: 17 (remaining gas: 1039989.649 units remaining) [ False { Elt 0 1 } ] - - location: 18 (remaining gas: 1039988.019 units remaining) + - location: 18 (remaining gas: 1039989.639 units remaining) [ (Some False) { Elt 0 1 } ] - - location: 19 (remaining gas: 1039988.009 units remaining) + - location: 19 (remaining gas: 1039989.629 units remaining) [ { Elt 0 1 } (Some False) ] - - location: 20 (remaining gas: 1039987.994 units remaining) + - location: 20 (remaining gas: 1039989.619 units remaining) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (remaining gas: 1039987.979 units remaining) + - location: 21 (remaining gas: 1039989.609 units remaining) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (remaining gas: 1039987.964 units remaining) + - location: 23 (remaining gas: 1039989.599 units remaining) [ (Pair {} { Elt 0 1 } (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out index cbacdad1f97a..5dd4c9482c2e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039988.189 units remaining) + - location: 12 (remaining gas: 1039989.789 units remaining) [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (remaining gas: 1039988.179 units remaining) + - location: 12 (remaining gas: 1039989.779 units remaining) [ 1 (Pair { Elt 1 0 } None) ] - - location: 13 (remaining gas: 1039988.164 units remaining) + - location: 13 (remaining gas: 1039989.769 units remaining) [ (Pair { Elt 1 0 } None) ] - - location: 15 (remaining gas: 1039988.154 units remaining) + - location: 15 (remaining gas: 1039989.759 units remaining) [ { Elt 1 0 } ] - - location: 16 (remaining gas: 1039988.144 units remaining) + - location: 16 (remaining gas: 1039989.749 units remaining) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (remaining gas: 1039988.114 units remaining) + - location: 13 (remaining gas: 1039989.729 units remaining) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (remaining gas: 1039988.034 units remaining) + - location: 17 (remaining gas: 1039989.649 units remaining) [ True { Elt 1 0 } ] - - location: 18 (remaining gas: 1039988.019 units remaining) + - location: 18 (remaining gas: 1039989.639 units remaining) [ (Some True) { Elt 1 0 } ] - - location: 19 (remaining gas: 1039988.009 units remaining) + - location: 19 (remaining gas: 1039989.629 units remaining) [ { Elt 1 0 } (Some True) ] - - location: 20 (remaining gas: 1039987.994 units remaining) + - location: 20 (remaining gas: 1039989.619 units remaining) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (remaining gas: 1039987.979 units remaining) + - location: 21 (remaining gas: 1039989.609 units remaining) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (remaining gas: 1039987.964 units remaining) + - location: 23 (remaining gas: 1039989.599 units remaining) [ (Pair {} { Elt 1 0 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out index da441ba37fc4..7dd53b0ab711 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039987.874 units remaining) + - location: 12 (remaining gas: 1039989.474 units remaining) [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039987.864 units remaining) + - location: 12 (remaining gas: 1039989.464 units remaining) [ 1 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039987.849 units remaining) + - location: 13 (remaining gas: 1039989.454 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039987.839 units remaining) + - location: 15 (remaining gas: 1039989.444 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039987.829 units remaining) + - location: 16 (remaining gas: 1039989.434 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039987.799 units remaining) + - location: 13 (remaining gas: 1039989.414 units remaining) [ 1 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.719 units remaining) + - location: 17 (remaining gas: 1039989.334 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.704 units remaining) + - location: 18 (remaining gas: 1039989.324 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.694 units remaining) + - location: 19 (remaining gas: 1039989.314 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.679 units remaining) + - location: 20 (remaining gas: 1039989.304 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.664 units remaining) + - location: 21 (remaining gas: 1039989.294 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.649 units remaining) + - location: 23 (remaining gas: 1039989.284 units remaining) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out index ef08e927de4b..de6c5f2e5739 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039987.874 units remaining) + - location: 12 (remaining gas: 1039989.474 units remaining) [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039987.864 units remaining) + - location: 12 (remaining gas: 1039989.464 units remaining) [ 2 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039987.849 units remaining) + - location: 13 (remaining gas: 1039989.454 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039987.839 units remaining) + - location: 15 (remaining gas: 1039989.444 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039987.829 units remaining) + - location: 16 (remaining gas: 1039989.434 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039987.799 units remaining) + - location: 13 (remaining gas: 1039989.414 units remaining) [ 2 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.719 units remaining) + - location: 17 (remaining gas: 1039989.334 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.704 units remaining) + - location: 18 (remaining gas: 1039989.324 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.694 units remaining) + - location: 19 (remaining gas: 1039989.314 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.679 units remaining) + - location: 20 (remaining gas: 1039989.304 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.664 units remaining) + - location: 21 (remaining gas: 1039989.294 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.649 units remaining) + - location: 23 (remaining gas: 1039989.284 units remaining) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out index 4dc0e84ef2ea..8f67b8fbcfbd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair { Elt 1 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039987.874 units remaining) + - location: 12 (remaining gas: 1039989.474 units remaining) [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039987.864 units remaining) + - location: 12 (remaining gas: 1039989.464 units remaining) [ 3 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039987.849 units remaining) + - location: 13 (remaining gas: 1039989.454 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039987.839 units remaining) + - location: 15 (remaining gas: 1039989.444 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039987.829 units remaining) + - location: 16 (remaining gas: 1039989.434 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039987.799 units remaining) + - location: 13 (remaining gas: 1039989.414 units remaining) [ 3 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.719 units remaining) + - location: 17 (remaining gas: 1039989.334 units remaining) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.704 units remaining) + - location: 18 (remaining gas: 1039989.324 units remaining) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.694 units remaining) + - location: 19 (remaining gas: 1039989.314 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (remaining gas: 1039987.679 units remaining) + - location: 20 (remaining gas: 1039989.304 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (remaining gas: 1039987.664 units remaining) + - location: 21 (remaining gas: 1039989.294 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (remaining gas: 1039987.649 units remaining) + - location: 23 (remaining gas: 1039989.284 units remaining) [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out index bf61731d8588..e79cc1059765 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_nat.tz-(Pair {} None)-1-(Pair {} (Some False))].out @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039988.469 units remaining) + - location: 12 (remaining gas: 1039990.069 units remaining) [ (Pair 1 {} None) ] - - location: 12 (remaining gas: 1039988.459 units remaining) + - location: 12 (remaining gas: 1039990.059 units remaining) [ 1 (Pair {} None) ] - - location: 13 (remaining gas: 1039988.444 units remaining) + - location: 13 (remaining gas: 1039990.049 units remaining) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039988.434 units remaining) + - location: 15 (remaining gas: 1039990.039 units remaining) [ {} ] - - location: 16 (remaining gas: 1039988.424 units remaining) + - location: 16 (remaining gas: 1039990.029 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039988.394 units remaining) + - location: 13 (remaining gas: 1039990.009 units remaining) [ 1 {} {} ] - - location: 17 (remaining gas: 1039988.314 units remaining) + - location: 17 (remaining gas: 1039989.929 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039988.299 units remaining) + - location: 18 (remaining gas: 1039989.919 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039988.289 units remaining) + - location: 19 (remaining gas: 1039989.909 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039988.274 units remaining) + - location: 20 (remaining gas: 1039989.899 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039988.259 units remaining) + - location: 21 (remaining gas: 1039989.889 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039988.244 units remaining) + - location: 23 (remaining gas: 1039989.879 units remaining) [ (Pair {} {} (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" index 0a592ef820dd..4b191273fe39 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039987.724 units remaining) + - location: 12 (remaining gas: 1039989.324 units remaining) [ (Pair "bar" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039987.714 units remaining) + - location: 12 (remaining gas: 1039989.314 units remaining) [ "bar" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039987.699 units remaining) + - location: 13 (remaining gas: 1039989.304 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039987.689 units remaining) + - location: 15 (remaining gas: 1039989.294 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039987.679 units remaining) + - location: 16 (remaining gas: 1039989.284 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039987.649 units remaining) + - location: 13 (remaining gas: 1039989.264 units remaining) [ "bar" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039987.560 units remaining) + - location: 17 (remaining gas: 1039989.175 units remaining) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039987.545 units remaining) + - location: 18 (remaining gas: 1039989.165 units remaining) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039987.535 units remaining) + - location: 19 (remaining gas: 1039989.155 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.520 units remaining) + - location: 20 (remaining gas: 1039989.145 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.505 units remaining) + - location: 21 (remaining gas: 1039989.135 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.490 units remaining) + - location: 23 (remaining gas: 1039989.125 units remaining) [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" index d8e170dca934..b31d0cedd459 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039987.724 units remaining) + - location: 12 (remaining gas: 1039989.324 units remaining) [ (Pair "foo" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039987.714 units remaining) + - location: 12 (remaining gas: 1039989.314 units remaining) [ "foo" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039987.699 units remaining) + - location: 13 (remaining gas: 1039989.304 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039987.689 units remaining) + - location: 15 (remaining gas: 1039989.294 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039987.679 units remaining) + - location: 16 (remaining gas: 1039989.284 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039987.649 units remaining) + - location: 13 (remaining gas: 1039989.264 units remaining) [ "foo" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039987.560 units remaining) + - location: 17 (remaining gas: 1039989.175 units remaining) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039987.545 units remaining) + - location: 18 (remaining gas: 1039989.165 units remaining) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039987.535 units remaining) + - location: 19 (remaining gas: 1039989.155 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.520 units remaining) + - location: 20 (remaining gas: 1039989.145 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.505 units remaining) + - location: 21 (remaining gas: 1039989.135 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.490 units remaining) + - location: 23 (remaining gas: 1039989.125 units remaining) [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" index 9fedfb779925..2fbe176afcea 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"bar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039987.724 units remaining) + - location: 12 (remaining gas: 1039989.324 units remaining) [ (Pair "baz" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039987.714 units remaining) + - location: 12 (remaining gas: 1039989.314 units remaining) [ "baz" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039987.699 units remaining) + - location: 13 (remaining gas: 1039989.304 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039987.689 units remaining) + - location: 15 (remaining gas: 1039989.294 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039987.679 units remaining) + - location: 16 (remaining gas: 1039989.284 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039987.649 units remaining) + - location: 13 (remaining gas: 1039989.264 units remaining) [ "baz" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039987.560 units remaining) + - location: 17 (remaining gas: 1039989.175 units remaining) [ False { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039987.545 units remaining) + - location: 18 (remaining gas: 1039989.165 units remaining) [ (Some False) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039987.535 units remaining) + - location: 19 (remaining gas: 1039989.155 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some False) ] - - location: 20 (remaining gas: 1039987.520 units remaining) + - location: 20 (remaining gas: 1039989.145 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 21 (remaining gas: 1039987.505 units remaining) + - location: 21 (remaining gas: 1039989.135 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 23 (remaining gas: 1039987.490 units remaining) + - location: 23 (remaining gas: 1039989.125 units remaining) [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" index 0ed3adee0eb8..865cf42f5d8d 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039988.095 units remaining) + - location: 12 (remaining gas: 1039989.695 units remaining) [ (Pair "foo" { Elt "foo" 0 } None) ] - - location: 12 (remaining gas: 1039988.085 units remaining) + - location: 12 (remaining gas: 1039989.685 units remaining) [ "foo" (Pair { Elt "foo" 0 } None) ] - - location: 13 (remaining gas: 1039988.070 units remaining) + - location: 13 (remaining gas: 1039989.675 units remaining) [ (Pair { Elt "foo" 0 } None) ] - - location: 15 (remaining gas: 1039988.060 units remaining) + - location: 15 (remaining gas: 1039989.665 units remaining) [ { Elt "foo" 0 } ] - - location: 16 (remaining gas: 1039988.050 units remaining) + - location: 16 (remaining gas: 1039989.655 units remaining) [ { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 13 (remaining gas: 1039988.020 units remaining) + - location: 13 (remaining gas: 1039989.635 units remaining) [ "foo" { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 17 (remaining gas: 1039987.934 units remaining) + - location: 17 (remaining gas: 1039989.549 units remaining) [ True { Elt "foo" 0 } ] - - location: 18 (remaining gas: 1039987.919 units remaining) + - location: 18 (remaining gas: 1039989.539 units remaining) [ (Some True) { Elt "foo" 0 } ] - - location: 19 (remaining gas: 1039987.909 units remaining) + - location: 19 (remaining gas: 1039989.529 units remaining) [ { Elt "foo" 0 } (Some True) ] - - location: 20 (remaining gas: 1039987.894 units remaining) + - location: 20 (remaining gas: 1039989.519 units remaining) [ (Pair { Elt "foo" 0 } (Some True)) ] - - location: 21 (remaining gas: 1039987.879 units remaining) + - location: 21 (remaining gas: 1039989.509 units remaining) [ {} (Pair { Elt "foo" 0 } (Some True)) ] - - location: 23 (remaining gas: 1039987.864 units remaining) + - location: 23 (remaining gas: 1039989.499 units remaining) [ (Pair {} { Elt "foo" 0 } (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" index a583632d9a85..9ef4743f2ae6 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair { Elt \"foo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039988.095 units remaining) + - location: 12 (remaining gas: 1039989.695 units remaining) [ (Pair "bar" { Elt "foo" 1 } None) ] - - location: 12 (remaining gas: 1039988.085 units remaining) + - location: 12 (remaining gas: 1039989.685 units remaining) [ "bar" (Pair { Elt "foo" 1 } None) ] - - location: 13 (remaining gas: 1039988.070 units remaining) + - location: 13 (remaining gas: 1039989.675 units remaining) [ (Pair { Elt "foo" 1 } None) ] - - location: 15 (remaining gas: 1039988.060 units remaining) + - location: 15 (remaining gas: 1039989.665 units remaining) [ { Elt "foo" 1 } ] - - location: 16 (remaining gas: 1039988.050 units remaining) + - location: 16 (remaining gas: 1039989.655 units remaining) [ { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 13 (remaining gas: 1039988.020 units remaining) + - location: 13 (remaining gas: 1039989.635 units remaining) [ "bar" { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 17 (remaining gas: 1039987.934 units remaining) + - location: 17 (remaining gas: 1039989.549 units remaining) [ False { Elt "foo" 1 } ] - - location: 18 (remaining gas: 1039987.919 units remaining) + - location: 18 (remaining gas: 1039989.539 units remaining) [ (Some False) { Elt "foo" 1 } ] - - location: 19 (remaining gas: 1039987.909 units remaining) + - location: 19 (remaining gas: 1039989.529 units remaining) [ { Elt "foo" 1 } (Some False) ] - - location: 20 (remaining gas: 1039987.894 units remaining) + - location: 20 (remaining gas: 1039989.519 units remaining) [ (Pair { Elt "foo" 1 } (Some False)) ] - - location: 21 (remaining gas: 1039987.879 units remaining) + - location: 21 (remaining gas: 1039989.509 units remaining) [ {} (Pair { Elt "foo" 1 } (Some False)) ] - - location: 23 (remaining gas: 1039987.864 units remaining) + - location: 23 (remaining gas: 1039989.499 units remaining) [ (Pair {} { Elt "foo" 1 } (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" index 60857074b359..7103620f8c2c 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_mem_string.tz-(Pair {} None)-\"bar\"-(Pair {} (Some False))].out" @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039988.425 units remaining) + - location: 12 (remaining gas: 1039990.025 units remaining) [ (Pair "bar" {} None) ] - - location: 12 (remaining gas: 1039988.415 units remaining) + - location: 12 (remaining gas: 1039990.015 units remaining) [ "bar" (Pair {} None) ] - - location: 13 (remaining gas: 1039988.400 units remaining) + - location: 13 (remaining gas: 1039990.005 units remaining) [ (Pair {} None) ] - - location: 15 (remaining gas: 1039988.390 units remaining) + - location: 15 (remaining gas: 1039989.995 units remaining) [ {} ] - - location: 16 (remaining gas: 1039988.380 units remaining) + - location: 16 (remaining gas: 1039989.985 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039988.350 units remaining) + - location: 13 (remaining gas: 1039989.965 units remaining) [ "bar" {} {} ] - - location: 17 (remaining gas: 1039988.267 units remaining) + - location: 17 (remaining gas: 1039989.882 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039988.252 units remaining) + - location: 18 (remaining gas: 1039989.872 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039988.242 units remaining) + - location: 19 (remaining gas: 1039989.862 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039988.227 units remaining) + - location: 20 (remaining gas: 1039989.852 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039988.212 units remaining) + - location: 21 (remaining gas: 1039989.842 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039988.197 units remaining) + - location: 23 (remaining gas: 1039989.832 units remaining) [ (Pair {} {} (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" index 69c50c7059ae..9c4f7ec0c3ad 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 ; .1da2c2c3fa.out" @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.624 units remaining) + - location: 9 (remaining gas: 1039993.264 units remaining) [ (Pair { Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 } 111) ] - - location: 9 (remaining gas: 1039992.614 units remaining) + - location: 9 (remaining gas: 1039993.254 units remaining) [ { Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 } ] - - location: 10 (remaining gas: 1039992.599 units remaining) + - location: 10 (remaining gas: 1039993.244 units remaining) [ 6 ] - - location: 11 (remaining gas: 1039992.584 units remaining) + - location: 11 (remaining gas: 1039993.234 units remaining) [ {} 6 ] - - location: 13 (remaining gas: 1039992.569 units remaining) + - location: 13 (remaining gas: 1039993.224 units remaining) [ (Pair {} 6) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" index f1f4dd184264..81c88527451c 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 ; Elt \"b\" 2 ; Elt \"c\" 3 }-3].out" @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039993.663 units remaining) + - location: 9 (remaining gas: 1039994.303 units remaining) [ (Pair { Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 } 111) ] - - location: 9 (remaining gas: 1039993.653 units remaining) + - location: 9 (remaining gas: 1039994.293 units remaining) [ { Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 } ] - - location: 10 (remaining gas: 1039993.638 units remaining) + - location: 10 (remaining gas: 1039994.283 units remaining) [ 3 ] - - location: 11 (remaining gas: 1039993.623 units remaining) + - location: 11 (remaining gas: 1039994.273 units remaining) [ {} 3 ] - - location: 13 (remaining gas: 1039993.608 units remaining) + - location: 13 (remaining gas: 1039994.263 units remaining) [ (Pair {} 3) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" index 4212065c24bb..a3eac3ae3612 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{ Elt \"a\" 1 }-1].out" @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.351 units remaining) + - location: 9 (remaining gas: 1039994.991 units remaining) [ (Pair { Elt "a" 1 } 111) ] - - location: 9 (remaining gas: 1039994.341 units remaining) + - location: 9 (remaining gas: 1039994.981 units remaining) [ { Elt "a" 1 } ] - - location: 10 (remaining gas: 1039994.326 units remaining) + - location: 10 (remaining gas: 1039994.971 units remaining) [ 1 ] - - location: 11 (remaining gas: 1039994.311 units remaining) + - location: 11 (remaining gas: 1039994.961 units remaining) [ {} 1 ] - - location: 13 (remaining gas: 1039994.296 units remaining) + - location: 13 (remaining gas: 1039994.951 units remaining) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out index e33dd2106d07..37be8ce4156a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[map_size.tz-111-{}-0].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.657 units remaining) + - location: 9 (remaining gas: 1039995.297 units remaining) [ (Pair {} 111) ] - - location: 9 (remaining gas: 1039994.647 units remaining) + - location: 9 (remaining gas: 1039995.287 units remaining) [ {} ] - - location: 10 (remaining gas: 1039994.632 units remaining) + - location: 10 (remaining gas: 1039995.277 units remaining) [ 0 ] - - location: 11 (remaining gas: 1039994.617 units remaining) + - location: 11 (remaining gas: 1039995.267 units remaining) [ {} 0 ] - - location: 13 (remaining gas: 1039994.602 units remaining) + - location: 13 (remaining gas: 1039995.257 units remaining) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out index a729ad3caa93..a068ba316105 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mul.tz-Unit-Unit-Unit].out @@ -7,125 +7,125 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039944.811 units remaining) + - location: 7 (remaining gas: 1039946.411 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039944.801 units remaining) + - location: 7 (remaining gas: 1039946.401 units remaining) [ Unit ] - - location: 8 (remaining gas: 1039944.791 units remaining) + - location: 8 (remaining gas: 1039946.391 units remaining) [ ] - - location: 9 (remaining gas: 1039944.781 units remaining) + - location: 9 (remaining gas: 1039946.381 units remaining) [ 7987 ] - - location: 12 (remaining gas: 1039944.771 units remaining) + - location: 12 (remaining gas: 1039946.371 units remaining) [ 10 7987 ] - - location: 15 (remaining gas: 1039944.771 units remaining) + - location: 15 (remaining gas: 1039946.371 units remaining) [ 79870 ] - - location: 16 (remaining gas: 1039944.761 units remaining) + - location: 16 (remaining gas: 1039946.361 units remaining) [ 79870 79870 ] - - location: 19 (remaining gas: 1039944.726 units remaining) + - location: 19 (remaining gas: 1039946.326 units remaining) [ 0 ] - - location: 21 (remaining gas: 1039944.711 units remaining) + - location: 21 (remaining gas: 1039946.316 units remaining) [ True ] - - location: 22 (remaining gas: 1039944.701 units remaining) + - location: 22 (remaining gas: 1039946.306 units remaining) [ ] - - location: 22 (remaining gas: 1039944.686 units remaining) + - location: 22 (remaining gas: 1039946.296 units remaining) [ ] - - location: 28 (remaining gas: 1039944.676 units remaining) + - location: 28 (remaining gas: 1039946.286 units remaining) [ 10 ] - - location: 31 (remaining gas: 1039944.666 units remaining) + - location: 31 (remaining gas: 1039946.276 units remaining) [ 7987 10 ] - - location: 34 (remaining gas: 1039944.666 units remaining) + - location: 34 (remaining gas: 1039946.276 units remaining) [ 79870 ] - - location: 35 (remaining gas: 1039944.656 units remaining) + - location: 35 (remaining gas: 1039946.266 units remaining) [ 79870 79870 ] - - location: 38 (remaining gas: 1039944.621 units remaining) + - location: 38 (remaining gas: 1039946.231 units remaining) [ 0 ] - - location: 40 (remaining gas: 1039944.606 units remaining) + - location: 40 (remaining gas: 1039946.221 units remaining) [ True ] - - location: 41 (remaining gas: 1039944.596 units remaining) + - location: 41 (remaining gas: 1039946.211 units remaining) [ ] - - location: 41 (remaining gas: 1039944.581 units remaining) + - location: 41 (remaining gas: 1039946.201 units remaining) [ ] - - location: 47 (remaining gas: 1039944.571 units remaining) + - location: 47 (remaining gas: 1039946.191 units remaining) [ 10 ] - - location: 50 (remaining gas: 1039944.561 units remaining) + - location: 50 (remaining gas: 1039946.181 units remaining) [ -7987 10 ] - - location: 53 (remaining gas: 1039944.455 units remaining) + - location: 53 (remaining gas: 1039946.120 units remaining) [ -79870 ] - - location: 54 (remaining gas: 1039944.445 units remaining) + - location: 54 (remaining gas: 1039946.110 units remaining) [ -79870 -79870 ] - - location: 57 (remaining gas: 1039944.410 units remaining) + - location: 57 (remaining gas: 1039946.075 units remaining) [ 0 ] - - location: 59 (remaining gas: 1039944.395 units remaining) + - location: 59 (remaining gas: 1039946.065 units remaining) [ True ] - - location: 60 (remaining gas: 1039944.385 units remaining) + - location: 60 (remaining gas: 1039946.055 units remaining) [ ] - - location: 60 (remaining gas: 1039944.370 units remaining) + - location: 60 (remaining gas: 1039946.045 units remaining) [ ] - - location: 66 (remaining gas: 1039944.360 units remaining) + - location: 66 (remaining gas: 1039946.035 units remaining) [ 10 ] - - location: 69 (remaining gas: 1039944.350 units remaining) + - location: 69 (remaining gas: 1039946.025 units remaining) [ -7987 10 ] - - location: 72 (remaining gas: 1039944.244 units remaining) + - location: 72 (remaining gas: 1039945.964 units remaining) [ -79870 ] - - location: 73 (remaining gas: 1039944.234 units remaining) + - location: 73 (remaining gas: 1039945.954 units remaining) [ -79870 -79870 ] - - location: 76 (remaining gas: 1039944.199 units remaining) + - location: 76 (remaining gas: 1039945.919 units remaining) [ 0 ] - - location: 78 (remaining gas: 1039944.184 units remaining) + - location: 78 (remaining gas: 1039945.909 units remaining) [ True ] - - location: 79 (remaining gas: 1039944.174 units remaining) + - location: 79 (remaining gas: 1039945.899 units remaining) [ ] - - location: 79 (remaining gas: 1039944.159 units remaining) + - location: 79 (remaining gas: 1039945.889 units remaining) [ ] - - location: 85 (remaining gas: 1039944.149 units remaining) + - location: 85 (remaining gas: 1039945.879 units remaining) [ -10 ] - - location: 88 (remaining gas: 1039944.139 units remaining) + - location: 88 (remaining gas: 1039945.869 units remaining) [ 7987 -10 ] - - location: 91 (remaining gas: 1039944.033 units remaining) + - location: 91 (remaining gas: 1039945.808 units remaining) [ -79870 ] - - location: 92 (remaining gas: 1039944.023 units remaining) + - location: 92 (remaining gas: 1039945.798 units remaining) [ -79870 -79870 ] - - location: 95 (remaining gas: 1039943.988 units remaining) + - location: 95 (remaining gas: 1039945.763 units remaining) [ 0 ] - - location: 97 (remaining gas: 1039943.973 units remaining) + - location: 97 (remaining gas: 1039945.753 units remaining) [ True ] - - location: 98 (remaining gas: 1039943.963 units remaining) + - location: 98 (remaining gas: 1039945.743 units remaining) [ ] - - location: 98 (remaining gas: 1039943.948 units remaining) + - location: 98 (remaining gas: 1039945.733 units remaining) [ ] - - location: 104 (remaining gas: 1039943.938 units remaining) + - location: 104 (remaining gas: 1039945.723 units remaining) [ 10 ] - - location: 107 (remaining gas: 1039943.928 units remaining) + - location: 107 (remaining gas: 1039945.713 units remaining) [ 7987 10 ] - - location: 110 (remaining gas: 1039943.822 units remaining) + - location: 110 (remaining gas: 1039945.652 units remaining) [ 79870 ] - - location: 111 (remaining gas: 1039943.812 units remaining) + - location: 111 (remaining gas: 1039945.642 units remaining) [ 79870 79870 ] - - location: 114 (remaining gas: 1039943.777 units remaining) + - location: 114 (remaining gas: 1039945.607 units remaining) [ 0 ] - - location: 116 (remaining gas: 1039943.762 units remaining) + - location: 116 (remaining gas: 1039945.597 units remaining) [ True ] - - location: 117 (remaining gas: 1039943.752 units remaining) + - location: 117 (remaining gas: 1039945.587 units remaining) [ ] - - location: 117 (remaining gas: 1039943.737 units remaining) + - location: 117 (remaining gas: 1039945.577 units remaining) [ ] - - location: 123 (remaining gas: 1039943.727 units remaining) + - location: 123 (remaining gas: 1039945.567 units remaining) [ Unit ] - - location: 124 (remaining gas: 1039943.712 units remaining) + - location: 124 (remaining gas: 1039945.557 units remaining) [ {} Unit ] - - location: 126 (remaining gas: 1039943.697 units remaining) + - location: 126 (remaining gas: 1039945.547 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out index 067e01755134..2e0d30178714 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x00-257-0x0101000000000000000.be11332c7f.out @@ -7,32 +7,32 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039987.903 units remaining) + - location: 7 (remaining gas: 1039988.603 units remaining) [ (Pair 257 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039987.893 units remaining) + - location: 7 (remaining gas: 1039988.593 units remaining) [ 257 ] - - location: 8 (remaining gas: 1039987.883 units remaining) + - location: 8 (remaining gas: 1039988.583 units remaining) [ 1 257 ] - - location: 11 (remaining gas: 1039987.873 units remaining) + - location: 11 (remaining gas: 1039988.573 units remaining) [ 257 1 ] - - location: 12 (remaining gas: 1039987.733 units remaining) + - location: 12 (remaining gas: 1039988.493 units remaining) [ (Some (Pair 257 0)) ] - - location: 14 (remaining gas: 1039987.723 units remaining) + - location: 14 (remaining gas: 1039988.483 units remaining) [ (Pair 257 0) ] - - location: 14 (remaining gas: 1039987.708 units remaining) + - location: 14 (remaining gas: 1039988.473 units remaining) [ (Pair 257 0) ] - - location: 20 (remaining gas: 1039987.698 units remaining) + - location: 20 (remaining gas: 1039988.463 units remaining) [ 257 ] - - location: 21 (remaining gas: 1039987.688 units remaining) + - location: 21 (remaining gas: 1039988.453 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 257 ] - - location: 24 (remaining gas: 1039987.356 units remaining) + - location: 24 (remaining gas: 1039988.186 units remaining) [ 0x0101000000000000000000000000000000000000000000000000000000000000 ] - - location: 25 (remaining gas: 1039987.341 units remaining) + - location: 25 (remaining gas: 1039988.176 units remaining) [ {} 0x0101000000000000000000000000000000000000000000000000000000000000 ] - - location: 27 (remaining gas: 1039987.326 units remaining) + - location: 27 (remaining gas: 1039988.166 units remaining) [ (Pair {} 0x0101000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out index 979b6be4d862..fbf46d175e97 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[mutez_to_bls12_381_fr.tz-0x02-16-0x10000000000000000000.8230fb4fac.out @@ -7,32 +7,32 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039987.903 units remaining) + - location: 7 (remaining gas: 1039988.603 units remaining) [ (Pair 16 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (remaining gas: 1039987.893 units remaining) + - location: 7 (remaining gas: 1039988.593 units remaining) [ 16 ] - - location: 8 (remaining gas: 1039987.883 units remaining) + - location: 8 (remaining gas: 1039988.583 units remaining) [ 1 16 ] - - location: 11 (remaining gas: 1039987.873 units remaining) + - location: 11 (remaining gas: 1039988.573 units remaining) [ 16 1 ] - - location: 12 (remaining gas: 1039987.733 units remaining) + - location: 12 (remaining gas: 1039988.493 units remaining) [ (Some (Pair 16 0)) ] - - location: 14 (remaining gas: 1039987.723 units remaining) + - location: 14 (remaining gas: 1039988.483 units remaining) [ (Pair 16 0) ] - - location: 14 (remaining gas: 1039987.708 units remaining) + - location: 14 (remaining gas: 1039988.473 units remaining) [ (Pair 16 0) ] - - location: 20 (remaining gas: 1039987.698 units remaining) + - location: 20 (remaining gas: 1039988.463 units remaining) [ 16 ] - - location: 21 (remaining gas: 1039987.688 units remaining) + - location: 21 (remaining gas: 1039988.453 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 16 ] - - location: 24 (remaining gas: 1039987.357 units remaining) + - location: 24 (remaining gas: 1039988.187 units remaining) [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 25 (remaining gas: 1039987.342 units remaining) + - location: 25 (remaining gas: 1039988.177 units remaining) [ {} 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 27 (remaining gas: 1039987.327 units remaining) + - location: 27 (remaining gas: 1039988.167 units remaining) [ (Pair {} 0x1000000000000000000000000000000000000000000000000000000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out index 648d7c7419de..d96f68642cc3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.671 units remaining) + - location: 9 (remaining gas: 1039993.471 units remaining) [ (Pair (Left -2) 0) ] - - location: 9 (remaining gas: 1039992.661 units remaining) + - location: 9 (remaining gas: 1039993.461 units remaining) [ (Left -2) ] - - location: 10 (remaining gas: 1039992.651 units remaining) + - location: 10 (remaining gas: 1039993.451 units remaining) [ -2 ] - - location: 12 (remaining gas: 1039992.611 units remaining) + - location: 12 (remaining gas: 1039993.426 units remaining) [ 2 ] - - location: 10 (remaining gas: 1039992.596 units remaining) + - location: 10 (remaining gas: 1039993.416 units remaining) [ 2 ] - - location: 15 (remaining gas: 1039992.581 units remaining) + - location: 15 (remaining gas: 1039993.406 units remaining) [ {} 2 ] - - location: 17 (remaining gas: 1039992.566 units remaining) + - location: 17 (remaining gas: 1039993.396 units remaining) [ (Pair {} 2) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out index 327a08473222..fd744c3d504d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.671 units remaining) + - location: 9 (remaining gas: 1039993.471 units remaining) [ (Pair (Left 0) 0) ] - - location: 9 (remaining gas: 1039992.661 units remaining) + - location: 9 (remaining gas: 1039993.461 units remaining) [ (Left 0) ] - - location: 10 (remaining gas: 1039992.651 units remaining) + - location: 10 (remaining gas: 1039993.451 units remaining) [ 0 ] - - location: 12 (remaining gas: 1039992.611 units remaining) + - location: 12 (remaining gas: 1039993.426 units remaining) [ 0 ] - - location: 10 (remaining gas: 1039992.596 units remaining) + - location: 10 (remaining gas: 1039993.416 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039992.581 units remaining) + - location: 15 (remaining gas: 1039993.406 units remaining) [ {} 0 ] - - location: 17 (remaining gas: 1039992.566 units remaining) + - location: 17 (remaining gas: 1039993.396 units remaining) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out index fe7f4bd2ec57..34844535474e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.671 units remaining) + - location: 9 (remaining gas: 1039993.471 units remaining) [ (Pair (Left 2) 0) ] - - location: 9 (remaining gas: 1039992.661 units remaining) + - location: 9 (remaining gas: 1039993.461 units remaining) [ (Left 2) ] - - location: 10 (remaining gas: 1039992.651 units remaining) + - location: 10 (remaining gas: 1039993.451 units remaining) [ 2 ] - - location: 12 (remaining gas: 1039992.611 units remaining) + - location: 12 (remaining gas: 1039993.426 units remaining) [ -2 ] - - location: 10 (remaining gas: 1039992.596 units remaining) + - location: 10 (remaining gas: 1039993.416 units remaining) [ -2 ] - - location: 15 (remaining gas: 1039992.581 units remaining) + - location: 15 (remaining gas: 1039993.406 units remaining) [ {} -2 ] - - location: 17 (remaining gas: 1039992.566 units remaining) + - location: 17 (remaining gas: 1039993.396 units remaining) [ (Pair {} -2) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out index fd5844e4a675..1df71c175d42 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.671 units remaining) + - location: 9 (remaining gas: 1039993.471 units remaining) [ (Pair (Right 0) 0) ] - - location: 9 (remaining gas: 1039992.661 units remaining) + - location: 9 (remaining gas: 1039993.461 units remaining) [ (Right 0) ] - - location: 10 (remaining gas: 1039992.651 units remaining) + - location: 10 (remaining gas: 1039993.451 units remaining) [ 0 ] - - location: 14 (remaining gas: 1039992.611 units remaining) + - location: 14 (remaining gas: 1039993.426 units remaining) [ 0 ] - - location: 10 (remaining gas: 1039992.596 units remaining) + - location: 10 (remaining gas: 1039993.416 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039992.581 units remaining) + - location: 15 (remaining gas: 1039993.406 units remaining) [ {} 0 ] - - location: 17 (remaining gas: 1039992.566 units remaining) + - location: 17 (remaining gas: 1039993.396 units remaining) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out index b806c7ca16d4..e730efe3dcbf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.671 units remaining) + - location: 9 (remaining gas: 1039993.471 units remaining) [ (Pair (Right 2) 0) ] - - location: 9 (remaining gas: 1039992.661 units remaining) + - location: 9 (remaining gas: 1039993.461 units remaining) [ (Right 2) ] - - location: 10 (remaining gas: 1039992.651 units remaining) + - location: 10 (remaining gas: 1039993.451 units remaining) [ 2 ] - - location: 14 (remaining gas: 1039992.611 units remaining) + - location: 14 (remaining gas: 1039993.426 units remaining) [ -2 ] - - location: 10 (remaining gas: 1039992.596 units remaining) + - location: 10 (remaining gas: 1039993.416 units remaining) [ -2 ] - - location: 15 (remaining gas: 1039992.581 units remaining) + - location: 15 (remaining gas: 1039993.406 units remaining) [ {} -2 ] - - location: 17 (remaining gas: 1039992.566 units remaining) + - location: 17 (remaining gas: 1039993.396 units remaining) [ (Pair {} -2) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out index e299682e5d22..f33349181fb3 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[none.tz-Some 10-Unit-None].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.292 units remaining) + - location: 8 (remaining gas: 1039995.092 units remaining) [ (Pair Unit (Some 10)) ] - - location: 8 (remaining gas: 1039994.282 units remaining) + - location: 8 (remaining gas: 1039995.082 units remaining) [ ] - - location: 9 (remaining gas: 1039994.267 units remaining) + - location: 9 (remaining gas: 1039995.072 units remaining) [ None ] - - location: 11 (remaining gas: 1039994.252 units remaining) + - location: 11 (remaining gas: 1039995.062 units remaining) [ {} None ] - - location: 13 (remaining gas: 1039994.237 units remaining) + - location: 13 (remaining gas: 1039995.052 units remaining) [ (Pair {} None) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out index 5379d4d3e3f6..5aa9eb56ef1d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-False-(Some True)].out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.922 units remaining) + - location: 8 (remaining gas: 1039994.722 units remaining) [ (Pair False None) ] - - location: 8 (remaining gas: 1039993.912 units remaining) + - location: 8 (remaining gas: 1039994.712 units remaining) [ False ] - - location: 9 (remaining gas: 1039993.902 units remaining) + - location: 9 (remaining gas: 1039994.702 units remaining) [ True ] - - location: 10 (remaining gas: 1039993.887 units remaining) + - location: 10 (remaining gas: 1039994.692 units remaining) [ (Some True) ] - - location: 11 (remaining gas: 1039993.872 units remaining) + - location: 11 (remaining gas: 1039994.682 units remaining) [ {} (Some True) ] - - location: 13 (remaining gas: 1039993.857 units remaining) + - location: 13 (remaining gas: 1039994.672 units remaining) [ (Pair {} (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out index 8a42e4ddfc1e..6fbfaa493922 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not.tz-None-True-(Some False)].out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.922 units remaining) + - location: 8 (remaining gas: 1039994.722 units remaining) [ (Pair True None) ] - - location: 8 (remaining gas: 1039993.912 units remaining) + - location: 8 (remaining gas: 1039994.712 units remaining) [ True ] - - location: 9 (remaining gas: 1039993.902 units remaining) + - location: 9 (remaining gas: 1039994.702 units remaining) [ False ] - - location: 10 (remaining gas: 1039993.887 units remaining) + - location: 10 (remaining gas: 1039994.692 units remaining) [ (Some False) ] - - location: 11 (remaining gas: 1039993.872 units remaining) + - location: 11 (remaining gas: 1039994.682 units remaining) [ {} (Some False) ] - - location: 13 (remaining gas: 1039993.857 units remaining) + - location: 13 (remaining gas: 1039994.672 units remaining) [ (Pair {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out index c39edfa424d0..20d65a11f832 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.670 units remaining) + - location: 10 (remaining gas: 1039992.630 units remaining) [ (Pair (Left -8) None) ] - - location: 10 (remaining gas: 1039991.660 units remaining) + - location: 10 (remaining gas: 1039992.620 units remaining) [ (Left -8) ] - - location: 11 (remaining gas: 1039991.650 units remaining) + - location: 11 (remaining gas: 1039992.610 units remaining) [ -8 ] - - location: 13 (remaining gas: 1039991.600 units remaining) + - location: 13 (remaining gas: 1039992.585 units remaining) [ 7 ] - - location: 11 (remaining gas: 1039991.585 units remaining) + - location: 11 (remaining gas: 1039992.575 units remaining) [ 7 ] - - location: 16 (remaining gas: 1039991.570 units remaining) + - location: 16 (remaining gas: 1039992.565 units remaining) [ (Some 7) ] - - location: 17 (remaining gas: 1039991.555 units remaining) + - location: 17 (remaining gas: 1039992.555 units remaining) [ {} (Some 7) ] - - location: 19 (remaining gas: 1039991.540 units remaining) + - location: 19 (remaining gas: 1039992.545 units remaining) [ (Pair {} (Some 7)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out index 31de7c291f18..78b9406dd832 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.670 units remaining) + - location: 10 (remaining gas: 1039992.630 units remaining) [ (Pair (Left -9) None) ] - - location: 10 (remaining gas: 1039991.660 units remaining) + - location: 10 (remaining gas: 1039992.620 units remaining) [ (Left -9) ] - - location: 11 (remaining gas: 1039991.650 units remaining) + - location: 11 (remaining gas: 1039992.610 units remaining) [ -9 ] - - location: 13 (remaining gas: 1039991.600 units remaining) + - location: 13 (remaining gas: 1039992.585 units remaining) [ 8 ] - - location: 11 (remaining gas: 1039991.585 units remaining) + - location: 11 (remaining gas: 1039992.575 units remaining) [ 8 ] - - location: 16 (remaining gas: 1039991.570 units remaining) + - location: 16 (remaining gas: 1039992.565 units remaining) [ (Some 8) ] - - location: 17 (remaining gas: 1039991.555 units remaining) + - location: 17 (remaining gas: 1039992.555 units remaining) [ {} (Some 8) ] - - location: 19 (remaining gas: 1039991.540 units remaining) + - location: 19 (remaining gas: 1039992.545 units remaining) [ (Pair {} (Some 8)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out index 1a402e6d1a8e..46483b2e3036 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.670 units remaining) + - location: 10 (remaining gas: 1039992.630 units remaining) [ (Pair (Left 0) None) ] - - location: 10 (remaining gas: 1039991.660 units remaining) + - location: 10 (remaining gas: 1039992.620 units remaining) [ (Left 0) ] - - location: 11 (remaining gas: 1039991.650 units remaining) + - location: 11 (remaining gas: 1039992.610 units remaining) [ 0 ] - - location: 13 (remaining gas: 1039991.600 units remaining) + - location: 13 (remaining gas: 1039992.585 units remaining) [ -1 ] - - location: 11 (remaining gas: 1039991.585 units remaining) + - location: 11 (remaining gas: 1039992.575 units remaining) [ -1 ] - - location: 16 (remaining gas: 1039991.570 units remaining) + - location: 16 (remaining gas: 1039992.565 units remaining) [ (Some -1) ] - - location: 17 (remaining gas: 1039991.555 units remaining) + - location: 17 (remaining gas: 1039992.555 units remaining) [ {} (Some -1) ] - - location: 19 (remaining gas: 1039991.540 units remaining) + - location: 19 (remaining gas: 1039992.545 units remaining) [ (Pair {} (Some -1)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out index f7fa9cb29f01..9813886ed5c5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.670 units remaining) + - location: 10 (remaining gas: 1039992.630 units remaining) [ (Pair (Left 7) None) ] - - location: 10 (remaining gas: 1039991.660 units remaining) + - location: 10 (remaining gas: 1039992.620 units remaining) [ (Left 7) ] - - location: 11 (remaining gas: 1039991.650 units remaining) + - location: 11 (remaining gas: 1039992.610 units remaining) [ 7 ] - - location: 13 (remaining gas: 1039991.600 units remaining) + - location: 13 (remaining gas: 1039992.585 units remaining) [ -8 ] - - location: 11 (remaining gas: 1039991.585 units remaining) + - location: 11 (remaining gas: 1039992.575 units remaining) [ -8 ] - - location: 16 (remaining gas: 1039991.570 units remaining) + - location: 16 (remaining gas: 1039992.565 units remaining) [ (Some -8) ] - - location: 17 (remaining gas: 1039991.555 units remaining) + - location: 17 (remaining gas: 1039992.555 units remaining) [ {} (Some -8) ] - - location: 19 (remaining gas: 1039991.540 units remaining) + - location: 19 (remaining gas: 1039992.545 units remaining) [ (Pair {} (Some -8)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out index 068d965db6a6..c764d1cda104 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.670 units remaining) + - location: 10 (remaining gas: 1039992.630 units remaining) [ (Pair (Left 8) None) ] - - location: 10 (remaining gas: 1039991.660 units remaining) + - location: 10 (remaining gas: 1039992.620 units remaining) [ (Left 8) ] - - location: 11 (remaining gas: 1039991.650 units remaining) + - location: 11 (remaining gas: 1039992.610 units remaining) [ 8 ] - - location: 13 (remaining gas: 1039991.600 units remaining) + - location: 13 (remaining gas: 1039992.585 units remaining) [ -9 ] - - location: 11 (remaining gas: 1039991.585 units remaining) + - location: 11 (remaining gas: 1039992.575 units remaining) [ -9 ] - - location: 16 (remaining gas: 1039991.570 units remaining) + - location: 16 (remaining gas: 1039992.565 units remaining) [ (Some -9) ] - - location: 17 (remaining gas: 1039991.555 units remaining) + - location: 17 (remaining gas: 1039992.555 units remaining) [ {} (Some -9) ] - - location: 19 (remaining gas: 1039991.540 units remaining) + - location: 19 (remaining gas: 1039992.545 units remaining) [ (Pair {} (Some -9)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out index 1dccb9d286c6..bef51f0db31b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.670 units remaining) + - location: 10 (remaining gas: 1039992.630 units remaining) [ (Pair (Right 0) None) ] - - location: 10 (remaining gas: 1039991.660 units remaining) + - location: 10 (remaining gas: 1039992.620 units remaining) [ (Right 0) ] - - location: 11 (remaining gas: 1039991.650 units remaining) + - location: 11 (remaining gas: 1039992.610 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039991.600 units remaining) + - location: 15 (remaining gas: 1039992.585 units remaining) [ -1 ] - - location: 11 (remaining gas: 1039991.585 units remaining) + - location: 11 (remaining gas: 1039992.575 units remaining) [ -1 ] - - location: 16 (remaining gas: 1039991.570 units remaining) + - location: 16 (remaining gas: 1039992.565 units remaining) [ (Some -1) ] - - location: 17 (remaining gas: 1039991.555 units remaining) + - location: 17 (remaining gas: 1039992.555 units remaining) [ {} (Some -1) ] - - location: 19 (remaining gas: 1039991.540 units remaining) + - location: 19 (remaining gas: 1039992.545 units remaining) [ (Pair {} (Some -1)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out index 92252f8a95b7..e4671c92658a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.670 units remaining) + - location: 10 (remaining gas: 1039992.630 units remaining) [ (Pair (Right 7) None) ] - - location: 10 (remaining gas: 1039991.660 units remaining) + - location: 10 (remaining gas: 1039992.620 units remaining) [ (Right 7) ] - - location: 11 (remaining gas: 1039991.650 units remaining) + - location: 11 (remaining gas: 1039992.610 units remaining) [ 7 ] - - location: 15 (remaining gas: 1039991.600 units remaining) + - location: 15 (remaining gas: 1039992.585 units remaining) [ -8 ] - - location: 11 (remaining gas: 1039991.585 units remaining) + - location: 11 (remaining gas: 1039992.575 units remaining) [ -8 ] - - location: 16 (remaining gas: 1039991.570 units remaining) + - location: 16 (remaining gas: 1039992.565 units remaining) [ (Some -8) ] - - location: 17 (remaining gas: 1039991.555 units remaining) + - location: 17 (remaining gas: 1039992.555 units remaining) [ {} (Some -8) ] - - location: 19 (remaining gas: 1039991.540 units remaining) + - location: 19 (remaining gas: 1039992.545 units remaining) [ (Pair {} (Some -8)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out index e6289e7b6885..a4ff668f416b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.670 units remaining) + - location: 10 (remaining gas: 1039992.630 units remaining) [ (Pair (Right 8) None) ] - - location: 10 (remaining gas: 1039991.660 units remaining) + - location: 10 (remaining gas: 1039992.620 units remaining) [ (Right 8) ] - - location: 11 (remaining gas: 1039991.650 units remaining) + - location: 11 (remaining gas: 1039992.610 units remaining) [ 8 ] - - location: 15 (remaining gas: 1039991.600 units remaining) + - location: 15 (remaining gas: 1039992.585 units remaining) [ -9 ] - - location: 11 (remaining gas: 1039991.585 units remaining) + - location: 11 (remaining gas: 1039992.575 units remaining) [ -9 ] - - location: 16 (remaining gas: 1039991.570 units remaining) + - location: 16 (remaining gas: 1039992.565 units remaining) [ (Some -9) ] - - location: 17 (remaining gas: 1039991.555 units remaining) + - location: 17 (remaining gas: 1039992.555 units remaining) [ {} (Some -9) ] - - location: 19 (remaining gas: 1039991.540 units remaining) + - location: 19 (remaining gas: 1039992.545 units remaining) [ (Pair {} (Some -9)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out index 8759d876c46f..01ff3f3c01b6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False False)-(Some False)].out @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.680 units remaining) + - location: 10 (remaining gas: 1039991.480 units remaining) [ (Pair (Pair False False) None) ] - - location: 10 (remaining gas: 1039990.670 units remaining) + - location: 10 (remaining gas: 1039991.470 units remaining) [ (Pair False False) ] - - location: 11 (remaining gas: 1039990.660 units remaining) + - location: 11 (remaining gas: 1039991.460 units remaining) [ (Pair False False) (Pair False False) ] - - location: 12 (remaining gas: 1039990.650 units remaining) + - location: 12 (remaining gas: 1039991.450 units remaining) [ False (Pair False False) ] - - location: 13 (remaining gas: 1039990.640 units remaining) + - location: 13 (remaining gas: 1039991.440 units remaining) [ (Pair False False) False ] - - location: 14 (remaining gas: 1039990.630 units remaining) + - location: 14 (remaining gas: 1039991.430 units remaining) [ False False ] - - location: 15 (remaining gas: 1039990.615 units remaining) + - location: 15 (remaining gas: 1039991.420 units remaining) [ False ] - - location: 16 (remaining gas: 1039990.600 units remaining) + - location: 16 (remaining gas: 1039991.410 units remaining) [ (Some False) ] - - location: 17 (remaining gas: 1039990.585 units remaining) + - location: 17 (remaining gas: 1039991.400 units remaining) [ {} (Some False) ] - - location: 19 (remaining gas: 1039990.570 units remaining) + - location: 19 (remaining gas: 1039991.390 units remaining) [ (Pair {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out index a8393663ba6f..cdd8145e5d50 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair False True)-(Some True)].out @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.680 units remaining) + - location: 10 (remaining gas: 1039991.480 units remaining) [ (Pair (Pair False True) None) ] - - location: 10 (remaining gas: 1039990.670 units remaining) + - location: 10 (remaining gas: 1039991.470 units remaining) [ (Pair False True) ] - - location: 11 (remaining gas: 1039990.660 units remaining) + - location: 11 (remaining gas: 1039991.460 units remaining) [ (Pair False True) (Pair False True) ] - - location: 12 (remaining gas: 1039990.650 units remaining) + - location: 12 (remaining gas: 1039991.450 units remaining) [ False (Pair False True) ] - - location: 13 (remaining gas: 1039990.640 units remaining) + - location: 13 (remaining gas: 1039991.440 units remaining) [ (Pair False True) False ] - - location: 14 (remaining gas: 1039990.630 units remaining) + - location: 14 (remaining gas: 1039991.430 units remaining) [ True False ] - - location: 15 (remaining gas: 1039990.615 units remaining) + - location: 15 (remaining gas: 1039991.420 units remaining) [ True ] - - location: 16 (remaining gas: 1039990.600 units remaining) + - location: 16 (remaining gas: 1039991.410 units remaining) [ (Some True) ] - - location: 17 (remaining gas: 1039990.585 units remaining) + - location: 17 (remaining gas: 1039991.400 units remaining) [ {} (Some True) ] - - location: 19 (remaining gas: 1039990.570 units remaining) + - location: 19 (remaining gas: 1039991.390 units remaining) [ (Pair {} (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out index 915310362124..3faa65bc7a91 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True False)-(Some True)].out @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.680 units remaining) + - location: 10 (remaining gas: 1039991.480 units remaining) [ (Pair (Pair True False) None) ] - - location: 10 (remaining gas: 1039990.670 units remaining) + - location: 10 (remaining gas: 1039991.470 units remaining) [ (Pair True False) ] - - location: 11 (remaining gas: 1039990.660 units remaining) + - location: 11 (remaining gas: 1039991.460 units remaining) [ (Pair True False) (Pair True False) ] - - location: 12 (remaining gas: 1039990.650 units remaining) + - location: 12 (remaining gas: 1039991.450 units remaining) [ True (Pair True False) ] - - location: 13 (remaining gas: 1039990.640 units remaining) + - location: 13 (remaining gas: 1039991.440 units remaining) [ (Pair True False) True ] - - location: 14 (remaining gas: 1039990.630 units remaining) + - location: 14 (remaining gas: 1039991.430 units remaining) [ False True ] - - location: 15 (remaining gas: 1039990.615 units remaining) + - location: 15 (remaining gas: 1039991.420 units remaining) [ True ] - - location: 16 (remaining gas: 1039990.600 units remaining) + - location: 16 (remaining gas: 1039991.410 units remaining) [ (Some True) ] - - location: 17 (remaining gas: 1039990.585 units remaining) + - location: 17 (remaining gas: 1039991.400 units remaining) [ {} (Some True) ] - - location: 19 (remaining gas: 1039990.570 units remaining) + - location: 19 (remaining gas: 1039991.390 units remaining) [ (Pair {} (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out index 8b9317c87b31..41073064def0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or.tz-None-(Pair True True)-(Some True)].out @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039990.680 units remaining) + - location: 10 (remaining gas: 1039991.480 units remaining) [ (Pair (Pair True True) None) ] - - location: 10 (remaining gas: 1039990.670 units remaining) + - location: 10 (remaining gas: 1039991.470 units remaining) [ (Pair True True) ] - - location: 11 (remaining gas: 1039990.660 units remaining) + - location: 11 (remaining gas: 1039991.460 units remaining) [ (Pair True True) (Pair True True) ] - - location: 12 (remaining gas: 1039990.650 units remaining) + - location: 12 (remaining gas: 1039991.450 units remaining) [ True (Pair True True) ] - - location: 13 (remaining gas: 1039990.640 units remaining) + - location: 13 (remaining gas: 1039991.440 units remaining) [ (Pair True True) True ] - - location: 14 (remaining gas: 1039990.630 units remaining) + - location: 14 (remaining gas: 1039991.430 units remaining) [ True True ] - - location: 15 (remaining gas: 1039990.615 units remaining) + - location: 15 (remaining gas: 1039991.420 units remaining) [ True ] - - location: 16 (remaining gas: 1039990.600 units remaining) + - location: 16 (remaining gas: 1039991.410 units remaining) [ (Some True) ] - - location: 17 (remaining gas: 1039990.585 units remaining) + - location: 17 (remaining gas: 1039991.400 units remaining) [ {} (Some True) ] - - location: 19 (remaining gas: 1039990.570 units remaining) + - location: 19 (remaining gas: 1039991.390 units remaining) [ (Pair {} (Some True)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out index 807dd3877e24..b5ce21370bee 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 0 8)-(Some 8)].out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039992.789 units remaining) + - location: 10 (remaining gas: 1039993.589 units remaining) [ (Pair (Pair 0 8) None) ] - - location: 10 (remaining gas: 1039992.779 units remaining) + - location: 10 (remaining gas: 1039993.579 units remaining) [ (Pair 0 8) ] - - location: 11 (remaining gas: 1039992.769 units remaining) + - location: 11 (remaining gas: 1039993.569 units remaining) [ 0 8 ] - - location: 12 (remaining gas: 1039992.714 units remaining) + - location: 12 (remaining gas: 1039993.534 units remaining) [ 8 ] - - location: 13 (remaining gas: 1039992.699 units remaining) + - location: 13 (remaining gas: 1039993.524 units remaining) [ (Some 8) ] - - location: 14 (remaining gas: 1039992.684 units remaining) + - location: 14 (remaining gas: 1039993.514 units remaining) [ {} (Some 8) ] - - location: 16 (remaining gas: 1039992.669 units remaining) + - location: 16 (remaining gas: 1039993.504 units remaining) [ (Pair {} (Some 8)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out index 95988010344a..3bad34009432 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 14 1)-(Some 15)].out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039992.789 units remaining) + - location: 10 (remaining gas: 1039993.589 units remaining) [ (Pair (Pair 14 1) None) ] - - location: 10 (remaining gas: 1039992.779 units remaining) + - location: 10 (remaining gas: 1039993.579 units remaining) [ (Pair 14 1) ] - - location: 11 (remaining gas: 1039992.769 units remaining) + - location: 11 (remaining gas: 1039993.569 units remaining) [ 14 1 ] - - location: 12 (remaining gas: 1039992.714 units remaining) + - location: 12 (remaining gas: 1039993.534 units remaining) [ 15 ] - - location: 13 (remaining gas: 1039992.699 units remaining) + - location: 13 (remaining gas: 1039993.524 units remaining) [ (Some 15) ] - - location: 14 (remaining gas: 1039992.684 units remaining) + - location: 14 (remaining gas: 1039993.514 units remaining) [ {} (Some 15) ] - - location: 16 (remaining gas: 1039992.669 units remaining) + - location: 16 (remaining gas: 1039993.504 units remaining) [ (Pair {} (Some 15)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out index b8605f1a082f..06c67355b954 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 15 4)-(Some 15)].out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039992.789 units remaining) + - location: 10 (remaining gas: 1039993.589 units remaining) [ (Pair (Pair 15 4) None) ] - - location: 10 (remaining gas: 1039992.779 units remaining) + - location: 10 (remaining gas: 1039993.579 units remaining) [ (Pair 15 4) ] - - location: 11 (remaining gas: 1039992.769 units remaining) + - location: 11 (remaining gas: 1039993.569 units remaining) [ 15 4 ] - - location: 12 (remaining gas: 1039992.714 units remaining) + - location: 12 (remaining gas: 1039993.534 units remaining) [ 15 ] - - location: 13 (remaining gas: 1039992.699 units remaining) + - location: 13 (remaining gas: 1039993.524 units remaining) [ (Some 15) ] - - location: 14 (remaining gas: 1039992.684 units remaining) + - location: 14 (remaining gas: 1039993.514 units remaining) [ {} (Some 15) ] - - location: 16 (remaining gas: 1039992.669 units remaining) + - location: 16 (remaining gas: 1039993.504 units remaining) [ (Pair {} (Some 15)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out index 5b84b6362c93..f48d6c443f79 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 4 8)-(Some 12)].out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039992.789 units remaining) + - location: 10 (remaining gas: 1039993.589 units remaining) [ (Pair (Pair 4 8) None) ] - - location: 10 (remaining gas: 1039992.779 units remaining) + - location: 10 (remaining gas: 1039993.579 units remaining) [ (Pair 4 8) ] - - location: 11 (remaining gas: 1039992.769 units remaining) + - location: 11 (remaining gas: 1039993.569 units remaining) [ 4 8 ] - - location: 12 (remaining gas: 1039992.714 units remaining) + - location: 12 (remaining gas: 1039993.534 units remaining) [ 12 ] - - location: 13 (remaining gas: 1039992.699 units remaining) + - location: 13 (remaining gas: 1039993.524 units remaining) [ (Some 12) ] - - location: 14 (remaining gas: 1039992.684 units remaining) + - location: 14 (remaining gas: 1039993.514 units remaining) [ {} (Some 12) ] - - location: 16 (remaining gas: 1039992.669 units remaining) + - location: 16 (remaining gas: 1039993.504 units remaining) [ (Pair {} (Some 12)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out index 0a35709f9200..dc793471feb6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 7 7)-(Some 7)].out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039992.789 units remaining) + - location: 10 (remaining gas: 1039993.589 units remaining) [ (Pair (Pair 7 7) None) ] - - location: 10 (remaining gas: 1039992.779 units remaining) + - location: 10 (remaining gas: 1039993.579 units remaining) [ (Pair 7 7) ] - - location: 11 (remaining gas: 1039992.769 units remaining) + - location: 11 (remaining gas: 1039993.569 units remaining) [ 7 7 ] - - location: 12 (remaining gas: 1039992.714 units remaining) + - location: 12 (remaining gas: 1039993.534 units remaining) [ 7 ] - - location: 13 (remaining gas: 1039992.699 units remaining) + - location: 13 (remaining gas: 1039993.524 units remaining) [ (Some 7) ] - - location: 14 (remaining gas: 1039992.684 units remaining) + - location: 14 (remaining gas: 1039993.514 units remaining) [ {} (Some 7) ] - - location: 16 (remaining gas: 1039992.669 units remaining) + - location: 16 (remaining gas: 1039993.504 units remaining) [ (Pair {} (Some 7)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out index 114f5acbf86a..815674bf0410 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[or_binary.tz-None-(Pair 8 0)-(Some 8)].out @@ -7,20 +7,20 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039992.789 units remaining) + - location: 10 (remaining gas: 1039993.589 units remaining) [ (Pair (Pair 8 0) None) ] - - location: 10 (remaining gas: 1039992.779 units remaining) + - location: 10 (remaining gas: 1039993.579 units remaining) [ (Pair 8 0) ] - - location: 11 (remaining gas: 1039992.769 units remaining) + - location: 11 (remaining gas: 1039993.569 units remaining) [ 8 0 ] - - location: 12 (remaining gas: 1039992.714 units remaining) + - location: 12 (remaining gas: 1039993.534 units remaining) [ 8 ] - - location: 13 (remaining gas: 1039992.699 units remaining) + - location: 13 (remaining gas: 1039993.524 units remaining) [ (Some 8) ] - - location: 14 (remaining gas: 1039992.684 units remaining) + - location: 14 (remaining gas: 1039993.514 units remaining) [ {} (Some 8) ] - - location: 16 (remaining gas: 1039992.669 units remaining) + - location: 16 (remaining gas: 1039993.504 units remaining) [ (Pair {} (Some 8)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" index 9a880b24c800..41d46b43c106 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".368bdfd73a.out" @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039194.495 units remaining) + - location: 16 (remaining gas: 1039839.245 units remaining) [ (Pair (Pair -1 1 "foobar" @@ -18,7 +18,7 @@ trace "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") Unit) ] - - location: 16 (remaining gas: 1039194.485 units remaining) + - location: 16 (remaining gas: 1039839.235 units remaining) [ (Pair -1 1 "foobar" @@ -28,7 +28,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 17 (remaining gas: 1039194.475 units remaining) + - location: 17 (remaining gas: 1039839.225 units remaining) [ (Pair -1 1 "foobar" @@ -47,7 +47,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 18 (remaining gas: 1039194.465 units remaining) + - location: 18 (remaining gas: 1039839.215 units remaining) [ -1 (Pair -1 1 @@ -58,7 +58,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 19 (remaining gas: 1039194.450 units remaining) + - location: 19 (remaining gas: 1039839.205 units remaining) [ (Pair -1 1 "foobar" @@ -68,7 +68,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 21 (remaining gas: 1039194.440 units remaining) + - location: 21 (remaining gas: 1039839.195 units remaining) [ -1 (Pair 1 "foobar" @@ -78,7 +78,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 19 (remaining gas: 1039194.410 units remaining) + - location: 19 (remaining gas: 1039839.175 units remaining) [ -1 -1 (Pair 1 @@ -89,7 +89,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 22 (remaining gas: 1039194.183 units remaining) + - location: 22 (remaining gas: 1039838.948 units remaining) [ 0x050041 -1 (Pair 1 @@ -100,7 +100,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 23 (remaining gas: 1039193.763 units remaining) + - location: 23 (remaining gas: 1039838.528 units remaining) [ (Some -1) -1 (Pair 1 @@ -111,7 +111,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (remaining gas: 1039193.753 units remaining) + - location: 26 (remaining gas: 1039838.518 units remaining) [ -1 -1 (Pair 1 @@ -122,7 +122,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (remaining gas: 1039193.738 units remaining) + - location: 26 (remaining gas: 1039838.508 units remaining) [ -1 -1 (Pair 1 @@ -133,7 +133,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 34 (remaining gas: 1039193.703 units remaining) + - location: 34 (remaining gas: 1039838.473 units remaining) [ 0 (Pair 1 "foobar" @@ -143,7 +143,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 35 (remaining gas: 1039193.688 units remaining) + - location: 35 (remaining gas: 1039838.463 units remaining) [ True (Pair 1 "foobar" @@ -153,7 +153,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (remaining gas: 1039193.678 units remaining) + - location: 36 (remaining gas: 1039838.453 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -162,7 +162,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (remaining gas: 1039193.663 units remaining) + - location: 36 (remaining gas: 1039838.443 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -171,7 +171,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 42 (remaining gas: 1039193.653 units remaining) + - location: 42 (remaining gas: 1039838.433 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -188,7 +188,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 43 (remaining gas: 1039193.643 units remaining) + - location: 43 (remaining gas: 1039838.423 units remaining) [ 1 (Pair 1 "foobar" @@ -198,7 +198,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (remaining gas: 1039193.628 units remaining) + - location: 44 (remaining gas: 1039838.413 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -207,7 +207,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 46 (remaining gas: 1039193.618 units remaining) + - location: 46 (remaining gas: 1039838.403 units remaining) [ 1 (Pair "foobar" 0x00aabbcc @@ -216,7 +216,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (remaining gas: 1039193.588 units remaining) + - location: 44 (remaining gas: 1039838.383 units remaining) [ 1 1 (Pair "foobar" @@ -226,7 +226,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 47 (remaining gas: 1039193.361 units remaining) + - location: 47 (remaining gas: 1039838.156 units remaining) [ 0x050001 1 (Pair "foobar" @@ -236,7 +236,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 48 (remaining gas: 1039192.941 units remaining) + - location: 48 (remaining gas: 1039837.736 units remaining) [ (Some 1) 1 (Pair "foobar" @@ -246,7 +246,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (remaining gas: 1039192.931 units remaining) + - location: 51 (remaining gas: 1039837.726 units remaining) [ 1 1 (Pair "foobar" @@ -256,7 +256,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (remaining gas: 1039192.916 units remaining) + - location: 51 (remaining gas: 1039837.716 units remaining) [ 1 1 (Pair "foobar" @@ -266,7 +266,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 59 (remaining gas: 1039192.881 units remaining) + - location: 59 (remaining gas: 1039837.681 units remaining) [ 0 (Pair "foobar" 0x00aabbcc @@ -275,7 +275,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 60 (remaining gas: 1039192.866 units remaining) + - location: 60 (remaining gas: 1039837.671 units remaining) [ True (Pair "foobar" 0x00aabbcc @@ -284,7 +284,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (remaining gas: 1039192.856 units remaining) + - location: 61 (remaining gas: 1039837.661 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -292,7 +292,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (remaining gas: 1039192.841 units remaining) + - location: 61 (remaining gas: 1039837.651 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -300,7 +300,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 67 (remaining gas: 1039192.831 units remaining) + - location: 67 (remaining gas: 1039837.641 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -315,7 +315,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 68 (remaining gas: 1039192.821 units remaining) + - location: 68 (remaining gas: 1039837.631 units remaining) [ "foobar" (Pair "foobar" 0x00aabbcc @@ -324,7 +324,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (remaining gas: 1039192.806 units remaining) + - location: 69 (remaining gas: 1039837.621 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -332,7 +332,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 71 (remaining gas: 1039192.796 units remaining) + - location: 71 (remaining gas: 1039837.611 units remaining) [ "foobar" (Pair 0x00aabbcc 1000 @@ -340,7 +340,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (remaining gas: 1039192.766 units remaining) + - location: 69 (remaining gas: 1039837.591 units remaining) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -349,7 +349,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 72 (remaining gas: 1039192.242 units remaining) + - location: 72 (remaining gas: 1039837.067 units remaining) [ 0x050100000006666f6f626172 "foobar" (Pair 0x00aabbcc @@ -358,7 +358,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 73 (remaining gas: 1039191.567 units remaining) + - location: 73 (remaining gas: 1039836.392 units remaining) [ (Some "foobar") "foobar" (Pair 0x00aabbcc @@ -367,7 +367,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (remaining gas: 1039191.557 units remaining) + - location: 76 (remaining gas: 1039836.382 units remaining) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -376,7 +376,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (remaining gas: 1039191.542 units remaining) + - location: 76 (remaining gas: 1039836.372 units remaining) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -385,7 +385,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 84 (remaining gas: 1039191.507 units remaining) + - location: 84 (remaining gas: 1039836.337 units remaining) [ 0 (Pair 0x00aabbcc 1000 @@ -393,7 +393,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 85 (remaining gas: 1039191.492 units remaining) + - location: 85 (remaining gas: 1039836.327 units remaining) [ True (Pair 0x00aabbcc 1000 @@ -401,21 +401,21 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (remaining gas: 1039191.482 units remaining) + - location: 86 (remaining gas: 1039836.317 units remaining) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (remaining gas: 1039191.467 units remaining) + - location: 86 (remaining gas: 1039836.307 units remaining) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 92 (remaining gas: 1039191.457 units remaining) + - location: 92 (remaining gas: 1039836.297 units remaining) [ (Pair 0x00aabbcc 1000 False @@ -428,7 +428,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 93 (remaining gas: 1039191.447 units remaining) + - location: 93 (remaining gas: 1039836.287 units remaining) [ 0x00aabbcc (Pair 0x00aabbcc 1000 @@ -436,21 +436,21 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (remaining gas: 1039191.432 units remaining) + - location: 94 (remaining gas: 1039836.277 units remaining) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 96 (remaining gas: 1039191.422 units remaining) + - location: 96 (remaining gas: 1039836.267 units remaining) [ 0x00aabbcc (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (remaining gas: 1039191.392 units remaining) + - location: 94 (remaining gas: 1039836.247 units remaining) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -458,7 +458,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 97 (remaining gas: 1039190.934 units remaining) + - location: 97 (remaining gas: 1039835.789 units remaining) [ 0x050a0000000400aabbcc 0x00aabbcc (Pair 1000 @@ -466,7 +466,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 98 (remaining gas: 1039190.373 units remaining) + - location: 98 (remaining gas: 1039835.228 units remaining) [ (Some 0x00aabbcc) 0x00aabbcc (Pair 1000 @@ -474,7 +474,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (remaining gas: 1039190.363 units remaining) + - location: 101 (remaining gas: 1039835.218 units remaining) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -482,7 +482,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (remaining gas: 1039190.348 units remaining) + - location: 101 (remaining gas: 1039835.208 units remaining) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -490,33 +490,33 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 109 (remaining gas: 1039190.313 units remaining) + - location: 109 (remaining gas: 1039835.173 units remaining) [ 0 (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 110 (remaining gas: 1039190.298 units remaining) + - location: 110 (remaining gas: 1039835.163 units remaining) [ True (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (remaining gas: 1039190.288 units remaining) + - location: 111 (remaining gas: 1039835.153 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (remaining gas: 1039190.273 units remaining) + - location: 111 (remaining gas: 1039835.143 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 117 (remaining gas: 1039190.263 units remaining) + - location: 117 (remaining gas: 1039835.133 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" @@ -527,83 +527,83 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 118 (remaining gas: 1039190.253 units remaining) + - location: 118 (remaining gas: 1039835.123 units remaining) [ 1000 (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (remaining gas: 1039190.238 units remaining) + - location: 119 (remaining gas: 1039835.113 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 121 (remaining gas: 1039190.228 units remaining) + - location: 121 (remaining gas: 1039835.103 units remaining) [ 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (remaining gas: 1039190.198 units remaining) + - location: 119 (remaining gas: 1039835.083 units remaining) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 122 (remaining gas: 1039189.938 units remaining) + - location: 122 (remaining gas: 1039834.823 units remaining) [ 0x0500a80f 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 123 (remaining gas: 1039189.498 units remaining) + - location: 123 (remaining gas: 1039834.383 units remaining) [ (Some 1000) 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (remaining gas: 1039189.488 units remaining) + - location: 126 (remaining gas: 1039834.373 units remaining) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (remaining gas: 1039189.473 units remaining) + - location: 126 (remaining gas: 1039834.363 units remaining) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 134 (remaining gas: 1039189.438 units remaining) + - location: 134 (remaining gas: 1039834.328 units remaining) [ 0 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 135 (remaining gas: 1039189.423 units remaining) + - location: 135 (remaining gas: 1039834.318 units remaining) [ True (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039189.413 units remaining) + - location: 136 (remaining gas: 1039834.308 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039189.398 units remaining) + - location: 136 (remaining gas: 1039834.298 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 142 (remaining gas: 1039189.388 units remaining) + - location: 142 (remaining gas: 1039834.288 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" @@ -612,234 +612,234 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 143 (remaining gas: 1039189.378 units remaining) + - location: 143 (remaining gas: 1039834.278 units remaining) [ False (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039189.363 units remaining) + - location: 144 (remaining gas: 1039834.268 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 146 (remaining gas: 1039189.353 units remaining) + - location: 146 (remaining gas: 1039834.258 units remaining) [ False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039189.323 units remaining) + - location: 144 (remaining gas: 1039834.238 units remaining) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 147 (remaining gas: 1039189.096 units remaining) + - location: 147 (remaining gas: 1039834.011 units remaining) [ 0x050303 False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 148 (remaining gas: 1039188.676 units remaining) + - location: 148 (remaining gas: 1039833.591 units remaining) [ (Some False) False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (remaining gas: 1039188.666 units remaining) + - location: 151 (remaining gas: 1039833.581 units remaining) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (remaining gas: 1039188.651 units remaining) + - location: 151 (remaining gas: 1039833.571 units remaining) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 159 (remaining gas: 1039188.616 units remaining) + - location: 159 (remaining gas: 1039833.536 units remaining) [ 0 (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 160 (remaining gas: 1039188.601 units remaining) + - location: 160 (remaining gas: 1039833.526 units remaining) [ True (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039188.591 units remaining) + - location: 161 (remaining gas: 1039833.516 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039188.576 units remaining) + - location: 161 (remaining gas: 1039833.506 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 167 (remaining gas: 1039188.566 units remaining) + - location: 167 (remaining gas: 1039833.496 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 168 (remaining gas: 1039188.556 units remaining) + - location: 168 (remaining gas: 1039833.486 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039188.541 units remaining) + - location: 169 (remaining gas: 1039833.476 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 171 (remaining gas: 1039188.531 units remaining) + - location: 171 (remaining gas: 1039833.466 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039188.501 units remaining) + - location: 169 (remaining gas: 1039833.446 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 172 (remaining gas: 1039187.411 units remaining) + - location: 172 (remaining gas: 1039832.356 units remaining) [ 0x050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 173 (remaining gas: 1039186.458 units remaining) + - location: 173 (remaining gas: 1039831.403 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039186.448 units remaining) + - location: 176 (remaining gas: 1039831.393 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039186.433 units remaining) + - location: 176 (remaining gas: 1039831.383 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 184 (remaining gas: 1039186.397 units remaining) + - location: 184 (remaining gas: 1039831.347 units remaining) [ 0 (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 185 (remaining gas: 1039186.382 units remaining) + - location: 185 (remaining gas: 1039831.337 units remaining) [ True (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039186.372 units remaining) + - location: 186 (remaining gas: 1039831.327 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039186.357 units remaining) + - location: 186 (remaining gas: 1039831.317 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 192 (remaining gas: 1039186.347 units remaining) + - location: 192 (remaining gas: 1039831.307 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 193 (remaining gas: 1039186.337 units remaining) + - location: 193 (remaining gas: 1039831.297 units remaining) [ "2019-09-09T08:35:33Z" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 194 (remaining gas: 1039186.322 units remaining) + - location: 194 (remaining gas: 1039831.287 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 196 (remaining gas: 1039186.312 units remaining) + - location: 196 (remaining gas: 1039831.277 units remaining) [ "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 194 (remaining gas: 1039186.282 units remaining) + - location: 194 (remaining gas: 1039831.257 units remaining) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 197 (remaining gas: 1039185.923 units remaining) + - location: 197 (remaining gas: 1039830.898 units remaining) [ 0x050095bbb0d70b "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 198 (remaining gas: 1039185.423 units remaining) + - location: 198 (remaining gas: 1039830.398 units remaining) [ (Some "2019-09-09T08:35:33Z") "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (remaining gas: 1039185.413 units remaining) + - location: 201 (remaining gas: 1039830.388 units remaining) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (remaining gas: 1039185.398 units remaining) + - location: 201 (remaining gas: 1039830.378 units remaining) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 209 (remaining gas: 1039185.363 units remaining) + - location: 209 (remaining gas: 1039830.343 units remaining) [ 0 "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 210 (remaining gas: 1039185.348 units remaining) + - location: 210 (remaining gas: 1039830.333 units remaining) [ True "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039185.338 units remaining) + - location: 211 (remaining gas: 1039830.323 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039185.323 units remaining) + - location: 211 (remaining gas: 1039830.313 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 217 (remaining gas: 1039185.313 units remaining) + - location: 217 (remaining gas: 1039830.303 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 218 (remaining gas: 1039174.360 units remaining) + - location: 218 (remaining gas: 1039829.180 units remaining) [ 0x050a000000160000bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 219 (remaining gas: 1038523.437 units remaining) + - location: 219 (remaining gas: 1039828.207 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1038523.427 units remaining) + - location: 222 (remaining gas: 1039828.197 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1038523.412 units remaining) + - location: 222 (remaining gas: 1039828.187 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 230 (remaining gas: 1038523.376 units remaining) + - location: 230 (remaining gas: 1039828.151 units remaining) [ 0 ] - - location: 231 (remaining gas: 1038523.361 units remaining) + - location: 231 (remaining gas: 1039828.141 units remaining) [ True ] - - location: 232 (remaining gas: 1038523.351 units remaining) + - location: 232 (remaining gas: 1039828.131 units remaining) [ ] - - location: 232 (remaining gas: 1038523.336 units remaining) + - location: 232 (remaining gas: 1039828.121 units remaining) [ ] - - location: 238 (remaining gas: 1038523.326 units remaining) + - location: 238 (remaining gas: 1039828.111 units remaining) [ 0 ] - - location: 241 (remaining gas: 1038523.099 units remaining) + - location: 241 (remaining gas: 1039827.884 units remaining) [ 0x050000 ] - - location: 242 (remaining gas: 1038522.679 units remaining) + - location: 242 (remaining gas: 1039827.464 units remaining) [ (Some 0) ] - - location: 245 (remaining gas: 1038522.669 units remaining) + - location: 245 (remaining gas: 1039827.454 units remaining) [ 0 ] - - location: 245 (remaining gas: 1038522.654 units remaining) + - location: 245 (remaining gas: 1039827.444 units remaining) [ 0 ] - - location: 251 (remaining gas: 1038522.644 units remaining) + - location: 251 (remaining gas: 1039827.434 units remaining) [ ] - - location: 252 (remaining gas: 1038522.634 units remaining) + - location: 252 (remaining gas: 1039827.424 units remaining) [ -1 ] - - location: 255 (remaining gas: 1038522.407 units remaining) + - location: 255 (remaining gas: 1039827.197 units remaining) [ 0x050041 ] - - location: 256 (remaining gas: 1038426.087 units remaining) + - location: 256 (remaining gas: 1039730.877 units remaining) [ None ] - - location: 259 (remaining gas: 1038426.077 units remaining) + - location: 259 (remaining gas: 1039730.867 units remaining) [ ] - - location: 259 (remaining gas: 1038426.062 units remaining) + - location: 259 (remaining gas: 1039730.857 units remaining) [ ] - - location: 265 (remaining gas: 1038426.052 units remaining) + - location: 265 (remaining gas: 1039730.847 units remaining) [ 0x ] - - location: 268 (remaining gas: 1038425.792 units remaining) + - location: 268 (remaining gas: 1039730.587 units remaining) [ None ] - - location: 271 (remaining gas: 1038425.782 units remaining) + - location: 271 (remaining gas: 1039730.577 units remaining) [ ] - - location: 271 (remaining gas: 1038425.767 units remaining) + - location: 271 (remaining gas: 1039730.567 units remaining) [ ] - - location: 277 (remaining gas: 1038425.757 units remaining) + - location: 277 (remaining gas: 1039730.557 units remaining) [ 0x04 ] - - location: 280 (remaining gas: 1038425.477 units remaining) + - location: 280 (remaining gas: 1039730.277 units remaining) [ None ] - - location: 283 (remaining gas: 1038425.467 units remaining) + - location: 283 (remaining gas: 1039730.267 units remaining) [ ] - - location: 283 (remaining gas: 1038425.452 units remaining) + - location: 283 (remaining gas: 1039730.257 units remaining) [ ] - - location: 289 (remaining gas: 1038425.442 units remaining) + - location: 289 (remaining gas: 1039730.247 units remaining) [ 0x05 ] - - location: 292 (remaining gas: 1038425.162 units remaining) + - location: 292 (remaining gas: 1039729.967 units remaining) [ None ] - - location: 295 (remaining gas: 1038425.152 units remaining) + - location: 295 (remaining gas: 1039729.957 units remaining) [ ] - - location: 295 (remaining gas: 1038425.137 units remaining) + - location: 295 (remaining gas: 1039729.947 units remaining) [ ] - - location: 301 (remaining gas: 1038425.127 units remaining) + - location: 301 (remaining gas: 1039729.937 units remaining) [ Unit ] - - location: 302 (remaining gas: 1038425.112 units remaining) + - location: 302 (remaining gas: 1039729.927 units remaining) [ {} Unit ] - - location: 304 (remaining gas: 1038425.097 units remaining) + - location: 304 (remaining gas: 1039729.917 units remaining) [ (Pair {} Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" index c82856dce796..407a43602c76 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev.tz-Unit-(Pair -1 (Pair 1 (Pair \"foobar\".735d9ae802.out" @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039194.495 units remaining) + - location: 16 (remaining gas: 1039839.245 units remaining) [ (Pair (Pair -1 1 "foobar" @@ -18,7 +18,7 @@ trace "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") Unit) ] - - location: 16 (remaining gas: 1039194.485 units remaining) + - location: 16 (remaining gas: 1039839.235 units remaining) [ (Pair -1 1 "foobar" @@ -28,7 +28,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 17 (remaining gas: 1039194.475 units remaining) + - location: 17 (remaining gas: 1039839.225 units remaining) [ (Pair -1 1 "foobar" @@ -47,7 +47,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 18 (remaining gas: 1039194.465 units remaining) + - location: 18 (remaining gas: 1039839.215 units remaining) [ -1 (Pair -1 1 @@ -58,7 +58,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 19 (remaining gas: 1039194.450 units remaining) + - location: 19 (remaining gas: 1039839.205 units remaining) [ (Pair -1 1 "foobar" @@ -68,7 +68,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 21 (remaining gas: 1039194.440 units remaining) + - location: 21 (remaining gas: 1039839.195 units remaining) [ -1 (Pair 1 "foobar" @@ -78,7 +78,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 19 (remaining gas: 1039194.410 units remaining) + - location: 19 (remaining gas: 1039839.175 units remaining) [ -1 -1 (Pair 1 @@ -89,7 +89,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 22 (remaining gas: 1039194.183 units remaining) + - location: 22 (remaining gas: 1039838.948 units remaining) [ 0x050041 -1 (Pair 1 @@ -100,7 +100,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 23 (remaining gas: 1039193.763 units remaining) + - location: 23 (remaining gas: 1039838.528 units remaining) [ (Some -1) -1 (Pair 1 @@ -111,7 +111,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (remaining gas: 1039193.753 units remaining) + - location: 26 (remaining gas: 1039838.518 units remaining) [ -1 -1 (Pair 1 @@ -122,7 +122,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (remaining gas: 1039193.738 units remaining) + - location: 26 (remaining gas: 1039838.508 units remaining) [ -1 -1 (Pair 1 @@ -133,7 +133,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 34 (remaining gas: 1039193.703 units remaining) + - location: 34 (remaining gas: 1039838.473 units remaining) [ 0 (Pair 1 "foobar" @@ -143,7 +143,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 35 (remaining gas: 1039193.688 units remaining) + - location: 35 (remaining gas: 1039838.463 units remaining) [ True (Pair 1 "foobar" @@ -153,7 +153,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (remaining gas: 1039193.678 units remaining) + - location: 36 (remaining gas: 1039838.453 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -162,7 +162,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (remaining gas: 1039193.663 units remaining) + - location: 36 (remaining gas: 1039838.443 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -171,7 +171,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 42 (remaining gas: 1039193.653 units remaining) + - location: 42 (remaining gas: 1039838.433 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -188,7 +188,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 43 (remaining gas: 1039193.643 units remaining) + - location: 43 (remaining gas: 1039838.423 units remaining) [ 1 (Pair 1 "foobar" @@ -198,7 +198,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (remaining gas: 1039193.628 units remaining) + - location: 44 (remaining gas: 1039838.413 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -207,7 +207,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 46 (remaining gas: 1039193.618 units remaining) + - location: 46 (remaining gas: 1039838.403 units remaining) [ 1 (Pair "foobar" 0x00aabbcc @@ -216,7 +216,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (remaining gas: 1039193.588 units remaining) + - location: 44 (remaining gas: 1039838.383 units remaining) [ 1 1 (Pair "foobar" @@ -226,7 +226,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 47 (remaining gas: 1039193.361 units remaining) + - location: 47 (remaining gas: 1039838.156 units remaining) [ 0x050001 1 (Pair "foobar" @@ -236,7 +236,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 48 (remaining gas: 1039192.941 units remaining) + - location: 48 (remaining gas: 1039837.736 units remaining) [ (Some 1) 1 (Pair "foobar" @@ -246,7 +246,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (remaining gas: 1039192.931 units remaining) + - location: 51 (remaining gas: 1039837.726 units remaining) [ 1 1 (Pair "foobar" @@ -256,7 +256,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (remaining gas: 1039192.916 units remaining) + - location: 51 (remaining gas: 1039837.716 units remaining) [ 1 1 (Pair "foobar" @@ -266,7 +266,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 59 (remaining gas: 1039192.881 units remaining) + - location: 59 (remaining gas: 1039837.681 units remaining) [ 0 (Pair "foobar" 0x00aabbcc @@ -275,7 +275,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 60 (remaining gas: 1039192.866 units remaining) + - location: 60 (remaining gas: 1039837.671 units remaining) [ True (Pair "foobar" 0x00aabbcc @@ -284,7 +284,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (remaining gas: 1039192.856 units remaining) + - location: 61 (remaining gas: 1039837.661 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -292,7 +292,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (remaining gas: 1039192.841 units remaining) + - location: 61 (remaining gas: 1039837.651 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -300,7 +300,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 67 (remaining gas: 1039192.831 units remaining) + - location: 67 (remaining gas: 1039837.641 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -315,7 +315,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 68 (remaining gas: 1039192.821 units remaining) + - location: 68 (remaining gas: 1039837.631 units remaining) [ "foobar" (Pair "foobar" 0x00aabbcc @@ -324,7 +324,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (remaining gas: 1039192.806 units remaining) + - location: 69 (remaining gas: 1039837.621 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -332,7 +332,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 71 (remaining gas: 1039192.796 units remaining) + - location: 71 (remaining gas: 1039837.611 units remaining) [ "foobar" (Pair 0x00aabbcc 1000 @@ -340,7 +340,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (remaining gas: 1039192.766 units remaining) + - location: 69 (remaining gas: 1039837.591 units remaining) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -349,7 +349,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 72 (remaining gas: 1039192.242 units remaining) + - location: 72 (remaining gas: 1039837.067 units remaining) [ 0x050100000006666f6f626172 "foobar" (Pair 0x00aabbcc @@ -358,7 +358,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 73 (remaining gas: 1039191.567 units remaining) + - location: 73 (remaining gas: 1039836.392 units remaining) [ (Some "foobar") "foobar" (Pair 0x00aabbcc @@ -367,7 +367,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (remaining gas: 1039191.557 units remaining) + - location: 76 (remaining gas: 1039836.382 units remaining) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -376,7 +376,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (remaining gas: 1039191.542 units remaining) + - location: 76 (remaining gas: 1039836.372 units remaining) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -385,7 +385,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 84 (remaining gas: 1039191.507 units remaining) + - location: 84 (remaining gas: 1039836.337 units remaining) [ 0 (Pair 0x00aabbcc 1000 @@ -393,7 +393,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 85 (remaining gas: 1039191.492 units remaining) + - location: 85 (remaining gas: 1039836.327 units remaining) [ True (Pair 0x00aabbcc 1000 @@ -401,21 +401,21 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (remaining gas: 1039191.482 units remaining) + - location: 86 (remaining gas: 1039836.317 units remaining) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (remaining gas: 1039191.467 units remaining) + - location: 86 (remaining gas: 1039836.307 units remaining) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 92 (remaining gas: 1039191.457 units remaining) + - location: 92 (remaining gas: 1039836.297 units remaining) [ (Pair 0x00aabbcc 1000 False @@ -428,7 +428,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 93 (remaining gas: 1039191.447 units remaining) + - location: 93 (remaining gas: 1039836.287 units remaining) [ 0x00aabbcc (Pair 0x00aabbcc 1000 @@ -436,21 +436,21 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (remaining gas: 1039191.432 units remaining) + - location: 94 (remaining gas: 1039836.277 units remaining) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 96 (remaining gas: 1039191.422 units remaining) + - location: 96 (remaining gas: 1039836.267 units remaining) [ 0x00aabbcc (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (remaining gas: 1039191.392 units remaining) + - location: 94 (remaining gas: 1039836.247 units remaining) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -458,7 +458,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 97 (remaining gas: 1039190.934 units remaining) + - location: 97 (remaining gas: 1039835.789 units remaining) [ 0x050a0000000400aabbcc 0x00aabbcc (Pair 1000 @@ -466,7 +466,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 98 (remaining gas: 1039190.373 units remaining) + - location: 98 (remaining gas: 1039835.228 units remaining) [ (Some 0x00aabbcc) 0x00aabbcc (Pair 1000 @@ -474,7 +474,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (remaining gas: 1039190.363 units remaining) + - location: 101 (remaining gas: 1039835.218 units remaining) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -482,7 +482,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (remaining gas: 1039190.348 units remaining) + - location: 101 (remaining gas: 1039835.208 units remaining) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -490,33 +490,33 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 109 (remaining gas: 1039190.313 units remaining) + - location: 109 (remaining gas: 1039835.173 units remaining) [ 0 (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 110 (remaining gas: 1039190.298 units remaining) + - location: 110 (remaining gas: 1039835.163 units remaining) [ True (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (remaining gas: 1039190.288 units remaining) + - location: 111 (remaining gas: 1039835.153 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (remaining gas: 1039190.273 units remaining) + - location: 111 (remaining gas: 1039835.143 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 117 (remaining gas: 1039190.263 units remaining) + - location: 117 (remaining gas: 1039835.133 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" @@ -527,83 +527,83 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 118 (remaining gas: 1039190.253 units remaining) + - location: 118 (remaining gas: 1039835.123 units remaining) [ 1000 (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (remaining gas: 1039190.238 units remaining) + - location: 119 (remaining gas: 1039835.113 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 121 (remaining gas: 1039190.228 units remaining) + - location: 121 (remaining gas: 1039835.103 units remaining) [ 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (remaining gas: 1039190.198 units remaining) + - location: 119 (remaining gas: 1039835.083 units remaining) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 122 (remaining gas: 1039189.938 units remaining) + - location: 122 (remaining gas: 1039834.823 units remaining) [ 0x0500a80f 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 123 (remaining gas: 1039189.498 units remaining) + - location: 123 (remaining gas: 1039834.383 units remaining) [ (Some 1000) 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (remaining gas: 1039189.488 units remaining) + - location: 126 (remaining gas: 1039834.373 units remaining) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (remaining gas: 1039189.473 units remaining) + - location: 126 (remaining gas: 1039834.363 units remaining) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 134 (remaining gas: 1039189.438 units remaining) + - location: 134 (remaining gas: 1039834.328 units remaining) [ 0 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 135 (remaining gas: 1039189.423 units remaining) + - location: 135 (remaining gas: 1039834.318 units remaining) [ True (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039189.413 units remaining) + - location: 136 (remaining gas: 1039834.308 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039189.398 units remaining) + - location: 136 (remaining gas: 1039834.298 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 142 (remaining gas: 1039189.388 units remaining) + - location: 142 (remaining gas: 1039834.288 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" @@ -612,234 +612,234 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 143 (remaining gas: 1039189.378 units remaining) + - location: 143 (remaining gas: 1039834.278 units remaining) [ False (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039189.363 units remaining) + - location: 144 (remaining gas: 1039834.268 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 146 (remaining gas: 1039189.353 units remaining) + - location: 146 (remaining gas: 1039834.258 units remaining) [ False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039189.323 units remaining) + - location: 144 (remaining gas: 1039834.238 units remaining) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 147 (remaining gas: 1039189.096 units remaining) + - location: 147 (remaining gas: 1039834.011 units remaining) [ 0x050303 False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 148 (remaining gas: 1039188.676 units remaining) + - location: 148 (remaining gas: 1039833.591 units remaining) [ (Some False) False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (remaining gas: 1039188.666 units remaining) + - location: 151 (remaining gas: 1039833.581 units remaining) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (remaining gas: 1039188.651 units remaining) + - location: 151 (remaining gas: 1039833.571 units remaining) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 159 (remaining gas: 1039188.616 units remaining) + - location: 159 (remaining gas: 1039833.536 units remaining) [ 0 (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 160 (remaining gas: 1039188.601 units remaining) + - location: 160 (remaining gas: 1039833.526 units remaining) [ True (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039188.591 units remaining) + - location: 161 (remaining gas: 1039833.516 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039188.576 units remaining) + - location: 161 (remaining gas: 1039833.506 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 167 (remaining gas: 1039188.566 units remaining) + - location: 167 (remaining gas: 1039833.496 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 168 (remaining gas: 1039188.556 units remaining) + - location: 168 (remaining gas: 1039833.486 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039188.541 units remaining) + - location: 169 (remaining gas: 1039833.476 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 171 (remaining gas: 1039188.531 units remaining) + - location: 171 (remaining gas: 1039833.466 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039188.501 units remaining) + - location: 169 (remaining gas: 1039833.446 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 172 (remaining gas: 1039187.411 units remaining) + - location: 172 (remaining gas: 1039832.356 units remaining) [ 0x050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 173 (remaining gas: 1039186.458 units remaining) + - location: 173 (remaining gas: 1039831.403 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039186.448 units remaining) + - location: 176 (remaining gas: 1039831.393 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039186.433 units remaining) + - location: 176 (remaining gas: 1039831.383 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 184 (remaining gas: 1039186.397 units remaining) + - location: 184 (remaining gas: 1039831.347 units remaining) [ 0 (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 185 (remaining gas: 1039186.382 units remaining) + - location: 185 (remaining gas: 1039831.337 units remaining) [ True (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039186.372 units remaining) + - location: 186 (remaining gas: 1039831.327 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039186.357 units remaining) + - location: 186 (remaining gas: 1039831.317 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 192 (remaining gas: 1039186.347 units remaining) + - location: 192 (remaining gas: 1039831.307 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 193 (remaining gas: 1039186.337 units remaining) + - location: 193 (remaining gas: 1039831.297 units remaining) [ "2019-09-09T08:35:33Z" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 194 (remaining gas: 1039186.322 units remaining) + - location: 194 (remaining gas: 1039831.287 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 196 (remaining gas: 1039186.312 units remaining) + - location: 196 (remaining gas: 1039831.277 units remaining) [ "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 194 (remaining gas: 1039186.282 units remaining) + - location: 194 (remaining gas: 1039831.257 units remaining) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 197 (remaining gas: 1039185.923 units remaining) + - location: 197 (remaining gas: 1039830.898 units remaining) [ 0x050095bbb0d70b "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 198 (remaining gas: 1039185.423 units remaining) + - location: 198 (remaining gas: 1039830.398 units remaining) [ (Some "2019-09-09T08:35:33Z") "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (remaining gas: 1039185.413 units remaining) + - location: 201 (remaining gas: 1039830.388 units remaining) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (remaining gas: 1039185.398 units remaining) + - location: 201 (remaining gas: 1039830.378 units remaining) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 209 (remaining gas: 1039185.363 units remaining) + - location: 209 (remaining gas: 1039830.343 units remaining) [ 0 "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 210 (remaining gas: 1039185.348 units remaining) + - location: 210 (remaining gas: 1039830.333 units remaining) [ True "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039185.338 units remaining) + - location: 211 (remaining gas: 1039830.323 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039185.323 units remaining) + - location: 211 (remaining gas: 1039830.313 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 217 (remaining gas: 1039185.313 units remaining) + - location: 217 (remaining gas: 1039830.303 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 218 (remaining gas: 1039174.360 units remaining) + - location: 218 (remaining gas: 1039829.180 units remaining) [ 0x050a000000160000bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 219 (remaining gas: 1038523.437 units remaining) + - location: 219 (remaining gas: 1039828.207 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1038523.427 units remaining) + - location: 222 (remaining gas: 1039828.197 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1038523.412 units remaining) + - location: 222 (remaining gas: 1039828.187 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 230 (remaining gas: 1038523.376 units remaining) + - location: 230 (remaining gas: 1039828.151 units remaining) [ 0 ] - - location: 231 (remaining gas: 1038523.361 units remaining) + - location: 231 (remaining gas: 1039828.141 units remaining) [ True ] - - location: 232 (remaining gas: 1038523.351 units remaining) + - location: 232 (remaining gas: 1039828.131 units remaining) [ ] - - location: 232 (remaining gas: 1038523.336 units remaining) + - location: 232 (remaining gas: 1039828.121 units remaining) [ ] - - location: 238 (remaining gas: 1038523.326 units remaining) + - location: 238 (remaining gas: 1039828.111 units remaining) [ 0 ] - - location: 241 (remaining gas: 1038523.099 units remaining) + - location: 241 (remaining gas: 1039827.884 units remaining) [ 0x050000 ] - - location: 242 (remaining gas: 1038522.679 units remaining) + - location: 242 (remaining gas: 1039827.464 units remaining) [ (Some 0) ] - - location: 245 (remaining gas: 1038522.669 units remaining) + - location: 245 (remaining gas: 1039827.454 units remaining) [ 0 ] - - location: 245 (remaining gas: 1038522.654 units remaining) + - location: 245 (remaining gas: 1039827.444 units remaining) [ 0 ] - - location: 251 (remaining gas: 1038522.644 units remaining) + - location: 251 (remaining gas: 1039827.434 units remaining) [ ] - - location: 252 (remaining gas: 1038522.634 units remaining) + - location: 252 (remaining gas: 1039827.424 units remaining) [ -1 ] - - location: 255 (remaining gas: 1038522.407 units remaining) + - location: 255 (remaining gas: 1039827.197 units remaining) [ 0x050041 ] - - location: 256 (remaining gas: 1038426.087 units remaining) + - location: 256 (remaining gas: 1039730.877 units remaining) [ None ] - - location: 259 (remaining gas: 1038426.077 units remaining) + - location: 259 (remaining gas: 1039730.867 units remaining) [ ] - - location: 259 (remaining gas: 1038426.062 units remaining) + - location: 259 (remaining gas: 1039730.857 units remaining) [ ] - - location: 265 (remaining gas: 1038426.052 units remaining) + - location: 265 (remaining gas: 1039730.847 units remaining) [ 0x ] - - location: 268 (remaining gas: 1038425.792 units remaining) + - location: 268 (remaining gas: 1039730.587 units remaining) [ None ] - - location: 271 (remaining gas: 1038425.782 units remaining) + - location: 271 (remaining gas: 1039730.577 units remaining) [ ] - - location: 271 (remaining gas: 1038425.767 units remaining) + - location: 271 (remaining gas: 1039730.567 units remaining) [ ] - - location: 277 (remaining gas: 1038425.757 units remaining) + - location: 277 (remaining gas: 1039730.557 units remaining) [ 0x04 ] - - location: 280 (remaining gas: 1038425.477 units remaining) + - location: 280 (remaining gas: 1039730.277 units remaining) [ None ] - - location: 283 (remaining gas: 1038425.467 units remaining) + - location: 283 (remaining gas: 1039730.267 units remaining) [ ] - - location: 283 (remaining gas: 1038425.452 units remaining) + - location: 283 (remaining gas: 1039730.257 units remaining) [ ] - - location: 289 (remaining gas: 1038425.442 units remaining) + - location: 289 (remaining gas: 1039730.247 units remaining) [ 0x05 ] - - location: 292 (remaining gas: 1038425.162 units remaining) + - location: 292 (remaining gas: 1039729.967 units remaining) [ None ] - - location: 295 (remaining gas: 1038425.152 units remaining) + - location: 295 (remaining gas: 1039729.957 units remaining) [ ] - - location: 295 (remaining gas: 1038425.137 units remaining) + - location: 295 (remaining gas: 1039729.947 units remaining) [ ] - - location: 301 (remaining gas: 1038425.127 units remaining) + - location: 301 (remaining gas: 1039729.937 units remaining) [ Unit ] - - location: 302 (remaining gas: 1038425.112 units remaining) + - location: 302 (remaining gas: 1039729.927 units remaining) [ {} Unit ] - - location: 304 (remaining gas: 1038425.097 units remaining) + - location: 304 (remaining gas: 1039729.917 units remaining) [ (Pair {} Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" index 7c652a6bf780..27b2235d0d9c 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 28 (remaining gas: 1039485.138 units remaining) + - location: 28 (remaining gas: 1039487.538 units remaining) [ (Pair (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -19,7 +19,7 @@ trace { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) Unit) ] - - location: 28 (remaining gas: 1039485.128 units remaining) + - location: 28 (remaining gas: 1039487.528 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -30,7 +30,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 29 (remaining gas: 1039485.118 units remaining) + - location: 29 (remaining gas: 1039487.518 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -51,7 +51,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 30 (remaining gas: 1039485.108 units remaining) + - location: 30 (remaining gas: 1039487.508 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit @@ -63,7 +63,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 31 (remaining gas: 1039485.093 units remaining) + - location: 31 (remaining gas: 1039487.498 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -74,7 +74,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 33 (remaining gas: 1039485.083 units remaining) + - location: 33 (remaining gas: 1039487.488 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -85,7 +85,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 31 (remaining gas: 1039485.053 units remaining) + - location: 31 (remaining gas: 1039487.468 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit @@ -97,7 +97,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 34 (remaining gas: 1039483.181 units remaining) + - location: 34 (remaining gas: 1039485.596 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit @@ -109,7 +109,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 35 (remaining gas: 1039483.166 units remaining) + - location: 35 (remaining gas: 1039485.586 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -120,7 +120,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 37 (remaining gas: 1039481.294 units remaining) + - location: 37 (remaining gas: 1039483.714 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -131,7 +131,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 38 (remaining gas: 1039160.150 units remaining) + - location: 38 (remaining gas: 1039162.570 units remaining) [ (Some "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav") (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -142,7 +142,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 41 (remaining gas: 1039160.140 units remaining) + - location: 41 (remaining gas: 1039162.560 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -153,7 +153,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 41 (remaining gas: 1039160.125 units remaining) + - location: 41 (remaining gas: 1039162.550 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -164,7 +164,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 47 (remaining gas: 1039158.253 units remaining) + - location: 47 (remaining gas: 1039160.678 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -175,7 +175,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 35 (remaining gas: 1039158.223 units remaining) + - location: 35 (remaining gas: 1039160.658 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit @@ -187,7 +187,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 50 (remaining gas: 1039158.188 units remaining) + - location: 50 (remaining gas: 1039160.623 units remaining) [ 0 (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -198,7 +198,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 51 (remaining gas: 1039158.173 units remaining) + - location: 51 (remaining gas: 1039160.613 units remaining) [ True (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -209,7 +209,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 52 (remaining gas: 1039158.163 units remaining) + - location: 52 (remaining gas: 1039160.603 units remaining) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -219,7 +219,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 52 (remaining gas: 1039158.148 units remaining) + - location: 52 (remaining gas: 1039160.593 units remaining) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -229,7 +229,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 58 (remaining gas: 1039158.138 units remaining) + - location: 58 (remaining gas: 1039160.583 units remaining) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -248,7 +248,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 59 (remaining gas: 1039158.128 units remaining) + - location: 59 (remaining gas: 1039160.573 units remaining) [ Unit (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -259,7 +259,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 60 (remaining gas: 1039158.113 units remaining) + - location: 60 (remaining gas: 1039160.563 units remaining) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -269,7 +269,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 62 (remaining gas: 1039158.103 units remaining) + - location: 62 (remaining gas: 1039160.553 units remaining) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -279,7 +279,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 60 (remaining gas: 1039158.073 units remaining) + - location: 60 (remaining gas: 1039160.533 units remaining) [ Unit Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -290,7 +290,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 63 (remaining gas: 1039157.846 units remaining) + - location: 63 (remaining gas: 1039160.306 units remaining) [ 0x05030b Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -301,7 +301,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 64 (remaining gas: 1039157.831 units remaining) + - location: 64 (remaining gas: 1039160.296 units remaining) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -311,7 +311,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 66 (remaining gas: 1039157.604 units remaining) + - location: 66 (remaining gas: 1039160.069 units remaining) [ 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -321,7 +321,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 67 (remaining gas: 1039157.184 units remaining) + - location: 67 (remaining gas: 1039159.649 units remaining) [ (Some Unit) (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -331,7 +331,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 70 (remaining gas: 1039157.174 units remaining) + - location: 70 (remaining gas: 1039159.639 units remaining) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -341,7 +341,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 70 (remaining gas: 1039157.159 units remaining) + - location: 70 (remaining gas: 1039159.629 units remaining) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -351,7 +351,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 76 (remaining gas: 1039156.932 units remaining) + - location: 76 (remaining gas: 1039159.402 units remaining) [ 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -361,7 +361,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 64 (remaining gas: 1039156.902 units remaining) + - location: 64 (remaining gas: 1039159.382 units remaining) [ 0x05030b 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -372,7 +372,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 79 (remaining gas: 1039156.867 units remaining) + - location: 79 (remaining gas: 1039159.347 units remaining) [ 0 (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -382,7 +382,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 80 (remaining gas: 1039156.852 units remaining) + - location: 80 (remaining gas: 1039159.337 units remaining) [ True (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -392,7 +392,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 81 (remaining gas: 1039156.842 units remaining) + - location: 81 (remaining gas: 1039159.327 units remaining) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -401,7 +401,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 81 (remaining gas: 1039156.827 units remaining) + - location: 81 (remaining gas: 1039159.317 units remaining) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -410,7 +410,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 87 (remaining gas: 1039156.817 units remaining) + - location: 87 (remaining gas: 1039159.307 units remaining) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -427,7 +427,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 88 (remaining gas: 1039156.807 units remaining) + - location: 88 (remaining gas: 1039159.297 units remaining) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -437,7 +437,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 89 (remaining gas: 1039156.792 units remaining) + - location: 89 (remaining gas: 1039159.287 units remaining) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -446,7 +446,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 91 (remaining gas: 1039156.782 units remaining) + - location: 91 (remaining gas: 1039159.277 units remaining) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -455,7 +455,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 89 (remaining gas: 1039156.752 units remaining) + - location: 89 (remaining gas: 1039159.257 units remaining) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -465,7 +465,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 92 (remaining gas: 1039154.265 units remaining) + - location: 92 (remaining gas: 1039156.770 units remaining) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -475,7 +475,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 93 (remaining gas: 1039154.250 units remaining) + - location: 93 (remaining gas: 1039156.760 units remaining) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -484,7 +484,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 95 (remaining gas: 1039151.763 units remaining) + - location: 95 (remaining gas: 1039154.273 units remaining) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -493,7 +493,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 96 (remaining gas: 1039149.960 units remaining) + - location: 96 (remaining gas: 1039152.470 units remaining) [ (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe") (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -502,7 +502,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 99 (remaining gas: 1039149.950 units remaining) + - location: 99 (remaining gas: 1039152.460 units remaining) [ "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -511,7 +511,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 99 (remaining gas: 1039149.935 units remaining) + - location: 99 (remaining gas: 1039152.450 units remaining) [ "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -520,7 +520,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 105 (remaining gas: 1039147.448 units remaining) + - location: 105 (remaining gas: 1039149.963 units remaining) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -529,7 +529,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 93 (remaining gas: 1039147.418 units remaining) + - location: 93 (remaining gas: 1039149.943 units remaining) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") @@ -539,7 +539,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 108 (remaining gas: 1039147.382 units remaining) + - location: 108 (remaining gas: 1039149.907 units remaining) [ 0 (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -548,7 +548,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 109 (remaining gas: 1039147.367 units remaining) + - location: 109 (remaining gas: 1039149.897 units remaining) [ True (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -557,7 +557,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 110 (remaining gas: 1039147.357 units remaining) + - location: 110 (remaining gas: 1039149.887 units remaining) [ (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } { True } @@ -565,7 +565,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 110 (remaining gas: 1039147.342 units remaining) + - location: 110 (remaining gas: 1039149.877 units remaining) [ (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } { True } @@ -573,7 +573,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 116 (remaining gas: 1039147.332 units remaining) + - location: 116 (remaining gas: 1039149.867 units remaining) [ (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } { True } @@ -588,7 +588,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 117 (remaining gas: 1039147.322 units remaining) + - location: 117 (remaining gas: 1039149.857 units remaining) [ (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } @@ -597,7 +597,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 118 (remaining gas: 1039147.307 units remaining) + - location: 118 (remaining gas: 1039149.847 units remaining) [ (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") { Unit } { True } @@ -605,7 +605,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 120 (remaining gas: 1039147.297 units remaining) + - location: 120 (remaining gas: 1039149.837 units remaining) [ (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } { True } @@ -613,7 +613,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 118 (remaining gas: 1039147.267 units remaining) + - location: 118 (remaining gas: 1039149.817 units remaining) [ (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } @@ -622,7 +622,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 121 (remaining gas: 1039144.618 units remaining) + - location: 121 (remaining gas: 1039147.168 units remaining) [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } @@ -631,7 +631,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 122 (remaining gas: 1039144.603 units remaining) + - location: 122 (remaining gas: 1039147.158 units remaining) [ (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } { True } @@ -639,7 +639,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 124 (remaining gas: 1039141.954 units remaining) + - location: 124 (remaining gas: 1039144.509 units remaining) [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair { Unit } { True } @@ -647,7 +647,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 125 (remaining gas: 1039140.010 units remaining) + - location: 125 (remaining gas: 1039142.565 units remaining) [ (Some (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe")) (Pair { Unit } { True } @@ -655,7 +655,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 129 (remaining gas: 1039140 units remaining) + - location: 129 (remaining gas: 1039142.555 units remaining) [ (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe") (Pair { Unit } { True } @@ -663,7 +663,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 129 (remaining gas: 1039139.985 units remaining) + - location: 129 (remaining gas: 1039142.545 units remaining) [ (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe") (Pair { Unit } { True } @@ -671,7 +671,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 135 (remaining gas: 1039137.336 units remaining) + - location: 135 (remaining gas: 1039139.896 units remaining) [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair { Unit } { True } @@ -679,7 +679,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 122 (remaining gas: 1039137.306 units remaining) + - location: 122 (remaining gas: 1039139.876 units remaining) [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair { Unit } @@ -688,7 +688,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 138 (remaining gas: 1039137.270 units remaining) + - location: 138 (remaining gas: 1039139.840 units remaining) [ 0 (Pair { Unit } { True } @@ -696,7 +696,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 139 (remaining gas: 1039137.255 units remaining) + - location: 139 (remaining gas: 1039139.830 units remaining) [ True (Pair { Unit } { True } @@ -704,21 +704,21 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 140 (remaining gas: 1039137.245 units remaining) + - location: 140 (remaining gas: 1039139.820 units remaining) [ (Pair { Unit } { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 140 (remaining gas: 1039137.230 units remaining) + - location: 140 (remaining gas: 1039139.810 units remaining) [ (Pair { Unit } { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 146 (remaining gas: 1039137.220 units remaining) + - location: 146 (remaining gas: 1039139.800 units remaining) [ (Pair { Unit } { True } (Pair 19 10) @@ -731,7 +731,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 147 (remaining gas: 1039137.210 units remaining) + - location: 147 (remaining gas: 1039139.790 units remaining) [ { Unit } (Pair { Unit } { True } @@ -739,21 +739,21 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 148 (remaining gas: 1039137.195 units remaining) + - location: 148 (remaining gas: 1039139.780 units remaining) [ (Pair { Unit } { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 150 (remaining gas: 1039137.185 units remaining) + - location: 150 (remaining gas: 1039139.770 units remaining) [ { Unit } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 148 (remaining gas: 1039137.155 units remaining) + - location: 148 (remaining gas: 1039139.750 units remaining) [ { Unit } { Unit } (Pair { True } @@ -761,7 +761,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 151 (remaining gas: 1039136.667 units remaining) + - location: 151 (remaining gas: 1039139.262 units remaining) [ 0x050200000002030b { Unit } (Pair { True } @@ -769,49 +769,49 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 152 (remaining gas: 1039136.652 units remaining) + - location: 152 (remaining gas: 1039139.252 units remaining) [ { Unit } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 154 (remaining gas: 1039136.164 units remaining) + - location: 154 (remaining gas: 1039138.764 units remaining) [ 0x050200000002030b (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 155 (remaining gas: 1039135.543 units remaining) + - location: 155 (remaining gas: 1039138.143 units remaining) [ (Some { Unit }) (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 159 (remaining gas: 1039135.533 units remaining) + - location: 159 (remaining gas: 1039138.133 units remaining) [ { Unit } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 159 (remaining gas: 1039135.518 units remaining) + - location: 159 (remaining gas: 1039138.123 units remaining) [ { Unit } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 165 (remaining gas: 1039135.030 units remaining) + - location: 165 (remaining gas: 1039137.635 units remaining) [ 0x050200000002030b (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 152 (remaining gas: 1039135 units remaining) + - location: 152 (remaining gas: 1039137.615 units remaining) [ 0x050200000002030b 0x050200000002030b (Pair { True } @@ -819,33 +819,33 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 168 (remaining gas: 1039134.965 units remaining) + - location: 168 (remaining gas: 1039137.580 units remaining) [ 0 (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 169 (remaining gas: 1039134.950 units remaining) + - location: 169 (remaining gas: 1039137.570 units remaining) [ True (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 170 (remaining gas: 1039134.940 units remaining) + - location: 170 (remaining gas: 1039137.560 units remaining) [ (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 170 (remaining gas: 1039134.925 units remaining) + - location: 170 (remaining gas: 1039137.550 units remaining) [ (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 176 (remaining gas: 1039134.915 units remaining) + - location: 176 (remaining gas: 1039137.540 units remaining) [ (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") @@ -856,105 +856,105 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 177 (remaining gas: 1039134.905 units remaining) + - location: 177 (remaining gas: 1039137.530 units remaining) [ { True } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 178 (remaining gas: 1039134.890 units remaining) + - location: 178 (remaining gas: 1039137.520 units remaining) [ (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 180 (remaining gas: 1039134.880 units remaining) + - location: 180 (remaining gas: 1039137.510 units remaining) [ { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 178 (remaining gas: 1039134.850 units remaining) + - location: 178 (remaining gas: 1039137.490 units remaining) [ { True } { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 181 (remaining gas: 1039134.362 units remaining) + - location: 181 (remaining gas: 1039137.002 units remaining) [ 0x050200000002030a { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 182 (remaining gas: 1039134.347 units remaining) + - location: 182 (remaining gas: 1039136.992 units remaining) [ { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 184 (remaining gas: 1039133.859 units remaining) + - location: 184 (remaining gas: 1039136.504 units remaining) [ 0x050200000002030a (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 185 (remaining gas: 1039133.106 units remaining) + - location: 185 (remaining gas: 1039135.751 units remaining) [ (Some { True }) (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 189 (remaining gas: 1039133.096 units remaining) + - location: 189 (remaining gas: 1039135.741 units remaining) [ { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 189 (remaining gas: 1039133.081 units remaining) + - location: 189 (remaining gas: 1039135.731 units remaining) [ { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 195 (remaining gas: 1039132.593 units remaining) + - location: 195 (remaining gas: 1039135.243 units remaining) [ 0x050200000002030a (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 182 (remaining gas: 1039132.563 units remaining) + - location: 182 (remaining gas: 1039135.223 units remaining) [ 0x050200000002030a 0x050200000002030a (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 198 (remaining gas: 1039132.528 units remaining) + - location: 198 (remaining gas: 1039135.188 units remaining) [ 0 (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 199 (remaining gas: 1039132.513 units remaining) + - location: 199 (remaining gas: 1039135.178 units remaining) [ True (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 200 (remaining gas: 1039132.503 units remaining) + - location: 200 (remaining gas: 1039135.168 units remaining) [ (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 200 (remaining gas: 1039132.488 units remaining) + - location: 200 (remaining gas: 1039135.158 units remaining) [ (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 206 (remaining gas: 1039132.478 units remaining) + - location: 206 (remaining gas: 1039135.148 units remaining) [ (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } @@ -963,232 +963,232 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 207 (remaining gas: 1039132.468 units remaining) + - location: 207 (remaining gas: 1039135.138 units remaining) [ (Pair 19 10) (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 208 (remaining gas: 1039132.453 units remaining) + - location: 208 (remaining gas: 1039135.128 units remaining) [ (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 210 (remaining gas: 1039132.443 units remaining) + - location: 210 (remaining gas: 1039135.118 units remaining) [ (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 208 (remaining gas: 1039132.413 units remaining) + - location: 208 (remaining gas: 1039135.098 units remaining) [ (Pair 19 10) (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 211 (remaining gas: 1039131.862 units remaining) + - location: 211 (remaining gas: 1039134.547 units remaining) [ 0x0507070013000a (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 212 (remaining gas: 1039131.847 units remaining) + - location: 212 (remaining gas: 1039134.537 units remaining) [ (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 214 (remaining gas: 1039131.296 units remaining) + - location: 214 (remaining gas: 1039133.986 units remaining) [ 0x0507070013000a (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 215 (remaining gas: 1039130.596 units remaining) + - location: 215 (remaining gas: 1039133.286 units remaining) [ (Some (Pair 19 10)) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 220 (remaining gas: 1039130.586 units remaining) + - location: 220 (remaining gas: 1039133.276 units remaining) [ (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 220 (remaining gas: 1039130.571 units remaining) + - location: 220 (remaining gas: 1039133.266 units remaining) [ (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 226 (remaining gas: 1039130.020 units remaining) + - location: 226 (remaining gas: 1039132.715 units remaining) [ 0x0507070013000a (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 212 (remaining gas: 1039129.990 units remaining) + - location: 212 (remaining gas: 1039132.695 units remaining) [ 0x0507070013000a 0x0507070013000a (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 229 (remaining gas: 1039129.955 units remaining) + - location: 229 (remaining gas: 1039132.660 units remaining) [ 0 (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 230 (remaining gas: 1039129.940 units remaining) + - location: 230 (remaining gas: 1039132.650 units remaining) [ True (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 231 (remaining gas: 1039129.930 units remaining) + - location: 231 (remaining gas: 1039132.640 units remaining) [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 231 (remaining gas: 1039129.915 units remaining) + - location: 231 (remaining gas: 1039132.630 units remaining) [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 237 (remaining gas: 1039129.905 units remaining) + - location: 237 (remaining gas: 1039132.620 units remaining) [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 238 (remaining gas: 1039129.895 units remaining) + - location: 238 (remaining gas: 1039132.610 units remaining) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 239 (remaining gas: 1039129.880 units remaining) + - location: 239 (remaining gas: 1039132.600 units remaining) [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 241 (remaining gas: 1039129.870 units remaining) + - location: 241 (remaining gas: 1039132.590 units remaining) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 239 (remaining gas: 1039129.840 units remaining) + - location: 239 (remaining gas: 1039132.570 units remaining) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 242 (remaining gas: 1039128.588 units remaining) + - location: 242 (remaining gas: 1039131.318 units remaining) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 243 (remaining gas: 1039128.573 units remaining) + - location: 243 (remaining gas: 1039131.308 units remaining) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 245 (remaining gas: 1039127.321 units remaining) + - location: 245 (remaining gas: 1039130.056 units remaining) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 246 (remaining gas: 1039126.228 units remaining) + - location: 246 (remaining gas: 1039128.963 units remaining) [ (Some (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")) (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 251 (remaining gas: 1039126.218 units remaining) + - location: 251 (remaining gas: 1039128.953 units remaining) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 251 (remaining gas: 1039126.203 units remaining) + - location: 251 (remaining gas: 1039128.943 units remaining) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 257 (remaining gas: 1039124.951 units remaining) + - location: 257 (remaining gas: 1039127.691 units remaining) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 243 (remaining gas: 1039124.921 units remaining) + - location: 243 (remaining gas: 1039127.671 units remaining) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 260 (remaining gas: 1039124.886 units remaining) + - location: 260 (remaining gas: 1039127.636 units remaining) [ 0 (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 261 (remaining gas: 1039124.871 units remaining) + - location: 261 (remaining gas: 1039127.626 units remaining) [ True (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 262 (remaining gas: 1039124.861 units remaining) + - location: 262 (remaining gas: 1039127.616 units remaining) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 262 (remaining gas: 1039124.846 units remaining) + - location: 262 (remaining gas: 1039127.606 units remaining) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 268 (remaining gas: 1039124.836 units remaining) + - location: 268 (remaining gas: 1039127.596 units remaining) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 269 (remaining gas: 1039124.826 units remaining) + - location: 269 (remaining gas: 1039127.586 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 270 (remaining gas: 1039124.811 units remaining) + - location: 270 (remaining gas: 1039127.576 units remaining) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 272 (remaining gas: 1039124.801 units remaining) + - location: 272 (remaining gas: 1039127.566 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 270 (remaining gas: 1039124.771 units remaining) + - location: 270 (remaining gas: 1039127.546 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 273 (remaining gas: 1039123.166 units remaining) + - location: 273 (remaining gas: 1039125.941 units remaining) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 274 (remaining gas: 1039123.151 units remaining) + - location: 274 (remaining gas: 1039125.931 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 276 (remaining gas: 1039121.546 units remaining) + - location: 276 (remaining gas: 1039124.326 units remaining) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 277 (remaining gas: 1039119.900 units remaining) + - location: 277 (remaining gas: 1039122.680 units remaining) [ (Some { Elt 0 "foo" ; Elt 1 "bar" }) { PACK } ] - - location: 282 (remaining gas: 1039119.890 units remaining) + - location: 282 (remaining gas: 1039122.670 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 282 (remaining gas: 1039119.875 units remaining) + - location: 282 (remaining gas: 1039122.660 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 288 (remaining gas: 1039118.270 units remaining) + - location: 288 (remaining gas: 1039121.055 units remaining) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 274 (remaining gas: 1039118.240 units remaining) + - location: 274 (remaining gas: 1039121.035 units remaining) [ 0x050200000018070400000100000003666f6f070400010100000003626172 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 291 (remaining gas: 1039118.205 units remaining) + - location: 291 (remaining gas: 1039121 units remaining) [ 0 { PACK } ] - - location: 292 (remaining gas: 1039118.190 units remaining) + - location: 292 (remaining gas: 1039120.990 units remaining) [ True { PACK } ] - - location: 293 (remaining gas: 1039118.180 units remaining) + - location: 293 (remaining gas: 1039120.980 units remaining) [ { PACK } ] - - location: 293 (remaining gas: 1039118.165 units remaining) + - location: 293 (remaining gas: 1039120.970 units remaining) [ { PACK } ] - - location: 299 (remaining gas: 1039118.155 units remaining) + - location: 299 (remaining gas: 1039120.960 units remaining) [ { PACK } { PACK } ] - - location: 300 (remaining gas: 1039117.482 units remaining) + - location: 300 (remaining gas: 1039120.287 units remaining) [ 0x050200000002030c { PACK } ] - - location: 301 (remaining gas: 1039117.467 units remaining) + - location: 301 (remaining gas: 1039120.277 units remaining) [ { PACK } ] - - location: 303 (remaining gas: 1039116.794 units remaining) + - location: 303 (remaining gas: 1039119.604 units remaining) [ 0x050200000002030c ] - - location: 304 (remaining gas: 1039115.613 units remaining) + - location: 304 (remaining gas: 1039118.583 units remaining) [ (Some { PACK }) ] - - location: 309 (remaining gas: 1039115.603 units remaining) + - location: 309 (remaining gas: 1039118.573 units remaining) [ { PACK } ] - - location: 309 (remaining gas: 1039115.588 units remaining) + - location: 309 (remaining gas: 1039118.563 units remaining) [ { PACK } ] - - location: 315 (remaining gas: 1039114.915 units remaining) + - location: 315 (remaining gas: 1039117.890 units remaining) [ 0x050200000002030c ] - - location: 301 (remaining gas: 1039114.885 units remaining) + - location: 301 (remaining gas: 1039117.870 units remaining) [ 0x050200000002030c 0x050200000002030c ] - - location: 318 (remaining gas: 1039114.850 units remaining) + - location: 318 (remaining gas: 1039117.835 units remaining) [ 0 ] - - location: 319 (remaining gas: 1039114.835 units remaining) + - location: 319 (remaining gas: 1039117.825 units remaining) [ True ] - - location: 320 (remaining gas: 1039114.825 units remaining) + - location: 320 (remaining gas: 1039117.815 units remaining) [ ] - - location: 320 (remaining gas: 1039114.810 units remaining) + - location: 320 (remaining gas: 1039117.805 units remaining) [ ] - - location: 326 (remaining gas: 1039114.800 units remaining) + - location: 326 (remaining gas: 1039117.795 units remaining) [ Unit ] - - location: 327 (remaining gas: 1039114.785 units remaining) + - location: 327 (remaining gas: 1039117.785 units remaining) [ {} Unit ] - - location: 329 (remaining gas: 1039114.770 units remaining) + - location: 329 (remaining gas: 1039117.775 units remaining) [ (Pair {} Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" index 6c4cc7b0b145..d4c700d750a2 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[packunpack_rev_cty.tz-Unit-(Pair \"edpkuBknW28nW72KG6RoH.4e20b52378.out" @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 28 (remaining gas: 1039494.873 units remaining) + - location: 28 (remaining gas: 1039496.543 units remaining) [ (Pair (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -19,7 +19,7 @@ trace {} { DUP ; DROP ; PACK }) Unit) ] - - location: 28 (remaining gas: 1039494.863 units remaining) + - location: 28 (remaining gas: 1039496.533 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -30,7 +30,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 29 (remaining gas: 1039494.853 units remaining) + - location: 29 (remaining gas: 1039496.523 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -51,7 +51,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 30 (remaining gas: 1039494.843 units remaining) + - location: 30 (remaining gas: 1039496.513 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit @@ -63,7 +63,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 31 (remaining gas: 1039494.828 units remaining) + - location: 31 (remaining gas: 1039496.503 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -74,7 +74,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 33 (remaining gas: 1039494.818 units remaining) + - location: 33 (remaining gas: 1039496.493 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -85,7 +85,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 31 (remaining gas: 1039494.788 units remaining) + - location: 31 (remaining gas: 1039496.473 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit @@ -97,7 +97,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 34 (remaining gas: 1039492.916 units remaining) + - location: 34 (remaining gas: 1039494.601 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit @@ -109,7 +109,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 35 (remaining gas: 1039492.901 units remaining) + - location: 35 (remaining gas: 1039494.591 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -120,7 +120,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 37 (remaining gas: 1039491.029 units remaining) + - location: 37 (remaining gas: 1039492.719 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -131,7 +131,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 38 (remaining gas: 1039169.885 units remaining) + - location: 38 (remaining gas: 1039171.575 units remaining) [ (Some "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav") (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -142,7 +142,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 41 (remaining gas: 1039169.875 units remaining) + - location: 41 (remaining gas: 1039171.565 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -153,7 +153,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 41 (remaining gas: 1039169.860 units remaining) + - location: 41 (remaining gas: 1039171.555 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -164,7 +164,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 47 (remaining gas: 1039167.988 units remaining) + - location: 47 (remaining gas: 1039169.683 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -175,7 +175,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 35 (remaining gas: 1039167.958 units remaining) + - location: 35 (remaining gas: 1039169.663 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit @@ -187,7 +187,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 50 (remaining gas: 1039167.923 units remaining) + - location: 50 (remaining gas: 1039169.628 units remaining) [ 0 (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -198,7 +198,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 51 (remaining gas: 1039167.908 units remaining) + - location: 51 (remaining gas: 1039169.618 units remaining) [ True (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -209,7 +209,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 52 (remaining gas: 1039167.898 units remaining) + - location: 52 (remaining gas: 1039169.608 units remaining) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -219,7 +219,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 52 (remaining gas: 1039167.883 units remaining) + - location: 52 (remaining gas: 1039169.598 units remaining) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -229,7 +229,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 58 (remaining gas: 1039167.873 units remaining) + - location: 58 (remaining gas: 1039169.588 units remaining) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -248,7 +248,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 59 (remaining gas: 1039167.863 units remaining) + - location: 59 (remaining gas: 1039169.578 units remaining) [ Unit (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -259,7 +259,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 60 (remaining gas: 1039167.848 units remaining) + - location: 60 (remaining gas: 1039169.568 units remaining) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -269,7 +269,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 62 (remaining gas: 1039167.838 units remaining) + - location: 62 (remaining gas: 1039169.558 units remaining) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -279,7 +279,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 60 (remaining gas: 1039167.808 units remaining) + - location: 60 (remaining gas: 1039169.538 units remaining) [ Unit Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -290,7 +290,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 63 (remaining gas: 1039167.581 units remaining) + - location: 63 (remaining gas: 1039169.311 units remaining) [ 0x05030b Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -301,7 +301,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 64 (remaining gas: 1039167.566 units remaining) + - location: 64 (remaining gas: 1039169.301 units remaining) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -311,7 +311,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 66 (remaining gas: 1039167.339 units remaining) + - location: 66 (remaining gas: 1039169.074 units remaining) [ 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -321,7 +321,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 67 (remaining gas: 1039166.919 units remaining) + - location: 67 (remaining gas: 1039168.654 units remaining) [ (Some Unit) (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -331,7 +331,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 70 (remaining gas: 1039166.909 units remaining) + - location: 70 (remaining gas: 1039168.644 units remaining) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -341,7 +341,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 70 (remaining gas: 1039166.894 units remaining) + - location: 70 (remaining gas: 1039168.634 units remaining) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -351,7 +351,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 76 (remaining gas: 1039166.667 units remaining) + - location: 76 (remaining gas: 1039168.407 units remaining) [ 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -361,7 +361,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 64 (remaining gas: 1039166.637 units remaining) + - location: 64 (remaining gas: 1039168.387 units remaining) [ 0x05030b 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -372,7 +372,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 79 (remaining gas: 1039166.602 units remaining) + - location: 79 (remaining gas: 1039168.352 units remaining) [ 0 (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -382,7 +382,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 80 (remaining gas: 1039166.587 units remaining) + - location: 80 (remaining gas: 1039168.342 units remaining) [ True (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -392,7 +392,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 81 (remaining gas: 1039166.577 units remaining) + - location: 81 (remaining gas: 1039168.332 units remaining) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None {} @@ -401,7 +401,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 81 (remaining gas: 1039166.562 units remaining) + - location: 81 (remaining gas: 1039168.322 units remaining) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None {} @@ -410,7 +410,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 87 (remaining gas: 1039166.552 units remaining) + - location: 87 (remaining gas: 1039168.312 units remaining) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None {} @@ -427,7 +427,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 88 (remaining gas: 1039166.542 units remaining) + - location: 88 (remaining gas: 1039168.302 units remaining) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -437,7 +437,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 89 (remaining gas: 1039166.527 units remaining) + - location: 89 (remaining gas: 1039168.292 units remaining) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None {} @@ -446,7 +446,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 91 (remaining gas: 1039166.517 units remaining) + - location: 91 (remaining gas: 1039168.282 units remaining) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None {} @@ -455,7 +455,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 89 (remaining gas: 1039166.487 units remaining) + - location: 89 (remaining gas: 1039168.262 units remaining) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None @@ -465,7 +465,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 92 (remaining gas: 1039164 units remaining) + - location: 92 (remaining gas: 1039165.775 units remaining) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None @@ -475,7 +475,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 93 (remaining gas: 1039163.985 units remaining) + - location: 93 (remaining gas: 1039165.765 units remaining) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None {} @@ -484,7 +484,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 95 (remaining gas: 1039161.498 units remaining) + - location: 95 (remaining gas: 1039163.278 units remaining) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair None {} @@ -493,7 +493,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 96 (remaining gas: 1039159.695 units remaining) + - location: 96 (remaining gas: 1039161.475 units remaining) [ (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe") (Pair None {} @@ -502,7 +502,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 99 (remaining gas: 1039159.685 units remaining) + - location: 99 (remaining gas: 1039161.465 units remaining) [ "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe" (Pair None {} @@ -511,7 +511,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 99 (remaining gas: 1039159.670 units remaining) + - location: 99 (remaining gas: 1039161.455 units remaining) [ "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe" (Pair None {} @@ -520,7 +520,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 105 (remaining gas: 1039157.183 units remaining) + - location: 105 (remaining gas: 1039158.968 units remaining) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair None {} @@ -529,7 +529,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 93 (remaining gas: 1039157.153 units remaining) + - location: 93 (remaining gas: 1039158.948 units remaining) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair None @@ -539,7 +539,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 108 (remaining gas: 1039157.117 units remaining) + - location: 108 (remaining gas: 1039158.912 units remaining) [ 0 (Pair None {} @@ -548,7 +548,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 109 (remaining gas: 1039157.102 units remaining) + - location: 109 (remaining gas: 1039158.902 units remaining) [ True (Pair None {} @@ -557,7 +557,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 110 (remaining gas: 1039157.092 units remaining) + - location: 110 (remaining gas: 1039158.892 units remaining) [ (Pair None {} {} @@ -565,7 +565,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 110 (remaining gas: 1039157.077 units remaining) + - location: 110 (remaining gas: 1039158.882 units remaining) [ (Pair None {} {} @@ -573,7 +573,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 116 (remaining gas: 1039157.067 units remaining) + - location: 116 (remaining gas: 1039158.872 units remaining) [ (Pair None {} {} @@ -588,7 +588,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 117 (remaining gas: 1039157.057 units remaining) + - location: 117 (remaining gas: 1039158.862 units remaining) [ None (Pair None {} @@ -597,7 +597,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 118 (remaining gas: 1039157.042 units remaining) + - location: 118 (remaining gas: 1039158.852 units remaining) [ (Pair None {} {} @@ -605,7 +605,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 120 (remaining gas: 1039157.032 units remaining) + - location: 120 (remaining gas: 1039158.842 units remaining) [ None (Pair {} {} @@ -613,7 +613,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 118 (remaining gas: 1039157.002 units remaining) + - location: 118 (remaining gas: 1039158.822 units remaining) [ None None (Pair {} @@ -622,7 +622,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 121 (remaining gas: 1039156.775 units remaining) + - location: 121 (remaining gas: 1039158.595 units remaining) [ 0x050306 None (Pair {} @@ -631,7 +631,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 122 (remaining gas: 1039156.760 units remaining) + - location: 122 (remaining gas: 1039158.585 units remaining) [ None (Pair {} {} @@ -639,7 +639,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 124 (remaining gas: 1039156.533 units remaining) + - location: 124 (remaining gas: 1039158.358 units remaining) [ 0x050306 (Pair {} {} @@ -647,7 +647,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 125 (remaining gas: 1039156.113 units remaining) + - location: 125 (remaining gas: 1039157.938 units remaining) [ (Some None) (Pair {} {} @@ -655,7 +655,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 129 (remaining gas: 1039156.103 units remaining) + - location: 129 (remaining gas: 1039157.928 units remaining) [ None (Pair {} {} @@ -663,7 +663,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 129 (remaining gas: 1039156.088 units remaining) + - location: 129 (remaining gas: 1039157.918 units remaining) [ None (Pair {} {} @@ -671,7 +671,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 135 (remaining gas: 1039155.861 units remaining) + - location: 135 (remaining gas: 1039157.691 units remaining) [ 0x050306 (Pair {} {} @@ -679,7 +679,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 122 (remaining gas: 1039155.831 units remaining) + - location: 122 (remaining gas: 1039157.671 units remaining) [ 0x050306 0x050306 (Pair {} @@ -688,7 +688,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 138 (remaining gas: 1039155.796 units remaining) + - location: 138 (remaining gas: 1039157.636 units remaining) [ 0 (Pair {} {} @@ -696,7 +696,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 139 (remaining gas: 1039155.781 units remaining) + - location: 139 (remaining gas: 1039157.626 units remaining) [ True (Pair {} {} @@ -704,21 +704,21 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 140 (remaining gas: 1039155.771 units remaining) + - location: 140 (remaining gas: 1039157.616 units remaining) [ (Pair {} {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 140 (remaining gas: 1039155.756 units remaining) + - location: 140 (remaining gas: 1039157.606 units remaining) [ (Pair {} {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 146 (remaining gas: 1039155.746 units remaining) + - location: 146 (remaining gas: 1039157.596 units remaining) [ (Pair {} {} (Pair 40 -10) @@ -731,7 +731,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 147 (remaining gas: 1039155.736 units remaining) + - location: 147 (remaining gas: 1039157.586 units remaining) [ {} (Pair {} {} @@ -739,294 +739,294 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 148 (remaining gas: 1039155.721 units remaining) + - location: 148 (remaining gas: 1039157.576 units remaining) [ (Pair {} {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 150 (remaining gas: 1039155.711 units remaining) + - location: 150 (remaining gas: 1039157.566 units remaining) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 148 (remaining gas: 1039155.681 units remaining) + - location: 148 (remaining gas: 1039157.546 units remaining) [ {} {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 151 (remaining gas: 1039155.355 units remaining) + - location: 151 (remaining gas: 1039157.220 units remaining) [ 0x050200000000 {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 152 (remaining gas: 1039155.340 units remaining) + - location: 152 (remaining gas: 1039157.210 units remaining) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 154 (remaining gas: 1039155.014 units remaining) + - location: 154 (remaining gas: 1039156.884 units remaining) [ 0x050200000000 (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 155 (remaining gas: 1039154.534 units remaining) + - location: 155 (remaining gas: 1039156.404 units remaining) [ (Some {}) (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 159 (remaining gas: 1039154.524 units remaining) + - location: 159 (remaining gas: 1039156.394 units remaining) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 159 (remaining gas: 1039154.509 units remaining) + - location: 159 (remaining gas: 1039156.384 units remaining) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 165 (remaining gas: 1039154.183 units remaining) + - location: 165 (remaining gas: 1039156.058 units remaining) [ 0x050200000000 (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 152 (remaining gas: 1039154.153 units remaining) + - location: 152 (remaining gas: 1039156.038 units remaining) [ 0x050200000000 0x050200000000 (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 168 (remaining gas: 1039154.118 units remaining) + - location: 168 (remaining gas: 1039156.003 units remaining) [ 0 (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 169 (remaining gas: 1039154.103 units remaining) + - location: 169 (remaining gas: 1039155.993 units remaining) [ True (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 170 (remaining gas: 1039154.093 units remaining) + - location: 170 (remaining gas: 1039155.983 units remaining) [ (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 170 (remaining gas: 1039154.078 units remaining) + - location: 170 (remaining gas: 1039155.973 units remaining) [ (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 176 (remaining gas: 1039154.068 units remaining) + - location: 176 (remaining gas: 1039155.963 units remaining) [ (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 177 (remaining gas: 1039154.058 units remaining) + - location: 177 (remaining gas: 1039155.953 units remaining) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 178 (remaining gas: 1039154.043 units remaining) + - location: 178 (remaining gas: 1039155.943 units remaining) [ (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 180 (remaining gas: 1039154.033 units remaining) + - location: 180 (remaining gas: 1039155.933 units remaining) [ {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 178 (remaining gas: 1039154.003 units remaining) + - location: 178 (remaining gas: 1039155.913 units remaining) [ {} {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 181 (remaining gas: 1039153.677 units remaining) + - location: 181 (remaining gas: 1039155.587 units remaining) [ 0x050200000000 {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 182 (remaining gas: 1039153.662 units remaining) + - location: 182 (remaining gas: 1039155.577 units remaining) [ {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 184 (remaining gas: 1039153.336 units remaining) + - location: 184 (remaining gas: 1039155.251 units remaining) [ 0x050200000000 (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 185 (remaining gas: 1039152.856 units remaining) + - location: 185 (remaining gas: 1039154.771 units remaining) [ (Some {}) (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 189 (remaining gas: 1039152.846 units remaining) + - location: 189 (remaining gas: 1039154.761 units remaining) [ {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 189 (remaining gas: 1039152.831 units remaining) + - location: 189 (remaining gas: 1039154.751 units remaining) [ {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 195 (remaining gas: 1039152.505 units remaining) + - location: 195 (remaining gas: 1039154.425 units remaining) [ 0x050200000000 (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 182 (remaining gas: 1039152.475 units remaining) + - location: 182 (remaining gas: 1039154.405 units remaining) [ 0x050200000000 0x050200000000 (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 198 (remaining gas: 1039152.440 units remaining) + - location: 198 (remaining gas: 1039154.370 units remaining) [ 0 (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 199 (remaining gas: 1039152.425 units remaining) + - location: 199 (remaining gas: 1039154.360 units remaining) [ True (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 200 (remaining gas: 1039152.415 units remaining) + - location: 200 (remaining gas: 1039154.350 units remaining) [ (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 200 (remaining gas: 1039152.400 units remaining) + - location: 200 (remaining gas: 1039154.340 units remaining) [ (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 206 (remaining gas: 1039152.390 units remaining) + - location: 206 (remaining gas: 1039154.330 units remaining) [ (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 207 (remaining gas: 1039152.380 units remaining) + - location: 207 (remaining gas: 1039154.320 units remaining) [ (Pair 40 -10) (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 208 (remaining gas: 1039152.365 units remaining) + - location: 208 (remaining gas: 1039154.310 units remaining) [ (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 210 (remaining gas: 1039152.355 units remaining) + - location: 210 (remaining gas: 1039154.300 units remaining) [ (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 208 (remaining gas: 1039152.325 units remaining) + - location: 208 (remaining gas: 1039154.280 units remaining) [ (Pair 40 -10) (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 211 (remaining gas: 1039151.774 units remaining) + - location: 211 (remaining gas: 1039153.729 units remaining) [ 0x0507070028004a (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 212 (remaining gas: 1039151.759 units remaining) + - location: 212 (remaining gas: 1039153.719 units remaining) [ (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 214 (remaining gas: 1039151.208 units remaining) + - location: 214 (remaining gas: 1039153.168 units remaining) [ 0x0507070028004a (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 215 (remaining gas: 1039150.508 units remaining) + - location: 215 (remaining gas: 1039152.468 units remaining) [ (Some (Pair 40 -10)) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 220 (remaining gas: 1039150.498 units remaining) + - location: 220 (remaining gas: 1039152.458 units remaining) [ (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 220 (remaining gas: 1039150.483 units remaining) + - location: 220 (remaining gas: 1039152.448 units remaining) [ (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 226 (remaining gas: 1039149.932 units remaining) + - location: 226 (remaining gas: 1039151.897 units remaining) [ 0x0507070028004a (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 212 (remaining gas: 1039149.902 units remaining) + - location: 212 (remaining gas: 1039151.877 units remaining) [ 0x0507070028004a 0x0507070028004a (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 229 (remaining gas: 1039149.867 units remaining) + - location: 229 (remaining gas: 1039151.842 units remaining) [ 0 (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 230 (remaining gas: 1039149.852 units remaining) + - location: 230 (remaining gas: 1039151.832 units remaining) [ True (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 231 (remaining gas: 1039149.842 units remaining) + - location: 231 (remaining gas: 1039151.822 units remaining) [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 231 (remaining gas: 1039149.827 units remaining) + - location: 231 (remaining gas: 1039151.812 units remaining) [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 237 (remaining gas: 1039149.817 units remaining) + - location: 237 (remaining gas: 1039151.802 units remaining) [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 238 (remaining gas: 1039149.807 units remaining) + - location: 238 (remaining gas: 1039151.792 units remaining) [ (Right "2019-09-09T08:35:33Z") (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 239 (remaining gas: 1039149.792 units remaining) + - location: 239 (remaining gas: 1039151.782 units remaining) [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 241 (remaining gas: 1039149.782 units remaining) + - location: 241 (remaining gas: 1039151.772 units remaining) [ (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 239 (remaining gas: 1039149.752 units remaining) + - location: 239 (remaining gas: 1039151.752 units remaining) [ (Right "2019-09-09T08:35:33Z") (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 242 (remaining gas: 1039149.231 units remaining) + - location: 242 (remaining gas: 1039151.231 units remaining) [ 0x0505080095bbb0d70b (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 243 (remaining gas: 1039149.216 units remaining) + - location: 243 (remaining gas: 1039151.221 units remaining) [ (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 245 (remaining gas: 1039148.695 units remaining) + - location: 245 (remaining gas: 1039150.700 units remaining) [ 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 246 (remaining gas: 1039148.054 units remaining) + - location: 246 (remaining gas: 1039150.059 units remaining) [ (Some (Right "2019-09-09T08:35:33Z")) (Pair {} { DUP ; DROP ; PACK }) ] - - location: 251 (remaining gas: 1039148.044 units remaining) + - location: 251 (remaining gas: 1039150.049 units remaining) [ (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 251 (remaining gas: 1039148.029 units remaining) + - location: 251 (remaining gas: 1039150.039 units remaining) [ (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 257 (remaining gas: 1039147.508 units remaining) + - location: 257 (remaining gas: 1039149.518 units remaining) [ 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 243 (remaining gas: 1039147.478 units remaining) + - location: 243 (remaining gas: 1039149.498 units remaining) [ 0x0505080095bbb0d70b 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 260 (remaining gas: 1039147.443 units remaining) + - location: 260 (remaining gas: 1039149.463 units remaining) [ 0 (Pair {} { DUP ; DROP ; PACK }) ] - - location: 261 (remaining gas: 1039147.428 units remaining) + - location: 261 (remaining gas: 1039149.453 units remaining) [ True (Pair {} { DUP ; DROP ; PACK }) ] - - location: 262 (remaining gas: 1039147.418 units remaining) + - location: 262 (remaining gas: 1039149.443 units remaining) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 262 (remaining gas: 1039147.403 units remaining) + - location: 262 (remaining gas: 1039149.433 units remaining) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 268 (remaining gas: 1039147.393 units remaining) + - location: 268 (remaining gas: 1039149.423 units remaining) [ (Pair {} { DUP ; DROP ; PACK }) (Pair {} { DUP ; DROP ; PACK }) ] - - location: 269 (remaining gas: 1039147.383 units remaining) + - location: 269 (remaining gas: 1039149.413 units remaining) [ {} (Pair {} { DUP ; DROP ; PACK }) ] - - location: 270 (remaining gas: 1039147.368 units remaining) + - location: 270 (remaining gas: 1039149.403 units remaining) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 272 (remaining gas: 1039147.358 units remaining) + - location: 272 (remaining gas: 1039149.393 units remaining) [ {} { DUP ; DROP ; PACK } ] - - location: 270 (remaining gas: 1039147.328 units remaining) + - location: 270 (remaining gas: 1039149.373 units remaining) [ {} {} { DUP ; DROP ; PACK } ] - - location: 273 (remaining gas: 1039147.002 units remaining) + - location: 273 (remaining gas: 1039149.047 units remaining) [ 0x050200000000 {} { DUP ; DROP ; PACK } ] - - location: 274 (remaining gas: 1039146.987 units remaining) + - location: 274 (remaining gas: 1039149.037 units remaining) [ {} { DUP ; DROP ; PACK } ] - - location: 276 (remaining gas: 1039146.661 units remaining) + - location: 276 (remaining gas: 1039148.711 units remaining) [ 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 277 (remaining gas: 1039146.181 units remaining) + - location: 277 (remaining gas: 1039148.231 units remaining) [ (Some {}) { DUP ; DROP ; PACK } ] - - location: 282 (remaining gas: 1039146.171 units remaining) + - location: 282 (remaining gas: 1039148.221 units remaining) [ {} { DUP ; DROP ; PACK } ] - - location: 282 (remaining gas: 1039146.156 units remaining) + - location: 282 (remaining gas: 1039148.211 units remaining) [ {} { DUP ; DROP ; PACK } ] - - location: 288 (remaining gas: 1039145.830 units remaining) + - location: 288 (remaining gas: 1039147.885 units remaining) [ 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 274 (remaining gas: 1039145.800 units remaining) + - location: 274 (remaining gas: 1039147.865 units remaining) [ 0x050200000000 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 291 (remaining gas: 1039145.765 units remaining) + - location: 291 (remaining gas: 1039147.830 units remaining) [ 0 { DUP ; DROP ; PACK } ] - - location: 292 (remaining gas: 1039145.750 units remaining) + - location: 292 (remaining gas: 1039147.820 units remaining) [ True { DUP ; DROP ; PACK } ] - - location: 293 (remaining gas: 1039145.740 units remaining) + - location: 293 (remaining gas: 1039147.810 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 293 (remaining gas: 1039145.725 units remaining) + - location: 293 (remaining gas: 1039147.800 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 299 (remaining gas: 1039145.715 units remaining) + - location: 299 (remaining gas: 1039147.790 units remaining) [ { DUP ; DROP ; PACK } { DUP ; DROP ; PACK } ] - - location: 300 (remaining gas: 1039144.578 units remaining) + - location: 300 (remaining gas: 1039146.653 units remaining) [ 0x05020000000603210320030c { DUP ; DROP ; PACK } ] - - location: 301 (remaining gas: 1039144.563 units remaining) + - location: 301 (remaining gas: 1039146.643 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 303 (remaining gas: 1039143.426 units remaining) + - location: 303 (remaining gas: 1039145.506 units remaining) [ 0x05020000000603210320030c ] - - location: 304 (remaining gas: 1039141.185 units remaining) + - location: 304 (remaining gas: 1039143.425 units remaining) [ (Some { DUP ; DROP ; PACK }) ] - - location: 309 (remaining gas: 1039141.175 units remaining) + - location: 309 (remaining gas: 1039143.415 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 309 (remaining gas: 1039141.160 units remaining) + - location: 309 (remaining gas: 1039143.405 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 315 (remaining gas: 1039140.023 units remaining) + - location: 315 (remaining gas: 1039142.268 units remaining) [ 0x05020000000603210320030c ] - - location: 301 (remaining gas: 1039139.993 units remaining) + - location: 301 (remaining gas: 1039142.248 units remaining) [ 0x05020000000603210320030c 0x05020000000603210320030c ] - - location: 318 (remaining gas: 1039139.958 units remaining) + - location: 318 (remaining gas: 1039142.213 units remaining) [ 0 ] - - location: 319 (remaining gas: 1039139.943 units remaining) + - location: 319 (remaining gas: 1039142.203 units remaining) [ True ] - - location: 320 (remaining gas: 1039139.933 units remaining) + - location: 320 (remaining gas: 1039142.193 units remaining) [ ] - - location: 320 (remaining gas: 1039139.918 units remaining) + - location: 320 (remaining gas: 1039142.183 units remaining) [ ] - - location: 326 (remaining gas: 1039139.908 units remaining) + - location: 326 (remaining gas: 1039142.173 units remaining) [ Unit ] - - location: 327 (remaining gas: 1039139.893 units remaining) + - location: 327 (remaining gas: 1039142.163 units remaining) [ {} Unit ] - - location: 329 (remaining gas: 1039139.878 units remaining) + - location: 329 (remaining gas: 1039142.153 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out index 0dd91e57cd64..4fc53272b74b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False False)-(Some (Pair False False))].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039993.199 units remaining) + - location: 12 (remaining gas: 1039994.319 units remaining) [ (Pair (Pair False False) None) ] - - location: 12 (remaining gas: 1039993.189 units remaining) + - location: 12 (remaining gas: 1039994.309 units remaining) [ (Pair False False) ] - - location: 13 (remaining gas: 1039993.174 units remaining) + - location: 13 (remaining gas: 1039994.299 units remaining) [ (Some (Pair False False)) ] - - location: 14 (remaining gas: 1039993.159 units remaining) + - location: 14 (remaining gas: 1039994.289 units remaining) [ {} (Some (Pair False False)) ] - - location: 16 (remaining gas: 1039993.144 units remaining) + - location: 16 (remaining gas: 1039994.279 units remaining) [ (Pair {} (Some (Pair False False))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out index f2a264e6fe3d..37ca66061f52 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair False True)-(Some (Pair False True))].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039993.199 units remaining) + - location: 12 (remaining gas: 1039994.319 units remaining) [ (Pair (Pair False True) None) ] - - location: 12 (remaining gas: 1039993.189 units remaining) + - location: 12 (remaining gas: 1039994.309 units remaining) [ (Pair False True) ] - - location: 13 (remaining gas: 1039993.174 units remaining) + - location: 13 (remaining gas: 1039994.299 units remaining) [ (Some (Pair False True)) ] - - location: 14 (remaining gas: 1039993.159 units remaining) + - location: 14 (remaining gas: 1039994.289 units remaining) [ {} (Some (Pair False True)) ] - - location: 16 (remaining gas: 1039993.144 units remaining) + - location: 16 (remaining gas: 1039994.279 units remaining) [ (Pair {} (Some (Pair False True))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out index 663c034cce5a..e357e35f3126 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True False)-(Some (Pair True False))].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039993.199 units remaining) + - location: 12 (remaining gas: 1039994.319 units remaining) [ (Pair (Pair True False) None) ] - - location: 12 (remaining gas: 1039993.189 units remaining) + - location: 12 (remaining gas: 1039994.309 units remaining) [ (Pair True False) ] - - location: 13 (remaining gas: 1039993.174 units remaining) + - location: 13 (remaining gas: 1039994.299 units remaining) [ (Some (Pair True False)) ] - - location: 14 (remaining gas: 1039993.159 units remaining) + - location: 14 (remaining gas: 1039994.289 units remaining) [ {} (Some (Pair True False)) ] - - location: 16 (remaining gas: 1039993.144 units remaining) + - location: 16 (remaining gas: 1039994.279 units remaining) [ (Pair {} (Some (Pair True False))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out index 882f34a0f304..ba00b857dcc5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pair_id.tz-None-(Pair True True)-(Some (Pair True True))].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039993.199 units remaining) + - location: 12 (remaining gas: 1039994.319 units remaining) [ (Pair (Pair True True) None) ] - - location: 12 (remaining gas: 1039993.189 units remaining) + - location: 12 (remaining gas: 1039994.309 units remaining) [ (Pair True True) ] - - location: 13 (remaining gas: 1039993.174 units remaining) + - location: 13 (remaining gas: 1039994.299 units remaining) [ (Some (Pair True True)) ] - - location: 14 (remaining gas: 1039993.159 units remaining) + - location: 14 (remaining gas: 1039994.289 units remaining) [ {} (Some (Pair True True)) ] - - location: 16 (remaining gas: 1039993.144 units remaining) + - location: 16 (remaining gas: 1039994.279 units remaining) [ (Pair {} (Some (Pair True True))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out index 8b9161261a6c..e1c85df4081c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec.tz-14-38-52].out @@ -7,41 +7,41 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039989.319 units remaining) + - location: 7 (remaining gas: 1039990.439 units remaining) [ (Pair 38 14) ] - - location: 7 (remaining gas: 1039989.309 units remaining) + - location: 7 (remaining gas: 1039990.429 units remaining) [ { UNPAIR ; ADD } (Pair 38 14) ] - - location: 15 (remaining gas: 1039989.299 units remaining) + - location: 15 (remaining gas: 1039990.419 units remaining) [ (Pair 38 14) { UNPAIR ; ADD } ] - - location: 16 (remaining gas: 1039989.289 units remaining) + - location: 16 (remaining gas: 1039990.409 units remaining) [ 38 14 { UNPAIR ; ADD } ] - - location: 17 (remaining gas: 1039989.274 units remaining) + - location: 17 (remaining gas: 1039990.399 units remaining) [ 14 { UNPAIR ; ADD } ] - - location: 19 (remaining gas: 1039989.049 units remaining) + - location: 19 (remaining gas: 1039990.194 units remaining) [ { PUSH nat 14 ; PAIR ; { UNPAIR ; ADD } } ] - - location: 17 (remaining gas: 1039989.019 units remaining) + - location: 17 (remaining gas: 1039990.174 units remaining) [ 38 { PUSH nat 14 ; PAIR ; { UNPAIR ; ADD } } ] - - location: 12 (remaining gas: 1039989.009 units remaining) + - location: 12 (remaining gas: 1039990.164 units remaining) [ 14 38 ] - - location: 12 (remaining gas: 1039988.994 units remaining) + - location: 12 (remaining gas: 1039990.154 units remaining) [ (Pair 14 38) ] - - location: 13 (remaining gas: 1039988.984 units remaining) + - location: 13 (remaining gas: 1039990.144 units remaining) [ 14 38 ] - - location: 14 (remaining gas: 1039988.929 units remaining) + - location: 14 (remaining gas: 1039990.109 units remaining) [ 52 ] - - location: 20 (remaining gas: 1039988.899 units remaining) + - location: 20 (remaining gas: 1039990.089 units remaining) [ 52 ] - - location: 21 (remaining gas: 1039988.884 units remaining) + - location: 21 (remaining gas: 1039990.079 units remaining) [ {} 52 ] - - location: 23 (remaining gas: 1039988.869 units remaining) + - location: 23 (remaining gas: 1039990.069 units remaining) [ (Pair {} 52) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out index b136801776fb..721e613fd8a1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[pexec_2.tz-{ 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out @@ -7,53 +7,53 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039979.991 units remaining) + - location: 8 (remaining gas: 1039981.911 units remaining) [ (Pair 4 { 0 ; 1 ; 2 ; 3 }) ] - - location: 8 (remaining gas: 1039979.981 units remaining) + - location: 8 (remaining gas: 1039981.901 units remaining) [ 4 { 0 ; 1 ; 2 ; 3 } ] - - location: 9 (remaining gas: 1039979.971 units remaining) + - location: 9 (remaining gas: 1039981.891 units remaining) [ { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } 4 { 0 ; 1 ; 2 ; 3 } ] - - location: 23 (remaining gas: 1039979.961 units remaining) + - location: 23 (remaining gas: 1039981.881 units remaining) [ 4 { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } { 0 ; 1 ; 2 ; 3 } ] - - location: 24 (remaining gas: 1039979.736 units remaining) + - location: 24 (remaining gas: 1039981.676 units remaining) [ { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } { 0 ; 1 ; 2 ; 3 } ] - - location: 25 (remaining gas: 1039979.726 units remaining) + - location: 25 (remaining gas: 1039981.666 units remaining) [ 3 { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } { 0 ; 1 ; 2 ; 3 } ] - - location: 28 (remaining gas: 1039979.501 units remaining) + - location: 28 (remaining gas: 1039981.461 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } { 0 ; 1 ; 2 ; 3 } ] - - location: 29 (remaining gas: 1039979.491 units remaining) + - location: 29 (remaining gas: 1039981.451 units remaining) [ { 0 ; 1 ; 2 ; 3 } { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (remaining gas: 1039979.491 units remaining) + - location: 30 (remaining gas: 1039981.451 units remaining) [ 0 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039979.476 units remaining) + - location: 32 (remaining gas: 1039981.441 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (remaining gas: 1039979.466 units remaining) + - location: 34 (remaining gas: 1039981.431 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039979.436 units remaining) + - location: 32 (remaining gas: 1039981.411 units remaining) [ 0 { PUSH int 3 ; PAIR ; @@ -61,55 +61,55 @@ trace { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 16 (remaining gas: 1039979.426 units remaining) + - location: 16 (remaining gas: 1039981.401 units remaining) [ 3 0 ] - - location: 16 (remaining gas: 1039979.411 units remaining) + - location: 16 (remaining gas: 1039981.391 units remaining) [ (Pair 3 0) ] - - location: 16 (remaining gas: 1039979.401 units remaining) + - location: 16 (remaining gas: 1039981.381 units remaining) [ 4 (Pair 3 0) ] - - location: 16 (remaining gas: 1039979.386 units remaining) + - location: 16 (remaining gas: 1039981.371 units remaining) [ (Pair 4 3 0) ] - - location: 17 (remaining gas: 1039979.376 units remaining) + - location: 17 (remaining gas: 1039981.361 units remaining) [ 4 (Pair 3 0) ] - - location: 18 (remaining gas: 1039979.361 units remaining) + - location: 18 (remaining gas: 1039981.351 units remaining) [ (Pair 3 0) ] - - location: 20 (remaining gas: 1039979.351 units remaining) + - location: 20 (remaining gas: 1039981.341 units remaining) [ 3 0 ] - - location: 18 (remaining gas: 1039979.321 units remaining) + - location: 18 (remaining gas: 1039981.321 units remaining) [ 4 3 0 ] - - location: 21 (remaining gas: 1039979.266 units remaining) + - location: 21 (remaining gas: 1039981.286 units remaining) [ 7 0 ] - - location: 22 (remaining gas: 1039979.165 units remaining) + - location: 22 (remaining gas: 1039981.230 units remaining) [ 0 ] - - location: 35 (remaining gas: 1039979.135 units remaining) + - location: 35 (remaining gas: 1039981.210 units remaining) [ 0 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (remaining gas: 1039979.120 units remaining) + - location: 30 (remaining gas: 1039981.200 units remaining) [ 1 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039979.105 units remaining) + - location: 32 (remaining gas: 1039981.190 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (remaining gas: 1039979.095 units remaining) + - location: 34 (remaining gas: 1039981.180 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039979.065 units remaining) + - location: 32 (remaining gas: 1039981.160 units remaining) [ 1 { PUSH int 3 ; PAIR ; @@ -117,55 +117,55 @@ trace { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 16 (remaining gas: 1039979.055 units remaining) + - location: 16 (remaining gas: 1039981.150 units remaining) [ 3 1 ] - - location: 16 (remaining gas: 1039979.040 units remaining) + - location: 16 (remaining gas: 1039981.140 units remaining) [ (Pair 3 1) ] - - location: 16 (remaining gas: 1039979.030 units remaining) + - location: 16 (remaining gas: 1039981.130 units remaining) [ 4 (Pair 3 1) ] - - location: 16 (remaining gas: 1039979.015 units remaining) + - location: 16 (remaining gas: 1039981.120 units remaining) [ (Pair 4 3 1) ] - - location: 17 (remaining gas: 1039979.005 units remaining) + - location: 17 (remaining gas: 1039981.110 units remaining) [ 4 (Pair 3 1) ] - - location: 18 (remaining gas: 1039978.990 units remaining) + - location: 18 (remaining gas: 1039981.100 units remaining) [ (Pair 3 1) ] - - location: 20 (remaining gas: 1039978.980 units remaining) + - location: 20 (remaining gas: 1039981.090 units remaining) [ 3 1 ] - - location: 18 (remaining gas: 1039978.950 units remaining) + - location: 18 (remaining gas: 1039981.070 units remaining) [ 4 3 1 ] - - location: 21 (remaining gas: 1039978.895 units remaining) + - location: 21 (remaining gas: 1039981.035 units remaining) [ 7 1 ] - - location: 22 (remaining gas: 1039978.791 units remaining) + - location: 22 (remaining gas: 1039980.976 units remaining) [ 7 ] - - location: 35 (remaining gas: 1039978.761 units remaining) + - location: 35 (remaining gas: 1039980.956 units remaining) [ 7 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (remaining gas: 1039978.746 units remaining) + - location: 30 (remaining gas: 1039980.946 units remaining) [ 2 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039978.731 units remaining) + - location: 32 (remaining gas: 1039980.936 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (remaining gas: 1039978.721 units remaining) + - location: 34 (remaining gas: 1039980.926 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039978.691 units remaining) + - location: 32 (remaining gas: 1039980.906 units remaining) [ 2 { PUSH int 3 ; PAIR ; @@ -173,55 +173,55 @@ trace { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 16 (remaining gas: 1039978.681 units remaining) + - location: 16 (remaining gas: 1039980.896 units remaining) [ 3 2 ] - - location: 16 (remaining gas: 1039978.666 units remaining) + - location: 16 (remaining gas: 1039980.886 units remaining) [ (Pair 3 2) ] - - location: 16 (remaining gas: 1039978.656 units remaining) + - location: 16 (remaining gas: 1039980.876 units remaining) [ 4 (Pair 3 2) ] - - location: 16 (remaining gas: 1039978.641 units remaining) + - location: 16 (remaining gas: 1039980.866 units remaining) [ (Pair 4 3 2) ] - - location: 17 (remaining gas: 1039978.631 units remaining) + - location: 17 (remaining gas: 1039980.856 units remaining) [ 4 (Pair 3 2) ] - - location: 18 (remaining gas: 1039978.616 units remaining) + - location: 18 (remaining gas: 1039980.846 units remaining) [ (Pair 3 2) ] - - location: 20 (remaining gas: 1039978.606 units remaining) + - location: 20 (remaining gas: 1039980.836 units remaining) [ 3 2 ] - - location: 18 (remaining gas: 1039978.576 units remaining) + - location: 18 (remaining gas: 1039980.816 units remaining) [ 4 3 2 ] - - location: 21 (remaining gas: 1039978.521 units remaining) + - location: 21 (remaining gas: 1039980.781 units remaining) [ 7 2 ] - - location: 22 (remaining gas: 1039978.417 units remaining) + - location: 22 (remaining gas: 1039980.722 units remaining) [ 14 ] - - location: 35 (remaining gas: 1039978.387 units remaining) + - location: 35 (remaining gas: 1039980.702 units remaining) [ 14 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (remaining gas: 1039978.372 units remaining) + - location: 30 (remaining gas: 1039980.692 units remaining) [ 3 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039978.357 units remaining) + - location: 32 (remaining gas: 1039980.682 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (remaining gas: 1039978.347 units remaining) + - location: 34 (remaining gas: 1039980.672 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039978.317 units remaining) + - location: 32 (remaining gas: 1039980.652 units remaining) [ 3 { PUSH int 3 ; PAIR ; @@ -229,54 +229,54 @@ trace { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 16 (remaining gas: 1039978.307 units remaining) + - location: 16 (remaining gas: 1039980.642 units remaining) [ 3 3 ] - - location: 16 (remaining gas: 1039978.292 units remaining) + - location: 16 (remaining gas: 1039980.632 units remaining) [ (Pair 3 3) ] - - location: 16 (remaining gas: 1039978.282 units remaining) + - location: 16 (remaining gas: 1039980.622 units remaining) [ 4 (Pair 3 3) ] - - location: 16 (remaining gas: 1039978.267 units remaining) + - location: 16 (remaining gas: 1039980.612 units remaining) [ (Pair 4 3 3) ] - - location: 17 (remaining gas: 1039978.257 units remaining) + - location: 17 (remaining gas: 1039980.602 units remaining) [ 4 (Pair 3 3) ] - - location: 18 (remaining gas: 1039978.242 units remaining) + - location: 18 (remaining gas: 1039980.592 units remaining) [ (Pair 3 3) ] - - location: 20 (remaining gas: 1039978.232 units remaining) + - location: 20 (remaining gas: 1039980.582 units remaining) [ 3 3 ] - - location: 18 (remaining gas: 1039978.202 units remaining) + - location: 18 (remaining gas: 1039980.562 units remaining) [ 4 3 3 ] - - location: 21 (remaining gas: 1039978.147 units remaining) + - location: 21 (remaining gas: 1039980.527 units remaining) [ 7 3 ] - - location: 22 (remaining gas: 1039978.043 units remaining) + - location: 22 (remaining gas: 1039980.468 units remaining) [ 21 ] - - location: 35 (remaining gas: 1039978.013 units remaining) + - location: 35 (remaining gas: 1039980.448 units remaining) [ 21 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (remaining gas: 1039977.998 units remaining) + - location: 30 (remaining gas: 1039980.438 units remaining) [ { 0 ; 7 ; 14 ; 21 } { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 36 (remaining gas: 1039977.983 units remaining) + - location: 36 (remaining gas: 1039980.428 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 38 (remaining gas: 1039977.973 units remaining) + - location: 38 (remaining gas: 1039980.418 units remaining) [ ] - - location: 36 (remaining gas: 1039977.943 units remaining) + - location: 36 (remaining gas: 1039980.398 units remaining) [ { 0 ; 7 ; 14 ; 21 } ] - - location: 39 (remaining gas: 1039977.928 units remaining) + - location: 39 (remaining gas: 1039980.388 units remaining) [ {} { 0 ; 7 ; 14 ; 21 } ] - - location: 41 (remaining gas: 1039977.913 units remaining) + - location: 41 (remaining gas: 1039980.378 units remaining) [ (Pair {} { 0 ; 7 ; 14 ; 21 }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out index 451110077bed..682bb5f14abf 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[ret_int.tz-None-Unit-(Some 300)].out @@ -7,17 +7,17 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.506 units remaining) + - location: 8 (remaining gas: 1039994.306 units remaining) [ (Pair Unit None) ] - - location: 8 (remaining gas: 1039993.496 units remaining) + - location: 8 (remaining gas: 1039994.296 units remaining) [ ] - - location: 9 (remaining gas: 1039993.486 units remaining) + - location: 9 (remaining gas: 1039994.286 units remaining) [ 300 ] - - location: 12 (remaining gas: 1039993.471 units remaining) + - location: 12 (remaining gas: 1039994.276 units remaining) [ (Some 300) ] - - location: 13 (remaining gas: 1039993.456 units remaining) + - location: 13 (remaining gas: 1039994.266 units remaining) [ {} (Some 300) ] - - location: 15 (remaining gas: 1039993.441 units remaining) + - location: 15 (remaining gas: 1039994.256 units remaining) [ (Pair {} (Some 300)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" index 0b9ec8b7b866..b2b01b412dc3 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" @@ -7,36 +7,36 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039991.077 units remaining) + - location: 9 (remaining gas: 1039992.357 units remaining) [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (remaining gas: 1039991.067 units remaining) + - location: 9 (remaining gas: 1039992.347 units remaining) [ { "c" ; "b" ; "a" } ] - - location: 10 (remaining gas: 1039991.052 units remaining) + - location: 10 (remaining gas: 1039992.337 units remaining) [ {} { "c" ; "b" ; "a" } ] - - location: 12 (remaining gas: 1039991.042 units remaining) + - location: 12 (remaining gas: 1039992.327 units remaining) [ { "c" ; "b" ; "a" } {} ] - - location: 13 (remaining gas: 1039991.042 units remaining) + - location: 13 (remaining gas: 1039992.327 units remaining) [ "c" {} ] - - location: 15 (remaining gas: 1039991.027 units remaining) + - location: 15 (remaining gas: 1039992.317 units remaining) [ { "c" } ] - - location: 13 (remaining gas: 1039991.012 units remaining) + - location: 13 (remaining gas: 1039992.307 units remaining) [ "b" { "c" } ] - - location: 15 (remaining gas: 1039990.997 units remaining) + - location: 15 (remaining gas: 1039992.297 units remaining) [ { "b" ; "c" } ] - - location: 13 (remaining gas: 1039990.982 units remaining) + - location: 13 (remaining gas: 1039992.287 units remaining) [ "a" { "b" ; "c" } ] - - location: 15 (remaining gas: 1039990.967 units remaining) + - location: 15 (remaining gas: 1039992.277 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 13 (remaining gas: 1039990.952 units remaining) + - location: 13 (remaining gas: 1039992.267 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 16 (remaining gas: 1039990.937 units remaining) + - location: 16 (remaining gas: 1039992.257 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039990.922 units remaining) + - location: 18 (remaining gas: 1039992.247 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" index 84832dc1b68b..17b87c6cb4da 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse.tz-{\"\"}-{}-{}].out" @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039991.449 units remaining) + - location: 9 (remaining gas: 1039992.729 units remaining) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039991.439 units remaining) + - location: 9 (remaining gas: 1039992.719 units remaining) [ {} ] - - location: 10 (remaining gas: 1039991.424 units remaining) + - location: 10 (remaining gas: 1039992.709 units remaining) [ {} {} ] - - location: 12 (remaining gas: 1039991.414 units remaining) + - location: 12 (remaining gas: 1039992.699 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039991.414 units remaining) + - location: 13 (remaining gas: 1039992.699 units remaining) [ {} ] - - location: 16 (remaining gas: 1039991.399 units remaining) + - location: 16 (remaining gas: 1039992.689 units remaining) [ {} {} ] - - location: 18 (remaining gas: 1039991.384 units remaining) + - location: 18 (remaining gas: 1039992.679 units remaining) [ (Pair {} {}) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" index bd5c7b413628..1d22a8e2e4ae 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{ \"c\" ; \"b\" ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" @@ -7,125 +7,125 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039982.652 units remaining) + - location: 9 (remaining gas: 1039985.212 units remaining) [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (remaining gas: 1039982.642 units remaining) + - location: 9 (remaining gas: 1039985.202 units remaining) [ { "c" ; "b" ; "a" } ] - - location: 10 (remaining gas: 1039982.627 units remaining) + - location: 10 (remaining gas: 1039985.192 units remaining) [ {} { "c" ; "b" ; "a" } ] - - location: 12 (remaining gas: 1039982.617 units remaining) + - location: 12 (remaining gas: 1039985.182 units remaining) [ { "c" ; "b" ; "a" } {} ] - - location: 13 (remaining gas: 1039982.607 units remaining) + - location: 13 (remaining gas: 1039985.172 units remaining) [ True { "c" ; "b" ; "a" } {} ] - - location: 16 (remaining gas: 1039982.607 units remaining) + - location: 16 (remaining gas: 1039985.172 units remaining) [ { "c" ; "b" ; "a" } {} ] - - location: 18 (remaining gas: 1039982.597 units remaining) + - location: 18 (remaining gas: 1039985.162 units remaining) [ "c" { "b" ; "a" } {} ] - - location: 20 (remaining gas: 1039982.587 units remaining) + - location: 20 (remaining gas: 1039985.152 units remaining) [ { "b" ; "a" } "c" {} ] - - location: 21 (remaining gas: 1039982.572 units remaining) + - location: 21 (remaining gas: 1039985.142 units remaining) [ "c" {} ] - - location: 23 (remaining gas: 1039982.557 units remaining) + - location: 23 (remaining gas: 1039985.132 units remaining) [ { "c" } ] - - location: 21 (remaining gas: 1039982.527 units remaining) + - location: 21 (remaining gas: 1039985.112 units remaining) [ { "b" ; "a" } { "c" } ] - - location: 24 (remaining gas: 1039982.517 units remaining) + - location: 24 (remaining gas: 1039985.102 units remaining) [ True { "b" ; "a" } { "c" } ] - - location: 18 (remaining gas: 1039982.502 units remaining) + - location: 18 (remaining gas: 1039985.092 units remaining) [ True { "b" ; "a" } { "c" } ] - - location: 16 (remaining gas: 1039982.487 units remaining) + - location: 16 (remaining gas: 1039985.082 units remaining) [ { "b" ; "a" } { "c" } ] - - location: 18 (remaining gas: 1039982.477 units remaining) + - location: 18 (remaining gas: 1039985.072 units remaining) [ "b" { "a" } { "c" } ] - - location: 20 (remaining gas: 1039982.467 units remaining) + - location: 20 (remaining gas: 1039985.062 units remaining) [ { "a" } "b" { "c" } ] - - location: 21 (remaining gas: 1039982.452 units remaining) + - location: 21 (remaining gas: 1039985.052 units remaining) [ "b" { "c" } ] - - location: 23 (remaining gas: 1039982.437 units remaining) + - location: 23 (remaining gas: 1039985.042 units remaining) [ { "b" ; "c" } ] - - location: 21 (remaining gas: 1039982.407 units remaining) + - location: 21 (remaining gas: 1039985.022 units remaining) [ { "a" } { "b" ; "c" } ] - - location: 24 (remaining gas: 1039982.397 units remaining) + - location: 24 (remaining gas: 1039985.012 units remaining) [ True { "a" } { "b" ; "c" } ] - - location: 18 (remaining gas: 1039982.382 units remaining) + - location: 18 (remaining gas: 1039985.002 units remaining) [ True { "a" } { "b" ; "c" } ] - - location: 16 (remaining gas: 1039982.367 units remaining) + - location: 16 (remaining gas: 1039984.992 units remaining) [ { "a" } { "b" ; "c" } ] - - location: 18 (remaining gas: 1039982.357 units remaining) + - location: 18 (remaining gas: 1039984.982 units remaining) [ "a" {} { "b" ; "c" } ] - - location: 20 (remaining gas: 1039982.347 units remaining) + - location: 20 (remaining gas: 1039984.972 units remaining) [ {} "a" { "b" ; "c" } ] - - location: 21 (remaining gas: 1039982.332 units remaining) + - location: 21 (remaining gas: 1039984.962 units remaining) [ "a" { "b" ; "c" } ] - - location: 23 (remaining gas: 1039982.317 units remaining) + - location: 23 (remaining gas: 1039984.952 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 21 (remaining gas: 1039982.287 units remaining) + - location: 21 (remaining gas: 1039984.932 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 24 (remaining gas: 1039982.277 units remaining) + - location: 24 (remaining gas: 1039984.922 units remaining) [ True {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039982.262 units remaining) + - location: 18 (remaining gas: 1039984.912 units remaining) [ True {} { "a" ; "b" ; "c" } ] - - location: 16 (remaining gas: 1039982.247 units remaining) + - location: 16 (remaining gas: 1039984.902 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039982.237 units remaining) + - location: 18 (remaining gas: 1039984.892 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 28 (remaining gas: 1039982.222 units remaining) + - location: 28 (remaining gas: 1039984.882 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 30 (remaining gas: 1039982.212 units remaining) + - location: 30 (remaining gas: 1039984.872 units remaining) [ False {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039982.197 units remaining) + - location: 18 (remaining gas: 1039984.862 units remaining) [ False {} { "a" ; "b" ; "c" } ] - - location: 16 (remaining gas: 1039982.182 units remaining) + - location: 16 (remaining gas: 1039984.852 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 33 (remaining gas: 1039982.172 units remaining) + - location: 33 (remaining gas: 1039984.842 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 34 (remaining gas: 1039982.157 units remaining) + - location: 34 (remaining gas: 1039984.832 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 36 (remaining gas: 1039982.142 units remaining) + - location: 36 (remaining gas: 1039984.822 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" index 060c28b594a1..85ba3b4e9829 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[reverse_loop.tz-{\"\"}-{}-{}].out" @@ -7,44 +7,44 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039983.024 units remaining) + - location: 9 (remaining gas: 1039985.584 units remaining) [ (Pair {} { "" }) ] - - location: 9 (remaining gas: 1039983.014 units remaining) + - location: 9 (remaining gas: 1039985.574 units remaining) [ {} ] - - location: 10 (remaining gas: 1039982.999 units remaining) + - location: 10 (remaining gas: 1039985.564 units remaining) [ {} {} ] - - location: 12 (remaining gas: 1039982.989 units remaining) + - location: 12 (remaining gas: 1039985.554 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039982.979 units remaining) + - location: 13 (remaining gas: 1039985.544 units remaining) [ True {} {} ] - - location: 16 (remaining gas: 1039982.979 units remaining) + - location: 16 (remaining gas: 1039985.544 units remaining) [ {} {} ] - - location: 18 (remaining gas: 1039982.969 units remaining) + - location: 18 (remaining gas: 1039985.534 units remaining) [ {} ] - - location: 28 (remaining gas: 1039982.954 units remaining) + - location: 28 (remaining gas: 1039985.524 units remaining) [ {} {} ] - - location: 30 (remaining gas: 1039982.944 units remaining) + - location: 30 (remaining gas: 1039985.514 units remaining) [ False {} {} ] - - location: 18 (remaining gas: 1039982.929 units remaining) + - location: 18 (remaining gas: 1039985.504 units remaining) [ False {} {} ] - - location: 16 (remaining gas: 1039982.914 units remaining) + - location: 16 (remaining gas: 1039985.494 units remaining) [ {} {} ] - - location: 33 (remaining gas: 1039982.904 units remaining) + - location: 33 (remaining gas: 1039985.484 units remaining) [ {} ] - - location: 34 (remaining gas: 1039982.889 units remaining) + - location: 34 (remaining gas: 1039985.474 units remaining) [ {} {} ] - - location: 36 (remaining gas: 1039982.874 units remaining) + - location: 36 (remaining gas: 1039985.464 units remaining) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out index 89efe9aaa882..7be46b0c0268 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sapling_empty_state.tz-{}-Unit-0].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.822 units remaining) + - location: 8 (remaining gas: 1039995.462 units remaining) [ (Pair Unit {}) ] - - location: 8 (remaining gas: 1039994.812 units remaining) + - location: 8 (remaining gas: 1039995.452 units remaining) [ ] - - location: 9 (remaining gas: 1039994.797 units remaining) + - location: 9 (remaining gas: 1039995.442 units remaining) [ {} ] - - location: 11 (remaining gas: 1039994.782 units remaining) + - location: 11 (remaining gas: 1039995.432 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039994.767 units remaining) + - location: 13 (remaining gas: 1039995.422 units remaining) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out index 804eb5df3cbf..89c0be885617 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_address.tz-Unit-Unit-Unit].out @@ -7,40 +7,40 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039984.314 units remaining) + - location: 7 (remaining gas: 1039985.434 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039984.304 units remaining) + - location: 7 (remaining gas: 1039985.424 units remaining) [ ] - - location: 8 (remaining gas: 1039984.294 units remaining) + - location: 8 (remaining gas: 1039985.414 units remaining) [ { DROP ; SELF_ADDRESS } ] - - location: 14 (remaining gas: 1039984.284 units remaining) + - location: 14 (remaining gas: 1039985.404 units remaining) [ Unit { DROP ; SELF_ADDRESS } ] - - location: 12 (remaining gas: 1039984.274 units remaining) + - location: 12 (remaining gas: 1039985.394 units remaining) [ ] - - location: 13 (remaining gas: 1039984.259 units remaining) + - location: 13 (remaining gas: 1039985.384 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 15 (remaining gas: 1039984.229 units remaining) + - location: 15 (remaining gas: 1039985.364 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 16 (remaining gas: 1039984.214 units remaining) + - location: 16 (remaining gas: 1039985.354 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 17 (remaining gas: 1039984.204 units remaining) + - location: 17 (remaining gas: 1039985.344 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 20 (remaining gas: 1039984.168 units remaining) + - location: 20 (remaining gas: 1039985.308 units remaining) [ 0 ] - - location: 21 (remaining gas: 1039984.153 units remaining) + - location: 21 (remaining gas: 1039985.298 units remaining) [ True ] - - location: 22 (remaining gas: 1039984.143 units remaining) + - location: 22 (remaining gas: 1039985.288 units remaining) [ ] - - location: 22 (remaining gas: 1039984.128 units remaining) + - location: 22 (remaining gas: 1039985.278 units remaining) [ ] - - location: 28 (remaining gas: 1039984.118 units remaining) + - location: 28 (remaining gas: 1039985.268 units remaining) [ Unit ] - - location: 29 (remaining gas: 1039984.103 units remaining) + - location: 29 (remaining gas: 1039985.258 units remaining) [ {} Unit ] - - location: 31 (remaining gas: 1039984.088 units remaining) + - location: 31 (remaining gas: 1039985.248 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out index ad21c5d7bdb2..3e3ecd3be686 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out @@ -7,41 +7,41 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039982.800 units remaining) + - location: 13 (remaining gas: 1039983.600 units remaining) [ (Pair (Right (Left Unit)) Unit) ] - - location: 13 (remaining gas: 1039982.790 units remaining) + - location: 13 (remaining gas: 1039983.590 units remaining) [ ] - - location: 14 (remaining gas: 1039982.775 units remaining) + - location: 14 (remaining gas: 1039983.580 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 15 (remaining gas: 1039982.765 units remaining) + - location: 15 (remaining gas: 1039983.570 units remaining) [ ] - - location: 16 (remaining gas: 1039982.750 units remaining) + - location: 16 (remaining gas: 1039983.560 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 17 (remaining gas: 1039982.740 units remaining) + - location: 17 (remaining gas: 1039983.550 units remaining) [ ] - - location: 18 (remaining gas: 1039982.725 units remaining) + - location: 18 (remaining gas: 1039983.540 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 19 (remaining gas: 1039971.772 units remaining) + - location: 19 (remaining gas: 1039982.417 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 20 (remaining gas: 1039971.757 units remaining) + - location: 20 (remaining gas: 1039982.407 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 21 (remaining gas: 1039960.804 units remaining) + - location: 21 (remaining gas: 1039981.284 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 24 (remaining gas: 1039960.769 units remaining) + - location: 24 (remaining gas: 1039981.249 units remaining) [ 0 ] - - location: 25 (remaining gas: 1039960.754 units remaining) + - location: 25 (remaining gas: 1039981.239 units remaining) [ True ] - - location: 26 (remaining gas: 1039960.744 units remaining) + - location: 26 (remaining gas: 1039981.229 units remaining) [ ] - - location: 26 (remaining gas: 1039960.729 units remaining) + - location: 26 (remaining gas: 1039981.219 units remaining) [ ] - - location: 32 (remaining gas: 1039960.719 units remaining) + - location: 32 (remaining gas: 1039981.209 units remaining) [ Unit ] - - location: 33 (remaining gas: 1039960.704 units remaining) + - location: 33 (remaining gas: 1039981.199 units remaining) [ {} Unit ] - - location: 35 (remaining gas: 1039960.689 units remaining) + - location: 35 (remaining gas: 1039981.189 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out index a420bd8e4856..5d1d920f06bc 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out @@ -7,87 +7,87 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039952.851 units remaining) + - location: 13 (remaining gas: 1039957.971 units remaining) [ (Pair (Left (Left 0)) Unit) ] - - location: 13 (remaining gas: 1039952.841 units remaining) + - location: 13 (remaining gas: 1039957.961 units remaining) [ ] - - location: 14 (remaining gas: 1039952.826 units remaining) + - location: 14 (remaining gas: 1039957.951 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 15 (remaining gas: 1039941.840 units remaining) + - location: 15 (remaining gas: 1039956.795 units remaining) [ 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 16 (remaining gas: 1039941.825 units remaining) + - location: 16 (remaining gas: 1039956.785 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 17 (remaining gas: 1039930.872 units remaining) + - location: 17 (remaining gas: 1039955.662 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 18 (remaining gas: 1039930.862 units remaining) + - location: 18 (remaining gas: 1039955.652 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 19 (remaining gas: 1039930.847 units remaining) + - location: 19 (remaining gas: 1039955.642 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 21 (remaining gas: 1039930.837 units remaining) + - location: 21 (remaining gas: 1039955.632 units remaining) [ 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 19 (remaining gas: 1039930.807 units remaining) + - location: 19 (remaining gas: 1039955.612 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 24 (remaining gas: 1039930.772 units remaining) + - location: 24 (remaining gas: 1039955.577 units remaining) [ -1 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 25 (remaining gas: 1039930.757 units remaining) + - location: 25 (remaining gas: 1039955.567 units remaining) [ True 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 26 (remaining gas: 1039930.747 units remaining) + - location: 26 (remaining gas: 1039955.557 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 26 (remaining gas: 1039930.732 units remaining) + - location: 26 (remaining gas: 1039955.547 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 32 (remaining gas: 1039930.717 units remaining) + - location: 32 (remaining gas: 1039955.537 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 33 (remaining gas: 1039919.764 units remaining) + - location: 33 (remaining gas: 1039954.414 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 36 (remaining gas: 1039919.729 units remaining) + - location: 36 (remaining gas: 1039954.379 units remaining) [ 0 ] - - location: 37 (remaining gas: 1039919.714 units remaining) + - location: 37 (remaining gas: 1039954.369 units remaining) [ True ] - - location: 38 (remaining gas: 1039919.704 units remaining) + - location: 38 (remaining gas: 1039954.359 units remaining) [ ] - - location: 38 (remaining gas: 1039919.689 units remaining) + - location: 38 (remaining gas: 1039954.349 units remaining) [ ] - - location: 44 (remaining gas: 1039919.674 units remaining) + - location: 44 (remaining gas: 1039954.339 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 48 (remaining gas: 1039919.664 units remaining) + - location: 48 (remaining gas: 1039954.329 units remaining) [ ] - - location: 49 (remaining gas: 1039919.649 units remaining) + - location: 49 (remaining gas: 1039954.319 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%B" ] - - location: 53 (remaining gas: 1039919.639 units remaining) + - location: 53 (remaining gas: 1039954.309 units remaining) [ ] - - location: 54 (remaining gas: 1039919.624 units remaining) + - location: 54 (remaining gas: 1039954.299 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%maybe_C" ] - - location: 60 (remaining gas: 1039919.614 units remaining) + - location: 60 (remaining gas: 1039954.289 units remaining) [ ] - - location: 61 (remaining gas: 1039919.599 units remaining) + - location: 61 (remaining gas: 1039954.279 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%Z" ] - - location: 65 (remaining gas: 1039919.589 units remaining) + - location: 65 (remaining gas: 1039954.269 units remaining) [ ] - - location: 66 (remaining gas: 1039919.574 units remaining) + - location: 66 (remaining gas: 1039954.259 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 76 (remaining gas: 1039919.564 units remaining) + - location: 76 (remaining gas: 1039954.249 units remaining) [ ] - - location: 77 (remaining gas: 1039919.549 units remaining) + - location: 77 (remaining gas: 1039954.239 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 87 (remaining gas: 1039919.539 units remaining) + - location: 87 (remaining gas: 1039954.229 units remaining) [ ] - - location: 88 (remaining gas: 1039919.529 units remaining) + - location: 88 (remaining gas: 1039954.219 units remaining) [ Unit ] - - location: 89 (remaining gas: 1039919.514 units remaining) + - location: 89 (remaining gas: 1039954.209 units remaining) [ {} Unit ] - - location: 91 (remaining gas: 1039919.499 units remaining) + - location: 91 (remaining gas: 1039954.199 units remaining) [ (Pair {} Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" index ceda319585c2..6a36e86fe0b9 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" @@ -7,43 +7,43 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039987.526 units remaining) + - location: 9 (remaining gas: 1039988.486 units remaining) [ (Pair "" "hello" 0) ] - - location: 9 (remaining gas: 1039987.516 units remaining) + - location: 9 (remaining gas: 1039988.476 units remaining) [ (Pair "" "hello" 0) (Pair "" "hello" 0) ] - - location: 10 (remaining gas: 1039987.506 units remaining) + - location: 10 (remaining gas: 1039988.466 units remaining) [ (Pair "hello" 0) (Pair "" "hello" 0) ] - - location: 11 (remaining gas: 1039987.491 units remaining) + - location: 11 (remaining gas: 1039988.456 units remaining) [ (Pair "" "hello" 0) ] - - location: 13 (remaining gas: 1039987.481 units remaining) + - location: 13 (remaining gas: 1039988.446 units remaining) [ "" ] - - location: 11 (remaining gas: 1039987.451 units remaining) + - location: 11 (remaining gas: 1039988.426 units remaining) [ (Pair "hello" 0) "" ] - - location: 15 (remaining gas: 1039987.441 units remaining) + - location: 15 (remaining gas: 1039988.416 units remaining) [ (Pair "hello" 0) (Pair "hello" 0) "" ] - - location: 16 (remaining gas: 1039987.431 units remaining) + - location: 16 (remaining gas: 1039988.406 units remaining) [ "hello" (Pair "hello" 0) "" ] - - location: 17 (remaining gas: 1039987.421 units remaining) + - location: 17 (remaining gas: 1039988.396 units remaining) [ (Pair "hello" 0) "" ] - - location: 18 (remaining gas: 1039987.411 units remaining) + - location: 18 (remaining gas: 1039988.386 units remaining) [ 0 "" ] - - location: 19 (remaining gas: 1039987.401 units remaining) + - location: 19 (remaining gas: 1039988.376 units remaining) [ "" 0 ] - - location: 20 (remaining gas: 1039987.386 units remaining) + - location: 20 (remaining gas: 1039988.366 units remaining) [ (Pair "" 0) ] - - location: 21 (remaining gas: 1039987.371 units remaining) + - location: 21 (remaining gas: 1039988.356 units remaining) [ {} (Pair "" 0) ] - - location: 23 (remaining gas: 1039987.356 units remaining) + - location: 23 (remaining gas: 1039988.346 units remaining) [ (Pair {} "" 0) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" index 10141984c9bb..5ac12fd30132 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" @@ -7,43 +7,43 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039987.496 units remaining) + - location: 9 (remaining gas: 1039988.456 units remaining) [ (Pair "abc" "hello" 0) ] - - location: 9 (remaining gas: 1039987.486 units remaining) + - location: 9 (remaining gas: 1039988.446 units remaining) [ (Pair "abc" "hello" 0) (Pair "abc" "hello" 0) ] - - location: 10 (remaining gas: 1039987.476 units remaining) + - location: 10 (remaining gas: 1039988.436 units remaining) [ (Pair "hello" 0) (Pair "abc" "hello" 0) ] - - location: 11 (remaining gas: 1039987.461 units remaining) + - location: 11 (remaining gas: 1039988.426 units remaining) [ (Pair "abc" "hello" 0) ] - - location: 13 (remaining gas: 1039987.451 units remaining) + - location: 13 (remaining gas: 1039988.416 units remaining) [ "abc" ] - - location: 11 (remaining gas: 1039987.421 units remaining) + - location: 11 (remaining gas: 1039988.396 units remaining) [ (Pair "hello" 0) "abc" ] - - location: 15 (remaining gas: 1039987.411 units remaining) + - location: 15 (remaining gas: 1039988.386 units remaining) [ (Pair "hello" 0) (Pair "hello" 0) "abc" ] - - location: 16 (remaining gas: 1039987.401 units remaining) + - location: 16 (remaining gas: 1039988.376 units remaining) [ "hello" (Pair "hello" 0) "abc" ] - - location: 17 (remaining gas: 1039987.391 units remaining) + - location: 17 (remaining gas: 1039988.366 units remaining) [ (Pair "hello" 0) "abc" ] - - location: 18 (remaining gas: 1039987.381 units remaining) + - location: 18 (remaining gas: 1039988.356 units remaining) [ 0 "abc" ] - - location: 19 (remaining gas: 1039987.371 units remaining) + - location: 19 (remaining gas: 1039988.346 units remaining) [ "abc" 0 ] - - location: 20 (remaining gas: 1039987.356 units remaining) + - location: 20 (remaining gas: 1039988.336 units remaining) [ (Pair "abc" 0) ] - - location: 21 (remaining gas: 1039987.341 units remaining) + - location: 21 (remaining gas: 1039988.326 units remaining) [ {} (Pair "abc" 0) ] - - location: 23 (remaining gas: 1039987.326 units remaining) + - location: 23 (remaining gas: 1039988.316 units remaining) [ (Pair {} "abc" 0) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" index 8f34d88600fc..2e43cd357d7b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_car.tz-(Pair \"hello\" 0)-\"world\"-(Pair \"world\" 0)].out" @@ -7,43 +7,43 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039987.476 units remaining) + - location: 9 (remaining gas: 1039988.436 units remaining) [ (Pair "world" "hello" 0) ] - - location: 9 (remaining gas: 1039987.466 units remaining) + - location: 9 (remaining gas: 1039988.426 units remaining) [ (Pair "world" "hello" 0) (Pair "world" "hello" 0) ] - - location: 10 (remaining gas: 1039987.456 units remaining) + - location: 10 (remaining gas: 1039988.416 units remaining) [ (Pair "hello" 0) (Pair "world" "hello" 0) ] - - location: 11 (remaining gas: 1039987.441 units remaining) + - location: 11 (remaining gas: 1039988.406 units remaining) [ (Pair "world" "hello" 0) ] - - location: 13 (remaining gas: 1039987.431 units remaining) + - location: 13 (remaining gas: 1039988.396 units remaining) [ "world" ] - - location: 11 (remaining gas: 1039987.401 units remaining) + - location: 11 (remaining gas: 1039988.376 units remaining) [ (Pair "hello" 0) "world" ] - - location: 15 (remaining gas: 1039987.391 units remaining) + - location: 15 (remaining gas: 1039988.366 units remaining) [ (Pair "hello" 0) (Pair "hello" 0) "world" ] - - location: 16 (remaining gas: 1039987.381 units remaining) + - location: 16 (remaining gas: 1039988.356 units remaining) [ "hello" (Pair "hello" 0) "world" ] - - location: 17 (remaining gas: 1039987.371 units remaining) + - location: 17 (remaining gas: 1039988.346 units remaining) [ (Pair "hello" 0) "world" ] - - location: 18 (remaining gas: 1039987.361 units remaining) + - location: 18 (remaining gas: 1039988.336 units remaining) [ 0 "world" ] - - location: 19 (remaining gas: 1039987.351 units remaining) + - location: 19 (remaining gas: 1039988.326 units remaining) [ "world" 0 ] - - location: 20 (remaining gas: 1039987.336 units remaining) + - location: 20 (remaining gas: 1039988.316 units remaining) [ (Pair "world" 0) ] - - location: 21 (remaining gas: 1039987.321 units remaining) + - location: 21 (remaining gas: 1039988.306 units remaining) [ {} (Pair "world" 0) ] - - location: 23 (remaining gas: 1039987.306 units remaining) + - location: 23 (remaining gas: 1039988.296 units remaining) [ (Pair {} "world" 0) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" index 073f8d7f7c82..3f77e4d45e99 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 0)-1-(Pair \"hello\" 1)].out" @@ -7,40 +7,40 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039988.143 units remaining) + - location: 9 (remaining gas: 1039989.103 units remaining) [ (Pair 1 "hello" 0) ] - - location: 9 (remaining gas: 1039988.133 units remaining) + - location: 9 (remaining gas: 1039989.093 units remaining) [ (Pair 1 "hello" 0) (Pair 1 "hello" 0) ] - - location: 10 (remaining gas: 1039988.123 units remaining) + - location: 10 (remaining gas: 1039989.083 units remaining) [ (Pair "hello" 0) (Pair 1 "hello" 0) ] - - location: 11 (remaining gas: 1039988.108 units remaining) + - location: 11 (remaining gas: 1039989.073 units remaining) [ (Pair 1 "hello" 0) ] - - location: 13 (remaining gas: 1039988.098 units remaining) + - location: 13 (remaining gas: 1039989.063 units remaining) [ 1 ] - - location: 11 (remaining gas: 1039988.068 units remaining) + - location: 11 (remaining gas: 1039989.043 units remaining) [ (Pair "hello" 0) 1 ] - - location: 15 (remaining gas: 1039988.058 units remaining) + - location: 15 (remaining gas: 1039989.033 units remaining) [ (Pair "hello" 0) (Pair "hello" 0) 1 ] - - location: 16 (remaining gas: 1039988.048 units remaining) + - location: 16 (remaining gas: 1039989.023 units remaining) [ 0 (Pair "hello" 0) 1 ] - - location: 17 (remaining gas: 1039988.038 units remaining) + - location: 17 (remaining gas: 1039989.013 units remaining) [ (Pair "hello" 0) 1 ] - - location: 18 (remaining gas: 1039988.028 units remaining) + - location: 18 (remaining gas: 1039989.003 units remaining) [ "hello" 1 ] - - location: 19 (remaining gas: 1039988.013 units remaining) + - location: 19 (remaining gas: 1039988.993 units remaining) [ (Pair "hello" 1) ] - - location: 20 (remaining gas: 1039987.998 units remaining) + - location: 20 (remaining gas: 1039988.983 units remaining) [ {} (Pair "hello" 1) ] - - location: 22 (remaining gas: 1039987.983 units remaining) + - location: 22 (remaining gas: 1039988.973 units remaining) [ (Pair {} "hello" 1) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" index 2388c06208b9..2bf8cbb177bb 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 500)-3-(Pair \"hello\" 3)].out" @@ -7,40 +7,40 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039988.143 units remaining) + - location: 9 (remaining gas: 1039989.103 units remaining) [ (Pair 3 "hello" 500) ] - - location: 9 (remaining gas: 1039988.133 units remaining) + - location: 9 (remaining gas: 1039989.093 units remaining) [ (Pair 3 "hello" 500) (Pair 3 "hello" 500) ] - - location: 10 (remaining gas: 1039988.123 units remaining) + - location: 10 (remaining gas: 1039989.083 units remaining) [ (Pair "hello" 500) (Pair 3 "hello" 500) ] - - location: 11 (remaining gas: 1039988.108 units remaining) + - location: 11 (remaining gas: 1039989.073 units remaining) [ (Pair 3 "hello" 500) ] - - location: 13 (remaining gas: 1039988.098 units remaining) + - location: 13 (remaining gas: 1039989.063 units remaining) [ 3 ] - - location: 11 (remaining gas: 1039988.068 units remaining) + - location: 11 (remaining gas: 1039989.043 units remaining) [ (Pair "hello" 500) 3 ] - - location: 15 (remaining gas: 1039988.058 units remaining) + - location: 15 (remaining gas: 1039989.033 units remaining) [ (Pair "hello" 500) (Pair "hello" 500) 3 ] - - location: 16 (remaining gas: 1039988.048 units remaining) + - location: 16 (remaining gas: 1039989.023 units remaining) [ 500 (Pair "hello" 500) 3 ] - - location: 17 (remaining gas: 1039988.038 units remaining) + - location: 17 (remaining gas: 1039989.013 units remaining) [ (Pair "hello" 500) 3 ] - - location: 18 (remaining gas: 1039988.028 units remaining) + - location: 18 (remaining gas: 1039989.003 units remaining) [ "hello" 3 ] - - location: 19 (remaining gas: 1039988.013 units remaining) + - location: 19 (remaining gas: 1039988.993 units remaining) [ (Pair "hello" 3) ] - - location: 20 (remaining gas: 1039987.998 units remaining) + - location: 20 (remaining gas: 1039988.983 units remaining) [ {} (Pair "hello" 3) ] - - location: 22 (remaining gas: 1039987.983 units remaining) + - location: 22 (remaining gas: 1039988.973 units remaining) [ (Pair {} "hello" 3) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" index 4450ab560b89..8e141d47f54c 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_cdr.tz-(Pair \"hello\" 7)-100-(Pair \"hello\" 100)].out" @@ -7,40 +7,40 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039988.143 units remaining) + - location: 9 (remaining gas: 1039989.103 units remaining) [ (Pair 100 "hello" 7) ] - - location: 9 (remaining gas: 1039988.133 units remaining) + - location: 9 (remaining gas: 1039989.093 units remaining) [ (Pair 100 "hello" 7) (Pair 100 "hello" 7) ] - - location: 10 (remaining gas: 1039988.123 units remaining) + - location: 10 (remaining gas: 1039989.083 units remaining) [ (Pair "hello" 7) (Pair 100 "hello" 7) ] - - location: 11 (remaining gas: 1039988.108 units remaining) + - location: 11 (remaining gas: 1039989.073 units remaining) [ (Pair 100 "hello" 7) ] - - location: 13 (remaining gas: 1039988.098 units remaining) + - location: 13 (remaining gas: 1039989.063 units remaining) [ 100 ] - - location: 11 (remaining gas: 1039988.068 units remaining) + - location: 11 (remaining gas: 1039989.043 units remaining) [ (Pair "hello" 7) 100 ] - - location: 15 (remaining gas: 1039988.058 units remaining) + - location: 15 (remaining gas: 1039989.033 units remaining) [ (Pair "hello" 7) (Pair "hello" 7) 100 ] - - location: 16 (remaining gas: 1039988.048 units remaining) + - location: 16 (remaining gas: 1039989.023 units remaining) [ 7 (Pair "hello" 7) 100 ] - - location: 17 (remaining gas: 1039988.038 units remaining) + - location: 17 (remaining gas: 1039989.013 units remaining) [ (Pair "hello" 7) 100 ] - - location: 18 (remaining gas: 1039988.028 units remaining) + - location: 18 (remaining gas: 1039989.003 units remaining) [ "hello" 100 ] - - location: 19 (remaining gas: 1039988.013 units remaining) + - location: 19 (remaining gas: 1039988.993 units remaining) [ (Pair "hello" 100) ] - - location: 20 (remaining gas: 1039987.998 units remaining) + - location: 20 (remaining gas: 1039988.983 units remaining) [ {} (Pair "hello" 100) ] - - location: 22 (remaining gas: 1039987.983 units remaining) + - location: 22 (remaining gas: 1039988.973 units remaining) [ (Pair {} "hello" 100) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" index fec10f248a04..f1f686053810 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"a\" ; \"b\" ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.146 units remaining) + - location: 9 (remaining gas: 1039994.946 units remaining) [ (Pair { "a" ; "b" ; "c" } {}) ] - - location: 9 (remaining gas: 1039994.136 units remaining) + - location: 9 (remaining gas: 1039994.936 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 10 (remaining gas: 1039994.121 units remaining) + - location: 10 (remaining gas: 1039994.926 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 12 (remaining gas: 1039994.106 units remaining) + - location: 12 (remaining gas: 1039994.916 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" index 391ead53bdeb..c92567549436 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{ \"asdf\" ; \"bcde\" }-{ \"asdf\" ; \"bcde\" }].out" @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.363 units remaining) + - location: 9 (remaining gas: 1039995.163 units remaining) [ (Pair { "asdf" ; "bcde" } {}) ] - - location: 9 (remaining gas: 1039994.353 units remaining) + - location: 9 (remaining gas: 1039995.153 units remaining) [ { "asdf" ; "bcde" } ] - - location: 10 (remaining gas: 1039994.338 units remaining) + - location: 10 (remaining gas: 1039995.143 units remaining) [ {} { "asdf" ; "bcde" } ] - - location: 12 (remaining gas: 1039994.323 units remaining) + - location: 12 (remaining gas: 1039995.133 units remaining) [ (Pair {} { "asdf" ; "bcde" }) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out index 9ff27af11f13..d70c03eb6357 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_id.tz-{}-{}-{}].out @@ -7,13 +7,13 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039994.990 units remaining) + - location: 9 (remaining gas: 1039995.790 units remaining) [ (Pair {} {}) ] - - location: 9 (remaining gas: 1039994.980 units remaining) + - location: 9 (remaining gas: 1039995.780 units remaining) [ {} ] - - location: 10 (remaining gas: 1039994.965 units remaining) + - location: 10 (remaining gas: 1039995.770 units remaining) [ {} {} ] - - location: 12 (remaining gas: 1039994.950 units remaining) + - location: 12 (remaining gas: 1039995.760 units remaining) [ (Pair {} {}) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out index 1da7eb41c41c..f125b052ece1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out @@ -7,41 +7,41 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039991.113 units remaining) + - location: 8 (remaining gas: 1039991.913 units remaining) [ (Pair { -100 ; 1 ; 2 ; 3 } 111) ] - - location: 8 (remaining gas: 1039991.103 units remaining) + - location: 8 (remaining gas: 1039991.903 units remaining) [ { -100 ; 1 ; 2 ; 3 } ] - - location: 9 (remaining gas: 1039991.093 units remaining) + - location: 9 (remaining gas: 1039991.893 units remaining) [ 0 { -100 ; 1 ; 2 ; 3 } ] - - location: 12 (remaining gas: 1039991.083 units remaining) + - location: 12 (remaining gas: 1039991.883 units remaining) [ { -100 ; 1 ; 2 ; 3 } 0 ] - - location: 13 (remaining gas: 1039991.083 units remaining) + - location: 13 (remaining gas: 1039991.883 units remaining) [ -100 0 ] - - location: 15 (remaining gas: 1039991.028 units remaining) + - location: 15 (remaining gas: 1039991.848 units remaining) [ -100 ] - - location: 13 (remaining gas: 1039991.013 units remaining) + - location: 13 (remaining gas: 1039991.838 units remaining) [ 1 -100 ] - - location: 15 (remaining gas: 1039990.958 units remaining) + - location: 15 (remaining gas: 1039991.803 units remaining) [ -99 ] - - location: 13 (remaining gas: 1039990.943 units remaining) + - location: 13 (remaining gas: 1039991.793 units remaining) [ 2 -99 ] - - location: 15 (remaining gas: 1039990.888 units remaining) + - location: 15 (remaining gas: 1039991.758 units remaining) [ -97 ] - - location: 13 (remaining gas: 1039990.873 units remaining) + - location: 13 (remaining gas: 1039991.748 units remaining) [ 3 -97 ] - - location: 15 (remaining gas: 1039990.818 units remaining) + - location: 15 (remaining gas: 1039991.713 units remaining) [ -94 ] - - location: 13 (remaining gas: 1039990.803 units remaining) + - location: 13 (remaining gas: 1039991.703 units remaining) [ -94 ] - - location: 16 (remaining gas: 1039990.788 units remaining) + - location: 16 (remaining gas: 1039991.693 units remaining) [ {} -94 ] - - location: 18 (remaining gas: 1039990.773 units remaining) + - location: 18 (remaining gas: 1039991.683 units remaining) [ (Pair {} -94) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out index a6e45cca3d35..fe6897e93e5f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{ 1 }-1].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039991.908 units remaining) + - location: 8 (remaining gas: 1039992.708 units remaining) [ (Pair { 1 } 111) ] - - location: 8 (remaining gas: 1039991.898 units remaining) + - location: 8 (remaining gas: 1039992.698 units remaining) [ { 1 } ] - - location: 9 (remaining gas: 1039991.888 units remaining) + - location: 9 (remaining gas: 1039992.688 units remaining) [ 0 { 1 } ] - - location: 12 (remaining gas: 1039991.878 units remaining) + - location: 12 (remaining gas: 1039992.678 units remaining) [ { 1 } 0 ] - - location: 13 (remaining gas: 1039991.878 units remaining) + - location: 13 (remaining gas: 1039992.678 units remaining) [ 1 0 ] - - location: 15 (remaining gas: 1039991.823 units remaining) + - location: 15 (remaining gas: 1039992.643 units remaining) [ 1 ] - - location: 13 (remaining gas: 1039991.808 units remaining) + - location: 13 (remaining gas: 1039992.633 units remaining) [ 1 ] - - location: 16 (remaining gas: 1039991.793 units remaining) + - location: 16 (remaining gas: 1039992.623 units remaining) [ {} 1 ] - - location: 18 (remaining gas: 1039991.778 units remaining) + - location: 18 (remaining gas: 1039992.613 units remaining) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out index 24742b6625b5..7a270359b128 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_iter.tz-111-{}-0].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039992.138 units remaining) + - location: 8 (remaining gas: 1039992.938 units remaining) [ (Pair {} 111) ] - - location: 8 (remaining gas: 1039992.128 units remaining) + - location: 8 (remaining gas: 1039992.928 units remaining) [ {} ] - - location: 9 (remaining gas: 1039992.118 units remaining) + - location: 9 (remaining gas: 1039992.918 units remaining) [ 0 {} ] - - location: 12 (remaining gas: 1039992.108 units remaining) + - location: 12 (remaining gas: 1039992.908 units remaining) [ {} 0 ] - - location: 13 (remaining gas: 1039992.108 units remaining) + - location: 13 (remaining gas: 1039992.908 units remaining) [ 0 ] - - location: 16 (remaining gas: 1039992.093 units remaining) + - location: 16 (remaining gas: 1039992.898 units remaining) [ {} 0 ] - - location: 18 (remaining gas: 1039992.078 units remaining) + - location: 18 (remaining gas: 1039992.888 units remaining) [ (Pair {} 0) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" index 50b827071662..8fca9269dc87 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hello\" ; \"World\" } None)-\"\"-(Pai.3d2044726e.out" @@ -7,55 +7,55 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039983.438 units remaining) + - location: 11 (remaining gas: 1039984.878 units remaining) [ (Pair "" { "Hello" ; "World" } None) ] - - location: 11 (remaining gas: 1039983.428 units remaining) + - location: 11 (remaining gas: 1039984.868 units remaining) [ (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 12 (remaining gas: 1039983.418 units remaining) + - location: 12 (remaining gas: 1039984.858 units remaining) [ (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 13 (remaining gas: 1039983.408 units remaining) + - location: 13 (remaining gas: 1039984.848 units remaining) [ "" (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 14 (remaining gas: 1039983.393 units remaining) + - location: 14 (remaining gas: 1039984.838 units remaining) [ (Pair "" { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 17 (remaining gas: 1039983.383 units remaining) + - location: 17 (remaining gas: 1039984.828 units remaining) [ (Pair { "Hello" ; "World" } None) (Pair "" { "Hello" ; "World" } None) ] - - location: 18 (remaining gas: 1039983.373 units remaining) + - location: 18 (remaining gas: 1039984.818 units remaining) [ { "Hello" ; "World" } (Pair "" { "Hello" ; "World" } None) ] - - location: 14 (remaining gas: 1039983.343 units remaining) + - location: 14 (remaining gas: 1039984.798 units remaining) [ "" { "Hello" ; "World" } (Pair "" { "Hello" ; "World" } None) ] - - location: 19 (remaining gas: 1039983.228 units remaining) + - location: 19 (remaining gas: 1039984.683 units remaining) [ False (Pair "" { "Hello" ; "World" } None) ] - - location: 20 (remaining gas: 1039983.213 units remaining) + - location: 20 (remaining gas: 1039984.673 units remaining) [ (Some False) (Pair "" { "Hello" ; "World" } None) ] - - location: 21 (remaining gas: 1039983.198 units remaining) + - location: 21 (remaining gas: 1039984.663 units remaining) [ (Pair "" { "Hello" ; "World" } None) ] - - location: 24 (remaining gas: 1039983.188 units remaining) + - location: 24 (remaining gas: 1039984.653 units remaining) [ (Pair { "Hello" ; "World" } None) ] - - location: 25 (remaining gas: 1039983.178 units remaining) + - location: 25 (remaining gas: 1039984.643 units remaining) [ { "Hello" ; "World" } ] - - location: 21 (remaining gas: 1039983.148 units remaining) + - location: 21 (remaining gas: 1039984.623 units remaining) [ (Some False) { "Hello" ; "World" } ] - - location: 26 (remaining gas: 1039983.138 units remaining) + - location: 26 (remaining gas: 1039984.613 units remaining) [ { "Hello" ; "World" } (Some False) ] - - location: 27 (remaining gas: 1039983.123 units remaining) + - location: 27 (remaining gas: 1039984.603 units remaining) [ (Pair { "Hello" ; "World" } (Some False)) ] - - location: 28 (remaining gas: 1039983.108 units remaining) + - location: 28 (remaining gas: 1039984.593 units remaining) [ {} (Pair { "Hello" ; "World" } (Some False)) ] - - location: 30 (remaining gas: 1039983.093 units remaining) + - location: 30 (remaining gas: 1039984.583 units remaining) [ (Pair {} { "Hello" ; "World" } (Some False)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" index 480a793d5394..4ef7261f71ef 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair { \"Hi\" } None)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" @@ -7,55 +7,55 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039983.803 units remaining) + - location: 11 (remaining gas: 1039985.243 units remaining) [ (Pair "Hi" { "Hi" } None) ] - - location: 11 (remaining gas: 1039983.793 units remaining) + - location: 11 (remaining gas: 1039985.233 units remaining) [ (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 12 (remaining gas: 1039983.783 units remaining) + - location: 12 (remaining gas: 1039985.223 units remaining) [ (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 13 (remaining gas: 1039983.773 units remaining) + - location: 13 (remaining gas: 1039985.213 units remaining) [ "Hi" (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 14 (remaining gas: 1039983.758 units remaining) + - location: 14 (remaining gas: 1039985.203 units remaining) [ (Pair "Hi" { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 17 (remaining gas: 1039983.748 units remaining) + - location: 17 (remaining gas: 1039985.193 units remaining) [ (Pair { "Hi" } None) (Pair "Hi" { "Hi" } None) ] - - location: 18 (remaining gas: 1039983.738 units remaining) + - location: 18 (remaining gas: 1039985.183 units remaining) [ { "Hi" } (Pair "Hi" { "Hi" } None) ] - - location: 14 (remaining gas: 1039983.708 units remaining) + - location: 14 (remaining gas: 1039985.163 units remaining) [ "Hi" { "Hi" } (Pair "Hi" { "Hi" } None) ] - - location: 19 (remaining gas: 1039983.589 units remaining) + - location: 19 (remaining gas: 1039985.044 units remaining) [ True (Pair "Hi" { "Hi" } None) ] - - location: 20 (remaining gas: 1039983.574 units remaining) + - location: 20 (remaining gas: 1039985.034 units remaining) [ (Some True) (Pair "Hi" { "Hi" } None) ] - - location: 21 (remaining gas: 1039983.559 units remaining) + - location: 21 (remaining gas: 1039985.024 units remaining) [ (Pair "Hi" { "Hi" } None) ] - - location: 24 (remaining gas: 1039983.549 units remaining) + - location: 24 (remaining gas: 1039985.014 units remaining) [ (Pair { "Hi" } None) ] - - location: 25 (remaining gas: 1039983.539 units remaining) + - location: 25 (remaining gas: 1039985.004 units remaining) [ { "Hi" } ] - - location: 21 (remaining gas: 1039983.509 units remaining) + - location: 21 (remaining gas: 1039984.984 units remaining) [ (Some True) { "Hi" } ] - - location: 26 (remaining gas: 1039983.499 units remaining) + - location: 26 (remaining gas: 1039984.974 units remaining) [ { "Hi" } (Some True) ] - - location: 27 (remaining gas: 1039983.484 units remaining) + - location: 27 (remaining gas: 1039984.964 units remaining) [ (Pair { "Hi" } (Some True)) ] - - location: 28 (remaining gas: 1039983.469 units remaining) + - location: 28 (remaining gas: 1039984.954 units remaining) [ {} (Pair { "Hi" } (Some True)) ] - - location: 30 (remaining gas: 1039983.454 units remaining) + - location: 30 (remaining gas: 1039984.944 units remaining) [ (Pair {} { "Hi" } (Some True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" index fc85ea4d937d..284b999fdb48 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_member.tz-(Pair {} None)-\"Hi\"-(Pair {} (Some False))].out" @@ -7,55 +7,55 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039984.071 units remaining) + - location: 11 (remaining gas: 1039985.511 units remaining) [ (Pair "Hi" {} None) ] - - location: 11 (remaining gas: 1039984.061 units remaining) + - location: 11 (remaining gas: 1039985.501 units remaining) [ (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 12 (remaining gas: 1039984.051 units remaining) + - location: 12 (remaining gas: 1039985.491 units remaining) [ (Pair "Hi" {} None) (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 13 (remaining gas: 1039984.041 units remaining) + - location: 13 (remaining gas: 1039985.481 units remaining) [ "Hi" (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 14 (remaining gas: 1039984.026 units remaining) + - location: 14 (remaining gas: 1039985.471 units remaining) [ (Pair "Hi" {} None) (Pair "Hi" {} None) ] - - location: 17 (remaining gas: 1039984.016 units remaining) + - location: 17 (remaining gas: 1039985.461 units remaining) [ (Pair {} None) (Pair "Hi" {} None) ] - - location: 18 (remaining gas: 1039984.006 units remaining) + - location: 18 (remaining gas: 1039985.451 units remaining) [ {} (Pair "Hi" {} None) ] - - location: 14 (remaining gas: 1039983.976 units remaining) + - location: 14 (remaining gas: 1039985.431 units remaining) [ "Hi" {} (Pair "Hi" {} None) ] - - location: 19 (remaining gas: 1039983.859 units remaining) + - location: 19 (remaining gas: 1039985.314 units remaining) [ False (Pair "Hi" {} None) ] - - location: 20 (remaining gas: 1039983.844 units remaining) + - location: 20 (remaining gas: 1039985.304 units remaining) [ (Some False) (Pair "Hi" {} None) ] - - location: 21 (remaining gas: 1039983.829 units remaining) + - location: 21 (remaining gas: 1039985.294 units remaining) [ (Pair "Hi" {} None) ] - - location: 24 (remaining gas: 1039983.819 units remaining) + - location: 24 (remaining gas: 1039985.284 units remaining) [ (Pair {} None) ] - - location: 25 (remaining gas: 1039983.809 units remaining) + - location: 25 (remaining gas: 1039985.274 units remaining) [ {} ] - - location: 21 (remaining gas: 1039983.779 units remaining) + - location: 21 (remaining gas: 1039985.254 units remaining) [ (Some False) {} ] - - location: 26 (remaining gas: 1039983.769 units remaining) + - location: 26 (remaining gas: 1039985.244 units remaining) [ {} (Some False) ] - - location: 27 (remaining gas: 1039983.754 units remaining) + - location: 27 (remaining gas: 1039985.234 units remaining) [ (Pair {} (Some False)) ] - - location: 28 (remaining gas: 1039983.739 units remaining) + - location: 28 (remaining gas: 1039985.224 units remaining) [ {} (Pair {} (Some False)) ] - - location: 30 (remaining gas: 1039983.724 units remaining) + - location: 30 (remaining gas: 1039985.214 units remaining) [ (Pair {} {} (Some False)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out index 26bd557e88c3..35f62dd05bf0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }-6].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.230 units remaining) + - location: 8 (remaining gas: 1039993.870 units remaining) [ (Pair { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } 111) ] - - location: 8 (remaining gas: 1039993.220 units remaining) + - location: 8 (remaining gas: 1039993.860 units remaining) [ { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } ] - - location: 9 (remaining gas: 1039993.205 units remaining) + - location: 9 (remaining gas: 1039993.850 units remaining) [ 6 ] - - location: 10 (remaining gas: 1039993.190 units remaining) + - location: 10 (remaining gas: 1039993.840 units remaining) [ {} 6 ] - - location: 12 (remaining gas: 1039993.175 units remaining) + - location: 12 (remaining gas: 1039993.830 units remaining) [ (Pair {} 6) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out index 27c2a87c79fd..88fcd5005747 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 ; 2 ; 3 }-3].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.025 units remaining) + - location: 8 (remaining gas: 1039994.665 units remaining) [ (Pair { 1 ; 2 ; 3 } 111) ] - - location: 8 (remaining gas: 1039994.015 units remaining) + - location: 8 (remaining gas: 1039994.655 units remaining) [ { 1 ; 2 ; 3 } ] - - location: 9 (remaining gas: 1039994 units remaining) + - location: 9 (remaining gas: 1039994.645 units remaining) [ 3 ] - - location: 10 (remaining gas: 1039993.985 units remaining) + - location: 10 (remaining gas: 1039994.635 units remaining) [ {} 3 ] - - location: 12 (remaining gas: 1039993.970 units remaining) + - location: 12 (remaining gas: 1039994.625 units remaining) [ (Pair {} 3) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out index af1de3c0a01a..f2be0f7ec376 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{ 1 }-1].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.555 units remaining) + - location: 8 (remaining gas: 1039995.195 units remaining) [ (Pair { 1 } 111) ] - - location: 8 (remaining gas: 1039994.545 units remaining) + - location: 8 (remaining gas: 1039995.185 units remaining) [ { 1 } ] - - location: 9 (remaining gas: 1039994.530 units remaining) + - location: 9 (remaining gas: 1039995.175 units remaining) [ 1 ] - - location: 10 (remaining gas: 1039994.515 units remaining) + - location: 10 (remaining gas: 1039995.165 units remaining) [ {} 1 ] - - location: 12 (remaining gas: 1039994.500 units remaining) + - location: 12 (remaining gas: 1039995.155 units remaining) [ (Pair {} 1) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out index 6ec6da4ab1ca..0176917e292f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[set_size.tz-111-{}-0].out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.785 units remaining) + - location: 8 (remaining gas: 1039995.425 units remaining) [ (Pair {} 111) ] - - location: 8 (remaining gas: 1039994.775 units remaining) + - location: 8 (remaining gas: 1039995.415 units remaining) [ {} ] - - location: 9 (remaining gas: 1039994.760 units remaining) + - location: 9 (remaining gas: 1039995.405 units remaining) [ 0 ] - - location: 10 (remaining gas: 1039994.745 units remaining) + - location: 10 (remaining gas: 1039995.395 units remaining) [ {} 0 ] - - location: 12 (remaining gas: 1039994.730 units remaining) + - location: 12 (remaining gas: 1039995.385 units remaining) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out index 9cd744f70b5a..e57337d8f624 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sha3.tz-None-0x48656c6c6f2c20776f726c6421-(Some 0xf345a.a07ae9dddf.out @@ -7,18 +7,18 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039993.922 units remaining) + - location: 8 (remaining gas: 1039994.722 units remaining) [ (Pair 0x48656c6c6f2c20776f726c6421 None) ] - - location: 8 (remaining gas: 1039993.912 units remaining) + - location: 8 (remaining gas: 1039994.712 units remaining) [ 0x48656c6c6f2c20776f726c6421 ] - - location: 9 (remaining gas: 1039992.455 units remaining) + - location: 9 (remaining gas: 1039993.255 units remaining) [ 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722 ] - - location: 10 (remaining gas: 1039992.440 units remaining) + - location: 10 (remaining gas: 1039993.245 units remaining) [ (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) ] - - location: 11 (remaining gas: 1039992.425 units remaining) + - location: 11 (remaining gas: 1039993.235 units remaining) [ {} (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) ] - - location: 13 (remaining gas: 1039992.410 units remaining) + - location: 13 (remaining gas: 1039993.225 units remaining) [ (Pair {} (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out index ab4af12cc691..9bb7b629c40b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.734 units remaining) + - location: 14 (remaining gas: 1039990.694 units remaining) [ (Pair (Left (Pair 0 0)) None) ] - - location: 14 (remaining gas: 1039989.724 units remaining) + - location: 14 (remaining gas: 1039990.684 units remaining) [ (Left (Pair 0 0)) ] - - location: 15 (remaining gas: 1039989.714 units remaining) + - location: 15 (remaining gas: 1039990.674 units remaining) [ (Pair 0 0) ] - - location: 17 (remaining gas: 1039989.704 units remaining) + - location: 17 (remaining gas: 1039990.664 units remaining) [ 0 0 ] - - location: 18 (remaining gas: 1039989.704 units remaining) + - location: 18 (remaining gas: 1039990.664 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039989.689 units remaining) + - location: 15 (remaining gas: 1039990.654 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039989.674 units remaining) + - location: 22 (remaining gas: 1039990.644 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039989.659 units remaining) + - location: 23 (remaining gas: 1039990.634 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039989.644 units remaining) + - location: 25 (remaining gas: 1039990.624 units remaining) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out index 5e39383025f9..035d6a4e57c7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.734 units remaining) + - location: 14 (remaining gas: 1039990.694 units remaining) [ (Pair (Left (Pair 0 1)) None) ] - - location: 14 (remaining gas: 1039989.724 units remaining) + - location: 14 (remaining gas: 1039990.684 units remaining) [ (Left (Pair 0 1)) ] - - location: 15 (remaining gas: 1039989.714 units remaining) + - location: 15 (remaining gas: 1039990.674 units remaining) [ (Pair 0 1) ] - - location: 17 (remaining gas: 1039989.704 units remaining) + - location: 17 (remaining gas: 1039990.664 units remaining) [ 0 1 ] - - location: 18 (remaining gas: 1039989.704 units remaining) + - location: 18 (remaining gas: 1039990.664 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039989.689 units remaining) + - location: 15 (remaining gas: 1039990.654 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039989.674 units remaining) + - location: 22 (remaining gas: 1039990.644 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039989.659 units remaining) + - location: 23 (remaining gas: 1039990.634 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039989.644 units remaining) + - location: 25 (remaining gas: 1039990.624 units remaining) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out index a30dc6026f13..8bcf5515773e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.734 units remaining) + - location: 14 (remaining gas: 1039990.694 units remaining) [ (Pair (Left (Pair 1 2)) None) ] - - location: 14 (remaining gas: 1039989.724 units remaining) + - location: 14 (remaining gas: 1039990.684 units remaining) [ (Left (Pair 1 2)) ] - - location: 15 (remaining gas: 1039989.714 units remaining) + - location: 15 (remaining gas: 1039990.674 units remaining) [ (Pair 1 2) ] - - location: 17 (remaining gas: 1039989.704 units remaining) + - location: 17 (remaining gas: 1039990.664 units remaining) [ 1 2 ] - - location: 18 (remaining gas: 1039989.704 units remaining) + - location: 18 (remaining gas: 1039990.664 units remaining) [ 4 ] - - location: 15 (remaining gas: 1039989.689 units remaining) + - location: 15 (remaining gas: 1039990.654 units remaining) [ 4 ] - - location: 22 (remaining gas: 1039989.674 units remaining) + - location: 22 (remaining gas: 1039990.644 units remaining) [ (Some 4) ] - - location: 23 (remaining gas: 1039989.659 units remaining) + - location: 23 (remaining gas: 1039990.634 units remaining) [ {} (Some 4) ] - - location: 25 (remaining gas: 1039989.644 units remaining) + - location: 25 (remaining gas: 1039990.624 units remaining) [ (Pair {} (Some 4)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out index 7c7c35535a54..1c4a8c5b5c5a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.734 units remaining) + - location: 14 (remaining gas: 1039990.694 units remaining) [ (Pair (Left (Pair 15 2)) None) ] - - location: 14 (remaining gas: 1039989.724 units remaining) + - location: 14 (remaining gas: 1039990.684 units remaining) [ (Left (Pair 15 2)) ] - - location: 15 (remaining gas: 1039989.714 units remaining) + - location: 15 (remaining gas: 1039990.674 units remaining) [ (Pair 15 2) ] - - location: 17 (remaining gas: 1039989.704 units remaining) + - location: 17 (remaining gas: 1039990.664 units remaining) [ 15 2 ] - - location: 18 (remaining gas: 1039989.704 units remaining) + - location: 18 (remaining gas: 1039990.664 units remaining) [ 60 ] - - location: 15 (remaining gas: 1039989.689 units remaining) + - location: 15 (remaining gas: 1039990.654 units remaining) [ 60 ] - - location: 22 (remaining gas: 1039989.674 units remaining) + - location: 22 (remaining gas: 1039990.644 units remaining) [ (Some 60) ] - - location: 23 (remaining gas: 1039989.659 units remaining) + - location: 23 (remaining gas: 1039990.634 units remaining) [ {} (Some 60) ] - - location: 25 (remaining gas: 1039989.644 units remaining) + - location: 25 (remaining gas: 1039990.624 units remaining) [ (Pair {} (Some 60)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out index 11cbe2c6f9b8..9de9ed186478 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.734 units remaining) + - location: 14 (remaining gas: 1039990.694 units remaining) [ (Pair (Left (Pair 8 1)) None) ] - - location: 14 (remaining gas: 1039989.724 units remaining) + - location: 14 (remaining gas: 1039990.684 units remaining) [ (Left (Pair 8 1)) ] - - location: 15 (remaining gas: 1039989.714 units remaining) + - location: 15 (remaining gas: 1039990.674 units remaining) [ (Pair 8 1) ] - - location: 17 (remaining gas: 1039989.704 units remaining) + - location: 17 (remaining gas: 1039990.664 units remaining) [ 8 1 ] - - location: 18 (remaining gas: 1039989.704 units remaining) + - location: 18 (remaining gas: 1039990.664 units remaining) [ 16 ] - - location: 15 (remaining gas: 1039989.689 units remaining) + - location: 15 (remaining gas: 1039990.654 units remaining) [ 16 ] - - location: 22 (remaining gas: 1039989.674 units remaining) + - location: 22 (remaining gas: 1039990.644 units remaining) [ (Some 16) ] - - location: 23 (remaining gas: 1039989.659 units remaining) + - location: 23 (remaining gas: 1039990.634 units remaining) [ {} (Some 16) ] - - location: 25 (remaining gas: 1039989.644 units remaining) + - location: 25 (remaining gas: 1039990.624 units remaining) [ (Pair {} (Some 16)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out index 557f9cd5e389..68e182c29dd8 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.734 units remaining) + - location: 14 (remaining gas: 1039990.694 units remaining) [ (Pair (Right (Pair 0 0)) None) ] - - location: 14 (remaining gas: 1039989.724 units remaining) + - location: 14 (remaining gas: 1039990.684 units remaining) [ (Right (Pair 0 0)) ] - - location: 15 (remaining gas: 1039989.714 units remaining) + - location: 15 (remaining gas: 1039990.674 units remaining) [ (Pair 0 0) ] - - location: 20 (remaining gas: 1039989.704 units remaining) + - location: 20 (remaining gas: 1039990.664 units remaining) [ 0 0 ] - - location: 21 (remaining gas: 1039989.704 units remaining) + - location: 21 (remaining gas: 1039990.664 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039989.689 units remaining) + - location: 15 (remaining gas: 1039990.654 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039989.674 units remaining) + - location: 22 (remaining gas: 1039990.644 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039989.659 units remaining) + - location: 23 (remaining gas: 1039990.634 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039989.644 units remaining) + - location: 25 (remaining gas: 1039990.624 units remaining) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out index 159e255d00a9..383ef4579fe2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.734 units remaining) + - location: 14 (remaining gas: 1039990.694 units remaining) [ (Pair (Right (Pair 0 1)) None) ] - - location: 14 (remaining gas: 1039989.724 units remaining) + - location: 14 (remaining gas: 1039990.684 units remaining) [ (Right (Pair 0 1)) ] - - location: 15 (remaining gas: 1039989.714 units remaining) + - location: 15 (remaining gas: 1039990.674 units remaining) [ (Pair 0 1) ] - - location: 20 (remaining gas: 1039989.704 units remaining) + - location: 20 (remaining gas: 1039990.664 units remaining) [ 0 1 ] - - location: 21 (remaining gas: 1039989.704 units remaining) + - location: 21 (remaining gas: 1039990.664 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039989.689 units remaining) + - location: 15 (remaining gas: 1039990.654 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039989.674 units remaining) + - location: 22 (remaining gas: 1039990.644 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039989.659 units remaining) + - location: 23 (remaining gas: 1039990.634 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039989.644 units remaining) + - location: 25 (remaining gas: 1039990.624 units remaining) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out index b23677af5ade..e679b4406281 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.734 units remaining) + - location: 14 (remaining gas: 1039990.694 units remaining) [ (Pair (Right (Pair 1 2)) None) ] - - location: 14 (remaining gas: 1039989.724 units remaining) + - location: 14 (remaining gas: 1039990.684 units remaining) [ (Right (Pair 1 2)) ] - - location: 15 (remaining gas: 1039989.714 units remaining) + - location: 15 (remaining gas: 1039990.674 units remaining) [ (Pair 1 2) ] - - location: 20 (remaining gas: 1039989.704 units remaining) + - location: 20 (remaining gas: 1039990.664 units remaining) [ 1 2 ] - - location: 21 (remaining gas: 1039989.704 units remaining) + - location: 21 (remaining gas: 1039990.664 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039989.689 units remaining) + - location: 15 (remaining gas: 1039990.654 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039989.674 units remaining) + - location: 22 (remaining gas: 1039990.644 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039989.659 units remaining) + - location: 23 (remaining gas: 1039990.634 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039989.644 units remaining) + - location: 25 (remaining gas: 1039990.624 units remaining) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out index 198179776ab9..d8b1b904f687 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.734 units remaining) + - location: 14 (remaining gas: 1039990.694 units remaining) [ (Pair (Right (Pair 15 2)) None) ] - - location: 14 (remaining gas: 1039989.724 units remaining) + - location: 14 (remaining gas: 1039990.684 units remaining) [ (Right (Pair 15 2)) ] - - location: 15 (remaining gas: 1039989.714 units remaining) + - location: 15 (remaining gas: 1039990.674 units remaining) [ (Pair 15 2) ] - - location: 20 (remaining gas: 1039989.704 units remaining) + - location: 20 (remaining gas: 1039990.664 units remaining) [ 15 2 ] - - location: 21 (remaining gas: 1039989.704 units remaining) + - location: 21 (remaining gas: 1039990.664 units remaining) [ 3 ] - - location: 15 (remaining gas: 1039989.689 units remaining) + - location: 15 (remaining gas: 1039990.654 units remaining) [ 3 ] - - location: 22 (remaining gas: 1039989.674 units remaining) + - location: 22 (remaining gas: 1039990.644 units remaining) [ (Some 3) ] - - location: 23 (remaining gas: 1039989.659 units remaining) + - location: 23 (remaining gas: 1039990.634 units remaining) [ {} (Some 3) ] - - location: 25 (remaining gas: 1039989.644 units remaining) + - location: 25 (remaining gas: 1039990.624 units remaining) [ (Pair {} (Some 3)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out index b42c39958124..52449bff3695 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.734 units remaining) + - location: 14 (remaining gas: 1039990.694 units remaining) [ (Pair (Right (Pair 8 1)) None) ] - - location: 14 (remaining gas: 1039989.724 units remaining) + - location: 14 (remaining gas: 1039990.684 units remaining) [ (Right (Pair 8 1)) ] - - location: 15 (remaining gas: 1039989.714 units remaining) + - location: 15 (remaining gas: 1039990.674 units remaining) [ (Pair 8 1) ] - - location: 20 (remaining gas: 1039989.704 units remaining) + - location: 20 (remaining gas: 1039990.664 units remaining) [ 8 1 ] - - location: 21 (remaining gas: 1039989.704 units remaining) + - location: 21 (remaining gas: 1039990.664 units remaining) [ 4 ] - - location: 15 (remaining gas: 1039989.689 units remaining) + - location: 15 (remaining gas: 1039990.654 units remaining) [ 4 ] - - location: 22 (remaining gas: 1039989.674 units remaining) + - location: 22 (remaining gas: 1039990.644 units remaining) [ (Some 4) ] - - location: 23 (remaining gas: 1039989.659 units remaining) + - location: 23 (remaining gas: 1039990.634 units remaining) [ {} (Some 4) ] - - location: 25 (remaining gas: 1039989.644 units remaining) + - location: 25 (remaining gas: 1039990.624 units remaining) [ (Pair {} (Some 4)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out index e4409471003b..531309997362 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-None-Pair 0 0-None].out @@ -7,25 +7,25 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.187 units remaining) + - location: 10 (remaining gas: 1039990.307 units remaining) [ (Pair (Pair 0 0) None) ] - - location: 10 (remaining gas: 1039989.177 units remaining) + - location: 10 (remaining gas: 1039990.297 units remaining) [ (Pair 0 0) None ] - - location: 11 (remaining gas: 1039989.167 units remaining) + - location: 11 (remaining gas: 1039990.287 units remaining) [ None (Pair 0 0) ] - - location: 13 (remaining gas: 1039989.157 units remaining) + - location: 13 (remaining gas: 1039990.277 units remaining) [ (Pair 0 0) ] - - location: 15 (remaining gas: 1039989.147 units remaining) + - location: 15 (remaining gas: 1039990.267 units remaining) [ ] - - location: 16 (remaining gas: 1039989.132 units remaining) + - location: 16 (remaining gas: 1039990.257 units remaining) [ None ] - - location: 13 (remaining gas: 1039989.117 units remaining) + - location: 13 (remaining gas: 1039990.247 units remaining) [ None ] - - location: 22 (remaining gas: 1039989.102 units remaining) + - location: 22 (remaining gas: 1039990.237 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039989.087 units remaining) + - location: 24 (remaining gas: 1039990.227 units remaining) [ (Pair {} None) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" index 7d87964a2a77..5120d9098c73 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.043 units remaining) + - location: 10 (remaining gas: 1039990.163 units remaining) [ (Pair (Pair 0 0) (Some "Foo")) ] - - location: 10 (remaining gas: 1039989.033 units remaining) + - location: 10 (remaining gas: 1039990.153 units remaining) [ (Pair 0 0) (Some "Foo") ] - - location: 11 (remaining gas: 1039989.023 units remaining) + - location: 11 (remaining gas: 1039990.143 units remaining) [ (Some "Foo") (Pair 0 0) ] - - location: 13 (remaining gas: 1039989.013 units remaining) + - location: 13 (remaining gas: 1039990.133 units remaining) [ "Foo" (Pair 0 0) ] - - location: 19 (remaining gas: 1039989.003 units remaining) + - location: 19 (remaining gas: 1039990.123 units remaining) [ (Pair 0 0) "Foo" ] - - location: 20 (remaining gas: 1039988.993 units remaining) + - location: 20 (remaining gas: 1039990.113 units remaining) [ 0 0 "Foo" ] - - location: 21 (remaining gas: 1039988.953 units remaining) + - location: 21 (remaining gas: 1039990.088 units remaining) [ (Some "") ] - - location: 13 (remaining gas: 1039988.938 units remaining) + - location: 13 (remaining gas: 1039990.078 units remaining) [ (Some "") ] - - location: 22 (remaining gas: 1039988.923 units remaining) + - location: 22 (remaining gas: 1039990.068 units remaining) [ {} (Some "") ] - - location: 24 (remaining gas: 1039988.908 units remaining) + - location: 24 (remaining gas: 1039990.058 units remaining) [ (Pair {} (Some "")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" index ce324ac41797..84a38e9cfd5d 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 10-None].out" @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.043 units remaining) + - location: 10 (remaining gas: 1039990.163 units remaining) [ (Pair (Pair 0 10) (Some "Foo")) ] - - location: 10 (remaining gas: 1039989.033 units remaining) + - location: 10 (remaining gas: 1039990.153 units remaining) [ (Pair 0 10) (Some "Foo") ] - - location: 11 (remaining gas: 1039989.023 units remaining) + - location: 11 (remaining gas: 1039990.143 units remaining) [ (Some "Foo") (Pair 0 10) ] - - location: 13 (remaining gas: 1039989.013 units remaining) + - location: 13 (remaining gas: 1039990.133 units remaining) [ "Foo" (Pair 0 10) ] - - location: 19 (remaining gas: 1039989.003 units remaining) + - location: 19 (remaining gas: 1039990.123 units remaining) [ (Pair 0 10) "Foo" ] - - location: 20 (remaining gas: 1039988.993 units remaining) + - location: 20 (remaining gas: 1039990.113 units remaining) [ 0 10 "Foo" ] - - location: 21 (remaining gas: 1039988.953 units remaining) + - location: 21 (remaining gas: 1039990.088 units remaining) [ None ] - - location: 13 (remaining gas: 1039988.938 units remaining) + - location: 13 (remaining gas: 1039990.078 units remaining) [ None ] - - location: 22 (remaining gas: 1039988.923 units remaining) + - location: 22 (remaining gas: 1039990.068 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039988.908 units remaining) + - location: 24 (remaining gas: 1039990.058 units remaining) [ (Pair {} None) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" index 799a413e97d8..31483c34d03f 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.043 units remaining) + - location: 10 (remaining gas: 1039990.163 units remaining) [ (Pair (Pair 0 2) (Some "Foo")) ] - - location: 10 (remaining gas: 1039989.033 units remaining) + - location: 10 (remaining gas: 1039990.153 units remaining) [ (Pair 0 2) (Some "Foo") ] - - location: 11 (remaining gas: 1039989.023 units remaining) + - location: 11 (remaining gas: 1039990.143 units remaining) [ (Some "Foo") (Pair 0 2) ] - - location: 13 (remaining gas: 1039989.013 units remaining) + - location: 13 (remaining gas: 1039990.133 units remaining) [ "Foo" (Pair 0 2) ] - - location: 19 (remaining gas: 1039989.003 units remaining) + - location: 19 (remaining gas: 1039990.123 units remaining) [ (Pair 0 2) "Foo" ] - - location: 20 (remaining gas: 1039988.993 units remaining) + - location: 20 (remaining gas: 1039990.113 units remaining) [ 0 2 "Foo" ] - - location: 21 (remaining gas: 1039988.953 units remaining) + - location: 21 (remaining gas: 1039990.088 units remaining) [ (Some "Fo") ] - - location: 13 (remaining gas: 1039988.938 units remaining) + - location: 13 (remaining gas: 1039990.078 units remaining) [ (Some "Fo") ] - - location: 22 (remaining gas: 1039988.923 units remaining) + - location: 22 (remaining gas: 1039990.068 units remaining) [ {} (Some "Fo") ] - - location: 24 (remaining gas: 1039988.908 units remaining) + - location: 24 (remaining gas: 1039990.058 units remaining) [ (Pair {} (Some "Fo")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" index 9a67ca952b39..61f6318c2430 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.043 units remaining) + - location: 10 (remaining gas: 1039990.163 units remaining) [ (Pair (Pair 1 1) (Some "Foo")) ] - - location: 10 (remaining gas: 1039989.033 units remaining) + - location: 10 (remaining gas: 1039990.153 units remaining) [ (Pair 1 1) (Some "Foo") ] - - location: 11 (remaining gas: 1039989.023 units remaining) + - location: 11 (remaining gas: 1039990.143 units remaining) [ (Some "Foo") (Pair 1 1) ] - - location: 13 (remaining gas: 1039989.013 units remaining) + - location: 13 (remaining gas: 1039990.133 units remaining) [ "Foo" (Pair 1 1) ] - - location: 19 (remaining gas: 1039989.003 units remaining) + - location: 19 (remaining gas: 1039990.123 units remaining) [ (Pair 1 1) "Foo" ] - - location: 20 (remaining gas: 1039988.993 units remaining) + - location: 20 (remaining gas: 1039990.113 units remaining) [ 1 1 "Foo" ] - - location: 21 (remaining gas: 1039988.953 units remaining) + - location: 21 (remaining gas: 1039990.088 units remaining) [ (Some "o") ] - - location: 13 (remaining gas: 1039988.938 units remaining) + - location: 13 (remaining gas: 1039990.078 units remaining) [ (Some "o") ] - - location: 22 (remaining gas: 1039988.923 units remaining) + - location: 22 (remaining gas: 1039990.068 units remaining) [ {} (Some "o") ] - - location: 24 (remaining gas: 1039988.908 units remaining) + - location: 24 (remaining gas: 1039990.058 units remaining) [ (Pair {} (Some "o")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" index 5fedf911f000..28b6a60219da 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 1 3-None].out" @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.043 units remaining) + - location: 10 (remaining gas: 1039990.163 units remaining) [ (Pair (Pair 1 3) (Some "Foo")) ] - - location: 10 (remaining gas: 1039989.033 units remaining) + - location: 10 (remaining gas: 1039990.153 units remaining) [ (Pair 1 3) (Some "Foo") ] - - location: 11 (remaining gas: 1039989.023 units remaining) + - location: 11 (remaining gas: 1039990.143 units remaining) [ (Some "Foo") (Pair 1 3) ] - - location: 13 (remaining gas: 1039989.013 units remaining) + - location: 13 (remaining gas: 1039990.133 units remaining) [ "Foo" (Pair 1 3) ] - - location: 19 (remaining gas: 1039989.003 units remaining) + - location: 19 (remaining gas: 1039990.123 units remaining) [ (Pair 1 3) "Foo" ] - - location: 20 (remaining gas: 1039988.993 units remaining) + - location: 20 (remaining gas: 1039990.113 units remaining) [ 1 3 "Foo" ] - - location: 21 (remaining gas: 1039988.953 units remaining) + - location: 21 (remaining gas: 1039990.088 units remaining) [ None ] - - location: 13 (remaining gas: 1039988.938 units remaining) + - location: 13 (remaining gas: 1039990.078 units remaining) [ None ] - - location: 22 (remaining gas: 1039988.923 units remaining) + - location: 22 (remaining gas: 1039990.068 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039988.908 units remaining) + - location: 24 (remaining gas: 1039990.058 units remaining) [ (Pair {} None) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" index 42f566755141..dd3606d18b3a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some \"Foo\"-Pair 10 5-None].out" @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.043 units remaining) + - location: 10 (remaining gas: 1039990.163 units remaining) [ (Pair (Pair 10 5) (Some "Foo")) ] - - location: 10 (remaining gas: 1039989.033 units remaining) + - location: 10 (remaining gas: 1039990.153 units remaining) [ (Pair 10 5) (Some "Foo") ] - - location: 11 (remaining gas: 1039989.023 units remaining) + - location: 11 (remaining gas: 1039990.143 units remaining) [ (Some "Foo") (Pair 10 5) ] - - location: 13 (remaining gas: 1039989.013 units remaining) + - location: 13 (remaining gas: 1039990.133 units remaining) [ "Foo" (Pair 10 5) ] - - location: 19 (remaining gas: 1039989.003 units remaining) + - location: 19 (remaining gas: 1039990.123 units remaining) [ (Pair 10 5) "Foo" ] - - location: 20 (remaining gas: 1039988.993 units remaining) + - location: 20 (remaining gas: 1039990.113 units remaining) [ 10 5 "Foo" ] - - location: 21 (remaining gas: 1039988.953 units remaining) + - location: 21 (remaining gas: 1039990.088 units remaining) [ None ] - - location: 13 (remaining gas: 1039988.938 units remaining) + - location: 13 (remaining gas: 1039990.078 units remaining) [ None ] - - location: 22 (remaining gas: 1039988.923 units remaining) + - location: 22 (remaining gas: 1039990.068 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039988.908 units remaining) + - location: 24 (remaining gas: 1039990.058 units remaining) [ (Pair {} None) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" index 212de830fbb0..f9a79a1a16ba 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice.tz-Some\"FooFooFooFooFooFooFooFooFooFooFooFooFooFo.c508d67bb0.out" @@ -7,32 +7,32 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039929.073 units remaining) + - location: 10 (remaining gas: 1039930.193 units remaining) [ (Pair (Pair 1 10000) (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo")) ] - - location: 10 (remaining gas: 1039929.063 units remaining) + - location: 10 (remaining gas: 1039930.183 units remaining) [ (Pair 1 10000) (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo") ] - - location: 11 (remaining gas: 1039929.053 units remaining) + - location: 11 (remaining gas: 1039930.173 units remaining) [ (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo") (Pair 1 10000) ] - - location: 13 (remaining gas: 1039929.043 units remaining) + - location: 13 (remaining gas: 1039930.163 units remaining) [ "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" (Pair 1 10000) ] - - location: 19 (remaining gas: 1039929.033 units remaining) + - location: 19 (remaining gas: 1039930.153 units remaining) [ (Pair 1 10000) "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" ] - - location: 20 (remaining gas: 1039929.023 units remaining) + - location: 20 (remaining gas: 1039930.143 units remaining) [ 1 10000 "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" ] - - location: 21 (remaining gas: 1039928.608 units remaining) + - location: 21 (remaining gas: 1039929.743 units remaining) [ None ] - - location: 13 (remaining gas: 1039928.593 units remaining) + - location: 13 (remaining gas: 1039929.733 units remaining) [ None ] - - location: 22 (remaining gas: 1039928.578 units remaining) + - location: 22 (remaining gas: 1039929.723 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039928.563 units remaining) + - location: 24 (remaining gas: 1039929.713 units remaining) [ (Pair {} None) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out index 1a1f00f3fdf7..c4a3f24965f9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-None-Pair 0 1-None].out @@ -7,25 +7,25 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.187 units remaining) + - location: 10 (remaining gas: 1039990.307 units remaining) [ (Pair (Pair 0 1) None) ] - - location: 10 (remaining gas: 1039989.177 units remaining) + - location: 10 (remaining gas: 1039990.297 units remaining) [ (Pair 0 1) None ] - - location: 11 (remaining gas: 1039989.167 units remaining) + - location: 11 (remaining gas: 1039990.287 units remaining) [ None (Pair 0 1) ] - - location: 13 (remaining gas: 1039989.157 units remaining) + - location: 13 (remaining gas: 1039990.277 units remaining) [ (Pair 0 1) ] - - location: 15 (remaining gas: 1039989.147 units remaining) + - location: 15 (remaining gas: 1039990.267 units remaining) [ ] - - location: 16 (remaining gas: 1039989.132 units remaining) + - location: 16 (remaining gas: 1039990.257 units remaining) [ None ] - - location: 13 (remaining gas: 1039989.117 units remaining) + - location: 13 (remaining gas: 1039990.247 units remaining) [ None ] - - location: 22 (remaining gas: 1039989.102 units remaining) + - location: 22 (remaining gas: 1039990.237 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039989.087 units remaining) + - location: 24 (remaining gas: 1039990.227 units remaining) [ (Pair {} None) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out index 86d8be48f951..6f85dce1a173 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.087 units remaining) + - location: 10 (remaining gas: 1039990.207 units remaining) [ (Pair (Pair 0 0) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039989.077 units remaining) + - location: 10 (remaining gas: 1039990.197 units remaining) [ (Pair 0 0) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039989.067 units remaining) + - location: 11 (remaining gas: 1039990.187 units remaining) [ (Some 0xaabbcc) (Pair 0 0) ] - - location: 13 (remaining gas: 1039989.057 units remaining) + - location: 13 (remaining gas: 1039990.177 units remaining) [ 0xaabbcc (Pair 0 0) ] - - location: 19 (remaining gas: 1039989.047 units remaining) + - location: 19 (remaining gas: 1039990.167 units remaining) [ (Pair 0 0) 0xaabbcc ] - - location: 20 (remaining gas: 1039989.037 units remaining) + - location: 20 (remaining gas: 1039990.157 units remaining) [ 0 0 0xaabbcc ] - - location: 21 (remaining gas: 1039988.997 units remaining) + - location: 21 (remaining gas: 1039990.132 units remaining) [ (Some 0x) ] - - location: 13 (remaining gas: 1039988.982 units remaining) + - location: 13 (remaining gas: 1039990.122 units remaining) [ (Some 0x) ] - - location: 22 (remaining gas: 1039988.967 units remaining) + - location: 22 (remaining gas: 1039990.112 units remaining) [ {} (Some 0x) ] - - location: 24 (remaining gas: 1039988.952 units remaining) + - location: 24 (remaining gas: 1039990.102 units remaining) [ (Pair {} (Some 0x)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out index 3039b4f4bc7f..5da1fe12d171 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.087 units remaining) + - location: 10 (remaining gas: 1039990.207 units remaining) [ (Pair (Pair 0 1) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039989.077 units remaining) + - location: 10 (remaining gas: 1039990.197 units remaining) [ (Pair 0 1) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039989.067 units remaining) + - location: 11 (remaining gas: 1039990.187 units remaining) [ (Some 0xaabbcc) (Pair 0 1) ] - - location: 13 (remaining gas: 1039989.057 units remaining) + - location: 13 (remaining gas: 1039990.177 units remaining) [ 0xaabbcc (Pair 0 1) ] - - location: 19 (remaining gas: 1039989.047 units remaining) + - location: 19 (remaining gas: 1039990.167 units remaining) [ (Pair 0 1) 0xaabbcc ] - - location: 20 (remaining gas: 1039989.037 units remaining) + - location: 20 (remaining gas: 1039990.157 units remaining) [ 0 1 0xaabbcc ] - - location: 21 (remaining gas: 1039988.997 units remaining) + - location: 21 (remaining gas: 1039990.132 units remaining) [ (Some 0xaa) ] - - location: 13 (remaining gas: 1039988.982 units remaining) + - location: 13 (remaining gas: 1039990.122 units remaining) [ (Some 0xaa) ] - - location: 22 (remaining gas: 1039988.967 units remaining) + - location: 22 (remaining gas: 1039990.112 units remaining) [ {} (Some 0xaa) ] - - location: 24 (remaining gas: 1039988.952 units remaining) + - location: 24 (remaining gas: 1039990.102 units remaining) [ (Pair {} (Some 0xaa)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out index d2e9f1b61a7d..c596b6eb507e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.087 units remaining) + - location: 10 (remaining gas: 1039990.207 units remaining) [ (Pair (Pair 1 1) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039989.077 units remaining) + - location: 10 (remaining gas: 1039990.197 units remaining) [ (Pair 1 1) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039989.067 units remaining) + - location: 11 (remaining gas: 1039990.187 units remaining) [ (Some 0xaabbcc) (Pair 1 1) ] - - location: 13 (remaining gas: 1039989.057 units remaining) + - location: 13 (remaining gas: 1039990.177 units remaining) [ 0xaabbcc (Pair 1 1) ] - - location: 19 (remaining gas: 1039989.047 units remaining) + - location: 19 (remaining gas: 1039990.167 units remaining) [ (Pair 1 1) 0xaabbcc ] - - location: 20 (remaining gas: 1039989.037 units remaining) + - location: 20 (remaining gas: 1039990.157 units remaining) [ 1 1 0xaabbcc ] - - location: 21 (remaining gas: 1039988.997 units remaining) + - location: 21 (remaining gas: 1039990.132 units remaining) [ (Some 0xbb) ] - - location: 13 (remaining gas: 1039988.982 units remaining) + - location: 13 (remaining gas: 1039990.122 units remaining) [ (Some 0xbb) ] - - location: 22 (remaining gas: 1039988.967 units remaining) + - location: 22 (remaining gas: 1039990.112 units remaining) [ {} (Some 0xbb) ] - - location: 24 (remaining gas: 1039988.952 units remaining) + - location: 24 (remaining gas: 1039990.102 units remaining) [ (Pair {} (Some 0xbb)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out index 073076249b65..120f0881f65a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.087 units remaining) + - location: 10 (remaining gas: 1039990.207 units remaining) [ (Pair (Pair 1 1) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039989.077 units remaining) + - location: 10 (remaining gas: 1039990.197 units remaining) [ (Pair 1 1) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039989.067 units remaining) + - location: 11 (remaining gas: 1039990.187 units remaining) [ (Some 0xaabbcc) (Pair 1 1) ] - - location: 13 (remaining gas: 1039989.057 units remaining) + - location: 13 (remaining gas: 1039990.177 units remaining) [ 0xaabbcc (Pair 1 1) ] - - location: 19 (remaining gas: 1039989.047 units remaining) + - location: 19 (remaining gas: 1039990.167 units remaining) [ (Pair 1 1) 0xaabbcc ] - - location: 20 (remaining gas: 1039989.037 units remaining) + - location: 20 (remaining gas: 1039990.157 units remaining) [ 1 1 0xaabbcc ] - - location: 21 (remaining gas: 1039988.997 units remaining) + - location: 21 (remaining gas: 1039990.132 units remaining) [ (Some 0xbb) ] - - location: 13 (remaining gas: 1039988.982 units remaining) + - location: 13 (remaining gas: 1039990.122 units remaining) [ (Some 0xbb) ] - - location: 22 (remaining gas: 1039988.967 units remaining) + - location: 22 (remaining gas: 1039990.112 units remaining) [ {} (Some 0xbb) ] - - location: 24 (remaining gas: 1039988.952 units remaining) + - location: 24 (remaining gas: 1039990.102 units remaining) [ (Pair {} (Some 0xbb)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out index 633f5be93332..57f5bbd526de 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.087 units remaining) + - location: 10 (remaining gas: 1039990.207 units remaining) [ (Pair (Pair 1 2) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039989.077 units remaining) + - location: 10 (remaining gas: 1039990.197 units remaining) [ (Pair 1 2) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039989.067 units remaining) + - location: 11 (remaining gas: 1039990.187 units remaining) [ (Some 0xaabbcc) (Pair 1 2) ] - - location: 13 (remaining gas: 1039989.057 units remaining) + - location: 13 (remaining gas: 1039990.177 units remaining) [ 0xaabbcc (Pair 1 2) ] - - location: 19 (remaining gas: 1039989.047 units remaining) + - location: 19 (remaining gas: 1039990.167 units remaining) [ (Pair 1 2) 0xaabbcc ] - - location: 20 (remaining gas: 1039989.037 units remaining) + - location: 20 (remaining gas: 1039990.157 units remaining) [ 1 2 0xaabbcc ] - - location: 21 (remaining gas: 1039988.997 units remaining) + - location: 21 (remaining gas: 1039990.132 units remaining) [ (Some 0xbbcc) ] - - location: 13 (remaining gas: 1039988.982 units remaining) + - location: 13 (remaining gas: 1039990.122 units remaining) [ (Some 0xbbcc) ] - - location: 22 (remaining gas: 1039988.967 units remaining) + - location: 22 (remaining gas: 1039990.112 units remaining) [ {} (Some 0xbbcc) ] - - location: 24 (remaining gas: 1039988.952 units remaining) + - location: 24 (remaining gas: 1039990.102 units remaining) [ (Pair {} (Some 0xbbcc)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out index 85ba2f15559f..6b822b5b7e58 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbcc-Pair 1 3-None].out @@ -7,31 +7,31 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.087 units remaining) + - location: 10 (remaining gas: 1039990.207 units remaining) [ (Pair (Pair 1 3) (Some 0xaabbcc)) ] - - location: 10 (remaining gas: 1039989.077 units remaining) + - location: 10 (remaining gas: 1039990.197 units remaining) [ (Pair 1 3) (Some 0xaabbcc) ] - - location: 11 (remaining gas: 1039989.067 units remaining) + - location: 11 (remaining gas: 1039990.187 units remaining) [ (Some 0xaabbcc) (Pair 1 3) ] - - location: 13 (remaining gas: 1039989.057 units remaining) + - location: 13 (remaining gas: 1039990.177 units remaining) [ 0xaabbcc (Pair 1 3) ] - - location: 19 (remaining gas: 1039989.047 units remaining) + - location: 19 (remaining gas: 1039990.167 units remaining) [ (Pair 1 3) 0xaabbcc ] - - location: 20 (remaining gas: 1039989.037 units remaining) + - location: 20 (remaining gas: 1039990.157 units remaining) [ 1 3 0xaabbcc ] - - location: 21 (remaining gas: 1039988.997 units remaining) + - location: 21 (remaining gas: 1039990.132 units remaining) [ None ] - - location: 13 (remaining gas: 1039988.982 units remaining) + - location: 13 (remaining gas: 1039990.122 units remaining) [ None ] - - location: 22 (remaining gas: 1039988.967 units remaining) + - location: 22 (remaining gas: 1039990.112 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039988.952 units remaining) + - location: 24 (remaining gas: 1039990.102 units remaining) [ (Pair {} None) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out index 38e9efd1809d..455023dc4c5a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[slice_bytes.tz-Some 0xaabbccaabbccaabbccaabbccaabbccaab.df5895de85.out @@ -7,32 +7,32 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039989.087 units remaining) + - location: 10 (remaining gas: 1039990.207 units remaining) [ (Pair (Pair 1 10000) (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc)) ] - - location: 10 (remaining gas: 1039989.077 units remaining) + - location: 10 (remaining gas: 1039990.197 units remaining) [ (Pair 1 10000) (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc) ] - - location: 11 (remaining gas: 1039989.067 units remaining) + - location: 11 (remaining gas: 1039990.187 units remaining) [ (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc) (Pair 1 10000) ] - - location: 13 (remaining gas: 1039989.057 units remaining) + - location: 13 (remaining gas: 1039990.177 units remaining) [ 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc (Pair 1 10000) ] - - location: 19 (remaining gas: 1039989.047 units remaining) + - location: 19 (remaining gas: 1039990.167 units remaining) [ (Pair 1 10000) 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc ] - - location: 20 (remaining gas: 1039989.037 units remaining) + - location: 20 (remaining gas: 1039990.157 units remaining) [ 1 10000 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc ] - - location: 21 (remaining gas: 1039988.622 units remaining) + - location: 21 (remaining gas: 1039989.757 units remaining) [ None ] - - location: 13 (remaining gas: 1039988.607 units remaining) + - location: 13 (remaining gas: 1039989.747 units remaining) [ None ] - - location: 22 (remaining gas: 1039988.592 units remaining) + - location: 22 (remaining gas: 1039989.737 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039988.577 units remaining) + - location: 24 (remaining gas: 1039989.727 units remaining) [ (Pair {} None) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" index 292f6abd502e..9392fa5f2d9a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"Hello\"-(Some \"Hello\")].out" @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.456 units remaining) + - location: 8 (remaining gas: 1039995.256 units remaining) [ (Pair "Hello" None) ] - - location: 8 (remaining gas: 1039994.446 units remaining) + - location: 8 (remaining gas: 1039995.246 units remaining) [ "Hello" ] - - location: 9 (remaining gas: 1039994.431 units remaining) + - location: 9 (remaining gas: 1039995.236 units remaining) [ (Some "Hello") ] - - location: 10 (remaining gas: 1039994.416 units remaining) + - location: 10 (remaining gas: 1039995.226 units remaining) [ {} (Some "Hello") ] - - location: 12 (remaining gas: 1039994.401 units remaining) + - location: 12 (remaining gas: 1039995.216 units remaining) [ (Pair {} (Some "Hello")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" index 1b3003f262a7..563fccd94db9 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[str_id.tz-None-\"abcd\"-(Some \"abcd\")].out" @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 8 (remaining gas: 1039994.466 units remaining) + - location: 8 (remaining gas: 1039995.266 units remaining) [ (Pair "abcd" None) ] - - location: 8 (remaining gas: 1039994.456 units remaining) + - location: 8 (remaining gas: 1039995.256 units remaining) [ "abcd" ] - - location: 9 (remaining gas: 1039994.441 units remaining) + - location: 9 (remaining gas: 1039995.246 units remaining) [ (Some "abcd") ] - - location: 10 (remaining gas: 1039994.426 units remaining) + - location: 10 (remaining gas: 1039995.236 units remaining) [ {} (Some "abcd") ] - - location: 12 (remaining gas: 1039994.411 units remaining) + - location: 12 (remaining gas: 1039995.226 units remaining) [ (Pair {} (Some "abcd")) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" index 2f5bb7e4657e..0c319de51a73 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 -100)-\"1970-01-01T00:03:20Z\"].out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039991.518 units remaining) + - location: 9 (remaining gas: 1039992.158 units remaining) [ (Pair (Pair "1970-01-01T00:01:40Z" -100) "1970-01-01T00:01:51Z") ] - - location: 9 (remaining gas: 1039991.508 units remaining) + - location: 9 (remaining gas: 1039992.148 units remaining) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 10 (remaining gas: 1039991.498 units remaining) + - location: 10 (remaining gas: 1039992.138 units remaining) [ (Pair "1970-01-01T00:01:40Z" -100) (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 11 (remaining gas: 1039991.488 units remaining) + - location: 11 (remaining gas: 1039992.128 units remaining) [ "1970-01-01T00:01:40Z" (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 12 (remaining gas: 1039991.473 units remaining) + - location: 12 (remaining gas: 1039992.118 units remaining) [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 14 (remaining gas: 1039991.463 units remaining) + - location: 14 (remaining gas: 1039992.108 units remaining) [ -100 ] - - location: 12 (remaining gas: 1039991.433 units remaining) + - location: 12 (remaining gas: 1039992.088 units remaining) [ "1970-01-01T00:01:40Z" -100 ] - - location: 15 (remaining gas: 1039991.378 units remaining) + - location: 15 (remaining gas: 1039992.053 units remaining) [ "1970-01-01T00:03:20Z" ] - - location: 16 (remaining gas: 1039991.363 units remaining) + - location: 16 (remaining gas: 1039992.043 units remaining) [ {} "1970-01-01T00:03:20Z" ] - - location: 18 (remaining gas: 1039991.348 units remaining) + - location: 18 (remaining gas: 1039992.033 units remaining) [ (Pair {} "1970-01-01T00:03:20Z") ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" index 294fb0a04254..55f1bbbd72dd 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 100)-\"1970-01-01T00:00:00Z\"].out" @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039991.518 units remaining) + - location: 9 (remaining gas: 1039992.158 units remaining) [ (Pair (Pair "1970-01-01T00:01:40Z" 100) "1970-01-01T00:01:51Z") ] - - location: 9 (remaining gas: 1039991.508 units remaining) + - location: 9 (remaining gas: 1039992.148 units remaining) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 10 (remaining gas: 1039991.498 units remaining) + - location: 10 (remaining gas: 1039992.138 units remaining) [ (Pair "1970-01-01T00:01:40Z" 100) (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 11 (remaining gas: 1039991.488 units remaining) + - location: 11 (remaining gas: 1039992.128 units remaining) [ "1970-01-01T00:01:40Z" (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 12 (remaining gas: 1039991.473 units remaining) + - location: 12 (remaining gas: 1039992.118 units remaining) [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 14 (remaining gas: 1039991.463 units remaining) + - location: 14 (remaining gas: 1039992.108 units remaining) [ 100 ] - - location: 12 (remaining gas: 1039991.433 units remaining) + - location: 12 (remaining gas: 1039992.088 units remaining) [ "1970-01-01T00:01:40Z" 100 ] - - location: 15 (remaining gas: 1039991.378 units remaining) + - location: 15 (remaining gas: 1039992.053 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 16 (remaining gas: 1039991.363 units remaining) + - location: 16 (remaining gas: 1039992.043 units remaining) [ {} "1970-01-01T00:00:00Z" ] - - location: 18 (remaining gas: 1039991.348 units remaining) + - location: 18 (remaining gas: 1039992.033 units remaining) [ (Pair {} "1970-01-01T00:00:00Z") ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out index 08ab30c7399a..10c9576da7a5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[sub_timestamp_delta.tz-111-(Pair 100 200000000000000000.3db82d2c25.out @@ -7,28 +7,28 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039991.518 units remaining) + - location: 9 (remaining gas: 1039992.158 units remaining) [ (Pair (Pair "1970-01-01T00:01:40Z" 2000000000000000000) "1970-01-01T00:01:51Z") ] - - location: 9 (remaining gas: 1039991.508 units remaining) + - location: 9 (remaining gas: 1039992.148 units remaining) [ (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 10 (remaining gas: 1039991.498 units remaining) + - location: 10 (remaining gas: 1039992.138 units remaining) [ (Pair "1970-01-01T00:01:40Z" 2000000000000000000) (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 11 (remaining gas: 1039991.488 units remaining) + - location: 11 (remaining gas: 1039992.128 units remaining) [ "1970-01-01T00:01:40Z" (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 12 (remaining gas: 1039991.473 units remaining) + - location: 12 (remaining gas: 1039992.118 units remaining) [ (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 14 (remaining gas: 1039991.463 units remaining) + - location: 14 (remaining gas: 1039992.108 units remaining) [ 2000000000000000000 ] - - location: 12 (remaining gas: 1039991.433 units remaining) + - location: 12 (remaining gas: 1039992.088 units remaining) [ "1970-01-01T00:01:40Z" 2000000000000000000 ] - - location: 15 (remaining gas: 1039991.378 units remaining) + - location: 15 (remaining gas: 1039992.053 units remaining) [ -1999999999999999900 ] - - location: 16 (remaining gas: 1039991.363 units remaining) + - location: 16 (remaining gas: 1039992.043 units remaining) [ {} -1999999999999999900 ] - - location: 18 (remaining gas: 1039991.348 units remaining) + - location: 18 (remaining gas: 1039992.033 units remaining) [ (Pair {} -1999999999999999900) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out index 3a7f4b6efb51..e53d8e3e9123 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2000000 1000000)-(Some (Pair .b461aa042b.out @@ -7,65 +7,65 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039980.850 units remaining) + - location: 12 (remaining gas: 1039981.970 units remaining) [ (Pair (Pair 2000000 1000000) None) ] - - location: 12 (remaining gas: 1039980.840 units remaining) + - location: 12 (remaining gas: 1039981.960 units remaining) [ (Pair 2000000 1000000) ] - - location: 13 (remaining gas: 1039980.830 units remaining) + - location: 13 (remaining gas: 1039981.950 units remaining) [ (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 14 (remaining gas: 1039980.820 units remaining) + - location: 14 (remaining gas: 1039981.940 units remaining) [ (Pair 2000000 1000000) (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 15 (remaining gas: 1039980.810 units remaining) + - location: 15 (remaining gas: 1039981.930 units remaining) [ 2000000 (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 16 (remaining gas: 1039980.795 units remaining) + - location: 16 (remaining gas: 1039981.920 units remaining) [ (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 18 (remaining gas: 1039980.785 units remaining) + - location: 18 (remaining gas: 1039981.910 units remaining) [ 1000000 (Pair 2000000 1000000) ] - - location: 16 (remaining gas: 1039980.755 units remaining) + - location: 16 (remaining gas: 1039981.890 units remaining) [ 2000000 1000000 (Pair 2000000 1000000) ] - - location: 19 (remaining gas: 1039980.735 units remaining) + - location: 19 (remaining gas: 1039981.870 units remaining) [ 3000000 (Pair 2000000 1000000) ] - - location: 20 (remaining gas: 1039980.720 units remaining) + - location: 20 (remaining gas: 1039981.860 units remaining) [ (Pair 2000000 1000000) ] - - location: 22 (remaining gas: 1039980.710 units remaining) + - location: 22 (remaining gas: 1039981.850 units remaining) [ (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 23 (remaining gas: 1039980.700 units remaining) + - location: 23 (remaining gas: 1039981.840 units remaining) [ 2000000 (Pair 2000000 1000000) ] - - location: 24 (remaining gas: 1039980.685 units remaining) + - location: 24 (remaining gas: 1039981.830 units remaining) [ (Pair 2000000 1000000) ] - - location: 26 (remaining gas: 1039980.675 units remaining) + - location: 26 (remaining gas: 1039981.820 units remaining) [ 1000000 ] - - location: 24 (remaining gas: 1039980.645 units remaining) + - location: 24 (remaining gas: 1039981.800 units remaining) [ 2000000 1000000 ] - - location: 27 (remaining gas: 1039980.625 units remaining) + - location: 27 (remaining gas: 1039981.785 units remaining) [ (Some 1000000) ] - - location: 29 (remaining gas: 1039980.615 units remaining) + - location: 29 (remaining gas: 1039981.775 units remaining) [ 1000000 ] - - location: 29 (remaining gas: 1039980.600 units remaining) + - location: 29 (remaining gas: 1039981.765 units remaining) [ 1000000 ] - - location: 20 (remaining gas: 1039980.570 units remaining) + - location: 20 (remaining gas: 1039981.745 units remaining) [ 3000000 1000000 ] - - location: 35 (remaining gas: 1039980.555 units remaining) + - location: 35 (remaining gas: 1039981.735 units remaining) [ (Pair 3000000 1000000) ] - - location: 36 (remaining gas: 1039980.540 units remaining) + - location: 36 (remaining gas: 1039981.725 units remaining) [ (Some (Pair 3000000 1000000)) ] - - location: 37 (remaining gas: 1039980.525 units remaining) + - location: 37 (remaining gas: 1039981.715 units remaining) [ {} (Some (Pair 3000000 1000000)) ] - - location: 39 (remaining gas: 1039980.510 units remaining) + - location: 39 (remaining gas: 1039981.705 units remaining) [ (Pair {} (Some (Pair 3000000 1000000))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out index 72eab80d558c..e56f950b5b50 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[tez_add_sub.tz-None-(Pair 2310000 1010000)-(Some (Pair .1e8cf7679c.out @@ -7,65 +7,65 @@ emitted operations big_map diff trace - - location: 12 (remaining gas: 1039980.850 units remaining) + - location: 12 (remaining gas: 1039981.970 units remaining) [ (Pair (Pair 2310000 1010000) None) ] - - location: 12 (remaining gas: 1039980.840 units remaining) + - location: 12 (remaining gas: 1039981.960 units remaining) [ (Pair 2310000 1010000) ] - - location: 13 (remaining gas: 1039980.830 units remaining) + - location: 13 (remaining gas: 1039981.950 units remaining) [ (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 14 (remaining gas: 1039980.820 units remaining) + - location: 14 (remaining gas: 1039981.940 units remaining) [ (Pair 2310000 1010000) (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 15 (remaining gas: 1039980.810 units remaining) + - location: 15 (remaining gas: 1039981.930 units remaining) [ 2310000 (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 16 (remaining gas: 1039980.795 units remaining) + - location: 16 (remaining gas: 1039981.920 units remaining) [ (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 18 (remaining gas: 1039980.785 units remaining) + - location: 18 (remaining gas: 1039981.910 units remaining) [ 1010000 (Pair 2310000 1010000) ] - - location: 16 (remaining gas: 1039980.755 units remaining) + - location: 16 (remaining gas: 1039981.890 units remaining) [ 2310000 1010000 (Pair 2310000 1010000) ] - - location: 19 (remaining gas: 1039980.735 units remaining) + - location: 19 (remaining gas: 1039981.870 units remaining) [ 3320000 (Pair 2310000 1010000) ] - - location: 20 (remaining gas: 1039980.720 units remaining) + - location: 20 (remaining gas: 1039981.860 units remaining) [ (Pair 2310000 1010000) ] - - location: 22 (remaining gas: 1039980.710 units remaining) + - location: 22 (remaining gas: 1039981.850 units remaining) [ (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 23 (remaining gas: 1039980.700 units remaining) + - location: 23 (remaining gas: 1039981.840 units remaining) [ 2310000 (Pair 2310000 1010000) ] - - location: 24 (remaining gas: 1039980.685 units remaining) + - location: 24 (remaining gas: 1039981.830 units remaining) [ (Pair 2310000 1010000) ] - - location: 26 (remaining gas: 1039980.675 units remaining) + - location: 26 (remaining gas: 1039981.820 units remaining) [ 1010000 ] - - location: 24 (remaining gas: 1039980.645 units remaining) + - location: 24 (remaining gas: 1039981.800 units remaining) [ 2310000 1010000 ] - - location: 27 (remaining gas: 1039980.625 units remaining) + - location: 27 (remaining gas: 1039981.785 units remaining) [ (Some 1300000) ] - - location: 29 (remaining gas: 1039980.615 units remaining) + - location: 29 (remaining gas: 1039981.775 units remaining) [ 1300000 ] - - location: 29 (remaining gas: 1039980.600 units remaining) + - location: 29 (remaining gas: 1039981.765 units remaining) [ 1300000 ] - - location: 20 (remaining gas: 1039980.570 units remaining) + - location: 20 (remaining gas: 1039981.745 units remaining) [ 3320000 1300000 ] - - location: 35 (remaining gas: 1039980.555 units remaining) + - location: 35 (remaining gas: 1039981.735 units remaining) [ (Pair 3320000 1300000) ] - - location: 36 (remaining gas: 1039980.540 units remaining) + - location: 36 (remaining gas: 1039981.725 units remaining) [ (Some (Pair 3320000 1300000)) ] - - location: 37 (remaining gas: 1039980.525 units remaining) + - location: 37 (remaining gas: 1039981.715 units remaining) [ {} (Some (Pair 3320000 1300000)) ] - - location: 39 (remaining gas: 1039980.510 units remaining) + - location: 39 (remaining gas: 1039981.705 units remaining) [ (Pair {} (Some (Pair 3320000 1300000))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out index 8cdabbee9cfd..1694cb96743a 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[uncomb.tz-0-(Pair 1 4 2)-142].out @@ -7,44 +7,44 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039988.811 units remaining) + - location: 10 (remaining gas: 1039989.451 units remaining) [ (Pair (Pair 1 4 2) 0) ] - - location: 10 (remaining gas: 1039988.801 units remaining) + - location: 10 (remaining gas: 1039989.441 units remaining) [ (Pair 1 4 2) ] - - location: 11 (remaining gas: 1039988.764 units remaining) + - location: 11 (remaining gas: 1039989.404 units remaining) [ 1 4 2 ] - - location: 13 (remaining gas: 1039988.754 units remaining) + - location: 13 (remaining gas: 1039989.394 units remaining) [ 100 1 4 2 ] - - location: 16 (remaining gas: 1039988.650 units remaining) + - location: 16 (remaining gas: 1039989.335 units remaining) [ 100 4 2 ] - - location: 17 (remaining gas: 1039988.640 units remaining) + - location: 17 (remaining gas: 1039989.325 units remaining) [ 4 100 2 ] - - location: 18 (remaining gas: 1039988.630 units remaining) + - location: 18 (remaining gas: 1039989.315 units remaining) [ 10 4 100 2 ] - - location: 21 (remaining gas: 1039988.526 units remaining) + - location: 21 (remaining gas: 1039989.256 units remaining) [ 40 100 2 ] - - location: 22 (remaining gas: 1039988.471 units remaining) + - location: 22 (remaining gas: 1039989.221 units remaining) [ 140 2 ] - - location: 23 (remaining gas: 1039988.416 units remaining) + - location: 23 (remaining gas: 1039989.186 units remaining) [ 142 ] - - location: 24 (remaining gas: 1039988.401 units remaining) + - location: 24 (remaining gas: 1039989.176 units remaining) [ {} 142 ] - - location: 26 (remaining gas: 1039988.386 units remaining) + - location: 26 (remaining gas: 1039989.166 units remaining) [ (Pair {} 142) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out index ea4954b2e765..cd538ac185a4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[unpair.tz-Unit-Unit-Unit].out @@ -7,456 +7,456 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039873.054 units remaining) + - location: 7 (remaining gas: 1039873.694 units remaining) [ (Pair Unit Unit) ] - - location: 7 (remaining gas: 1039873.044 units remaining) + - location: 7 (remaining gas: 1039873.684 units remaining) [ ] - - location: 8 (remaining gas: 1039873.034 units remaining) + - location: 8 (remaining gas: 1039873.674 units remaining) [ Unit ] - - location: 9 (remaining gas: 1039873.024 units remaining) + - location: 9 (remaining gas: 1039873.664 units remaining) [ Unit Unit ] - - location: 10 (remaining gas: 1039873.009 units remaining) + - location: 10 (remaining gas: 1039873.654 units remaining) [ (Pair Unit Unit) ] - - location: 11 (remaining gas: 1039872.999 units remaining) + - location: 11 (remaining gas: 1039873.644 units remaining) [ Unit Unit ] - - location: 12 (remaining gas: 1039872.934 units remaining) + - location: 12 (remaining gas: 1039873.609 units remaining) [ ] - - location: 14 (remaining gas: 1039872.924 units remaining) + - location: 14 (remaining gas: 1039873.599 units remaining) [ Unit ] - - location: 15 (remaining gas: 1039872.914 units remaining) + - location: 15 (remaining gas: 1039873.589 units remaining) [ Unit Unit ] - - location: 16 (remaining gas: 1039872.899 units remaining) + - location: 16 (remaining gas: 1039873.579 units remaining) [ (Pair Unit Unit) ] - - location: 17 (remaining gas: 1039872.889 units remaining) + - location: 17 (remaining gas: 1039873.569 units remaining) [ Unit Unit ] - - location: 18 (remaining gas: 1039872.824 units remaining) + - location: 18 (remaining gas: 1039873.534 units remaining) [ ] - - location: 20 (remaining gas: 1039872.814 units remaining) + - location: 20 (remaining gas: 1039873.524 units remaining) [ Unit ] - - location: 21 (remaining gas: 1039872.804 units remaining) + - location: 21 (remaining gas: 1039873.514 units remaining) [ Unit Unit ] - - location: 22 (remaining gas: 1039872.789 units remaining) + - location: 22 (remaining gas: 1039873.504 units remaining) [ (Pair Unit Unit) ] - - location: 23 (remaining gas: 1039872.779 units remaining) + - location: 23 (remaining gas: 1039873.494 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 24 (remaining gas: 1039872.769 units remaining) + - location: 24 (remaining gas: 1039873.484 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 25 (remaining gas: 1039872.704 units remaining) + - location: 25 (remaining gas: 1039873.449 units remaining) [ (Pair Unit Unit) ] - - location: 27 (remaining gas: 1039872.694 units remaining) + - location: 27 (remaining gas: 1039873.439 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 28 (remaining gas: 1039872.684 units remaining) + - location: 28 (remaining gas: 1039873.429 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 29 (remaining gas: 1039872.619 units remaining) + - location: 29 (remaining gas: 1039873.394 units remaining) [ (Pair Unit Unit) ] - - location: 31 (remaining gas: 1039872.609 units remaining) + - location: 31 (remaining gas: 1039873.384 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 32 (remaining gas: 1039872.599 units remaining) + - location: 32 (remaining gas: 1039873.374 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 33 (remaining gas: 1039872.534 units remaining) + - location: 33 (remaining gas: 1039873.339 units remaining) [ (Pair Unit Unit) ] - - location: 35 (remaining gas: 1039872.524 units remaining) + - location: 35 (remaining gas: 1039873.329 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 36 (remaining gas: 1039872.514 units remaining) + - location: 36 (remaining gas: 1039873.319 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 37 (remaining gas: 1039872.449 units remaining) + - location: 37 (remaining gas: 1039873.284 units remaining) [ (Pair Unit Unit) ] - - location: 39 (remaining gas: 1039872.439 units remaining) + - location: 39 (remaining gas: 1039873.274 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 40 (remaining gas: 1039872.429 units remaining) + - location: 40 (remaining gas: 1039873.264 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 41 (remaining gas: 1039872.364 units remaining) + - location: 41 (remaining gas: 1039873.229 units remaining) [ (Pair Unit Unit) ] - - location: 43 (remaining gas: 1039872.354 units remaining) + - location: 43 (remaining gas: 1039873.219 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 44 (remaining gas: 1039872.344 units remaining) + - location: 44 (remaining gas: 1039873.209 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 45 (remaining gas: 1039872.279 units remaining) + - location: 45 (remaining gas: 1039873.174 units remaining) [ (Pair Unit Unit) ] - - location: 47 (remaining gas: 1039872.269 units remaining) + - location: 47 (remaining gas: 1039873.164 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 48 (remaining gas: 1039872.259 units remaining) + - location: 48 (remaining gas: 1039873.154 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 49 (remaining gas: 1039872.194 units remaining) + - location: 49 (remaining gas: 1039873.119 units remaining) [ (Pair Unit Unit) ] - - location: 51 (remaining gas: 1039872.184 units remaining) + - location: 51 (remaining gas: 1039873.109 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 52 (remaining gas: 1039872.174 units remaining) + - location: 52 (remaining gas: 1039873.099 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 53 (remaining gas: 1039872.109 units remaining) + - location: 53 (remaining gas: 1039873.064 units remaining) [ (Pair Unit Unit) ] - - location: 55 (remaining gas: 1039872.099 units remaining) + - location: 55 (remaining gas: 1039873.054 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 56 (remaining gas: 1039872.089 units remaining) + - location: 56 (remaining gas: 1039873.044 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 57 (remaining gas: 1039872.024 units remaining) + - location: 57 (remaining gas: 1039873.009 units remaining) [ (Pair Unit Unit) ] - - location: 59 (remaining gas: 1039872.014 units remaining) + - location: 59 (remaining gas: 1039872.999 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 60 (remaining gas: 1039872.004 units remaining) + - location: 60 (remaining gas: 1039872.989 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 61 (remaining gas: 1039871.939 units remaining) + - location: 61 (remaining gas: 1039872.954 units remaining) [ (Pair Unit Unit) ] - - location: 63 (remaining gas: 1039871.929 units remaining) + - location: 63 (remaining gas: 1039872.944 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 64 (remaining gas: 1039871.919 units remaining) + - location: 64 (remaining gas: 1039872.934 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 65 (remaining gas: 1039871.854 units remaining) + - location: 65 (remaining gas: 1039872.899 units remaining) [ (Pair Unit Unit) ] - - location: 67 (remaining gas: 1039871.844 units remaining) + - location: 67 (remaining gas: 1039872.889 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 68 (remaining gas: 1039871.834 units remaining) + - location: 68 (remaining gas: 1039872.879 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 69 (remaining gas: 1039871.769 units remaining) + - location: 69 (remaining gas: 1039872.844 units remaining) [ (Pair Unit Unit) ] - - location: 71 (remaining gas: 1039871.759 units remaining) + - location: 71 (remaining gas: 1039872.834 units remaining) [ ] - - location: 72 (remaining gas: 1039871.749 units remaining) + - location: 72 (remaining gas: 1039872.824 units remaining) [ Unit ] - - location: 73 (remaining gas: 1039871.739 units remaining) + - location: 73 (remaining gas: 1039872.814 units remaining) [ Unit Unit ] - - location: 74 (remaining gas: 1039871.724 units remaining) + - location: 74 (remaining gas: 1039872.804 units remaining) [ (Pair Unit Unit) ] - - location: 75 (remaining gas: 1039871.714 units remaining) + - location: 75 (remaining gas: 1039872.794 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 76 (remaining gas: 1039871.704 units remaining) + - location: 76 (remaining gas: 1039872.784 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 77 (remaining gas: 1039871.639 units remaining) + - location: 77 (remaining gas: 1039872.749 units remaining) [ (Pair Unit Unit) ] - - location: 79 (remaining gas: 1039871.629 units remaining) + - location: 79 (remaining gas: 1039872.739 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 80 (remaining gas: 1039871.619 units remaining) + - location: 80 (remaining gas: 1039872.729 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 81 (remaining gas: 1039871.554 units remaining) + - location: 81 (remaining gas: 1039872.694 units remaining) [ (Pair Unit Unit) ] - - location: 83 (remaining gas: 1039871.544 units remaining) + - location: 83 (remaining gas: 1039872.684 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 84 (remaining gas: 1039871.534 units remaining) + - location: 84 (remaining gas: 1039872.674 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 85 (remaining gas: 1039871.469 units remaining) + - location: 85 (remaining gas: 1039872.639 units remaining) [ (Pair Unit Unit) ] - - location: 87 (remaining gas: 1039871.459 units remaining) + - location: 87 (remaining gas: 1039872.629 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 88 (remaining gas: 1039871.449 units remaining) + - location: 88 (remaining gas: 1039872.619 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 89 (remaining gas: 1039871.384 units remaining) + - location: 89 (remaining gas: 1039872.584 units remaining) [ (Pair Unit Unit) ] - - location: 91 (remaining gas: 1039871.374 units remaining) + - location: 91 (remaining gas: 1039872.574 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 92 (remaining gas: 1039871.364 units remaining) + - location: 92 (remaining gas: 1039872.564 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 93 (remaining gas: 1039871.299 units remaining) + - location: 93 (remaining gas: 1039872.529 units remaining) [ (Pair Unit Unit) ] - - location: 95 (remaining gas: 1039871.289 units remaining) + - location: 95 (remaining gas: 1039872.519 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 96 (remaining gas: 1039871.279 units remaining) + - location: 96 (remaining gas: 1039872.509 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 97 (remaining gas: 1039871.214 units remaining) + - location: 97 (remaining gas: 1039872.474 units remaining) [ (Pair Unit Unit) ] - - location: 99 (remaining gas: 1039871.204 units remaining) + - location: 99 (remaining gas: 1039872.464 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 100 (remaining gas: 1039871.194 units remaining) + - location: 100 (remaining gas: 1039872.454 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 101 (remaining gas: 1039871.129 units remaining) + - location: 101 (remaining gas: 1039872.419 units remaining) [ (Pair Unit Unit) ] - - location: 103 (remaining gas: 1039871.119 units remaining) + - location: 103 (remaining gas: 1039872.409 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 104 (remaining gas: 1039871.109 units remaining) + - location: 104 (remaining gas: 1039872.399 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 105 (remaining gas: 1039871.044 units remaining) + - location: 105 (remaining gas: 1039872.364 units remaining) [ (Pair Unit Unit) ] - - location: 107 (remaining gas: 1039871.034 units remaining) + - location: 107 (remaining gas: 1039872.354 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 108 (remaining gas: 1039871.024 units remaining) + - location: 108 (remaining gas: 1039872.344 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 109 (remaining gas: 1039870.959 units remaining) + - location: 109 (remaining gas: 1039872.309 units remaining) [ (Pair Unit Unit) ] - - location: 111 (remaining gas: 1039870.949 units remaining) + - location: 111 (remaining gas: 1039872.299 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 112 (remaining gas: 1039870.939 units remaining) + - location: 112 (remaining gas: 1039872.289 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 113 (remaining gas: 1039870.874 units remaining) + - location: 113 (remaining gas: 1039872.254 units remaining) [ (Pair Unit Unit) ] - - location: 115 (remaining gas: 1039870.864 units remaining) + - location: 115 (remaining gas: 1039872.244 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 116 (remaining gas: 1039870.854 units remaining) + - location: 116 (remaining gas: 1039872.234 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 117 (remaining gas: 1039870.789 units remaining) + - location: 117 (remaining gas: 1039872.199 units remaining) [ (Pair Unit Unit) ] - - location: 119 (remaining gas: 1039870.779 units remaining) + - location: 119 (remaining gas: 1039872.189 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 120 (remaining gas: 1039870.769 units remaining) + - location: 120 (remaining gas: 1039872.179 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 121 (remaining gas: 1039870.704 units remaining) + - location: 121 (remaining gas: 1039872.144 units remaining) [ (Pair Unit Unit) ] - - location: 123 (remaining gas: 1039870.694 units remaining) + - location: 123 (remaining gas: 1039872.134 units remaining) [ ] - - location: 124 (remaining gas: 1039870.684 units remaining) + - location: 124 (remaining gas: 1039872.124 units remaining) [ Unit ] - - location: 125 (remaining gas: 1039870.674 units remaining) + - location: 125 (remaining gas: 1039872.114 units remaining) [ Unit Unit ] - - location: 126 (remaining gas: 1039870.659 units remaining) + - location: 126 (remaining gas: 1039872.104 units remaining) [ (Pair Unit Unit) ] - - location: 127 (remaining gas: 1039870.649 units remaining) + - location: 127 (remaining gas: 1039872.094 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 128 (remaining gas: 1039870.639 units remaining) + - location: 128 (remaining gas: 1039872.084 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 129 (remaining gas: 1039870.574 units remaining) + - location: 129 (remaining gas: 1039872.049 units remaining) [ (Pair Unit Unit) ] - - location: 131 (remaining gas: 1039870.564 units remaining) + - location: 131 (remaining gas: 1039872.039 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 132 (remaining gas: 1039870.554 units remaining) + - location: 132 (remaining gas: 1039872.029 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 133 (remaining gas: 1039870.489 units remaining) + - location: 133 (remaining gas: 1039871.994 units remaining) [ (Pair Unit Unit) ] - - location: 135 (remaining gas: 1039870.479 units remaining) + - location: 135 (remaining gas: 1039871.984 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 136 (remaining gas: 1039870.469 units remaining) + - location: 136 (remaining gas: 1039871.974 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 137 (remaining gas: 1039870.404 units remaining) + - location: 137 (remaining gas: 1039871.939 units remaining) [ (Pair Unit Unit) ] - - location: 139 (remaining gas: 1039870.394 units remaining) + - location: 139 (remaining gas: 1039871.929 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 140 (remaining gas: 1039870.384 units remaining) + - location: 140 (remaining gas: 1039871.919 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 141 (remaining gas: 1039870.319 units remaining) + - location: 141 (remaining gas: 1039871.884 units remaining) [ (Pair Unit Unit) ] - - location: 143 (remaining gas: 1039870.309 units remaining) + - location: 143 (remaining gas: 1039871.874 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 144 (remaining gas: 1039870.299 units remaining) + - location: 144 (remaining gas: 1039871.864 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 145 (remaining gas: 1039870.234 units remaining) + - location: 145 (remaining gas: 1039871.829 units remaining) [ (Pair Unit Unit) ] - - location: 147 (remaining gas: 1039870.224 units remaining) + - location: 147 (remaining gas: 1039871.819 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 148 (remaining gas: 1039870.214 units remaining) + - location: 148 (remaining gas: 1039871.809 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 149 (remaining gas: 1039870.149 units remaining) + - location: 149 (remaining gas: 1039871.774 units remaining) [ (Pair Unit Unit) ] - - location: 151 (remaining gas: 1039870.139 units remaining) + - location: 151 (remaining gas: 1039871.764 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 152 (remaining gas: 1039870.129 units remaining) + - location: 152 (remaining gas: 1039871.754 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 153 (remaining gas: 1039870.064 units remaining) + - location: 153 (remaining gas: 1039871.719 units remaining) [ (Pair Unit Unit) ] - - location: 155 (remaining gas: 1039870.054 units remaining) + - location: 155 (remaining gas: 1039871.709 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 156 (remaining gas: 1039870.044 units remaining) + - location: 156 (remaining gas: 1039871.699 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 157 (remaining gas: 1039869.979 units remaining) + - location: 157 (remaining gas: 1039871.664 units remaining) [ (Pair Unit Unit) ] - - location: 159 (remaining gas: 1039869.969 units remaining) + - location: 159 (remaining gas: 1039871.654 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 160 (remaining gas: 1039869.959 units remaining) + - location: 160 (remaining gas: 1039871.644 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 161 (remaining gas: 1039869.894 units remaining) + - location: 161 (remaining gas: 1039871.609 units remaining) [ (Pair Unit Unit) ] - - location: 163 (remaining gas: 1039869.884 units remaining) + - location: 163 (remaining gas: 1039871.599 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 164 (remaining gas: 1039869.874 units remaining) + - location: 164 (remaining gas: 1039871.589 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 165 (remaining gas: 1039869.809 units remaining) + - location: 165 (remaining gas: 1039871.554 units remaining) [ (Pair Unit Unit) ] - - location: 167 (remaining gas: 1039869.799 units remaining) + - location: 167 (remaining gas: 1039871.544 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 168 (remaining gas: 1039869.789 units remaining) + - location: 168 (remaining gas: 1039871.534 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 169 (remaining gas: 1039869.724 units remaining) + - location: 169 (remaining gas: 1039871.499 units remaining) [ (Pair Unit Unit) ] - - location: 171 (remaining gas: 1039869.714 units remaining) + - location: 171 (remaining gas: 1039871.489 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 172 (remaining gas: 1039869.704 units remaining) + - location: 172 (remaining gas: 1039871.479 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 173 (remaining gas: 1039869.639 units remaining) + - location: 173 (remaining gas: 1039871.444 units remaining) [ (Pair Unit Unit) ] - - location: 175 (remaining gas: 1039869.629 units remaining) + - location: 175 (remaining gas: 1039871.434 units remaining) [ ] - - location: 176 (remaining gas: 1039869.619 units remaining) + - location: 176 (remaining gas: 1039871.424 units remaining) [ Unit ] - - location: 177 (remaining gas: 1039869.609 units remaining) + - location: 177 (remaining gas: 1039871.414 units remaining) [ Unit Unit ] - - location: 178 (remaining gas: 1039869.594 units remaining) + - location: 178 (remaining gas: 1039871.404 units remaining) [ (Pair Unit Unit) ] - - location: 179 (remaining gas: 1039869.584 units remaining) + - location: 179 (remaining gas: 1039871.394 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 180 (remaining gas: 1039869.574 units remaining) + - location: 180 (remaining gas: 1039871.384 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 181 (remaining gas: 1039869.509 units remaining) + - location: 181 (remaining gas: 1039871.349 units remaining) [ (Pair Unit Unit) ] - - location: 183 (remaining gas: 1039869.499 units remaining) + - location: 183 (remaining gas: 1039871.339 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 184 (remaining gas: 1039869.489 units remaining) + - location: 184 (remaining gas: 1039871.329 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 185 (remaining gas: 1039869.424 units remaining) + - location: 185 (remaining gas: 1039871.294 units remaining) [ (Pair Unit Unit) ] - - location: 187 (remaining gas: 1039869.414 units remaining) + - location: 187 (remaining gas: 1039871.284 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 188 (remaining gas: 1039869.404 units remaining) + - location: 188 (remaining gas: 1039871.274 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 189 (remaining gas: 1039869.339 units remaining) + - location: 189 (remaining gas: 1039871.239 units remaining) [ (Pair Unit Unit) ] - - location: 191 (remaining gas: 1039869.329 units remaining) + - location: 191 (remaining gas: 1039871.229 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 192 (remaining gas: 1039869.319 units remaining) + - location: 192 (remaining gas: 1039871.219 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 193 (remaining gas: 1039869.254 units remaining) + - location: 193 (remaining gas: 1039871.184 units remaining) [ (Pair Unit Unit) ] - - location: 195 (remaining gas: 1039869.244 units remaining) + - location: 195 (remaining gas: 1039871.174 units remaining) [ (Pair Unit Unit) (Pair Unit Unit) ] - - location: 196 (remaining gas: 1039869.234 units remaining) + - location: 196 (remaining gas: 1039871.164 units remaining) [ Unit Unit (Pair Unit Unit) ] - - location: 197 (remaining gas: 1039869.169 units remaining) + - location: 197 (remaining gas: 1039871.129 units remaining) [ (Pair Unit Unit) ] - - location: 199 (remaining gas: 1039869.159 units remaining) + - location: 199 (remaining gas: 1039871.119 units remaining) [ ] - - location: 200 (remaining gas: 1039869.149 units remaining) + - location: 200 (remaining gas: 1039871.109 units remaining) [ Unit ] - - location: 201 (remaining gas: 1039869.139 units remaining) + - location: 201 (remaining gas: 1039871.099 units remaining) [ Unit Unit ] - - location: 202 (remaining gas: 1039869.124 units remaining) + - location: 202 (remaining gas: 1039871.089 units remaining) [ (Pair Unit Unit) ] - - location: 203 (remaining gas: 1039869.114 units remaining) + - location: 203 (remaining gas: 1039871.079 units remaining) [ Unit Unit ] - - location: 204 (remaining gas: 1039869.049 units remaining) + - location: 204 (remaining gas: 1039871.044 units remaining) [ ] - - location: 206 (remaining gas: 1039869.039 units remaining) + - location: 206 (remaining gas: 1039871.034 units remaining) [ Unit ] - - location: 207 (remaining gas: 1039869.024 units remaining) + - location: 207 (remaining gas: 1039871.024 units remaining) [ {} Unit ] - - location: 209 (remaining gas: 1039869.009 units remaining) + - location: 209 (remaining gas: 1039871.014 units remaining) [ (Pair {} Unit) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" index aa3a4c4c7292..dd776850a598 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[voting_power.tz-(Pair 0 0)-\"edpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039666.288 units remaining) + - location: 9 (remaining gas: 1039667.248 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" 0 0) ] - - location: 9 (remaining gas: 1039666.278 units remaining) + - location: 9 (remaining gas: 1039667.238 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" ] - - location: 10 (remaining gas: 1039665.623 units remaining) + - location: 10 (remaining gas: 1039666.633 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 11 (remaining gas: 1039445.077 units remaining) + - location: 11 (remaining gas: 1039446.087 units remaining) [ 4000000000000 ] - - location: 12 (remaining gas: 1039445.062 units remaining) + - location: 12 (remaining gas: 1039446.077 units remaining) [ ] - - location: 14 (remaining gas: 1039234.676 units remaining) + - location: 14 (remaining gas: 1039235.691 units remaining) [ 20000000000000 ] - - location: 12 (remaining gas: 1039234.646 units remaining) + - location: 12 (remaining gas: 1039235.671 units remaining) [ 4000000000000 20000000000000 ] - - location: 15 (remaining gas: 1039234.631 units remaining) + - location: 15 (remaining gas: 1039235.661 units remaining) [ (Pair 4000000000000 20000000000000) ] - - location: 16 (remaining gas: 1039234.616 units remaining) + - location: 16 (remaining gas: 1039235.651 units remaining) [ {} (Pair 4000000000000 20000000000000) ] - - location: 18 (remaining gas: 1039234.601 units remaining) + - location: 18 (remaining gas: 1039235.641 units remaining) [ (Pair {} 4000000000000 20000000000000) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out index 29978c174089..1b4db2d3c86c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.879 units remaining) + - location: 16 (remaining gas: 1039988.479 units remaining) [ (Pair (Left (Pair False False)) None) ] - - location: 16 (remaining gas: 1039986.869 units remaining) + - location: 16 (remaining gas: 1039988.469 units remaining) [ (Left (Pair False False)) ] - - location: 17 (remaining gas: 1039986.859 units remaining) + - location: 17 (remaining gas: 1039988.459 units remaining) [ (Pair False False) ] - - location: 19 (remaining gas: 1039986.849 units remaining) + - location: 19 (remaining gas: 1039988.449 units remaining) [ False False ] - - location: 20 (remaining gas: 1039986.829 units remaining) + - location: 20 (remaining gas: 1039988.434 units remaining) [ False ] - - location: 21 (remaining gas: 1039986.814 units remaining) + - location: 21 (remaining gas: 1039988.424 units remaining) [ (Left False) ] - - location: 17 (remaining gas: 1039986.799 units remaining) + - location: 17 (remaining gas: 1039988.414 units remaining) [ (Left False) ] - - location: 28 (remaining gas: 1039986.784 units remaining) + - location: 28 (remaining gas: 1039988.404 units remaining) [ (Some (Left False)) ] - - location: 29 (remaining gas: 1039986.769 units remaining) + - location: 29 (remaining gas: 1039988.394 units remaining) [ {} (Some (Left False)) ] - - location: 31 (remaining gas: 1039986.754 units remaining) + - location: 31 (remaining gas: 1039988.384 units remaining) [ (Pair {} (Some (Left False))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out index 600868698be5..fb65502e0a2f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.879 units remaining) + - location: 16 (remaining gas: 1039988.479 units remaining) [ (Pair (Left (Pair False True)) None) ] - - location: 16 (remaining gas: 1039986.869 units remaining) + - location: 16 (remaining gas: 1039988.469 units remaining) [ (Left (Pair False True)) ] - - location: 17 (remaining gas: 1039986.859 units remaining) + - location: 17 (remaining gas: 1039988.459 units remaining) [ (Pair False True) ] - - location: 19 (remaining gas: 1039986.849 units remaining) + - location: 19 (remaining gas: 1039988.449 units remaining) [ False True ] - - location: 20 (remaining gas: 1039986.829 units remaining) + - location: 20 (remaining gas: 1039988.434 units remaining) [ True ] - - location: 21 (remaining gas: 1039986.814 units remaining) + - location: 21 (remaining gas: 1039988.424 units remaining) [ (Left True) ] - - location: 17 (remaining gas: 1039986.799 units remaining) + - location: 17 (remaining gas: 1039988.414 units remaining) [ (Left True) ] - - location: 28 (remaining gas: 1039986.784 units remaining) + - location: 28 (remaining gas: 1039988.404 units remaining) [ (Some (Left True)) ] - - location: 29 (remaining gas: 1039986.769 units remaining) + - location: 29 (remaining gas: 1039988.394 units remaining) [ {} (Some (Left True)) ] - - location: 31 (remaining gas: 1039986.754 units remaining) + - location: 31 (remaining gas: 1039988.384 units remaining) [ (Pair {} (Some (Left True))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out index b901f661416d..9ec679a52227 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.879 units remaining) + - location: 16 (remaining gas: 1039988.479 units remaining) [ (Pair (Left (Pair True False)) None) ] - - location: 16 (remaining gas: 1039986.869 units remaining) + - location: 16 (remaining gas: 1039988.469 units remaining) [ (Left (Pair True False)) ] - - location: 17 (remaining gas: 1039986.859 units remaining) + - location: 17 (remaining gas: 1039988.459 units remaining) [ (Pair True False) ] - - location: 19 (remaining gas: 1039986.849 units remaining) + - location: 19 (remaining gas: 1039988.449 units remaining) [ True False ] - - location: 20 (remaining gas: 1039986.829 units remaining) + - location: 20 (remaining gas: 1039988.434 units remaining) [ True ] - - location: 21 (remaining gas: 1039986.814 units remaining) + - location: 21 (remaining gas: 1039988.424 units remaining) [ (Left True) ] - - location: 17 (remaining gas: 1039986.799 units remaining) + - location: 17 (remaining gas: 1039988.414 units remaining) [ (Left True) ] - - location: 28 (remaining gas: 1039986.784 units remaining) + - location: 28 (remaining gas: 1039988.404 units remaining) [ (Some (Left True)) ] - - location: 29 (remaining gas: 1039986.769 units remaining) + - location: 29 (remaining gas: 1039988.394 units remaining) [ {} (Some (Left True)) ] - - location: 31 (remaining gas: 1039986.754 units remaining) + - location: 31 (remaining gas: 1039988.384 units remaining) [ (Pair {} (Some (Left True))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out index 4acddd90fd46..d4f5f81b04ef 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.879 units remaining) + - location: 16 (remaining gas: 1039988.479 units remaining) [ (Pair (Left (Pair True True)) None) ] - - location: 16 (remaining gas: 1039986.869 units remaining) + - location: 16 (remaining gas: 1039988.469 units remaining) [ (Left (Pair True True)) ] - - location: 17 (remaining gas: 1039986.859 units remaining) + - location: 17 (remaining gas: 1039988.459 units remaining) [ (Pair True True) ] - - location: 19 (remaining gas: 1039986.849 units remaining) + - location: 19 (remaining gas: 1039988.449 units remaining) [ True True ] - - location: 20 (remaining gas: 1039986.829 units remaining) + - location: 20 (remaining gas: 1039988.434 units remaining) [ False ] - - location: 21 (remaining gas: 1039986.814 units remaining) + - location: 21 (remaining gas: 1039988.424 units remaining) [ (Left False) ] - - location: 17 (remaining gas: 1039986.799 units remaining) + - location: 17 (remaining gas: 1039988.414 units remaining) [ (Left False) ] - - location: 28 (remaining gas: 1039986.784 units remaining) + - location: 28 (remaining gas: 1039988.404 units remaining) [ (Some (Left False)) ] - - location: 29 (remaining gas: 1039986.769 units remaining) + - location: 29 (remaining gas: 1039988.394 units remaining) [ {} (Some (Left False)) ] - - location: 31 (remaining gas: 1039986.754 units remaining) + - location: 31 (remaining gas: 1039988.384 units remaining) [ (Pair {} (Some (Left False))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out index ce3ea936ac7a..a3ccecc92d9f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.879 units remaining) + - location: 16 (remaining gas: 1039988.479 units remaining) [ (Pair (Right (Pair 0 0)) None) ] - - location: 16 (remaining gas: 1039986.869 units remaining) + - location: 16 (remaining gas: 1039988.469 units remaining) [ (Right (Pair 0 0)) ] - - location: 17 (remaining gas: 1039986.859 units remaining) + - location: 17 (remaining gas: 1039988.459 units remaining) [ (Pair 0 0) ] - - location: 24 (remaining gas: 1039986.849 units remaining) + - location: 24 (remaining gas: 1039988.449 units remaining) [ 0 0 ] - - location: 25 (remaining gas: 1039986.794 units remaining) + - location: 25 (remaining gas: 1039988.414 units remaining) [ 0 ] - - location: 26 (remaining gas: 1039986.779 units remaining) + - location: 26 (remaining gas: 1039988.404 units remaining) [ (Right 0) ] - - location: 17 (remaining gas: 1039986.764 units remaining) + - location: 17 (remaining gas: 1039988.394 units remaining) [ (Right 0) ] - - location: 28 (remaining gas: 1039986.749 units remaining) + - location: 28 (remaining gas: 1039988.384 units remaining) [ (Some (Right 0)) ] - - location: 29 (remaining gas: 1039986.734 units remaining) + - location: 29 (remaining gas: 1039988.374 units remaining) [ {} (Some (Right 0)) ] - - location: 31 (remaining gas: 1039986.719 units remaining) + - location: 31 (remaining gas: 1039988.364 units remaining) [ (Pair {} (Some (Right 0))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out index 1004a7a1bba3..53c99e0ab45b 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.879 units remaining) + - location: 16 (remaining gas: 1039988.479 units remaining) [ (Pair (Right (Pair 0 1)) None) ] - - location: 16 (remaining gas: 1039986.869 units remaining) + - location: 16 (remaining gas: 1039988.469 units remaining) [ (Right (Pair 0 1)) ] - - location: 17 (remaining gas: 1039986.859 units remaining) + - location: 17 (remaining gas: 1039988.459 units remaining) [ (Pair 0 1) ] - - location: 24 (remaining gas: 1039986.849 units remaining) + - location: 24 (remaining gas: 1039988.449 units remaining) [ 0 1 ] - - location: 25 (remaining gas: 1039986.794 units remaining) + - location: 25 (remaining gas: 1039988.414 units remaining) [ 1 ] - - location: 26 (remaining gas: 1039986.779 units remaining) + - location: 26 (remaining gas: 1039988.404 units remaining) [ (Right 1) ] - - location: 17 (remaining gas: 1039986.764 units remaining) + - location: 17 (remaining gas: 1039988.394 units remaining) [ (Right 1) ] - - location: 28 (remaining gas: 1039986.749 units remaining) + - location: 28 (remaining gas: 1039988.384 units remaining) [ (Some (Right 1)) ] - - location: 29 (remaining gas: 1039986.734 units remaining) + - location: 29 (remaining gas: 1039988.374 units remaining) [ {} (Some (Right 1)) ] - - location: 31 (remaining gas: 1039986.719 units remaining) + - location: 31 (remaining gas: 1039988.364 units remaining) [ (Pair {} (Some (Right 1))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out index aab41153d262..861722fa99ae 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.879 units remaining) + - location: 16 (remaining gas: 1039988.479 units remaining) [ (Pair (Right (Pair 1 0)) None) ] - - location: 16 (remaining gas: 1039986.869 units remaining) + - location: 16 (remaining gas: 1039988.469 units remaining) [ (Right (Pair 1 0)) ] - - location: 17 (remaining gas: 1039986.859 units remaining) + - location: 17 (remaining gas: 1039988.459 units remaining) [ (Pair 1 0) ] - - location: 24 (remaining gas: 1039986.849 units remaining) + - location: 24 (remaining gas: 1039988.449 units remaining) [ 1 0 ] - - location: 25 (remaining gas: 1039986.794 units remaining) + - location: 25 (remaining gas: 1039988.414 units remaining) [ 1 ] - - location: 26 (remaining gas: 1039986.779 units remaining) + - location: 26 (remaining gas: 1039988.404 units remaining) [ (Right 1) ] - - location: 17 (remaining gas: 1039986.764 units remaining) + - location: 17 (remaining gas: 1039988.394 units remaining) [ (Right 1) ] - - location: 28 (remaining gas: 1039986.749 units remaining) + - location: 28 (remaining gas: 1039988.384 units remaining) [ (Some (Right 1)) ] - - location: 29 (remaining gas: 1039986.734 units remaining) + - location: 29 (remaining gas: 1039988.374 units remaining) [ {} (Some (Right 1)) ] - - location: 31 (remaining gas: 1039986.719 units remaining) + - location: 31 (remaining gas: 1039988.364 units remaining) [ (Pair {} (Some (Right 1))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out index a1a1aa64c702..a9002c7fb280 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.879 units remaining) + - location: 16 (remaining gas: 1039988.479 units remaining) [ (Pair (Right (Pair 1 1)) None) ] - - location: 16 (remaining gas: 1039986.869 units remaining) + - location: 16 (remaining gas: 1039988.469 units remaining) [ (Right (Pair 1 1)) ] - - location: 17 (remaining gas: 1039986.859 units remaining) + - location: 17 (remaining gas: 1039988.459 units remaining) [ (Pair 1 1) ] - - location: 24 (remaining gas: 1039986.849 units remaining) + - location: 24 (remaining gas: 1039988.449 units remaining) [ 1 1 ] - - location: 25 (remaining gas: 1039986.794 units remaining) + - location: 25 (remaining gas: 1039988.414 units remaining) [ 0 ] - - location: 26 (remaining gas: 1039986.779 units remaining) + - location: 26 (remaining gas: 1039988.404 units remaining) [ (Right 0) ] - - location: 17 (remaining gas: 1039986.764 units remaining) + - location: 17 (remaining gas: 1039988.394 units remaining) [ (Right 0) ] - - location: 28 (remaining gas: 1039986.749 units remaining) + - location: 28 (remaining gas: 1039988.384 units remaining) [ (Some (Right 0)) ] - - location: 29 (remaining gas: 1039986.734 units remaining) + - location: 29 (remaining gas: 1039988.374 units remaining) [ {} (Some (Right 0)) ] - - location: 31 (remaining gas: 1039986.719 units remaining) + - location: 31 (remaining gas: 1039988.364 units remaining) [ (Pair {} (Some (Right 0))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out index 9fea08a8fc39..0c28491dd0f0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.879 units remaining) + - location: 16 (remaining gas: 1039988.479 units remaining) [ (Pair (Right (Pair 42 21)) None) ] - - location: 16 (remaining gas: 1039986.869 units remaining) + - location: 16 (remaining gas: 1039988.469 units remaining) [ (Right (Pair 42 21)) ] - - location: 17 (remaining gas: 1039986.859 units remaining) + - location: 17 (remaining gas: 1039988.459 units remaining) [ (Pair 42 21) ] - - location: 24 (remaining gas: 1039986.849 units remaining) + - location: 24 (remaining gas: 1039988.449 units remaining) [ 42 21 ] - - location: 25 (remaining gas: 1039986.794 units remaining) + - location: 25 (remaining gas: 1039988.414 units remaining) [ 63 ] - - location: 26 (remaining gas: 1039986.779 units remaining) + - location: 26 (remaining gas: 1039988.404 units remaining) [ (Right 63) ] - - location: 17 (remaining gas: 1039986.764 units remaining) + - location: 17 (remaining gas: 1039988.394 units remaining) [ (Right 63) ] - - location: 28 (remaining gas: 1039986.749 units remaining) + - location: 28 (remaining gas: 1039988.384 units remaining) [ (Some (Right 63)) ] - - location: 29 (remaining gas: 1039986.734 units remaining) + - location: 29 (remaining gas: 1039988.374 units remaining) [ {} (Some (Right 63)) ] - - location: 31 (remaining gas: 1039986.719 units remaining) + - location: 31 (remaining gas: 1039988.364 units remaining) [ (Pair {} (Some (Right 63))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out index dcd8ebdc0938..47e92ca34293 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.879 units remaining) + - location: 16 (remaining gas: 1039988.479 units remaining) [ (Pair (Right (Pair 42 63)) None) ] - - location: 16 (remaining gas: 1039986.869 units remaining) + - location: 16 (remaining gas: 1039988.469 units remaining) [ (Right (Pair 42 63)) ] - - location: 17 (remaining gas: 1039986.859 units remaining) + - location: 17 (remaining gas: 1039988.459 units remaining) [ (Pair 42 63) ] - - location: 24 (remaining gas: 1039986.849 units remaining) + - location: 24 (remaining gas: 1039988.449 units remaining) [ 42 63 ] - - location: 25 (remaining gas: 1039986.794 units remaining) + - location: 25 (remaining gas: 1039988.414 units remaining) [ 21 ] - - location: 26 (remaining gas: 1039986.779 units remaining) + - location: 26 (remaining gas: 1039988.404 units remaining) [ (Right 21) ] - - location: 17 (remaining gas: 1039986.764 units remaining) + - location: 17 (remaining gas: 1039988.394 units remaining) [ (Right 21) ] - - location: 28 (remaining gas: 1039986.749 units remaining) + - location: 28 (remaining gas: 1039988.384 units remaining) [ (Some (Right 21)) ] - - location: 29 (remaining gas: 1039986.734 units remaining) + - location: 29 (remaining gas: 1039988.374 units remaining) [ {} (Some (Right 21)) ] - - location: 31 (remaining gas: 1039986.719 units remaining) + - location: 31 (remaining gas: 1039988.364 units remaining) [ (Pair {} (Some (Right 21))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_hash_consistency_michelson_cli.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_hash_consistency_michelson_cli.out index f42ab066bc66..eb6a3b6d2a37 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_hash_consistency_michelson_cli.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_hash_consistency_michelson_cli.out @@ -6,7 +6,7 @@ Raw Script-expression-ID-Hash: 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089 Ledger Blake2b hash: B5B7PuGGVUrdHUW9Df8wPNJQRuUmx56aH1XVpvbUZvW7 Raw Sha256 hash: 0x538634a0f81b55f1c946c1207a25c262479566d20bd3d5cd2cdbb2940fc45774 Raw Sha512 hash: 0x49d5c19c2da4ee74f85225c95625a4b77b94724f4285b436b9d4be27d40491354bdc8e9d8a3d9b2857e5fb59b172605edd02fc4b61ce3cd3f84aa11ed1731ff6 -Gas remaining: 1039997.927 units remaining +Gas remaining: 1039997.197 units remaining storage 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc emitted operations diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_level.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_level.out index f505a3c29a84..b5659395ed3d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_level.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_level.out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.913 units remaining) + - location: 7 (remaining gas: 1039995.553 units remaining) [ (Pair Unit 9999999) ] - - location: 7 (remaining gas: 1039994.903 units remaining) + - location: 7 (remaining gas: 1039995.543 units remaining) [ ] - - location: 8 (remaining gas: 1039994.888 units remaining) + - location: 8 (remaining gas: 1039995.533 units remaining) [ 10 ] - - location: 9 (remaining gas: 1039994.873 units remaining) + - location: 9 (remaining gas: 1039995.523 units remaining) [ {} 10 ] - - location: 11 (remaining gas: 1039994.858 units remaining) + - location: 11 (remaining gas: 1039995.513 units remaining) [ (Pair {} 10) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_now.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_now.out index 92143a5a9cc1..bbfbf4054996 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_now.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_now.out @@ -7,15 +7,15 @@ emitted operations big_map diff trace - - location: 7 (remaining gas: 1039994.813 units remaining) + - location: 7 (remaining gas: 1039994.723 units remaining) [ (Pair Unit "2017-07-13T09:19:01Z") ] - - location: 7 (remaining gas: 1039994.803 units remaining) + - location: 7 (remaining gas: 1039994.713 units remaining) [ ] - - location: 8 (remaining gas: 1039994.788 units remaining) + - location: 8 (remaining gas: 1039994.703 units remaining) [ "2021-10-13T10:16:52Z" ] - - location: 9 (remaining gas: 1039994.773 units remaining) + - location: 9 (remaining gas: 1039994.693 units remaining) [ {} "2021-10-13T10:16:52Z" ] - - location: 11 (remaining gas: 1039994.758 units remaining) + - location: 11 (remaining gas: 1039994.683 units remaining) [ (Pair {} "2021-10-13T10:16:52Z") ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_packunpack.out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_packunpack.out index cac5b28548b2..0fc5b70c2b26 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_packunpack.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_packunpack.out @@ -7,53 +7,53 @@ emitted operations big_map diff trace - - location: 15 (remaining gas: 1039978.456 units remaining) + - location: 15 (remaining gas: 1039979.256 units remaining) [ (Pair (Pair (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003) Unit) ] - - location: 15 (remaining gas: 1039978.446 units remaining) + - location: 15 (remaining gas: 1039979.246 units remaining) [ (Pair (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003) ] - - location: 16 (remaining gas: 1039978.436 units remaining) + - location: 16 (remaining gas: 1039979.236 units remaining) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 17 (remaining gas: 1039978.421 units remaining) + - location: 17 (remaining gas: 1039979.226 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 19 (remaining gas: 1039978.411 units remaining) + - location: 19 (remaining gas: 1039979.216 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 17 (remaining gas: 1039978.381 units remaining) + - location: 17 (remaining gas: 1039979.196 units remaining) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 20 (remaining gas: 1039975.941 units remaining) + - location: 20 (remaining gas: 1039976.756 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 23 (remaining gas: 1039975.906 units remaining) + - location: 23 (remaining gas: 1039976.721 units remaining) [ 0 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 24 (remaining gas: 1039975.891 units remaining) + - location: 24 (remaining gas: 1039976.711 units remaining) [ True 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 25 (remaining gas: 1039975.881 units remaining) + - location: 25 (remaining gas: 1039976.701 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 25 (remaining gas: 1039975.866 units remaining) + - location: 25 (remaining gas: 1039976.691 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 31 (remaining gas: 1039973.128 units remaining) + - location: 31 (remaining gas: 1039973.953 units remaining) [ (Some (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 })) ] - - location: 40 (remaining gas: 1039973.118 units remaining) + - location: 40 (remaining gas: 1039973.943 units remaining) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) ] - - location: 40 (remaining gas: 1039973.103 units remaining) + - location: 40 (remaining gas: 1039973.933 units remaining) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) ] - - location: 46 (remaining gas: 1039973.093 units remaining) + - location: 46 (remaining gas: 1039973.923 units remaining) [ ] - - location: 47 (remaining gas: 1039973.083 units remaining) + - location: 47 (remaining gas: 1039973.913 units remaining) [ Unit ] - - location: 48 (remaining gas: 1039973.068 units remaining) + - location: 48 (remaining gas: 1039973.903 units remaining) [ {} Unit ] - - location: 50 (remaining gas: 1039973.053 units remaining) + - location: 50 (remaining gas: 1039973.893 units remaining) [ (Pair {} Unit) ] Runtime error in contract [CONTRACT_HASH]: @@ -68,38 +68,38 @@ At line 4 characters 14 to 26, script reached FAILWITH instruction with Unit trace - - location: 15 (remaining gas: 1039978.456 units remaining) + - location: 15 (remaining gas: 1039979.256 units remaining) [ (Pair (Pair (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004) Unit) ] - - location: 15 (remaining gas: 1039978.446 units remaining) + - location: 15 (remaining gas: 1039979.246 units remaining) [ (Pair (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004) ] - - location: 16 (remaining gas: 1039978.436 units remaining) + - location: 16 (remaining gas: 1039979.236 units remaining) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 17 (remaining gas: 1039978.421 units remaining) + - location: 17 (remaining gas: 1039979.226 units remaining) [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 19 (remaining gas: 1039978.411 units remaining) + - location: 19 (remaining gas: 1039979.216 units remaining) [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 17 (remaining gas: 1039978.381 units remaining) + - location: 17 (remaining gas: 1039979.196 units remaining) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 20 (remaining gas: 1039975.941 units remaining) + - location: 20 (remaining gas: 1039976.756 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 23 (remaining gas: 1039975.906 units remaining) + - location: 23 (remaining gas: 1039976.721 units remaining) [ -1 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 24 (remaining gas: 1039975.891 units remaining) + - location: 24 (remaining gas: 1039976.711 units remaining) [ False 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 25 (remaining gas: 1039975.881 units remaining) + - location: 25 (remaining gas: 1039976.701 units remaining) [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 29 (remaining gas: 1039975.871 units remaining) + - location: 29 (remaining gas: 1039976.691 units remaining) [ Unit 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] Fatal error: diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_add_liquidity.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_add_liquidity.out index 6c341efec4dd..072a18c520fb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_add_liquidity.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_add_liquidity.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_add_liquidity Node is bootstrapped. -Estimated gas: 9883.730 units (will add 100 for safety) +Estimated gas: 8526.831 units (will add 100 for safety) Estimated storage: 141 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.001354 + Fee to the baker: ꜩ0.001218 Expected counter: [EXPECTED_COUNTER] - Gas limit: 9984 + Gas limit: 8627 Storage limit: 161 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.001354 - payload fees(the block proposer) ....... +ꜩ0.001354 + [CONTRACT_HASH] ... -ꜩ0.001218 + payload fees(the block proposer) ....... +ꜩ0.001218 Transaction: Amount: ꜩ9001 From: [CONTRACT_HASH] @@ -34,7 +34,7 @@ This sequence of operations was run: 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4633 bytes Paid storage size diff: 3 bytes - Consumed gas: 5091.529 + Consumed gas: 3787.849 Balance updates: [CONTRACT_HASH] ... -ꜩ0.00075 storage fees ........................... +ꜩ0.00075 @@ -58,7 +58,7 @@ This sequence of operations was run: Set map(0)[0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600] to 721 Storage size: 2263 bytes Paid storage size diff: 68 bytes - Consumed gas: 3097.176 + Consumed gas: 3065.689 Balance updates: [CONTRACT_HASH] ... -ꜩ0.017 storage fees ........................... +ꜩ0.017 @@ -75,7 +75,7 @@ This sequence of operations was run: Set map(2)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 72007 Storage size: 2048 bytes Paid storage size diff: 70 bytes - Consumed gas: 1695.025 + Consumed gas: 1673.293 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0175 storage fees ........................... +ꜩ0.0175 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approval.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approval.out index 859d237f0339..e71a2041bf7f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approval.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approval.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_approval Node is bootstrapped. -Estimated gas: 2377.168 units (will add 100 for safety) +Estimated gas: 1683.146 units (will add 100 for safety) Estimated storage: 68 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000555 + Fee to the baker: ꜩ0.000486 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2478 + Gas limit: 1784 Storage limit: 88 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000555 - payload fees(the block proposer) ....... +ꜩ0.000555 + [CONTRACT_HASH] ... -ꜩ0.000486 + payload fees(the block proposer) ....... +ꜩ0.000486 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -33,7 +33,7 @@ This sequence of operations was run: 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c)] to 1000 Storage size: 2116 bytes Paid storage size diff: 68 bytes - Consumed gas: 2377.168 + Consumed gas: 1683.146 Balance updates: [CONTRACT_HASH] ... -ꜩ0.017 storage fees ........................... +ꜩ0.017 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approved_transfer.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approved_transfer.out index 43b37978175a..5a3a7887bba1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approved_transfer.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approved_transfer.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_approved_transfer Node is bootstrapped. -Estimated gas: 4368.320 units (will add 100 for safety) +Estimated gas: 3050.833 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000804 + Fee to the baker: ꜩ0.000673 Expected counter: [EXPECTED_COUNTER] - Gas limit: 4469 + Gas limit: 3151 Storage limit: 0 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000804 - payload fees(the block proposer) ....... +ꜩ0.000804 + [CONTRACT_HASH] ... -ꜩ0.000673 + payload fees(the block proposer) ....... +ꜩ0.000673 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -36,6 +36,6 @@ This sequence of operations was run: Set map(2)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 71007 Set map(2)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 1000 Storage size: 2116 bytes - Consumed gas: 4368.320 + Consumed gas: 3050.833 Injected block at minimal timestamp diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve1.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve1.out index aafc2045db43..953e360baef1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve1.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve1.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_call_approve1 Node is bootstrapped. -Estimated gas: 2377.244 units (will add 100 for safety) +Estimated gas: 1683.222 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000558 + Fee to the baker: ꜩ0.000489 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2478 + Gas limit: 1784 Storage limit: 91 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000558 - payload fees(the block proposer) ....... +ꜩ0.000558 + [CONTRACT_HASH] ... -ꜩ0.000489 + payload fees(the block proposer) ....... +ꜩ0.000489 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 Storage size: 2053 bytes Paid storage size diff: 71 bytes - Consumed gas: 2377.244 + Consumed gas: 1683.222 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve2.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve2.out index c697c412973e..8d00499bded6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve2.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve2.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_call_approve2 Node is bootstrapped. -Estimated gas: 2377.244 units (will add 100 for safety) +Estimated gas: 1683.222 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000558 + Fee to the baker: ꜩ0.000489 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2478 + Gas limit: 1784 Storage limit: 91 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000558 - payload fees(the block proposer) ....... +ꜩ0.000558 + [CONTRACT_HASH] ... -ꜩ0.000489 + payload fees(the block proposer) ....... +ꜩ0.000489 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 Storage size: 2124 bytes Paid storage size diff: 71 bytes - Consumed gas: 2377.244 + Consumed gas: 1683.222 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve3.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve3.out index 7cfa8f6be507..8444907b6ed1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve3.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve3.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_call_approve3 Node is bootstrapped. -Estimated gas: 2377.244 units (will add 100 for safety) +Estimated gas: 1683.222 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000558 + Fee to the baker: ꜩ0.000489 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2478 + Gas limit: 1784 Storage limit: 91 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000558 - payload fees(the block proposer) ....... +ꜩ0.000558 + [CONTRACT_HASH] ... -ꜩ0.000489 + payload fees(the block proposer) ....... +ꜩ0.000489 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 Storage size: 2195 bytes Paid storage size diff: 71 bytes - Consumed gas: 2377.244 + Consumed gas: 1683.222 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_mint_or_burn.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_mint_or_burn.out index 1fc2cd7e5b86..1f9629edfaac 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_mint_or_burn.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_mint_or_burn.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_call_mint_or_burn Node is bootstrapped. -Estimated gas: 4518.622 units (will add 100 for safety) +Estimated gas: 3188.500 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000774 + Fee to the baker: ꜩ0.000641 Expected counter: [EXPECTED_COUNTER] - Gas limit: 4619 + Gas limit: 3289 Storage limit: 91 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000774 - payload fees(the block proposer) ....... +ꜩ0.000774 + [CONTRACT_HASH] ... -ꜩ0.000641 + payload fees(the block proposer) ....... +ꜩ0.000641 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -32,7 +32,7 @@ This sequence of operations was run: Set map(0)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 100000000 Storage size: 1982 bytes Paid storage size diff: 71 bytes - Consumed gas: 4519.306 + Consumed gas: 3189.184 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_remove_liquidity.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_remove_liquidity.out index 60f287e1ce24..eb871abe59cb 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_remove_liquidity.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_remove_liquidity.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_remove_liquidity Node is bootstrapped. -Estimated gas: 8595.186 units (will add 100 for safety) +Estimated gas: 7972.902 units (will add 100 for safety) Estimated storage: 67 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.001222 + Fee to the baker: ꜩ0.00116 Expected counter: [EXPECTED_COUNTER] - Gas limit: 8696 + Gas limit: 8073 Storage limit: 87 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.001222 - payload fees(the block proposer) ....... +ꜩ0.001222 + [CONTRACT_HASH] ... -ꜩ0.00116 + payload fees(the block proposer) ....... +ꜩ0.00116 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01e927f00ef734dfc85919635e9afc9166c83ef9fc00 ; 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4633 bytes - Consumed gas: 2920.156 + Consumed gas: 2281.561 Internal operations: Transaction: Amount: ꜩ0 @@ -47,7 +47,7 @@ This sequence of operations was run: Updated big_maps: Unset map(2)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] Storage size: 2048 bytes - Consumed gas: 1875.099 + Consumed gas: 1873.367 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -63,7 +63,7 @@ This sequence of operations was run: Set map(0)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 10 Storage size: 2330 bytes Paid storage size diff: 67 bytes - Consumed gas: 2379.931 + Consumed gas: 2367.974 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01675 storage fees ........................... +ꜩ0.01675 @@ -72,7 +72,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] To: [CONTRACT_HASH] This transaction was successfully applied - Consumed gas: 1420 + Consumed gas: 1450 Balance updates: [CONTRACT_HASH] ... -ꜩ125.105747 [CONTRACT_HASH] ... +ꜩ125.105747 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_add_liquidity.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_add_liquidity.out index bf6e975dd8e5..11f376e47a68 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_add_liquidity.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_add_liquidity.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_add_liquidity Node is bootstrapped. -Estimated gas: 9883.730 units (will add 100 for safety) +Estimated gas: 8526.831 units (will add 100 for safety) Estimated storage: 141 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.001354 + Fee to the baker: ꜩ0.001218 Expected counter: [EXPECTED_COUNTER] - Gas limit: 9984 + Gas limit: 8627 Storage limit: 161 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.001354 - payload fees(the block proposer) ....... +ꜩ0.001354 + [CONTRACT_HASH] ... -ꜩ0.001218 + payload fees(the block proposer) ....... +ꜩ0.001218 Transaction: Amount: ꜩ9001 From: [CONTRACT_HASH] @@ -34,7 +34,7 @@ This sequence of operations was run: 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4633 bytes Paid storage size diff: 3 bytes - Consumed gas: 5091.529 + Consumed gas: 3787.849 Balance updates: [CONTRACT_HASH] ... -ꜩ0.00075 storage fees ........................... +ꜩ0.00075 @@ -58,7 +58,7 @@ This sequence of operations was run: Set map(0)[0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600] to 721 Storage size: 2263 bytes Paid storage size diff: 68 bytes - Consumed gas: 3097.176 + Consumed gas: 3065.689 Balance updates: [CONTRACT_HASH] ... -ꜩ0.017 storage fees ........................... +ꜩ0.017 @@ -75,7 +75,7 @@ This sequence of operations was run: Set map(2)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 72007 Storage size: 2048 bytes Paid storage size diff: 70 bytes - Consumed gas: 1695.025 + Consumed gas: 1673.293 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0175 storage fees ........................... +ꜩ0.0175 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_buy_tok.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_buy_tok.out index 8b0d852194af..4072b33b4984 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_buy_tok.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_buy_tok.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_buy_tok Node is bootstrapped. -Estimated gas: 6207.028 units (will add 100 for safety) +Estimated gas: 5568.103 units (will add 100 for safety) Estimated storage: 326 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000978 + Fee to the baker: ꜩ0.000914 Expected counter: [EXPECTED_COUNTER] - Gas limit: 6308 + Gas limit: 5669 Storage limit: 346 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000978 - payload fees(the block proposer) ....... +ꜩ0.000978 + [CONTRACT_HASH] ... -ꜩ0.000914 + payload fees(the block proposer) ....... +ꜩ0.000914 Transaction: Amount: ꜩ9001 From: [CONTRACT_HASH] @@ -34,7 +34,7 @@ This sequence of operations was run: 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4634 bytes Paid storage size diff: 1 bytes - Consumed gas: 2407.093 + Consumed gas: 1750.125 Balance updates: [CONTRACT_HASH] ... -ꜩ0.00025 storage fees ........................... +ꜩ0.00025 @@ -56,7 +56,7 @@ This sequence of operations was run: Set map(0)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 360 Storage size: 2331 bytes Paid storage size diff: 68 bytes - Consumed gas: 2379.935 + Consumed gas: 2367.978 Balance updates: [CONTRACT_HASH] ... -ꜩ0.017 storage fees ........................... +ꜩ0.017 @@ -65,7 +65,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] To: [CONTRACT_HASH] This transaction was successfully applied - Consumed gas: 1420 + Consumed gas: 1450 Balance updates: [CONTRACT_HASH] ... -ꜩ9.001 [CONTRACT_HASH] ... +ꜩ9.001 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve1.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve1.out index 5aeb323a1116..82625aed70d1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve1.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve1.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_call_approve1 Node is bootstrapped. -Estimated gas: 2377.244 units (will add 100 for safety) +Estimated gas: 1683.222 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000558 + Fee to the baker: ꜩ0.000489 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2478 + Gas limit: 1784 Storage limit: 91 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000558 - payload fees(the block proposer) ....... +ꜩ0.000558 + [CONTRACT_HASH] ... -ꜩ0.000489 + payload fees(the block proposer) ....... +ꜩ0.000489 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 Storage size: 2053 bytes Paid storage size diff: 71 bytes - Consumed gas: 2377.244 + Consumed gas: 1683.222 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve2.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve2.out index d63593dabe5a..4f9f0399a960 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve2.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve2.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_call_approve2 Node is bootstrapped. -Estimated gas: 2377.244 units (will add 100 for safety) +Estimated gas: 1683.222 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000558 + Fee to the baker: ꜩ0.000489 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2478 + Gas limit: 1784 Storage limit: 91 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000558 - payload fees(the block proposer) ....... +ꜩ0.000558 + [CONTRACT_HASH] ... -ꜩ0.000489 + payload fees(the block proposer) ....... +ꜩ0.000489 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 Storage size: 2124 bytes Paid storage size diff: 71 bytes - Consumed gas: 2377.244 + Consumed gas: 1683.222 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve3.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve3.out index 6e34c7523d69..88196ec7f548 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve3.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve3.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_call_approve3 Node is bootstrapped. -Estimated gas: 2377.244 units (will add 100 for safety) +Estimated gas: 1683.222 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000558 + Fee to the baker: ꜩ0.000489 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2478 + Gas limit: 1784 Storage limit: 91 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000558 - payload fees(the block proposer) ....... +ꜩ0.000558 + [CONTRACT_HASH] ... -ꜩ0.000489 + payload fees(the block proposer) ....... +ꜩ0.000489 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 Storage size: 2195 bytes Paid storage size diff: 71 bytes - Consumed gas: 2377.244 + Consumed gas: 1683.222 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_mint_or_burn.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_mint_or_burn.out index e8c3e919cd29..354adbe591d4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_mint_or_burn.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_mint_or_burn.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_call_mint_or_burn Node is bootstrapped. -Estimated gas: 4518.622 units (will add 100 for safety) +Estimated gas: 3188.500 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000774 + Fee to the baker: ꜩ0.000641 Expected counter: [EXPECTED_COUNTER] - Gas limit: 4619 + Gas limit: 3289 Storage limit: 91 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000774 - payload fees(the block proposer) ....... +ꜩ0.000774 + [CONTRACT_HASH] ... -ꜩ0.000641 + payload fees(the block proposer) ....... +ꜩ0.000641 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -32,7 +32,7 @@ This sequence of operations was run: Set map(0)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 100000000 Storage size: 1982 bytes Paid storage size diff: 71 bytes - Consumed gas: 4519.306 + Consumed gas: 3189.184 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_sell_tok.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_sell_tok.out index 26eb53804916..e4463c8b023c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_sell_tok.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_sell_tok.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_sell_tok Node is bootstrapped. -Estimated gas: 8525.424 units (will add 100 for safety) +Estimated gas: 7916.814 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.001208 + Fee to the baker: ꜩ0.001147 Expected counter: [EXPECTED_COUNTER] - Gas limit: 8626 + Gas limit: 8017 Storage limit: 0 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.001208 - payload fees(the block proposer) ....... +ꜩ0.001208 + [CONTRACT_HASH] ... -ꜩ0.001147 + payload fees(the block proposer) ....... +ꜩ0.001147 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01e927f00ef734dfc85919635e9afc9166c83ef9fc00 ; 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4633 bytes - Consumed gas: 2408.212 + Consumed gas: 1751.089 Internal operations: Transaction: Amount: ꜩ0 @@ -51,13 +51,13 @@ This sequence of operations was run: Unset map(0)[0x0000dac9f52543da1aed0bc1d6b46bf7c10db7014cd6] Set map(0)[0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600] to 461 Storage size: 2331 bytes - Consumed gas: 3277.212 + Consumed gas: 3265.725 Transaction: Amount: ꜩ3891.966034 From: [CONTRACT_HASH] To: [CONTRACT_HASH] This transaction was successfully applied - Consumed gas: 1420 + Consumed gas: 1450 Balance updates: [CONTRACT_HASH] ... -ꜩ3891.966034 [CONTRACT_HASH] ... +ꜩ3891.966034 @@ -66,7 +66,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] To: [CONTRACT_HASH] This transaction was successfully applied - Consumed gas: 1420 + Consumed gas: 1450 Balance updates: [CONTRACT_HASH] ... -ꜩ3.895862 [CONTRACT_HASH] ... +ꜩ3.895862 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_transfer.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_transfer.out index 18a5cec83b7e..76fe5b38eb7e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_transfer.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_transfer.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_transfer Node is bootstrapped. -Estimated gas: 3681.235 units (will add 100 for safety) +Estimated gas: 2383.278 units (will add 100 for safety) Estimated storage: 68 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.000736 + Fee to the baker: ꜩ0.000606 Expected counter: [EXPECTED_COUNTER] - Gas limit: 3782 + Gas limit: 2484 Storage limit: 88 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000736 - payload fees(the block proposer) ....... +ꜩ0.000736 + [CONTRACT_HASH] ... -ꜩ0.000606 + payload fees(the block proposer) ....... +ꜩ0.000606 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -35,7 +35,7 @@ This sequence of operations was run: Set map(0)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 260 Storage size: 2399 bytes Paid storage size diff: 68 bytes - Consumed gas: 3681.235 + Consumed gas: 2383.278 Balance updates: [CONTRACT_HASH] ... -ꜩ0.017 storage fees ........................... +ꜩ0.017 diff --git a/tests_python/tests_alpha/test_contract.py b/tests_python/tests_alpha/test_contract.py index 15d011faf98a..a004f160c78d 100644 --- a/tests_python/tests_alpha/test_contract.py +++ b/tests_python/tests_alpha/test_contract.py @@ -156,7 +156,7 @@ class TestManager: utils.bake(client, bake_for='bootstrap5') new_balance = client.get_mutez_balance('manager') new_balance_bootstrap = client.get_mutez_balance('bootstrap2') - fee = 0.000585 + fee = 0.000587 fee_mutez = utils.mutez_of_tez(fee) assert balance - amount_mutez == new_balance assert ( @@ -180,7 +180,7 @@ class TestManager: new_balance = client.get_mutez_balance('manager') new_balance_dest = client.get_mutez_balance('manager2') new_balance_bootstrap = client.get_mutez_balance('bootstrap2') - fee = 0.000787 + fee = 0.000731 fee_mutez = utils.mutez_of_tez(fee) assert balance - amount_mutez == new_balance assert balance_dest + amount_mutez == new_balance_dest diff --git a/tests_python/tests_alpha/test_multiple_transfers.py b/tests_python/tests_alpha/test_multiple_transfers.py index cf2309464f54..39c1fad2b2e6 100644 --- a/tests_python/tests_alpha/test_multiple_transfers.py +++ b/tests_python/tests_alpha/test_multiple_transfers.py @@ -119,8 +119,8 @@ class TestMultipleTransfers: new_balance_bootstrap3 = client.get_mutez_balance('bootstrap3') if payer == source: - fee_first_transfer = 394 - fee_second_transfer = 298 + fee_first_transfer = 397 + fee_second_transfer = 301 source_fee_mutez = fee_first_transfer + fee_second_transfer else: source_fee_mutez = 0 diff --git a/tezt/_regressions/hash_data/good.out b/tezt/_regressions/hash_data/good.out index 3b3bfe101d8a..60893658e344 100644 --- a/tezt/_regressions/hash_data/good.out +++ b/tezt/_regressions/hash_data/good.out @@ -160,7 +160,7 @@ Raw Script-expression-ID-Hash: 0x698c356a1846c517db5b16f7a8ff507c3eb4aaa46c316a6 Ledger Blake2b hash: 871oxBK1GsehvbFAwL4bBF4w22oBKfxom746gk7wnr8d Raw Sha256 hash: 0xa5f6f6520cfa43309e72f6745efcbebc1edd1486ab219421e349c8000ddfe485 Raw Sha512 hash: 0x4618bdd8850b8707c52bbf7f64526f8d83e59ccb3f2f1067ca33b5c470c709be21dc9242db15d5428af7b13dfb77353ab39d9367e2a6a12986e95aaf2d4285a7 -Gas remaining: 1039338.887 units remaining +Gas remaining: 1039992.117 units remaining ./tezos-client --mode mockup hash data '"[CONTRACT_HASH]%entrypoint"' of type address Raw packed data: 0x050a00000020011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600656e747279706f696e74 @@ -169,7 +169,7 @@ Raw Script-expression-ID-Hash: 0x31241f23ec93014cd7b7cfe1e0a21517bfd0f08b38e348d Ledger Blake2b hash: 4JpvZAMQiWdgASBEyfLJB45oCrsFocB5ApSNa99DbRPZ Raw Sha256 hash: 0xf1c661a1663f788977e3508c6fe3c85346a34101d76b1d47783839ed2d756303 Raw Sha512 hash: 0x781bd064edc01ff80b436682932dd2f0550a6dbf26be32ac434c6386235f4b4c5bb4610b9fad23374d606dcf853a7e16fcce4e3c20fd796e116adb587cdddcbd -Gas remaining: 1039338.556 units remaining +Gas remaining: 1039991.786 units remaining ./tezos-client --mode mockup hash data '"[PUBLIC_KEY_HASH]"' of type address Raw packed data: 0x050a00000016000002298c03ed7d454a101eb7022bc95f7e5f41ac78 @@ -178,7 +178,7 @@ Raw Script-expression-ID-Hash: 0x644beb3894b35023de5b76a4c054a32eb7a818b2a83a1b0 Ledger Blake2b hash: 7kWuwaa65KxeAcBTC9U9TvSn4d7eo4hzmTReXrFU6QA1 Raw Sha256 hash: 0x690cf3688186dafd5f78765b514f62ebf98804ed4732d3e9504d1e5d10f62c64 Raw Sha512 hash: 0x9fe6e4a006013a541dde89aeef0db58a39c1b6d06f12554c8d01dc67dff183602d4e5d4a04ac37088d8e7e7836d08f044b279bc70a752b3ad3f1ed0131a9ea03 -Gas remaining: 1039338.887 units remaining +Gas remaining: 1039992.117 units remaining ./tezos-client --mode mockup hash data '"[PUBLIC_KEY_HASH]"' of type address Raw packed data: 0x050a000000160001e5c6d1f726796e98b2bad2a819a36f742b2fe25b @@ -187,7 +187,7 @@ Raw Script-expression-ID-Hash: 0x102dff270630ac032e24ae0a62b478930f56f4f5a27c9c3 Ledger Blake2b hash: 26ACmTEYpcjnxbUcXQZxYQgWbig1zpHXpmjKecLqMJEH Raw Sha256 hash: 0xc7016dde1b3b0a15dbfc476de05480386d8781f996769b0113bcf8d3a0f73502 Raw Sha512 hash: 0x8446a69748c9e209bbd9e2d7ec652b3edd1516905b2ef11008993c27d239a237b3372c26854b8a1d393aa504478de76560a9fdd96fef24faff8483851814c6c7 -Gas remaining: 1039338.887 units remaining +Gas remaining: 1039992.117 units remaining ./tezos-client --mode mockup hash data '"[PUBLIC_KEY_HASH]"' of type address Raw packed data: 0x050a0000001600026c9b3ad59e0f8bdc2bd2011675825f9f547131da @@ -196,7 +196,7 @@ Raw Script-expression-ID-Hash: 0x85e36142a913e3c8d6fb5a77aaad753b01ebe40096bf460 Ledger Blake2b hash: A1eKYfrX11WNdtxr3QeEzEpY95epaJtJhmeTQEhw3BTg Raw Sha256 hash: 0x1520063584bffabc0cc4d64d1d9f35c205ee403789653fef4465fad7da23a484 Raw Sha512 hash: 0xe8fa1be3ab9fc177a731fdea29e3242831ccea70db15fa5f0dd8f592794261c9e49b51311e0b5387a81472c77edd87cba3afa6207e36ef0bce7f30b0c03bacb0 -Gas remaining: 1039338.887 units remaining +Gas remaining: 1039992.117 units remaining ./tezos-client --mode mockup hash data 0 of type bls12_381_fr Raw packed data: 0x050a000000200000000000000000000000000000000000000000000000000000000000000000 @@ -205,7 +205,7 @@ Raw Script-expression-ID-Hash: 0xe68feee8b6ba14292b006b585748c4bd4757955f04320ef Ledger Blake2b hash: GX24pFg5TqeFyCjH3dpXHP3tWZs8ZMm4MVo61DQnXRzo Raw Sha256 hash: 0xc928f798bdcab5fc59c9c06f348c2b1dd1d846ef8d2694ff3359a7fa98e5aaf1 Raw Sha512 hash: 0x56d50c63bacfbac2102091e99071b824150d2c61cbfba9b65a9bad467f1e364a3e1286b0c5de1e7084c7dd3d27a29c19ecbac42d4f5d7797c003b75063f688b4 -Gas remaining: 1039998.226 units remaining +Gas remaining: 1039998.256 units remaining ./tezos-client --mode mockup hash data 1 of type bls12_381_fr Raw packed data: 0x050a000000200100000000000000000000000000000000000000000000000000000000000000 @@ -214,7 +214,7 @@ Raw Script-expression-ID-Hash: 0x152ad70bf1a27b6885d3085953411591cbeccd289c0c9fa Ledger Blake2b hash: 2RdT5REqvvzsKNsc2wkGeVcve9j8srXqAqbz6ZPECHi3 Raw Sha256 hash: 0x251c21e3c764b0993d4e49a7939ebc0192c9af7f6fbb5073f1035ea17a2cbe22 Raw Sha512 hash: 0x31a063e0701b89ff1a19364d44c39c7ba28fbeb20b95e5a12be432fcc419666fcf030ed6349e3bca6f7446989b5cb9fb3b4425c4eff01ca1993efca695db199b -Gas remaining: 1039998.226 units remaining +Gas remaining: 1039998.256 units remaining ./tezos-client --mode mockup hash data 0x01 of type bls12_381_fr Raw packed data: 0x050a000000200100000000000000000000000000000000000000000000000000000000000000 @@ -223,7 +223,7 @@ Raw Script-expression-ID-Hash: 0x152ad70bf1a27b6885d3085953411591cbeccd289c0c9fa Ledger Blake2b hash: 2RdT5REqvvzsKNsc2wkGeVcve9j8srXqAqbz6ZPECHi3 Raw Sha256 hash: 0x251c21e3c764b0993d4e49a7939ebc0192c9af7f6fbb5073f1035ea17a2cbe22 Raw Sha512 hash: 0x31a063e0701b89ff1a19364d44c39c7ba28fbeb20b95e5a12be432fcc419666fcf030ed6349e3bca6f7446989b5cb9fb3b4425c4eff01ca1993efca695db199b -Gas remaining: 1039998.226 units remaining +Gas remaining: 1039998.256 units remaining ./tezos-client --mode mockup hash data 0x0001 of type bls12_381_fr Raw packed data: 0x050a000000200001000000000000000000000000000000000000000000000000000000000000 @@ -232,7 +232,7 @@ Raw Script-expression-ID-Hash: 0x1b460a4d53d8b7029da22adfcaa257555be45259e348069 Ledger Blake2b hash: 2qTxCogJudjrxMBHHvtNsurx1dc1P9Gx1JPUbBaJXDre Raw Sha256 hash: 0xe7038c6478963c7e52c61c9590b774280cfacf0547adc4943a26a608bdb0f277 Raw Sha512 hash: 0x70e7340161a29e3dc08258b154fc797e2ea407ed35dcaf7782e0ad693906c75d15fd68887f2b03375f5c869c9912c390d020b47aee1ca6d20c5ac714c45b678e -Gas remaining: 1039998.226 units remaining +Gas remaining: 1039998.256 units remaining ./tezos-client --mode mockup hash data 0x0572cbea904d67468808c8eb50a9450c9721db309128012543902d0ac358a62ae28f75bb8f1c7c42c39a8c5529bf0f4e166a9d8cabc673a322fda673779d8e3822ba3ecb8670e461f73bb9021d5fd76a4c56d9d4cd16bd1bba86881979749d28 of type bls12_381_g1 Raw packed data: 0x050a000000600572cbea904d67468808c8eb50a9450c9721db309128012543902d0ac358a62ae28f75bb8f1c7c42c39a8c5529bf0f4e166a9d8cabc673a322fda673779d8e3822ba3ecb8670e461f73bb9021d5fd76a4c56d9d4cd16bd1bba86881979749d28 @@ -241,7 +241,7 @@ Raw Script-expression-ID-Hash: 0xab8f542bd84f792908f266964e5329c1532fd6e932de8c3 Ledger Blake2b hash: CYhUfj7xreN4aQ1vV8YWApwu8o1Yuhuv9JrHKdFivGuN Raw Sha256 hash: 0xeb0effa0878f7c1dfba8a579b282f45ae24715eebc01929bad29dcd9ab44d4da Raw Sha512 hash: 0x918f9b3b2b615817b4108beca643225a11796825fb00a9126c950f59afbf95364b11ac468150e6fd458b01d1ad3d77ccb0c08a2849e9262e66058014c41cd487 -Gas remaining: 1039927.840 units remaining +Gas remaining: 1039938.540 units remaining ./tezos-client --mode mockup hash data 0x0a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899 of type bls12_381_g2 Raw packed data: 0x050a000000c00a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899 @@ -250,7 +250,7 @@ Raw Script-expression-ID-Hash: 0xc0d91f9ad81185f09853efcfc5951eca5c19f9b983808d8 Ledger Blake2b hash: DyoJaUpE63MSnYEmW1pBQCK4DjLCURe2My2snWkmyC9S Raw Sha256 hash: 0xa160577bd9510066d5aa8043d4ce365f03a4f5057516d951c380a521c04fddd8 Raw Sha512 hash: 0xb0ce4a3348adff71470fc470d700b28fd991a91d4013cc6d89bd34a2f1c05f9d0be5cfe64f6b5d79fdbc27eb3e84be520e4e2d864d6b6649722b22061bbfbd7b -Gas remaining: 1039915.966 units remaining +Gas remaining: 1039920.266 units remaining ./tezos-client --mode mockup hash data 0x of type bytes Raw packed data: 0x050a00000000 @@ -331,7 +331,7 @@ Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047 Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039998.839 units remaining +Gas remaining: 1039998.999 units remaining ./tezos-client --mode mockup hash data '{ PUSH nat 1; ADD }' of type 'lambda nat nat' Raw packed data: 0x0502000000080743036200010312 @@ -340,7 +340,7 @@ Raw Script-expression-ID-Hash: 0x42a0dcc26c782dcc094ba725e4bcc4f8710c72203a895b5 Ledger Blake2b hash: 5V6BBTaoBmSdwu8pv5xNMNBwm1mQGdPJ8e8N3s22Gcwp Raw Sha256 hash: 0x113616e40fd9fcf4cb73a9cf9c57fc0ab1853fa4432b9ca975b472d0173bc007 Raw Sha512 hash: 0x2256250f59e3c1c708eae9aa4d6f7d2dafdf82cb12b872db8320048c0dab3e225e96e846e284382fcfc832b83f0bf3ee3945fc6936357b2c29d96f29ba90315a -Gas remaining: 1039997.116 units remaining +Gas remaining: 1039997.276 units remaining ./tezos-client --mode mockup hash data '{}' of type 'list unit' Raw packed data: 0x050200000000 @@ -574,7 +574,7 @@ Raw Script-expression-ID-Hash: 0x73bb27e87ad251d54484fc93a59fac977e3e1af83dfaaa3 Ledger Blake2b hash: 8nmQbgYU3gU2uTXAoJ77miKgQicBLCYYWtnoLzvF5k7Q Raw Sha256 hash: 0x883ec8d70eeb0beb91bb34dbb5a9a49ffdbe79fd99d8a5fe2b5b508381597bce Raw Sha512 hash: 0x2b7e8c38c164c6fd93d454fc2ac07122c45616cc616e2789bfb77cc023ef005cf97c8fb8e7c38565d52d0a5fd941a5be0e26e0fd323261069445b89f7ba6086a -Gas remaining: 1039999.381 units remaining +Gas remaining: 1039998.651 units remaining ./tezos-client --mode mockup hash data 1571659294 of type timestamp Raw packed data: 0x05009ef8ecda0b diff --git a/tezt/_regressions/run_views.out b/tezt/_regressions/run_views.out index 79fa8a0efa00..e5a184579103 100644 --- a/tezt/_regressions/run_views.out +++ b/tezt/_regressions/run_views.out @@ -14,20 +14,20 @@ view "calls_count" unit nat { CDR ; SIZE }; view "last_caller" unit (option address) { CDR ; IF_CONS { DIP { DROP } ; SOME } { NONE address } }; ' --init '{}' --burn-cap 1 Node is bootstrapped. -Estimated gas: 1428.389 units (will add 100 for safety) +Estimated gas: 1426.629 units (will add 100 for safety) Estimated storage: 409 bytes added (will add 20 for safety) Operation successfully injected in the node. -Operation hash is 'opMEqaWvCQxSydDPwdqpsCwjnCmgiLhpouq5LovBLGCvMVpgCpk' +Operation hash is 'oow4SAcGS9xTtTqPKayDoSUrkfkNQRoPKE1pN1JuviFG2YrF6GY' NOT waiting for the operation to be included. Use command - tezos-client wait for opMEqaWvCQxSydDPwdqpsCwjnCmgiLhpouq5LovBLGCvMVpgCpk to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU + tezos-client wait for oow4SAcGS9xTtTqPKayDoSUrkfkNQRoPKE1pN1JuviFG2YrF6GY to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx Fee to the baker: ꜩ0.000532 Expected counter: 1 - Gas limit: 1529 + Gas limit: 1527 Storage limit: 429 bytes Balance updates: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.000532 @@ -48,17 +48,17 @@ This sequence of operations was run: No delegate for this contract This origination was successfully applied Originated contracts: - KT1TLT2cXZCtenEAXzkndiAQGJXWenkwThRv + KT1LfQjDNgPpdwMHbhzyQcD8GTE2L4rwxxpN Storage size: 152 bytes Paid storage size diff: 152 bytes - Consumed gas: 1428.389 + Consumed gas: 1426.629 Balance updates: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.038 storage fees ........................... +ꜩ0.038 tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.06425 storage fees ........................... +ꜩ0.06425 -New contract KT1TLT2cXZCtenEAXzkndiAQGJXWenkwThRv originated. +New contract KT1LfQjDNgPpdwMHbhzyQcD8GTE2L4rwxxpN originated. Contract memorized as register_calls. ./tezos-client --mode mockup --base-dir '' --wait none originate contract check_caller transferring 0 from bootstrap1 running ' @@ -89,24 +89,24 @@ code { } ' --init None --burn-cap 1 Node is bootstrapped. -Estimated gas: 1450.510 units (will add 100 for safety) +Estimated gas: 1449.230 units (will add 100 for safety) Estimated storage: 465 bytes added (will add 20 for safety) Operation successfully injected in the node. -Operation hash is 'ooToBC9P3HGdhPJ1Dhq9gdQFF79cYzJMiYXgvo86DMCMvMknJXg' +Operation hash is 'onrV7eJG7EJRrVp6BLHozvqDM2nNTrYHWmNNMh1AxvHsAmF6wYP' NOT waiting for the operation to be included. Use command - tezos-client wait for ooToBC9P3HGdhPJ1Dhq9gdQFF79cYzJMiYXgvo86DMCMvMknJXg to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU + tezos-client wait for onrV7eJG7EJRrVp6BLHozvqDM2nNTrYHWmNNMh1AxvHsAmF6wYP to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Fee to the baker: ꜩ0.000591 + Fee to the baker: ꜩ0.00059 Expected counter: 2 - Gas limit: 1551 + Gas limit: 1550 Storage limit: 485 bytes Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.000591 - payload fees(the block proposer) ....... +ꜩ0.000591 + tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.00059 + payload fees(the block proposer) ....... +ꜩ0.00059 Origination: From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx Credit: ꜩ0 @@ -131,122 +131,122 @@ This sequence of operations was run: No delegate for this contract This origination was successfully applied Originated contracts: - KT1LvTWVW1cc4DeSPCseMsiPdDDkTKvMrNZb + KT1RdnquZZf4Y4ZDJvaEuY4cbam3xor3CffU Storage size: 208 bytes Paid storage size diff: 208 bytes - Consumed gas: 1450.510 + Consumed gas: 1449.230 Balance updates: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.052 storage fees ........................... +ꜩ0.052 tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.06425 storage fees ........................... +ꜩ0.06425 -New contract KT1LvTWVW1cc4DeSPCseMsiPdDDkTKvMrNZb originated. +New contract KT1RdnquZZf4Y4ZDJvaEuY4cbam3xor3CffU originated. Contract memorized as check_caller. -./tezos-client --mode mockup --base-dir '' --wait none transfer 1 from bootstrap1 to KT1LvTWVW1cc4DeSPCseMsiPdDDkTKvMrNZb --burn-cap 1 --arg '"KT1TLT2cXZCtenEAXzkndiAQGJXWenkwThRv"' +./tezos-client --mode mockup --base-dir '' --wait none transfer 1 from bootstrap1 to KT1RdnquZZf4Y4ZDJvaEuY4cbam3xor3CffU --burn-cap 1 --arg '"KT1LfQjDNgPpdwMHbhzyQcD8GTE2L4rwxxpN"' Node is bootstrapped. -Estimated gas: 4888.778 units (will add 100 for safety) +Estimated gas: 4418.891 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. -Operation hash is 'ooKWNQj6RVsDFCJvsHjGrXsUzUS1jecE3iZFN3zNd6HP9aBKzo8' +Operation hash is 'opKVxALX6z77kHy3Tft1d16KCmivKgyyVcVm9hXuauAs5Mx2FsS' NOT waiting for the operation to be included. Use command - tezos-client wait for ooKWNQj6RVsDFCJvsHjGrXsUzUS1jecE3iZFN3zNd6HP9aBKzo8 to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU + tezos-client wait for opKVxALX6z77kHy3Tft1d16KCmivKgyyVcVm9hXuauAs5Mx2FsS to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Fee to the baker: ꜩ0.000795 + Fee to the baker: ꜩ0.000748 Expected counter: 3 - Gas limit: 4989 + Gas limit: 4519 Storage limit: 0 bytes Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.000795 - payload fees(the block proposer) ....... +ꜩ0.000795 + tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.000748 + payload fees(the block proposer) ....... +ꜩ0.000748 Transaction: Amount: ꜩ1 From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - To: KT1LvTWVW1cc4DeSPCseMsiPdDDkTKvMrNZb - Parameter: "KT1TLT2cXZCtenEAXzkndiAQGJXWenkwThRv" + To: KT1RdnquZZf4Y4ZDJvaEuY4cbam3xor3CffU + Parameter: "KT1LfQjDNgPpdwMHbhzyQcD8GTE2L4rwxxpN" This transaction was successfully applied Updated storage: None Storage size: 208 bytes - Consumed gas: 4889.576 + Consumed gas: 4419.689 Balance updates: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ1 - KT1LvTWVW1cc4DeSPCseMsiPdDDkTKvMrNZb ... +ꜩ1 + KT1RdnquZZf4Y4ZDJvaEuY4cbam3xor3CffU ... +ꜩ1 -./tezos-client --mode mockup --base-dir '' --wait none transfer 1 from bootstrap1 to KT1TLT2cXZCtenEAXzkndiAQGJXWenkwThRv --burn-cap 1 +./tezos-client --mode mockup --base-dir '' --wait none transfer 1 from bootstrap1 to KT1LfQjDNgPpdwMHbhzyQcD8GTE2L4rwxxpN --burn-cap 1 Node is bootstrapped. -Estimated gas: 2068.289 units (will add 100 for safety) +Estimated gas: 2116.892 units (will add 100 for safety) Estimated storage: 27 bytes added (will add 20 for safety) Operation successfully injected in the node. -Operation hash is 'ont8dBoUoexyjc6TFAWPjK4vYwyYHPqY6aoQkuEqs2Y9PjAbLzQ' +Operation hash is 'oo5Hb4Qf1q4TuPb67SMwDftAmVejtrJVxU9XA12tPf7pNDp8b2C' NOT waiting for the operation to be included. Use command - tezos-client wait for ont8dBoUoexyjc6TFAWPjK4vYwyYHPqY6aoQkuEqs2Y9PjAbLzQ to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU + tezos-client wait for oo5Hb4Qf1q4TuPb67SMwDftAmVejtrJVxU9XA12tPf7pNDp8b2C to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Fee to the baker: ꜩ0.000467 + Fee to the baker: ꜩ0.000472 Expected counter: 4 - Gas limit: 2169 + Gas limit: 2217 Storage limit: 47 bytes Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.000467 - payload fees(the block proposer) ....... +ꜩ0.000467 + tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.000472 + payload fees(the block proposer) ....... +ꜩ0.000472 Transaction: Amount: ꜩ1 From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - To: KT1TLT2cXZCtenEAXzkndiAQGJXWenkwThRv + To: KT1LfQjDNgPpdwMHbhzyQcD8GTE2L4rwxxpN This transaction was successfully applied Updated storage: { 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 } Storage size: 179 bytes Paid storage size diff: 27 bytes - Consumed gas: 2069.201 + Consumed gas: 2117.804 Balance updates: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.00675 storage fees ........................... +ꜩ0.00675 tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ1 - KT1TLT2cXZCtenEAXzkndiAQGJXWenkwThRv ... +ꜩ1 + KT1LfQjDNgPpdwMHbhzyQcD8GTE2L4rwxxpN ... +ꜩ1 -./tezos-client --mode mockup --base-dir '' --wait none transfer 1 from bootstrap1 to KT1LvTWVW1cc4DeSPCseMsiPdDDkTKvMrNZb --burn-cap 1 --arg '"KT1TLT2cXZCtenEAXzkndiAQGJXWenkwThRv"' +./tezos-client --mode mockup --base-dir '' --wait none transfer 1 from bootstrap1 to KT1RdnquZZf4Y4ZDJvaEuY4cbam3xor3CffU --burn-cap 1 --arg '"KT1LfQjDNgPpdwMHbhzyQcD8GTE2L4rwxxpN"' Node is bootstrapped. -Estimated gas: 6201.785 units (will add 100 for safety) +Estimated gas: 4422.148 units (will add 100 for safety) Estimated storage: 27 bytes added (will add 20 for safety) Operation successfully injected in the node. -Operation hash is 'ooFASM67gHgN4XhEL3aSdGGyocUQtLecdh1iiVqGAFJ6r3YYpE5' +Operation hash is 'onu8BqYeBJKc2KGG4UxNC7NAt1HDXj7FixJThwTVL3HZeGRkuhg' NOT waiting for the operation to be included. Use command - tezos-client wait for ooFASM67gHgN4XhEL3aSdGGyocUQtLecdh1iiVqGAFJ6r3YYpE5 to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU + tezos-client wait for onu8BqYeBJKc2KGG4UxNC7NAt1HDXj7FixJThwTVL3HZeGRkuhg to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Fee to the baker: ꜩ0.000927 + Fee to the baker: ꜩ0.000749 Expected counter: 5 - Gas limit: 6302 + Gas limit: 4523 Storage limit: 47 bytes Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.000927 - payload fees(the block proposer) ....... +ꜩ0.000927 + tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.000749 + payload fees(the block proposer) ....... +ꜩ0.000749 Transaction: Amount: ꜩ1 From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - To: KT1LvTWVW1cc4DeSPCseMsiPdDDkTKvMrNZb - Parameter: "KT1TLT2cXZCtenEAXzkndiAQGJXWenkwThRv" + To: KT1RdnquZZf4Y4ZDJvaEuY4cbam3xor3CffU + Parameter: "KT1LfQjDNgPpdwMHbhzyQcD8GTE2L4rwxxpN" This transaction was successfully applied Updated storage: (Some 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78) Storage size: 235 bytes Paid storage size diff: 27 bytes - Consumed gas: 6202.583 + Consumed gas: 4422.946 Balance updates: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.00675 storage fees ........................... +ꜩ0.00675 tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ1 - KT1LvTWVW1cc4DeSPCseMsiPdDDkTKvMrNZb ... +ꜩ1 + KT1RdnquZZf4Y4ZDJvaEuY4cbam3xor3CffU ... +ꜩ1 diff --git a/tezt/_regressions/sc_rollup_inbox.out b/tezt/_regressions/sc_rollup_inbox.out index 8fa144917b82..8630fcd245c3 100644 --- a/tezt/_regressions/sc_rollup_inbox.out +++ b/tezt/_regressions/sc_rollup_inbox.out @@ -32,7 +32,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1620.756 units (will add 100 for safety) +Estimated gas: 1650.756 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -43,16 +43,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00045 + Fee to the baker: ꜩ0.000453 Expected counter: 2 - Gas limit: 1721 + Gas limit: 1751 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00045 - payload fees(the block proposer) ....... +ꜩ0.00045 + [PUBLIC_KEY_HASH] ... -ꜩ0.000453 + payload fees(the block proposer) ....... +ꜩ0.000453 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1620.884 + Consumed gas: 1650.884 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -69,7 +69,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE", "CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1620.948 units (will add 100 for safety) +Estimated gas: 1650.948 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -80,16 +80,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000458 + Fee to the baker: ꜩ0.000461 Expected counter: 3 - Gas limit: 1721 + Gas limit: 1751 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000458 - payload fees(the block proposer) ....... +ꜩ0.000458 + [PUBLIC_KEY_HASH] ... -ꜩ0.000461 + payload fees(the block proposer) ....... +ꜩ0.000461 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.076 + Consumed gas: 1651.076 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 @@ -107,7 +107,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE", "CAFEBABE", "CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1621.140 units (will add 100 for safety) +Estimated gas: 1651.140 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -118,16 +118,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000466 + Fee to the baker: ꜩ0.000469 Expected counter: 4 - Gas limit: 1722 + Gas limit: 1752 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000466 - payload fees(the block proposer) ....... +ꜩ0.000466 + [PUBLIC_KEY_HASH] ... -ꜩ0.000469 + payload fees(the block proposer) ....... +ꜩ0.000469 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.140 + Consumed gas: 1651.140 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 5 @@ -145,7 +145,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1621.140 units (will add 100 for safety) +Estimated gas: 1651.140 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -156,16 +156,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000474 + Fee to the baker: ꜩ0.000477 Expected counter: 5 - Gas limit: 1722 + Gas limit: 1752 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000474 - payload fees(the block proposer) ....... +ꜩ0.000474 + [PUBLIC_KEY_HASH] ... -ꜩ0.000477 + payload fees(the block proposer) ....... +ꜩ0.000477 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.268 + Consumed gas: 1651.268 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 6 @@ -184,7 +184,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1621.332 units (will add 100 for safety) +Estimated gas: 1651.332 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -195,16 +195,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000482 + Fee to the baker: ꜩ0.000485 Expected counter: 6 - Gas limit: 1722 + Gas limit: 1752 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000482 - payload fees(the block proposer) ....... +ꜩ0.000482 + [PUBLIC_KEY_HASH] ... -ꜩ0.000485 + payload fees(the block proposer) ....... +ꜩ0.000485 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.332 + Consumed gas: 1651.332 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 7 @@ -223,7 +223,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1621.332 units (will add 100 for safety) +Estimated gas: 1651.332 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -234,16 +234,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00049 + Fee to the baker: ꜩ0.000493 Expected counter: 7 - Gas limit: 1722 + Gas limit: 1752 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00049 - payload fees(the block proposer) ....... +ꜩ0.00049 + [PUBLIC_KEY_HASH] ... -ꜩ0.000493 + payload fees(the block proposer) ....... +ꜩ0.000493 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.332 + Consumed gas: 1651.332 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 8 @@ -262,7 +262,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1621.332 units (will add 100 for safety) +Estimated gas: 1651.332 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -273,16 +273,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000498 + Fee to the baker: ꜩ0.000501 Expected counter: 8 - Gas limit: 1722 + Gas limit: 1752 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000498 - payload fees(the block proposer) ....... +ꜩ0.000498 + [PUBLIC_KEY_HASH] ... -ꜩ0.000501 + payload fees(the block proposer) ....... +ꜩ0.000501 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.332 + Consumed gas: 1651.332 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 9 @@ -301,7 +301,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1621.332 units (will add 100 for safety) +Estimated gas: 1651.332 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -312,16 +312,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000506 + Fee to the baker: ꜩ0.000509 Expected counter: 9 - Gas limit: 1722 + Gas limit: 1752 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000506 - payload fees(the block proposer) ....... +ꜩ0.000506 + [PUBLIC_KEY_HASH] ... -ꜩ0.000509 + payload fees(the block proposer) ....... +ꜩ0.000509 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.460 + Consumed gas: 1651.460 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 10 @@ -341,7 +341,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1621.524 units (will add 100 for safety) +Estimated gas: 1651.524 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -352,16 +352,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000514 + Fee to the baker: ꜩ0.000517 Expected counter: 10 - Gas limit: 1722 + Gas limit: 1752 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000514 - payload fees(the block proposer) ....... +ꜩ0.000514 + [PUBLIC_KEY_HASH] ... -ꜩ0.000517 + payload fees(the block proposer) ....... +ꜩ0.000517 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.524 + Consumed gas: 1651.524 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 11 @@ -381,7 +381,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE", "CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1621.524 units (will add 100 for safety) +Estimated gas: 1651.524 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -392,16 +392,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000522 + Fee to the baker: ꜩ0.000525 Expected counter: 11 - Gas limit: 1722 + Gas limit: 1752 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000522 - payload fees(the block proposer) ....... +ꜩ0.000522 + [PUBLIC_KEY_HASH] ... -ꜩ0.000525 + payload fees(the block proposer) ....... +ꜩ0.000525 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.524 + Consumed gas: 1651.524 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 12 diff --git a/tezt/_regressions/sc_rollup_inbox_of_rollup_node_basic.out b/tezt/_regressions/sc_rollup_inbox_of_rollup_node_basic.out index 03664423af4a..3de4b4d4c953 100644 --- a/tezt/_regressions/sc_rollup_inbox_of_rollup_node_basic.out +++ b/tezt/_regressions/sc_rollup_inbox_of_rollup_node_basic.out @@ -32,7 +32,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1620.756 units (will add 100 for safety) +Estimated gas: 1650.756 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -43,16 +43,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00045 + Fee to the baker: ꜩ0.000453 Expected counter: 2 - Gas limit: 1721 + Gas limit: 1751 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00045 - payload fees(the block proposer) ....... +ꜩ0.00045 + [PUBLIC_KEY_HASH] ... -ꜩ0.000453 + payload fees(the block proposer) ....... +ꜩ0.000453 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1620.884 + Consumed gas: 1650.884 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -69,7 +69,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE", "CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1620.948 units (will add 100 for safety) +Estimated gas: 1650.948 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -80,16 +80,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000458 + Fee to the baker: ꜩ0.000461 Expected counter: 3 - Gas limit: 1721 + Gas limit: 1751 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000458 - payload fees(the block proposer) ....... +ꜩ0.000458 + [PUBLIC_KEY_HASH] ... -ꜩ0.000461 + payload fees(the block proposer) ....... +ꜩ0.000461 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.076 + Consumed gas: 1651.076 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 diff --git a/tezt/_regressions/sc_rollup_inbox_of_rollup_node_handles_chain_reorg.out b/tezt/_regressions/sc_rollup_inbox_of_rollup_node_handles_chain_reorg.out index ea6b410d7f03..98fe0bdfa379 100644 --- a/tezt/_regressions/sc_rollup_inbox_of_rollup_node_handles_chain_reorg.out +++ b/tezt/_regressions/sc_rollup_inbox_of_rollup_node_handles_chain_reorg.out @@ -32,7 +32,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1620.756 units (will add 100 for safety) +Estimated gas: 1650.756 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -43,16 +43,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00045 + Fee to the baker: ꜩ0.000453 Expected counter: 2 - Gas limit: 1721 + Gas limit: 1751 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00045 - payload fees(the block proposer) ....... +ꜩ0.00045 + [PUBLIC_KEY_HASH] ... -ꜩ0.000453 + payload fees(the block proposer) ....... +ꜩ0.000453 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1620.884 + Consumed gas: 1650.884 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -69,7 +69,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1620.948 units (will add 100 for safety) +Estimated gas: 1650.948 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -80,16 +80,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00045 + Fee to the baker: ꜩ0.000453 Expected counter: 3 - Gas limit: 1721 + Gas limit: 1751 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00045 - payload fees(the block proposer) ....... +ꜩ0.00045 + [PUBLIC_KEY_HASH] ... -ꜩ0.000453 + payload fees(the block proposer) ....... +ꜩ0.000453 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.076 + Consumed gas: 1651.076 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 @@ -107,7 +107,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1620.948 units (will add 100 for safety) +Estimated gas: 1650.948 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -118,16 +118,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00045 + Fee to the baker: ꜩ0.000453 Expected counter: 3 - Gas limit: 1721 + Gas limit: 1751 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00045 - payload fees(the block proposer) ....... +ꜩ0.00045 + [PUBLIC_KEY_HASH] ... -ꜩ0.000453 + payload fees(the block proposer) ....... +ꜩ0.000453 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.076 + Consumed gas: 1651.076 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 @@ -145,7 +145,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1621.140 units (will add 100 for safety) +Estimated gas: 1651.140 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -156,16 +156,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00045 + Fee to the baker: ꜩ0.000453 Expected counter: 4 - Gas limit: 1722 + Gas limit: 1752 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00045 - payload fees(the block proposer) ....... +ꜩ0.00045 + [PUBLIC_KEY_HASH] ... -ꜩ0.000453 + payload fees(the block proposer) ....... +ꜩ0.000453 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.140 + Consumed gas: 1651.140 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 5 diff --git a/tezt/_regressions/sc_rollup_inbox_of_rollup_node_stops.out b/tezt/_regressions/sc_rollup_inbox_of_rollup_node_stops.out index fd2dbb40da2e..3d6d4fdb5ede 100644 --- a/tezt/_regressions/sc_rollup_inbox_of_rollup_node_stops.out +++ b/tezt/_regressions/sc_rollup_inbox_of_rollup_node_stops.out @@ -32,7 +32,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1620.756 units (will add 100 for safety) +Estimated gas: 1650.756 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -43,16 +43,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00045 + Fee to the baker: ꜩ0.000453 Expected counter: 2 - Gas limit: 1721 + Gas limit: 1751 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00045 - payload fees(the block proposer) ....... +ꜩ0.00045 + [PUBLIC_KEY_HASH] ... -ꜩ0.000453 + payload fees(the block proposer) ....... +ꜩ0.000453 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1620.884 + Consumed gas: 1650.884 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -69,7 +69,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE", "CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1620.948 units (will add 100 for safety) +Estimated gas: 1650.948 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -80,16 +80,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000458 + Fee to the baker: ꜩ0.000461 Expected counter: 3 - Gas limit: 1721 + Gas limit: 1751 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000458 - payload fees(the block proposer) ....... +ꜩ0.000458 + [PUBLIC_KEY_HASH] ... -ꜩ0.000461 + payload fees(the block proposer) ....... +ꜩ0.000461 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.076 + Consumed gas: 1651.076 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 @@ -107,7 +107,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1621.140 units (will add 100 for safety) +Estimated gas: 1651.140 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -118,16 +118,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00045 + Fee to the baker: ꜩ0.000453 Expected counter: 4 - Gas limit: 1722 + Gas limit: 1752 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00045 - payload fees(the block proposer) ....... +ꜩ0.00045 + [PUBLIC_KEY_HASH] ... -ꜩ0.000453 + payload fees(the block proposer) ....... +ꜩ0.000453 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.140 + Consumed gas: 1651.140 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 5 @@ -145,7 +145,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE", "CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1621.140 units (will add 100 for safety) +Estimated gas: 1651.140 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -156,16 +156,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000458 + Fee to the baker: ꜩ0.000461 Expected counter: 5 - Gas limit: 1722 + Gas limit: 1752 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000458 - payload fees(the block proposer) ....... +ꜩ0.000458 + [PUBLIC_KEY_HASH] ... -ꜩ0.000461 + payload fees(the block proposer) ....... +ꜩ0.000461 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This operation sending a message to a smart contract rollup was successfully applied - Consumed gas: 1621.268 + Consumed gas: 1651.268 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 6 diff --git a/tezt/_regressions/tx_rollup_batch_encoding.out b/tezt/_regressions/tx_rollup_batch_encoding.out index b45b1758bd6a..6c68f55b83c2 100644 --- a/tezt/_regressions/tx_rollup_batch_encoding.out +++ b/tezt/_regressions/tx_rollup_batch_encoding.out @@ -2,7 +2,7 @@ tx_rollup_batch_encoding.out ./tezos-client --wait none originate tx rollup from '[PUBLIC_KEY_HASH]' --burn-cap 9999999 --storage-limit 60000 Node is bootstrapped. -Estimated gas: 1410.112 units (will add 100 for safety) +Estimated gas: 1420.112 units (will add 100 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,26 +12,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000378 + Fee to the baker: ꜩ0.000379 Expected counter: 1 - Gas limit: 1511 + Gas limit: 1521 Storage limit: 60000 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000378 - payload fees(the block proposer) ....... +ꜩ0.000378 + [PUBLIC_KEY_HASH] ... -ꜩ0.000379 + payload fees(the block proposer) ....... +ꜩ0.000379 Tx rollup origination: From: [PUBLIC_KEY_HASH] This tx rollup origination operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ15 storage fees ........................... +ꜩ15 - Consumed gas: 1410.112 + Consumed gas: 1420.112 Originated tx rollup: [TX_ROLLUP_HASH] ./tezos-client --wait none submit tx rollup batch 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f606162636465666768696a6b6c6d6e6f707172737475767778797a7b7c7d7e7f808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6a7a8a9aaabacadaeafb0b1b2b3b4b5b6b7b8b9babbbcbdbebfc0c1c2c3c4c5c6c7c8c9cacbcccdcecfd0d1d2d3d4d5d6d7d8d9dadbdcdddedfe0e1e2e3e4e5e6e7e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' Node is bootstrapped. -Estimated gas: 2689.447 units (will add 100 for safety) +Estimated gas: 2709.447 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -42,17 +42,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000784 + Fee to the baker: ꜩ0.000786 Expected counter: 2 - Gas limit: 2790 + Gas limit: 2810 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000784 - payload fees(the block proposer) ....... +ꜩ0.000784 + [PUBLIC_KEY_HASH] ... -ꜩ0.000786 + payload fees(the block proposer) ....... +ꜩ0.000786 Tx rollup transaction:[TX_ROLLUP_HASH], 256 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 2689.447 + Consumed gas: 2709.447 "000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f606162636465666768696a6b6c6d6e6f707172737475767778797a7b7c7d7e7f808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6a7a8a9aaabacadaeafb0b1b2b3b4b5b6b7b8b9babbbcbdbebfc0c1c2c3c4c5c6c7c8c9cacbcccdcecfd0d1d2d3d4d5d6d7d8d9dadbdcdddedfe0e1e2e3e4e5e6e7e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff" diff --git a/tezt/_regressions/tx_rollup_finalize_commitment_future.out b/tezt/_regressions/tx_rollup_finalize_commitment_future.out index 361c0820f40a..abe813dc0981 100644 --- a/tezt/_regressions/tx_rollup_finalize_commitment_future.out +++ b/tezt/_regressions/tx_rollup_finalize_commitment_future.out @@ -2,7 +2,7 @@ tx_rollup_finalize_commitment_future.out ./tezos-client --wait none originate tx rollup from '[PUBLIC_KEY_HASH]' --burn-cap 9999999 --storage-limit 60000 Node is bootstrapped. -Estimated gas: 1410.112 units (will add 100 for safety) +Estimated gas: 1420.112 units (will add 100 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,26 +12,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000378 + Fee to the baker: ꜩ0.000379 Expected counter: 1 - Gas limit: 1511 + Gas limit: 1521 Storage limit: 60000 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000378 - payload fees(the block proposer) ....... +ꜩ0.000378 + [PUBLIC_KEY_HASH] ... -ꜩ0.000379 + payload fees(the block proposer) ....... +ꜩ0.000379 Tx rollup origination: From: [PUBLIC_KEY_HASH] This tx rollup origination operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ15 storage fees ........................... +ꜩ15 - Consumed gas: 1410.112 + Consumed gas: 1420.112 Originated tx rollup: [TX_ROLLUP_HASH] ./tezos-client --wait none submit tx rollup batch 626c6f62 to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' Node is bootstrapped. -Estimated gas: 2564.880 units (will add 100 for safety) +Estimated gas: 2584.880 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -42,18 +42,18 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00052 + Fee to the baker: ꜩ0.000522 Expected counter: 2 - Gas limit: 2665 + Gas limit: 2685 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00052 - payload fees(the block proposer) ....... +ꜩ0.00052 + [PUBLIC_KEY_HASH] ... -ꜩ0.000522 + payload fees(the block proposer) ....... +ꜩ0.000522 Tx rollup transaction:[TX_ROLLUP_HASH], 4 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 2564.880 + Consumed gas: 2584.880 ./tezos-client --wait none submit tx rollup finalize commitment to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' diff --git a/tezt/_regressions/tx_rollup_finalize_commitment_no_batch.out b/tezt/_regressions/tx_rollup_finalize_commitment_no_batch.out index 8791e629dfa9..d1ff05c89a03 100644 --- a/tezt/_regressions/tx_rollup_finalize_commitment_no_batch.out +++ b/tezt/_regressions/tx_rollup_finalize_commitment_no_batch.out @@ -2,7 +2,7 @@ tx_rollup_finalize_commitment_no_batch.out ./tezos-client --wait none originate tx rollup from '[PUBLIC_KEY_HASH]' --burn-cap 9999999 --storage-limit 60000 Node is bootstrapped. -Estimated gas: 1410.112 units (will add 100 for safety) +Estimated gas: 1420.112 units (will add 100 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,20 +12,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000378 + Fee to the baker: ꜩ0.000379 Expected counter: 1 - Gas limit: 1511 + Gas limit: 1521 Storage limit: 60000 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000378 - payload fees(the block proposer) ....... +ꜩ0.000378 + [PUBLIC_KEY_HASH] ... -ꜩ0.000379 + payload fees(the block proposer) ....... +ꜩ0.000379 Tx rollup origination: From: [PUBLIC_KEY_HASH] This tx rollup origination operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ15 storage fees ........................... +ꜩ15 - Consumed gas: 1410.112 + Consumed gas: 1420.112 Originated tx rollup: [TX_ROLLUP_HASH] diff --git a/tezt/_regressions/tx_rollup_finalize_commitment_no_commitment.out b/tezt/_regressions/tx_rollup_finalize_commitment_no_commitment.out index 005aa87ac105..6f806402dc66 100644 --- a/tezt/_regressions/tx_rollup_finalize_commitment_no_commitment.out +++ b/tezt/_regressions/tx_rollup_finalize_commitment_no_commitment.out @@ -2,7 +2,7 @@ tx_rollup_finalize_commitment_no_commitment.out ./tezos-client --wait none originate tx rollup from '[PUBLIC_KEY_HASH]' --burn-cap 9999999 --storage-limit 60000 Node is bootstrapped. -Estimated gas: 1410.112 units (will add 100 for safety) +Estimated gas: 1420.112 units (will add 100 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,26 +12,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000378 + Fee to the baker: ꜩ0.000379 Expected counter: 1 - Gas limit: 1511 + Gas limit: 1521 Storage limit: 60000 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000378 - payload fees(the block proposer) ....... +ꜩ0.000378 + [PUBLIC_KEY_HASH] ... -ꜩ0.000379 + payload fees(the block proposer) ....... +ꜩ0.000379 Tx rollup origination: From: [PUBLIC_KEY_HASH] This tx rollup origination operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ15 storage fees ........................... +ꜩ15 - Consumed gas: 1410.112 + Consumed gas: 1420.112 Originated tx rollup: [TX_ROLLUP_HASH] ./tezos-client --wait none submit tx rollup batch 626c6f62 to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' Node is bootstrapped. -Estimated gas: 2564.880 units (will add 100 for safety) +Estimated gas: 2584.880 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -42,18 +42,18 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00052 + Fee to the baker: ꜩ0.000522 Expected counter: 2 - Gas limit: 2665 + Gas limit: 2685 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00052 - payload fees(the block proposer) ....... +ꜩ0.00052 + [PUBLIC_KEY_HASH] ... -ꜩ0.000522 + payload fees(the block proposer) ....... +ꜩ0.000522 Tx rollup transaction:[TX_ROLLUP_HASH], 4 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 2564.880 + Consumed gas: 2584.880 ./tezos-client --wait none submit tx rollup finalize commitment to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' diff --git a/tezt/_regressions/tx_rollup_finalize_too_recent_commitment.out b/tezt/_regressions/tx_rollup_finalize_too_recent_commitment.out index ca235c85e471..ecad502ccbe1 100644 --- a/tezt/_regressions/tx_rollup_finalize_too_recent_commitment.out +++ b/tezt/_regressions/tx_rollup_finalize_too_recent_commitment.out @@ -2,7 +2,7 @@ tx_rollup_finalize_too_recent_commitment.out ./tezos-client --wait none originate tx rollup from '[PUBLIC_KEY_HASH]' --burn-cap 9999999 --storage-limit 60000 Node is bootstrapped. -Estimated gas: 1410.112 units (will add 100 for safety) +Estimated gas: 1420.112 units (will add 100 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,26 +12,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000378 + Fee to the baker: ꜩ0.000379 Expected counter: 1 - Gas limit: 1511 + Gas limit: 1521 Storage limit: 60000 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000378 - payload fees(the block proposer) ....... +ꜩ0.000378 + [PUBLIC_KEY_HASH] ... -ꜩ0.000379 + payload fees(the block proposer) ....... +ꜩ0.000379 Tx rollup origination: From: [PUBLIC_KEY_HASH] This tx rollup origination operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ15 storage fees ........................... +ꜩ15 - Consumed gas: 1410.112 + Consumed gas: 1420.112 Originated tx rollup: [TX_ROLLUP_HASH] ./tezos-client --wait none submit tx rollup batch 626c6f62 to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' Node is bootstrapped. -Estimated gas: 2564.880 units (will add 100 for safety) +Estimated gas: 2584.880 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -42,23 +42,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00052 + Fee to the baker: ꜩ0.000522 Expected counter: 2 - Gas limit: 2665 + Gas limit: 2685 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00052 - payload fees(the block proposer) ....... +ꜩ0.00052 + [PUBLIC_KEY_HASH] ... -ꜩ0.000522 + payload fees(the block proposer) ....... +ꜩ0.000522 Tx rollup transaction:[TX_ROLLUP_HASH], 4 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 2564.880 + Consumed gas: 2584.880 ./tezos-client --wait none submit tx rollup commitment 0 '[TX_ROLLUP_INBOX_HASH]' '[TX_ROLLUP_MESSAGE_RESULT_HASH]' to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' Node is bootstrapped. -Estimated gas: 3663.146 units (will add 100 for safety) +Estimated gas: 3818.146 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -69,20 +69,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000694 + Fee to the baker: ꜩ0.000709 Expected counter: 3 - Gas limit: 3764 + Gas limit: 3919 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000694 - payload fees(the block proposer) ....... +ꜩ0.000694 + [PUBLIC_KEY_HASH] ... -ꜩ0.000709 + payload fees(the block proposer) ....... +ꜩ0.000709 Tx rollup commitment:[TX_ROLLUP_HASH], commitment 0 : messages = [TX_ROLLUP_MESSAGE_RESULT_HASH] predecessor for inbox with merkle root [TX_ROLLUP_INBOX_HASH] From: [PUBLIC_KEY_HASH] This tx rollup commit operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ....................................................... -ꜩ10000 Frozen_bonds([PUBLIC_KEY_HASH],[TX_ROLLUP_HASH]) ... +ꜩ10000 - Consumed gas: 3663.146 + Consumed gas: 3818.146 ./tezos-client --wait none submit tx rollup finalize commitment to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' diff --git a/tezt/_regressions/tx_rollup_limit_empty_batch.out b/tezt/_regressions/tx_rollup_limit_empty_batch.out index a4960678140d..739d6def5a5f 100644 --- a/tezt/_regressions/tx_rollup_limit_empty_batch.out +++ b/tezt/_regressions/tx_rollup_limit_empty_batch.out @@ -2,7 +2,7 @@ tx_rollup_limit_empty_batch.out ./tezos-client --wait none originate tx rollup from '[PUBLIC_KEY_HASH]' --burn-cap 9999999 --storage-limit 60000 Node is bootstrapped. -Estimated gas: 1410.112 units (will add 100 for safety) +Estimated gas: 1420.112 units (will add 100 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,26 +12,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000378 + Fee to the baker: ꜩ0.000379 Expected counter: 1 - Gas limit: 1511 + Gas limit: 1521 Storage limit: 60000 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000378 - payload fees(the block proposer) ....... +ꜩ0.000378 + [PUBLIC_KEY_HASH] ... -ꜩ0.000379 + payload fees(the block proposer) ....... +ꜩ0.000379 Tx rollup origination: From: [PUBLIC_KEY_HASH] This tx rollup origination operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ15 storage fees ........................... +ꜩ15 - Consumed gas: 1410.112 + Consumed gas: 1420.112 Originated tx rollup: [TX_ROLLUP_HASH] ./tezos-client --wait none submit tx rollup batch to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' Node is bootstrapped. -Estimated gas: 2560.871 units (will add 100 for safety) +Estimated gas: 2580.871 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -42,16 +42,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000516 + Fee to the baker: ꜩ0.000518 Expected counter: 2 - Gas limit: 2661 + Gas limit: 2681 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000516 - payload fees(the block proposer) ....... +ꜩ0.000516 + [PUBLIC_KEY_HASH] ... -ꜩ0.000518 + payload fees(the block proposer) ....... +ꜩ0.000518 Tx rollup transaction:[TX_ROLLUP_HASH], 0 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 2560.871 + Consumed gas: 2580.871 diff --git a/tezt/_regressions/tx_rollup_limit_maximum_size_batch.out b/tezt/_regressions/tx_rollup_limit_maximum_size_batch.out index 2f8863bac18d..3dc0452a8ed2 100644 --- a/tezt/_regressions/tx_rollup_limit_maximum_size_batch.out +++ b/tezt/_regressions/tx_rollup_limit_maximum_size_batch.out @@ -2,7 +2,7 @@ tx_rollup_limit_maximum_size_batch.out ./tezos-client --wait none originate tx rollup from '[PUBLIC_KEY_HASH]' --burn-cap 9999999 --storage-limit 60000 Node is bootstrapped. -Estimated gas: 1410.112 units (will add 100 for safety) +Estimated gas: 1420.112 units (will add 100 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,26 +12,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000378 + Fee to the baker: ꜩ0.000379 Expected counter: 1 - Gas limit: 1511 + Gas limit: 1521 Storage limit: 60000 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000378 - payload fees(the block proposer) ....... +ꜩ0.000378 + [PUBLIC_KEY_HASH] ... -ꜩ0.000379 + payload fees(the block proposer) ....... +ꜩ0.000379 Tx rollup origination: From: [PUBLIC_KEY_HASH] This tx rollup origination operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ15 storage fees ........................... +ꜩ15 - Consumed gas: 1410.112 + Consumed gas: 1420.112 Originated tx rollup: [TX_ROLLUP_HASH] ./tezos-client --wait none submit tx rollup batch 6262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262 to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' Node is bootstrapped. -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -42,18 +42,18 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005767 + Fee to the baker: ꜩ0.005769 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005767 - payload fees(the block proposer) ....... +ꜩ0.005767 + [PUBLIC_KEY_HASH] ... -ꜩ0.005769 + payload fees(the block proposer) ....... +ꜩ0.005769 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363 to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' diff --git a/tezt/_regressions/tx_rollup_limit_maximum_size_inbox.out b/tezt/_regressions/tx_rollup_limit_maximum_size_inbox.out index 49bb49ca736d..4404abf5443b 100644 --- a/tezt/_regressions/tx_rollup_limit_maximum_size_inbox.out +++ b/tezt/_regressions/tx_rollup_limit_maximum_size_inbox.out @@ -2,7 +2,7 @@ tx_rollup_limit_maximum_size_inbox.out ./tezos-client --wait none originate tx rollup from '[PUBLIC_KEY_HASH]' --burn-cap 9999999 --storage-limit 60000 Node is bootstrapped. -Estimated gas: 1410.112 units (will add 100 for safety) +Estimated gas: 1420.112 units (will add 100 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,26 +12,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000378 + Fee to the baker: ꜩ0.000379 Expected counter: 1 - Gas limit: 1511 + Gas limit: 1521 Storage limit: 60000 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000378 - payload fees(the block proposer) ....... +ꜩ0.000378 + [PUBLIC_KEY_HASH] ... -ꜩ0.000379 + payload fees(the block proposer) ....... +ꜩ0.000379 Tx rollup origination: From: [PUBLIC_KEY_HASH] This tx rollup origination operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ15 storage fees ........................... +ꜩ15 - Consumed gas: 1410.112 + Consumed gas: 1420.112 Originated tx rollup: [TX_ROLLUP_HASH] ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap1 Node is bootstrapped. -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -42,23 +42,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005767 + Fee to the baker: ꜩ0.005769 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005767 - payload fees(the block proposer) ....... +ꜩ0.005767 + [PUBLIC_KEY_HASH] ... -ꜩ0.005769 + payload fees(the block proposer) ....... +ꜩ0.005769 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap2 Node is bootstrapped. -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -69,23 +69,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005767 + Fee to the baker: ꜩ0.005769 Expected counter: 1 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005767 - payload fees(the block proposer) ....... +ꜩ0.005767 + [PUBLIC_KEY_HASH] ... -ꜩ0.005769 + payload fees(the block proposer) ....... +ꜩ0.005769 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap3 Node is bootstrapped. -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -96,23 +96,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005767 + Fee to the baker: ꜩ0.005769 Expected counter: 1 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005767 - payload fees(the block proposer) ....... +ꜩ0.005767 + [PUBLIC_KEY_HASH] ... -ꜩ0.005769 + payload fees(the block proposer) ....... +ꜩ0.005769 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap4 Node is bootstrapped. -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -123,23 +123,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005767 + Fee to the baker: ꜩ0.005769 Expected counter: 1 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005767 - payload fees(the block proposer) ....... +ꜩ0.005767 + [PUBLIC_KEY_HASH] ... -ꜩ0.005769 + payload fees(the block proposer) ....... +ꜩ0.005769 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap5 Node is bootstrapped. -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -150,24 +150,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005767 + Fee to the baker: ꜩ0.005769 Expected counter: 1 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005767 - payload fees(the block proposer) ....... +ꜩ0.005767 + [PUBLIC_KEY_HASH] ... -ꜩ0.005769 + payload fees(the block proposer) ....... +ꜩ0.005769 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap6 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -192,24 +192,24 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap7 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -234,24 +234,24 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap8 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -276,24 +276,24 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap9 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -318,24 +318,24 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap10 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -360,24 +360,24 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap11 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -402,24 +402,24 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap12 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -444,24 +444,24 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap13 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -486,24 +486,24 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap14 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -528,24 +528,24 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap15 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -570,24 +570,24 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap16 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -612,24 +612,24 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap17 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -654,24 +654,24 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap18 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -696,24 +696,24 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap19 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -738,24 +738,24 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client --wait none submit tx rollup batch 6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161 to '[TX_ROLLUP_HASH]' from bootstrap20 Node is bootstrapped. Estimated storage: no bytes added -Estimated gas: 5072.121 units (will add 100 for safety) +Estimated gas: 5092.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -780,18 +780,18 @@ This sequence of operations was run: Consumed gas: 1000 Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.005671 + Fee to the baker: ꜩ0.005673 Expected counter: 2 - Gas limit: 5173 + Gas limit: 5193 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.005671 - payload fees(the block proposer) ....... +ꜩ0.005671 + [PUBLIC_KEY_HASH] ... -ꜩ0.005673 + payload fees(the block proposer) ....... +ꜩ0.005673 Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 5072.121 + Consumed gas: 5092.121 ./tezos-client rpc get '/chains/main/blocks/head/context/tx_rollup/[TX_ROLLUP_HASH]/inbox/0' diff --git a/tezt/_regressions/tx_rollup_rpc_commitment.out b/tezt/_regressions/tx_rollup_rpc_commitment.out index bf2d3cdc2faf..38c057cc1ce4 100644 --- a/tezt/_regressions/tx_rollup_rpc_commitment.out +++ b/tezt/_regressions/tx_rollup_rpc_commitment.out @@ -2,7 +2,7 @@ tx_rollup_rpc_commitment.out ./tezos-client --wait none originate tx rollup from '[PUBLIC_KEY_HASH]' --burn-cap 9999999 --storage-limit 60000 Node is bootstrapped. -Estimated gas: 1410.112 units (will add 100 for safety) +Estimated gas: 1420.112 units (will add 100 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,26 +12,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000378 + Fee to the baker: ꜩ0.000379 Expected counter: 1 - Gas limit: 1511 + Gas limit: 1521 Storage limit: 60000 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000378 - payload fees(the block proposer) ....... +ꜩ0.000378 + [PUBLIC_KEY_HASH] ... -ꜩ0.000379 + payload fees(the block proposer) ....... +ꜩ0.000379 Tx rollup origination: From: [PUBLIC_KEY_HASH] This tx rollup origination operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ15 storage fees ........................... +ꜩ15 - Consumed gas: 1410.112 + Consumed gas: 1420.112 Originated tx rollup: [TX_ROLLUP_HASH] ./tezos-client --wait none submit tx rollup batch 626c6f62 to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' Node is bootstrapped. -Estimated gas: 2564.880 units (will add 100 for safety) +Estimated gas: 2584.880 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -42,23 +42,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00052 + Fee to the baker: ꜩ0.000522 Expected counter: 2 - Gas limit: 2665 + Gas limit: 2685 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00052 - payload fees(the block proposer) ....... +ꜩ0.00052 + [PUBLIC_KEY_HASH] ... -ꜩ0.000522 + payload fees(the block proposer) ....... +ꜩ0.000522 Tx rollup transaction:[TX_ROLLUP_HASH], 4 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 2564.880 + Consumed gas: 2584.880 ./tezos-client --wait none submit tx rollup commitment 0 '[TX_ROLLUP_INBOX_HASH]' '[TX_ROLLUP_MESSAGE_RESULT_HASH]' to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' Node is bootstrapped. -Estimated gas: 3663.146 units (will add 100 for safety) +Estimated gas: 3818.146 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -69,20 +69,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000694 + Fee to the baker: ꜩ0.000709 Expected counter: 3 - Gas limit: 3764 + Gas limit: 3919 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000694 - payload fees(the block proposer) ....... +ꜩ0.000694 + [PUBLIC_KEY_HASH] ... -ꜩ0.000709 + payload fees(the block proposer) ....... +ꜩ0.000709 Tx rollup commitment:[TX_ROLLUP_HASH], commitment 0 : messages = [TX_ROLLUP_MESSAGE_RESULT_HASH] predecessor for inbox with merkle root [TX_ROLLUP_INBOX_HASH] From: [PUBLIC_KEY_HASH] This tx rollup commit operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ....................................................... -ꜩ10000 Frozen_bonds([PUBLIC_KEY_HASH],[TX_ROLLUP_HASH]) ... +ꜩ10000 - Consumed gas: 3663.146 + Consumed gas: 3818.146 ./tezos-client rpc get '/chains/main/blocks/head/context/tx_rollup/[TX_ROLLUP_HASH]/commitment/0' diff --git a/tezt/_regressions/tx_rollup_rpc_inbox.out b/tezt/_regressions/tx_rollup_rpc_inbox.out index e8ab507225e8..ef624ab76faa 100644 --- a/tezt/_regressions/tx_rollup_rpc_inbox.out +++ b/tezt/_regressions/tx_rollup_rpc_inbox.out @@ -2,7 +2,7 @@ tx_rollup_rpc_inbox.out ./tezos-client --wait none originate tx rollup from '[PUBLIC_KEY_HASH]' --burn-cap 9999999 --storage-limit 60000 Node is bootstrapped. -Estimated gas: 1410.112 units (will add 100 for safety) +Estimated gas: 1420.112 units (will add 100 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,26 +12,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000378 + Fee to the baker: ꜩ0.000379 Expected counter: 1 - Gas limit: 1511 + Gas limit: 1521 Storage limit: 60000 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000378 - payload fees(the block proposer) ....... +ꜩ0.000378 + [PUBLIC_KEY_HASH] ... -ꜩ0.000379 + payload fees(the block proposer) ....... +ꜩ0.000379 Tx rollup origination: From: [PUBLIC_KEY_HASH] This tx rollup origination operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ15 storage fees ........................... +ꜩ15 - Consumed gas: 1410.112 + Consumed gas: 1420.112 Originated tx rollup: [TX_ROLLUP_HASH] ./tezos-client --wait none submit tx rollup batch 626c6f62 to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' Node is bootstrapped. -Estimated gas: 2564.880 units (will add 100 for safety) +Estimated gas: 2584.880 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -42,18 +42,18 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00052 + Fee to the baker: ꜩ0.000522 Expected counter: 2 - Gas limit: 2665 + Gas limit: 2685 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00052 - payload fees(the block proposer) ....... +ꜩ0.00052 + [PUBLIC_KEY_HASH] ... -ꜩ0.000522 + payload fees(the block proposer) ....... +ꜩ0.000522 Tx rollup transaction:[TX_ROLLUP_HASH], 4 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 2564.880 + Consumed gas: 2584.880 ./tezos-client rpc get '/chains/main/blocks/head/context/tx_rollup/[TX_ROLLUP_HASH]/inbox/0' diff --git a/tezt/_regressions/tx_rollup_rpc_pending_bonded_commitments.out b/tezt/_regressions/tx_rollup_rpc_pending_bonded_commitments.out index 9650080464f5..a231f6137713 100644 --- a/tezt/_regressions/tx_rollup_rpc_pending_bonded_commitments.out +++ b/tezt/_regressions/tx_rollup_rpc_pending_bonded_commitments.out @@ -2,7 +2,7 @@ tx_rollup_rpc_pending_bonded_commitments.out ./tezos-client --wait none originate tx rollup from '[PUBLIC_KEY_HASH]' --burn-cap 9999999 --storage-limit 60000 Node is bootstrapped. -Estimated gas: 1410.112 units (will add 100 for safety) +Estimated gas: 1420.112 units (will add 100 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,26 +12,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000378 + Fee to the baker: ꜩ0.000379 Expected counter: 1 - Gas limit: 1511 + Gas limit: 1521 Storage limit: 60000 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000378 - payload fees(the block proposer) ....... +ꜩ0.000378 + [PUBLIC_KEY_HASH] ... -ꜩ0.000379 + payload fees(the block proposer) ....... +ꜩ0.000379 Tx rollup origination: From: [PUBLIC_KEY_HASH] This tx rollup origination operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ15 storage fees ........................... +ꜩ15 - Consumed gas: 1410.112 + Consumed gas: 1420.112 Originated tx rollup: [TX_ROLLUP_HASH] ./tezos-client --wait none submit tx rollup batch 626c6f62 to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' Node is bootstrapped. -Estimated gas: 2564.880 units (will add 100 for safety) +Estimated gas: 2584.880 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -42,23 +42,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00052 + Fee to the baker: ꜩ0.000522 Expected counter: 2 - Gas limit: 2665 + Gas limit: 2685 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00052 - payload fees(the block proposer) ....... +ꜩ0.00052 + [PUBLIC_KEY_HASH] ... -ꜩ0.000522 + payload fees(the block proposer) ....... +ꜩ0.000522 Tx rollup transaction:[TX_ROLLUP_HASH], 4 bytes, From: [PUBLIC_KEY_HASH] This tx rollup submit operation was successfully applied Balance updates: - Consumed gas: 2564.880 + Consumed gas: 2584.880 ./tezos-client --wait none submit tx rollup commitment 0 '[TX_ROLLUP_INBOX_HASH]' '[TX_ROLLUP_MESSAGE_RESULT_HASH]' to '[TX_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' Node is bootstrapped. -Estimated gas: 3663.146 units (will add 100 for safety) +Estimated gas: 3818.146 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -69,20 +69,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000694 + Fee to the baker: ꜩ0.000709 Expected counter: 3 - Gas limit: 3764 + Gas limit: 3919 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000694 - payload fees(the block proposer) ....... +ꜩ0.000694 + [PUBLIC_KEY_HASH] ... -ꜩ0.000709 + payload fees(the block proposer) ....... +ꜩ0.000709 Tx rollup commitment:[TX_ROLLUP_HASH], commitment 0 : messages = [TX_ROLLUP_MESSAGE_RESULT_HASH] predecessor for inbox with merkle root [TX_ROLLUP_INBOX_HASH] From: [PUBLIC_KEY_HASH] This tx rollup commit operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ....................................................... -ꜩ10000 Frozen_bonds([PUBLIC_KEY_HASH],[TX_ROLLUP_HASH]) ... +ꜩ10000 - Consumed gas: 3663.146 + Consumed gas: 3818.146 ./tezos-client rpc get '/chains/main/blocks/head/context/tx_rollup/[TX_ROLLUP_HASH]/pending_bonded_commitments/[PUBLIC_KEY_HASH]' diff --git a/tezt/_regressions/tx_rollup_rpc_state.out b/tezt/_regressions/tx_rollup_rpc_state.out index 81383f13ef3c..1370fdb3245c 100644 --- a/tezt/_regressions/tx_rollup_rpc_state.out +++ b/tezt/_regressions/tx_rollup_rpc_state.out @@ -2,7 +2,7 @@ tx_rollup_rpc_state.out ./tezos-client --wait none originate tx rollup from '[PUBLIC_KEY_HASH]' --burn-cap 9999999 --storage-limit 60000 Node is bootstrapped. -Estimated gas: 1410.112 units (will add 100 for safety) +Estimated gas: 1420.112 units (will add 100 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,20 +12,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000378 + Fee to the baker: ꜩ0.000379 Expected counter: 1 - Gas limit: 1511 + Gas limit: 1521 Storage limit: 60000 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000378 - payload fees(the block proposer) ....... +ꜩ0.000378 + [PUBLIC_KEY_HASH] ... -ꜩ0.000379 + payload fees(the block proposer) ....... +ꜩ0.000379 Tx rollup origination: From: [PUBLIC_KEY_HASH] This tx rollup origination operation was successfully applied Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ15 storage fees ........................... +ꜩ15 - Consumed gas: 1410.112 + Consumed gas: 1420.112 Originated tx rollup: [TX_ROLLUP_HASH] -- GitLab From 705f3b7bfb7295ba85446f9a84b32c509101a4fe Mon Sep 17 00:00:00 2001 From: Yann Regis-Gianas Date: Wed, 6 Apr 2022 09:48:01 +0200 Subject: [PATCH 7/9] Proto,Tests: Add PBT to sqrt in saturation arithmetic Signed-off-by: Yann Regis-Gianas --- .../lib_protocol/test/pbt/saturation_fuzzing.ml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/proto_alpha/lib_protocol/test/pbt/saturation_fuzzing.ml b/src/proto_alpha/lib_protocol/test/pbt/saturation_fuzzing.ml index 7629a9ec642d..f44a036ab5f9 100644 --- a/src/proto_alpha/lib_protocol/test/pbt/saturation_fuzzing.ml +++ b/src/proto_alpha/lib_protocol/test/pbt/saturation_fuzzing.ml @@ -162,6 +162,20 @@ let test_leq_saturated = *) let test_geq_zero = QCheck.Test.make ~name:"t >= 0" t_arb (fun t -> zero <= t) +(* Test. + * Tests that [sqrt (t * t) = t] + *) +let test_squared_sqrt = + QCheck.Test.make ~name:"sqrt t² = t" t_arb (fun t -> + mul t t = saturated || sqrt (mul t t) = t) + +(* Test. + * Tests that [(sqrt t) * (sqrt t) <= t] + *) +let test_sqrt_squared = + QCheck.Test.make ~name:"(sqrt t)² <= t <= (succ (sqrt t))²" t_arb (fun t -> + mul (sqrt t) (sqrt t) <= t && t <= mul (succ (sqrt t)) (succ (sqrt t))) + let tests_add = [test_add_commutes; test_add_zero; test_add_neq] let tests_mul = [test_mul_commutes; test_mul_one; test_mul_zero] @@ -172,6 +186,8 @@ let tests_add_sub = [test_add_sub; test_sub_add] let tests_boundaries = [test_leq_saturated; test_geq_zero] +let tests_sqrt = [test_sqrt_squared; test_squared_sqrt] + let () = Alcotest.run "protocol > pbt > saturation" @@ -180,5 +196,6 @@ let () = ("mul", qcheck_wrap tests_mul); ("sub", qcheck_wrap tests_sub); ("add and sub", qcheck_wrap tests_add_sub); + ("sqrt", qcheck_wrap tests_sqrt); ("<= and >=", qcheck_wrap tests_boundaries); ] -- GitLab From 268d546de97c4e2980d07c4fbea69f3b9bd693e3 Mon Sep 17 00:00:00 2001 From: Yann Regis-Gianas Date: Wed, 6 Apr 2022 18:33:00 +0200 Subject: [PATCH 8/9] Tests: Update a constant that depends on the gas model Signed-off-by: Yann Regis-Gianas --- tezt/tests/manager_operations.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tezt/tests/manager_operations.ml b/tezt/tests/manager_operations.ml index 76ad402460f8..911ab064c587 100644 --- a/tezt/tests/manager_operations.ml +++ b/tezt/tests/manager_operations.ml @@ -861,7 +861,7 @@ module Deserialisation = struct (* Gas to execute call to noop contract without deserialization *) let gas_to_execute_rest_noop = function | Protocol.Hangzhou | Ithaca -> 2049 - | Alpha -> 2050 + | Alpha -> 2109 let inject_call_with_bytes ?(source = Constant.bootstrap5) ?protocol ~contract ~size_kB ~gas_limit client = -- GitLab From afb48174f2b3912021f7519c082c287558252700 Mon Sep 17 00:00:00 2001 From: Yann Regis-Gianas Date: Wed, 6 Apr 2022 21:17:19 +0200 Subject: [PATCH 9/9] Tests: Fix typo Signed-off-by: Yann Regis-Gianas --- tezt/tests/manager_operations.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tezt/tests/manager_operations.ml b/tezt/tests/manager_operations.ml index 911ab064c587..4f074fad56e0 100644 --- a/tezt/tests/manager_operations.ml +++ b/tezt/tests/manager_operations.ml @@ -935,7 +935,7 @@ module Deserialisation = struct ~__FILE__ ~title: "Smart contract call that would succeed if we did not account \ - deserializtion gas correctly" + deserialization gas correctly" ~tags:["precheck"; "gas"; "deserialization"; "lazy_expr"] @@ fun protocol -> let* nodes = Helpers.init ~protocol () in -- GitLab