From 9fb8cbc7dff877fef6584b0ce1331e31a656a886 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Cauderlier?= Date: Mon, 3 Oct 2022 16:47:09 +0200 Subject: [PATCH 1/4] Benchmarks/Michelson: bench unparsing without location stripping --- .../translator_benchmarks.ml | 6 ++++-- .../lib_protocol/script_ir_translator.mli | 20 +++++++++++++++++++ .../lib_protocol/script_ir_unparser.ml | 6 ++++++ .../lib_protocol/script_ir_unparser.mli | 20 +++++++++++++++++++ 4 files changed, 50 insertions(+), 2 deletions(-) diff --git a/src/proto_alpha/lib_benchmarks_proto/translator_benchmarks.ml b/src/proto_alpha/lib_benchmarks_proto/translator_benchmarks.ml index 8c9c3700f3ca..fe2bc09fd2e9 100644 --- a/src/proto_alpha/lib_benchmarks_proto/translator_benchmarks.ml +++ b/src/proto_alpha/lib_benchmarks_proto/translator_benchmarks.ml @@ -292,7 +292,8 @@ module Unparsing_data : Benchmark.S = struct let closure () = match Lwt_main.run - (Script_ir_translator.unparse_data + (Script_ir_translator.Internal_for_benchmarking.unparse_data + ~stack_depth:0 ctxt Script_ir_unparser.Optimized ty @@ -448,7 +449,8 @@ module Unparsing_code : Benchmark.S = struct let closure () = let result = Lwt_main.run - (Script_ir_translator.unparse_code + (Script_ir_translator.Internal_for_benchmarking.unparse_code + ~stack_depth:0 ctxt Optimized (Micheline.root node)) diff --git a/src/proto_alpha/lib_protocol/script_ir_translator.mli b/src/proto_alpha/lib_protocol/script_ir_translator.mli index 1cd86b18e6a1..6a65a2e20669 100644 --- a/src/proto_alpha/lib_protocol/script_ir_translator.mli +++ b/src/proto_alpha/lib_protocol/script_ir_translator.mli @@ -199,6 +199,26 @@ val unparse_code : Script.node -> (Script.expr * context) tzresult Lwt.t +(** For benchmarking purpose, we also export versions of the unparsing + functions which don't call location stripping. These functions are + not carbonated and should not be called directly from the protocol. *) +module Internal_for_benchmarking : sig + val unparse_data : + context -> + stack_depth:int -> + Script_ir_unparser.unparsing_mode -> + ('a, 'ac) ty -> + 'a -> + (Script.node * context) tzresult Lwt.t + + val unparse_code : + context -> + stack_depth:int -> + Script_ir_unparser.unparsing_mode -> + Script.node -> + (Script.node * context) tzresult Lwt.t +end + val parse_instr : elab_conf:Script_ir_translator_config.elab_config -> tc_context -> diff --git a/src/proto_alpha/lib_protocol/script_ir_unparser.ml b/src/proto_alpha/lib_protocol/script_ir_unparser.ml index 438ad6a7cb2f..c37c8ef5cfa6 100644 --- a/src/proto_alpha/lib_protocol/script_ir_unparser.ml +++ b/src/proto_alpha/lib_protocol/script_ir_unparser.ml @@ -763,6 +763,12 @@ module Data_unparser (P : MICHELSON_PARSER) = struct ([], ctxt) unparsed_datas >>?= fun (unparsed_datas, ctxt) -> return (List.rev unparsed_datas, ctxt) + + module Internal_for_benchmarking = struct + let unparse_data = unparse_data_rec + + let unparse_code = unparse_code_rec + end end let unparse_comparable_data ctxt mode ty v = diff --git a/src/proto_alpha/lib_protocol/script_ir_unparser.mli b/src/proto_alpha/lib_protocol/script_ir_unparser.mli index 64222161c66a..908fd7cdeaf0 100644 --- a/src/proto_alpha/lib_protocol/script_ir_unparser.mli +++ b/src/proto_alpha/lib_protocol/script_ir_unparser.mli @@ -205,4 +205,24 @@ module Data_unparser : functor (P : MICHELSON_PARSER) -> sig unparsing_mode -> Script.node -> (Script.expr * context, error trace) result Lwt.t + + (** For benchmarking purpose, we also export versions of the unparsing + functions which don't call location stripping. These functions are + not carbonated and should not be called directly from the protocol. *) + module Internal_for_benchmarking : sig + val unparse_data : + context -> + stack_depth:int -> + unparsing_mode -> + ('a, 'ac) ty -> + 'a -> + (Script.node * context) tzresult Lwt.t + + val unparse_code : + context -> + stack_depth:int -> + unparsing_mode -> + Script.node -> + (Script.node * context) tzresult Lwt.t + end end -- GitLab From 5b5550bb54da23f9a527f196f172ad3d46c74da1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Cauderlier?= Date: Mon, 3 Oct 2022 19:29:05 +0200 Subject: [PATCH 2/4] Proto/Michelson/Gas: Update gas costs according to new benchmarks --- .../lib_protocol/michelson_v1_gas.ml | 101 +++++++++--------- 1 file changed, 50 insertions(+), 51 deletions(-) diff --git a/src/proto_alpha/lib_protocol/michelson_v1_gas.ml b/src/proto_alpha/lib_protocol/michelson_v1_gas.ml index 92f5b0bcb210..e0e406b87e2c 100644 --- a/src/proto_alpha/lib_protocol/michelson_v1_gas.ml +++ b/src/proto_alpha/lib_protocol/michelson_v1_gas.ml @@ -56,8 +56,8 @@ module Cost_of = struct (* Automatically generated costs functions. *) (* model N_IAbs_int *) - (* Approximating 0.065045 x term *) - let cost_N_IAbs_int size = S.safe_int (20 + (size lsr 4)) + (* Allocates [size] bytes. *) + let cost_N_IAbs_int size = S.safe_int (20 + (size lsr 1)) (* model N_IAdd_bls12_381_fr *) (* when benchmarking, compile bls12-381 without ADX *) @@ -71,10 +71,11 @@ module Cost_of = struct (* when benchmarking, compile bls12-381 without ADX *) let cost_N_IAdd_bls12_381_g2 = S.safe_int 2_470 + (* Allocates [max size1 size2] *) 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 35 + ((v0 lsr 4) + (v0 lsr 7)) + S.safe_int 35 + (v0 lsr 1) (* model N_IAdd_int *) (* Approximating 0.078154 x term *) @@ -105,20 +106,18 @@ module Cost_of = struct let cost_N_IAnd = S.safe_int 10 (* model N_IAnd_int_nat *) - (* Approximating 0.076804 x 2 x term *) + (* Allocates [min size1 size2] *) 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 35 + ((v0 lsr 3) + (v0 lsr 6)) + S.safe_int 35 + (v0 lsr 1) (* model N_IAnd_nat *) - (* Approximating 0.076804 x term *) - (* The difference with `cost_N_IAnd_int_nat` comes from Zarith, where the - complexity of `Z.logand` depends on the sign of the argument. *) + (* Allocates [min size1 size2] *) 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 35 + ((v0 lsr 4) + (v0 lsr 7)) + S.safe_int 35 + (v0 lsr 1) (* model N_IApply *) let cost_N_IApply rec_flag = @@ -194,18 +193,18 @@ module Cost_of = struct S.safe_int 35 + ((v0 lsr 6) + (v0 lsr 7)) (* model N_IConcat_bytes_pair *) - (* Approximating 0.065017 x term *) + (* Allocates [size1 + size2] *) 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 45 + (v0 lsr 4) + S.safe_int 45 + (v0 lsr 1) (* model N_IConcat_string_pair *) - (* Approximating 0.061402 x term *) + (* Allocates [size1 + size2] *) 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 45 + (v0 lsr 4) + S.safe_int 45 + (v0 lsr 1) (* model N_ICons_list *) let cost_N_ICons_list = S.safe_int 10 @@ -226,7 +225,7 @@ module Cost_of = struct let cost_N_IContract = S.safe_int 30 (* model N_ICreate_contract *) - let cost_N_ICreate_contract = S.safe_int 30 + let cost_N_ICreate_contract = S.safe_int 60 (* model N_IDiff_timestamps *) (* Approximating 0.077922 x term *) @@ -243,11 +242,11 @@ module Cost_of = struct let cost_N_IDip = S.safe_int 10 (* model N_IDipN *) - (* Approximating 2.740571 x term *) + (* Approximating 4.05787663635 x term *) let cost_N_IDipN size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 30 + ((S.safe_int 2 * v0) + (v0 lsr 1) + (v0 lsr 3)) + S.safe_int 15 + (S.safe_int 4 * v0) (* model N_IView *) let cost_N_IView = S.safe_int 1460 @@ -280,12 +279,14 @@ module Cost_of = struct S.safe_int 20 + v0 + (v0 lsr 2) let cost_div_int size1 size2 = + (* Allocates at most [size1] bytes *) + let open S_syntax in + let v1 = S.safe_int size1 in let q = size1 - size2 in - if Compare.Int.(q < 0) then S.safe_int 105 + if Compare.Int.(q < 0) then S.safe_int 105 + (v1 lsr 1) else - let open S_syntax in let v0 = S.safe_int q * S.safe_int size2 in - S.safe_int 105 + (v0 lsr 10) + (v0 lsr 11) + (v0 lsr 13) + S.safe_int 105 + (v0 lsr 10) + (v0 lsr 11) + (v0 lsr 13) + (v1 lsr 1) (* model N_IEdiv_int *) (* Approximating 0.001591 x term *) @@ -302,13 +303,13 @@ module Cost_of = struct let cost_N_IEdiv_teznat = S.safe_int 70 (* model N_IEmpty_big_map *) - let cost_N_IEmpty_big_map = S.safe_int 10 + let cost_N_IEmpty_big_map = S.safe_int 300 (* model N_IEmpty_map *) - let cost_N_IEmpty_map = S.safe_int 220 + let cost_N_IEmpty_map = S.safe_int 300 (* model N_IEmpty_set *) - let cost_N_IEmpty_set = S.safe_int 220 + let cost_N_IEmpty_set = S.safe_int 300 (* model N_IEq *) let cost_N_IEq = S.safe_int 10 @@ -326,7 +327,7 @@ module Cost_of = struct let cost_N_IGt = S.safe_int 10 (* model N_IHalt *) - let cost_N_IHalt = S.safe_int 10 + let cost_N_IHalt = S.safe_int 15 (* model N_IHash_key *) let cost_N_IHash_key = S.safe_int 605 @@ -394,18 +395,18 @@ module Cost_of = struct let cost_N_ILoop_left = S.safe_int 10 (* model N_ILsl_nat *) - (* Approximating 0.115642 x term *) + (* Allocates at most [size + 256] bytes *) let cost_N_ILsl_nat size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 40 + ((v0 lsr 4) + (v0 lsr 5) + (v0 lsr 6)) + S.safe_int 128 + (v0 lsr 1) (* model N_ILsr_nat *) - (* Approximating 0.115565 x term *) + (* Allocates at most [size] bytes*) let cost_N_ILsr_nat size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 45 + ((v0 lsr 4) + (v0 lsr 5) + (v0 lsr 6)) + S.safe_int 45 + (v0 lsr 1) (* model N_ILt *) let cost_N_ILt = S.safe_int 10 @@ -432,11 +433,11 @@ module Cost_of = struct S.safe_int 50 + (S.safe_int 7 * v0) + (v0 lsr 1) + (v0 lsr 3) (* model N_IMap_map *) - (* Approximating 7.46280485884 x term *) + (* Approximating 8.38965386732 x term *) let cost_N_IMap_map size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 50 + ((S.safe_int 7 * v0) + (v0 lsr 1)) + S.safe_int 40 + ((S.safe_int 8 * v0) + (v0 lsr 1)) (* model N_IMap_mem *) (* Approximating 0.048446 x term *) @@ -516,10 +517,10 @@ module Cost_of = struct let cost_N_INeg_bls12_381_g2 = S.safe_int 70 (* model N_INeg *) - (* Approximating 0.066076 x term *) + (* Allocates [size] bytes *) let cost_N_INeg size = let open S_syntax in - S.safe_int 25 + (S.safe_int size lsr 4) + S.safe_int 25 + (S.safe_int size lsr 1) (* model N_INeq *) let cost_N_INeq = S.safe_int 10 @@ -531,11 +532,11 @@ module Cost_of = struct let cost_N_INot = S.safe_int 10 (* model N_INot_int *) - (* Approximating 0.075541 x term *) + (* Allocates [size] bytes *) let cost_N_INot_int size = let open S_syntax in let v0 = S.safe_int size in - S.safe_int 25 + ((v0 lsr 4) + (v0 lsr 7)) + S.safe_int 25 + (v0 lsr 1) (* model N_INow *) let cost_N_INow = S.safe_int 10 @@ -570,7 +571,7 @@ module Cost_of = struct let cost_N_IRight = S.safe_int 10 (* model N_ISapling_empty_state *) - let cost_N_ISapling_empty_state = S.safe_int 10 + let cost_N_ISapling_empty_state = S.safe_int 300 (* model N_ISapling_verify_update *) let cost_N_ISapling_verify_update size1 size2 bound_data = @@ -591,7 +592,7 @@ module Cost_of = struct let cost_N_ISender = S.safe_int 10 (* model N_ISet_delegate *) - let cost_N_ISet_delegate = S.safe_int 30 + let cost_N_ISet_delegate = S.safe_int 60 (* model N_ISet_iter *) (* Approximating 7.633555 x term *) @@ -622,26 +623,26 @@ module Cost_of = struct S.safe_int 680 + (S.safe_int 3 * v0) (* model N_ISlice_bytes *) - (* Approximating 0.065752 x term *) + (* Allocates [size] bytes *) let cost_N_ISlice_bytes size = let open S_syntax in - S.safe_int 25 + (S.safe_int size lsr 4) + S.safe_int 25 + (S.safe_int size lsr 1) (* model N_ISlice_string *) - (* Approximating 0.065688 x term *) + (* Allocates [size] bytes *) let cost_N_ISlice_string size = let open S_syntax in - S.safe_int 25 + (S.safe_int size lsr 4) + S.safe_int 25 + (S.safe_int size lsr 1) (* model N_ISource *) let cost_N_ISource = S.safe_int 10 (* model N_ISplit_ticket *) - (* Approximating 0.132362 x term *) + (* Allocates [max size1 size2] *) 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 40 + (v1 lsr 3) + S.safe_int 40 + (v1 lsr 1) (* model N_IString_size *) let cost_N_IString_size = S.safe_int 15 @@ -667,10 +668,10 @@ module Cost_of = struct let cost_N_ITicket = S.safe_int 10 (* model N_ITotal_voting_power *) - let cost_N_ITotal_voting_power = S.safe_int 370 + let cost_N_ITotal_voting_power = S.safe_int 450 (* model N_ITransfer_tokens *) - let cost_N_ITransfer_tokens = S.safe_int 30 + let cost_N_ITransfer_tokens = S.safe_int 60 (* model N_IUncomb *) (* Approximating 3.944710 x term *) @@ -683,7 +684,7 @@ module Cost_of = struct let cost_N_IUnpair = S.safe_int 10 (* model N_IVoting_power *) - let cost_N_IVoting_power = S.safe_int 530 + let cost_N_IVoting_power = S.safe_int 640 (* model N_IXor *) let cost_N_IXor = S.safe_int 15 @@ -721,7 +722,7 @@ module Cost_of = struct let cost_N_KMap_enter_body = S.safe_int 80 (* model N_KNil *) - let cost_N_KNil = S.safe_int 10 + let cost_N_KNil = S.safe_int 15 (* model N_KReturn *) let cost_N_KReturn = S.safe_int 10 @@ -939,7 +940,7 @@ module Cost_of = struct (* model UNPARSING_DATA This is the cost of one iteration of unparse_data, extracted by hand from the parameter fit for the UNPARSING_DATA benchmark. *) - let cost_UNPARSING_DATA = S.safe_int 45 + let cost_UNPARSING_DATA = S.safe_int 65 (* model PARSE_TYPE This is the cost of one iteration of parse_ty, extracted by hand from the @@ -1565,13 +1566,11 @@ module Cost_of = struct (* This is the cost of allocating a string and blitting existing ones into it. *) let concat_string total_bytes = - atomic_step_cost - S.(add (S.safe_int 100) (S.ediv total_bytes (S.safe_int 10))) + atomic_step_cost S.(add (S.safe_int 100) (S.shift_right total_bytes 1)) (* Same story as Concat_string. *) let concat_bytes total_bytes = - atomic_step_cost - S.(add (S.safe_int 100) (S.ediv total_bytes (S.safe_int 10))) + atomic_step_cost S.(add (S.safe_int 100) (S.shift_right total_bytes 1)) (* Cost of access taken care of in Contract_storage.get_balance_carbonated *) let balance = Gas.free @@ -1580,7 +1579,7 @@ module Cost_of = struct let unpack bytes = let blen = Bytes.length bytes in let open S_syntax in - atomic_step_cost (S.safe_int 260 + (S.safe_int blen lsr 3)) + atomic_step_cost (S.safe_int 260 + (S.safe_int blen lsr 1)) (* TODO benchmark *) (* FIXME: imported from 006, needs proper benchmarks *) -- GitLab From a5cd81db0cb1fdbf9f3d92827ecdbd08477d2fed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Cauderlier?= Date: Tue, 4 Oct 2022 13:31:25 +0200 Subject: [PATCH 3/4] Tests/Python: reset regression traces --- ...tion::test_big_map_origination_literal.out | 4 +- ...s.TestContractOnchainLevel::test_level.out | 12 +- ...ontractOnchainOpcodes::test_init_proxy.out | 4 +- ...tractOnchainOpcodes::test_set_delegate.out | 12 +- ...TestContractOnchainOpcodes::test_slice.out | 4 +- ...ef0e55c43a9a857214d8761e67b.7da5c9014e.out | 6 +- ...estContractOnchainOpcodes::test_source.out | 14 +- ...ntractOnchainOpcodes::test_split_bytes.out | 12 +- ...tractOnchainOpcodes::test_split_string.out | 12 +- ...ntractOnchainOpcodes::test_store_input.out | 12 +- ...trace_origination[compare_big_type.tz].out | 4 +- ...race_origination[compare_big_type2.tz].out | 4 +- ...ctOnchainOpcodes::test_transfer_amount.out | 16 +- ...ctOnchainOpcodes::test_transfer_tokens.out | 26 +- ...(Some 4) {})-\"hello\"-(Pa.f6092ac5d6.out" | 10 +- ...(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" | 10 +- ..." \"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 +- ... \"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" | 66 +- ...tContractOpcodes::test_check_signature.out | 34 +- ...tract_input_output[abs.tz-Unit-0-Unit].out | 8 +- ....tz-Unit-12039123919239192312931-Unit].out | 18 +- ...act_input_output[abs.tz-Unit-948-Unit].out | 18 +- ...ct_input_output[add.tz-Unit-Unit-Unit].out | 118 +-- ...air -100 100)-(Some \"1970.7c1b1e4e5b.out" | 10 +- ...air 0 \"1970-01-01T00:00:0.528ed42c01.out" | 10 +- ...air 100 100)-(Some \"1970-.6566111ad2.out" | 10 +- ...air \"1970-01-01T00:00:00Z.72c424f3da.out" | 10 +- ...air 100 -100)-(Some \"1970.7c4b12e9aa.out" | 10 +- ...air 100 100)-(Some \"1970-.af32743640.out" | 10 +- ...t_output[and_binary.tz-Unit-Unit-Unit].out | 56 +- ...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 | 14 +- ...air {} None)-1-(Pair 4 (Some False))1].out | 14 +- ... \"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" | 14 +- ...ut[bls12_381_fr_to_mutez.tz-0-0x10-16].out | 10 +- ...mb-get.tz-Unit-(Pair 1 4 2 Unit)-Unit].out | 66 +- ...nput_output[compare.tz-Unit-Unit-Unit].out | 344 ++++---- ...; -1 ; 0 ; 1 ; 9999999 }-{ .bbaa8924d2.out | 186 ++--- ...-{ \"World!\" }-{ \"Hello World!\" }].out" | 8 +- ..."test2\" }-{ \"Hello test1.c27e8c3ee6.out" | 14 +- ...}-{ 0xab ; 0xcd }-{ 0xffab ; 0xffcd }].out | 14 +- ...hello_bytes.tz-{}-{ 0xcd }-{ 0xffcd }].out | 8 +- ...; \"World\" ; \"!\" }-\"He.0c7b4cd53c.out" | 66 +- ...\"-{ \"a\" ; \"b\" ; \"c\" }-\"abc\"].out" | 48 +- ...ir { \"A\" } { \"B\" })-(Some False)].out" | 88 +-- ...\"B\" ; \"asdf\" ; \"C\" }.4360bbe5d0.out" | 232 +++--- ...\"C\" ; \"asdf\" } { \"B\".ff6e4785ee.out" | 254 +++--- ...air { \"B\" } { \"B\" })-(Some True)].out" | 88 +-- ...ir { \"c\" } { \"B\" })-(Some False)].out" | 88 +-- ..._all.tz-None-(Pair {} {})-(Some True)].out | 26 +- ...wnzENRdhe2Kb8ZdTrdNy4bFNyScx5\"-Unit].out" | 10 +- ...Some \"KT1Mjjcb6tmSsLm7Cb3.c3984fbc14.out" | 14 +- ...970-01-01T00:03:20Z\" \"19.90e9215d17.out" | 8 +- ...t[diff_timestamps.tz-111-(Pair 0 0)-0].out | 8 +- ...[diff_timestamps.tz-111-(Pair 0 1)--1].out | 8 +- ...t[diff_timestamps.tz-111-(Pair 1 0)-1].out | 8 +- ...r 16 (Pair 15 (Pair 14 (Pai.2794d4782e.out | 736 +++++++++--------- ... 3 (Pair 12 (Pair 16 (Pair .d473151c0f.out | 736 +++++++++--------- ...air (Pair (Pair (Pair 1 2) 3) 4) 5)-5].out | 6 +- ...p.tz-(Pair 0 0)-(Pair 1 1)-(Pair 1 2)].out | 8 +- ...z-(Pair 0 0)-(Pair 15 9)-(Pair 15 24)].out | 8 +- ...air (Pair (Pair (Pair 1 2) 3) 4) 5)-6].out | 26 +- ..._input_output[dup-n.tz-Unit-Unit-Unit].out | 58 +- ... None)-(Pair -8 2)-(Pair (S.ecc0e72cbb.out | 56 +- ... None)-(Pair 10 -3)-(Pair (.3caea50555.out | 56 +- ... None)-(Pair 10 0)-(Pair No.f9448c04fb.out | 56 +- ... None)-(Pair 10 (Left 0))-(Left None)].out | 6 +- ...air 10 (Left 10))-(Left (So.f782cc1dec.out | 6 +- ...air 10 (Left 3))-(Left (Som.016b4db96c.out | 6 +- ...one)-(Pair 10 (Right 0))-(Right None)].out | 6 +- ...air 10 (Right 10))-(Right (.e705a30e07.out | 6 +- ...air 10 (Right 3))-(Right (S.44485eda6a.out | 6 +- ...air 5 (Right 10))-(Right (S.8ab987af15.out | 6 +- ...t_input_output[emit.tz-Unit-Unit-Unit].out | 20 +- ...-{}-Unit-{ Elt \"hello\" \"world\" }].out" | 14 +- ...t[exec_concat.tz-\"?\"-\"\"-\"_abc\"].out" | 8 +- ...oncat.tz-\"?\"-\"test\"-\"test_abc\"].out" | 8 +- ...tput[first.tz-111-{ 1 ; 2 ; 3 ; 4 }-1].out | 8 +- ...act_input_output[first.tz-111-{ 4 }-4].out | 8 +- ...me 4) {})-\"hello\"-(Pair .161d86cef6.out" | 10 +- ...me 5) { Elt \"hello\" 4 }).684ab7e326.out" | 10 +- ...me 5) { Elt \"hello\" 4 }).d49817fb83.out" | 10 +- ...e { Elt \"1\" 1 ; .6900b1da14.out" | 10 +- ...e { Elt \"1\" 1 ; .bca0ede8be.out" | 10 +- ... { Elt \"hello\" 4 })-\"he.c1b4e1d6dc.out" | 10 +- ...ir None {})-\"hello\"-(Pair None {})].out" | 10 +- ... \"1\" \"one\" ; .bc4127094e.out" | 10 +- ..."hello\" \"hi\" })-\"\"-(P.0c03056487.out" | 10 +- ...\"hello\" \"hi\" })-\"hell.cc45544c66.out" | 10 +- ...xb4c26c20de52a4eaf0d8a340d.2bba28b0bf.out" | 8 +- ...-0x46fdbcb4ea4eadad5615cda.acc82cd954.out" | 8 +- ..._output[if.tz-None-False-(Some False)].out | 8 +- ...ut_output[if.tz-None-True-(Some True)].out | 8 +- ....tz-\"?\"-(Some \"hello\")-\"hello\"].out" | 6 +- ...ut_output[if_some.tz-\"?\"-None-\"\"].out" | 6 +- ...Left \"X\")-(Left True)-(Right True)].out" | 6 +- ...ft \"X\")-(Right \"a\")-(Left \"a\")].out" | 6 +- ...{ \"d\" ; \"e\" ; \"f\" }-\"abcdef\"].out" | 6 +- ...ut[list_concat.tz-\"abc\"-{}-\"abc\"].out" | 6 +- ...tz-0x-{ 0x00 ; 0x11 ; 0x00 }-0x001100].out | 6 +- ...b-{ 0xcd ; 0xef ; 0x00 }-0x00abcdef00].out | 6 +- ...list_concat_bytes.tz-0xabcd-{}-0xabcd].out | 6 +- ... ; \"3\" }-{ \"1\" ; \"2\" ; \"3\" }].out" | 10 +- ... ; \"c\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 10 +- ...tput[list_iter.tz-0-{ 10 ; 2 ; 1 }-20].out | 14 +- ...tput[list_iter.tz-0-{ 3 ; 6 ; 9 }-162].out | 14 +- ...}-{ 1 ; 1 ; 1 ; 1 }-{ 1 ; 2 ; 3 ; 4 }].out | 78 +- ...}-{ 1 ; 2 ; 3 ; 0 }-{ 1 ; 3 ; 5 ; 3 }].out | 78 +- ...ut_output[list_map_block.tz-{0}-{}-{}].out | 2 +- ... ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 98 +-- ...put_output[loop_left.tz-{\"\"}-{}-{}].out" | 14 +- ... Elt 0 100 ; Elt 2 100 }-(Pair 2 200)].out | 70 +- ...-{ Elt 1 1 ; Elt 2 100 }-(Pair 3 101)].out | 70 +- ...foo\" 1 }-15-{ Elt \"bar\".12b9d73d5a.out" | 28 +- ...lt \"foo\" 1 }-10-{ Elt \"foo\" 11 }].out" | 16 +- ...ract_input_output[map_map.tz-{}-10-{}].out | 6 +- ... 1 } None)-1-(Pair { Elt 0 .7396e5f090.out | 14 +- ... 0 } None)-1-(Pair { Elt 1 .cef8ce601a.out | 14 +- ... 4 ; Elt 2 11 } None)-1-(Pa.1a55a5bfa5.out | 14 +- ... 4 ; Elt 2 11 } None)-2-(Pa.89cc24d256.out | 14 +- ... 4 ; Elt 2 11 } None)-3-(Pa.2fba3165c0.out | 14 +- ...air {} None)-1-(Pair {} (Some False))].out | 14 +- ...ar\" 4 ; Elt \"foo\" 11 } .6d625e02a5.out" | 14 +- ...ar\" 4 ; Elt \"foo\" 11 } .a7e3837a82.out" | 14 +- ...ar\" 4 ; Elt \"foo\" 11 } .c7716fe79e.out" | 14 +- ...oo\" 0 } None)-\"foo\"-(Pa.7861a3b1e2.out" | 14 +- ...oo\" 1 } None)-\"bar\"-(Pa.fa8366e8a8.out" | 14 +- ...None)-\"bar\"-(Pair {} (Some False))].out" | 14 +- ...ct_input_output[mul.tz-Unit-Unit-Unit].out | 88 +-- ...0-257-0x0101000000000000000.be11332c7f.out | 12 +- ...2-16-0x10000000000000000000.8230fb4fac.out | 12 +- ...act_input_output[neg.tz-0-(Left -2)-2].out | 6 +- ...ract_input_output[neg.tz-0-(Left 0)-0].out | 6 +- ...act_input_output[neg.tz-0-(Left 2)--2].out | 6 +- ...act_input_output[neg.tz-0-(Right 0)-0].out | 6 +- ...ct_input_output[neg.tz-0-(Right 2)--2].out | 6 +- ...not_binary.tz-None-(Left -8)-(Some 7)].out | 8 +- ...not_binary.tz-None-(Left -9)-(Some 8)].out | 8 +- ...not_binary.tz-None-(Left 0)-(Some -1)].out | 8 +- ...not_binary.tz-None-(Left 7)-(Some -8)].out | 8 +- ...not_binary.tz-None-(Left 8)-(Some -9)].out | 8 +- ...ot_binary.tz-None-(Right 0)-(Some -1)].out | 8 +- ...ot_binary.tz-None-(Right 7)-(Some -8)].out | 8 +- ...ot_binary.tz-None-(Right 8)-(Some -9)].out | 8 +- ... (Pair 1 (Pair \"foobar\".368bdfd73a.out" | 270 +++---- ... (Pair 1 (Pair \"foobar\".735d9ae802.out" | 270 +++---- ...ir \"edpkuBknW28nW72KG6RoH.1ac5de50fb.out" | 330 ++++---- ...ir \"edpkuBknW28nW72KG6RoH.4e20b52378.out" | 330 ++++---- ...ntract_input_output[pexec.tz-14-38-52].out | 18 +- ... 0 ; 1 ; 2 ; 3}-4-{ 0 ; 7 ; 14 ; 21 }].out | 140 ++-- ... ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 14 +- ... ; \"a\" }-{ \"a\" ; \"b\" ; \"c\" }].out" | 56 +- ..._output[reverse_loop.tz-{\"\"}-{}-{}].out" | 10 +- ...tput[sapling_empty_state.tz-{}-Unit-0].out | 6 +- ...output[self_address.tz-Unit-Unit-Unit].out | 20 +- ..._default_entrypoint.tz-Unit-Unit-Unit].out | 20 +- ...entrypoint.tz-Unit-Left (Left 0)-Unit].out | 64 +- ...Pair \"hello\" 0)-\"\"-(Pair \"\" 0)].out" | 18 +- ..."hello\" 0)-\"abc\"-(Pair \"abc\" 0)].out" | 18 +- ...lo\" 0)-\"world\"-(Pair \"world\" 0)].out" | 18 +- ...ir \"hello\" 0)-1-(Pair \"hello\" 1)].out" | 16 +- ... \"hello\" 500)-3-(Pair \"hello\" 3)].out" | 16 +- ..."hello\" 7)-100-(Pair \"hello\" 100)].out" | 16 +- ..._iter.tz-111-{ -100 ; 1 ; 2 ; 3 }--94].out | 18 +- ..._input_output[set_iter.tz-111-{ 1 }-1].out | 6 +- ..."World\" } None)-\"\"-(Pai.3d2044726e.out" | 22 +- ...)-\"Hi\"-(Pair { \"Hi\" } .564beb9251.out" | 22 +- ... None)-\"Hi\"-(Pair {} (Some False))].out" | 22 +- ...ts.tz-None-(Left (Pair 0 0))-(Some 0)].out | 8 +- ...ts.tz-None-(Left (Pair 0 1))-(Some 0)].out | 8 +- ...ts.tz-None-(Left (Pair 1 2))-(Some 4)].out | 8 +- ....tz-None-(Left (Pair 15 2))-(Some 60)].out | 8 +- ...s.tz-None-(Left (Pair 8 1))-(Some 16)].out | 8 +- ...s.tz-None-(Right (Pair 0 0))-(Some 0)].out | 8 +- ...s.tz-None-(Right (Pair 0 1))-(Some 0)].out | 8 +- ...s.tz-None-(Right (Pair 1 2))-(Some 0)].out | 8 +- ....tz-None-(Right (Pair 15 2))-(Some 3)].out | 8 +- ...s.tz-None-(Right (Pair 8 1))-(Some 4)].out | 8 +- ...ut_output[slice.tz-None-Pair 0 0-None].out | 6 +- ...tz-Some \"Foo\"-Pair 0 0-(Some \"\")].out" | 8 +- ...slice.tz-Some \"Foo\"-Pair 0 10-None].out" | 8 +- ...-Some \"Foo\"-Pair 0 2-(Some \"Fo\")].out" | 8 +- ...z-Some \"Foo\"-Pair 1 1-(Some \"o\")].out" | 8 +- ...[slice.tz-Some \"Foo\"-Pair 1 3-None].out" | 8 +- ...slice.tz-Some \"Foo\"-Pair 10 5-None].out" | 8 +- ...FooFooFooFooFooFooFooFooFo.c508d67bb0.out" | 8 +- ...put[slice_bytes.tz-None-Pair 0 1-None].out | 6 +- ...s.tz-Some 0xaabbcc-Pair 0 0-(Some 0x)].out | 8 +- ...tz-Some 0xaabbcc-Pair 0 1-(Some 0xaa)].out | 8 +- ...z-Some 0xaabbcc-Pair 1 1-(Some 0xbb)0].out | 8 +- ...z-Some 0xaabbcc-Pair 1 1-(Some 0xbb)1].out | 8 +- ...-Some 0xaabbcc-Pair 1 2-(Some 0xbbcc)].out | 8 +- ..._bytes.tz-Some 0xaabbcc-Pair 1 3-None].out | 8 +- ...aabbccaabbccaabbccaabbccaab.df5895de85.out | 8 +- ...r 100 -100)-\"1970-01-01T00:03:20Z\"].out" | 8 +- ...ir 100 100)-\"1970-01-01T00:00:00Z\"].out" | 8 +- ...Pair 100 200000000000000000.3db82d2c25.out | 8 +- ...00000 1000000)-(Some (Pair .b461aa042b.out | 32 +- ...10000 1010000)-(Some (Pair .1e8cf7679c.out | 32 +- ...dpkuBknW28nW72KG6RoHtYW7p1.b42f8370be.out" | 14 +- ...Pair False False)-(Some (Left False))].out | 8 +- ... (Pair False True)-(Some (Left True))].out | 8 +- ... (Pair True False)-(Some (Left True))].out | 8 +- ... (Pair True True)-(Some (Left False))].out | 8 +- ...one-Right (Pair 0 0)-(Some (Right 0))].out | 8 +- ...one-Right (Pair 0 1)-(Some (Right 1))].out | 8 +- ...one-Right (Pair 1 0)-(Some (Right 1))].out | 8 +- ...one-Right (Pair 1 1)-(Some (Right 0))].out | 8 +- ...-Right (Pair 42 21)-(Some (Right 63))].out | 8 +- ...-Right (Pair 42 63)-(Some (Right 21))].out | 8 +- ...s::test_hash_consistency_michelson_cli.out | 2 +- ...s.TestContractOpcodes::test_packunpack.out | 38 +- ...roveTransferRemove::test_add_liquidity.out | 10 +- ...ddApproveTransferRemove::test_approval.out | 4 +- ...TransferRemove::test_approved_transfer.out | 6 +- ...roveTransferRemove::test_call_approve1.out | 4 +- ...roveTransferRemove::test_call_approve2.out | 4 +- ...roveTransferRemove::test_call_approve3.out | 4 +- ...TransferRemove::test_call_mint_or_burn.out | 4 +- ...eTransferRemove::test_remove_liquidity.out | 16 +- ..._baking.TestTrades::test_add_liquidity.out | 10 +- ...uidity_baking.TestTrades::test_buy_tok.out | 8 +- ..._baking.TestTrades::test_call_approve1.out | 4 +- ..._baking.TestTrades::test_call_approve2.out | 4 +- ..._baking.TestTrades::test_call_approve3.out | 4 +- ...ing.TestTrades::test_call_mint_or_burn.out | 4 +- ...idity_baking.TestTrades::test_sell_tok.out | 8 +- ...idity_baking.TestTrades::test_transfer.out | 6 +- 260 files changed, 4100 insertions(+), 4100 deletions(-) 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 d256b4e4d48f..22cb78e95142 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: 1643.456 units (will add 100 for safety) +Estimated gas: 1643.536 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]' @@ -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: 1643.456 + Consumed gas: 1643.536 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 69d6bbb732d5..527152e28a4b 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: 1410.219 units (will add 100 for safety) +Estimated gas: 1410.239 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: 1410.219 + Consumed gas: 1410.239 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: 2109.315 units (will add 100 for safety) +Estimated gas: 2109.345 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_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: 2109.315 + Consumed gas: 2109.345 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.062 units (will add 100 for safety) +Estimated gas: 1203.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -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.062 + Consumed gas: 1203.092 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 d2cfed9adff6..a1b8a98789b4 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: 1415.522 units (will add 100 for safety) +Estimated gas: 1415.542 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]' @@ -39,7 +39,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 55 bytes Paid storage size diff: 55 bytes - Consumed gas: 1415.522 + Consumed gas: 1415.542 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 5f24d1b3e9fa..c6bf836e9da9 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: 1413.374 units (will add 100 for safety) +Estimated gas: 1413.394 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]' @@ -33,7 +33,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 51 bytes Paid storage size diff: 51 bytes - Consumed gas: 1413.374 + Consumed gas: 1413.394 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: 3115.379 units (will add 100 for safety) +Estimated gas: 3115.444 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_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: 2115.379 + Consumed gas: 2115.444 Internal operations: Internal 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.088 units (will add 100 for safety) +Estimated gas: 2203.153 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -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.088 + Consumed gas: 1203.153 Internal operations: Internal 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 2d063a4781f0..522d7e2d29cb 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: 1891.514 units (will add 100 for safety) +Estimated gas: 1891.694 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]' @@ -73,7 +73,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 578 bytes Paid storage size diff: 578 bytes - Consumed gas: 1891.514 + Consumed gas: 1891.694 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 de3da38e0b2d..d73e376618a7 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: 3594.922 units (will add 100 for safety) +Estimated gas: 3595.324 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]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000877 Expected counter: [EXPECTED_COUNTER] - Gas limit: 3695 + Gas limit: 3696 Storage limit: 277 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000877 @@ -29,7 +29,7 @@ This sequence of operations was run: Updated storage: [OPERATION_HASH]48f709699019725ba Storage size: 578 bytes - Consumed gas: 2594.922 + Consumed gas: 2595.324 Internal operations: Internal Transaction: Amount: ꜩ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 d41451550e3a..c14480dfd790 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: 1414.687 units (will add 100 for safety) +Estimated gas: 1414.707 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]' @@ -33,7 +33,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 65 bytes Paid storage size diff: 65 bytes - Consumed gas: 1414.687 + Consumed gas: 1414.707 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: 2110.849 units (will add 100 for safety) +Estimated gas: 2110.879 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_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: 2110.849 + Consumed gas: 2110.879 Injected block at minimal timestamp "[CONTRACT_HASH]" [CONTRACT_HASH] Node is bootstrapped. -Estimated gas: 3772.609 units (will add 100 for safety) +Estimated gas: 3772.724 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_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: 2569.067 + Consumed gas: 2569.152 Internal operations: Internal 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: 1203.542 + Consumed gas: 1203.572 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 dc3e91341197..b4d53bda9c9b 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: 1473.572 units (will add 100 for safety) +Estimated gas: 1473.672 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]' @@ -55,7 +55,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 254 bytes Paid storage size diff: 254 bytes - Consumed gas: 1473.572 + Consumed gas: 1473.672 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: 2151.411 units (will add 100 for safety) +Estimated gas: 2151.619 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]' @@ -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: 2151.411 + Consumed gas: 2151.619 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.360 units (will add 100 for safety) +Estimated gas: 1207.658 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]' @@ -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.360 + Consumed gas: 1207.658 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 0e2d2bdcb881..641d1145bfcf 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: 1473.572 units (will add 100 for safety) +Estimated gas: 1473.672 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]' @@ -55,7 +55,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 254 bytes Paid storage size diff: 254 bytes - Consumed gas: 1473.572 + Consumed gas: 1473.672 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: 2151.475 units (will add 100 for safety) +Estimated gas: 2151.683 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]' @@ -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: 2151.475 + Consumed gas: 2151.683 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.424 units (will add 100 for safety) +Estimated gas: 1207.722 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]' @@ -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.424 + Consumed gas: 1207.722 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 d70bef25a5ec..3bd01ce7bc75 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 @@ -67,7 +67,7 @@ Injected block at minimal timestamp 1000 ꜩ 2000 ꜩ Node is bootstrapped. -Estimated gas: 1409.091 units (will add 100 for safety) +Estimated gas: 1409.111 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: 1409.091 + Consumed gas: 1409.111 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: 2109.095 units (will add 100 for safety) +Estimated gas: 2109.125 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]' @@ -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: 2109.095 + Consumed gas: 2109.125 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.250 units (will add 100 for safety) +Estimated gas: 1203.280 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.250 + Consumed gas: 1203.280 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 9cb43b5a69c8..1e02adea6c53 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: 2439.280 units (will add 100 for safety) +Estimated gas: 2439.320 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]' @@ -78,7 +78,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 128 bytes Paid storage size diff: 128 bytes - Consumed gas: 2439.280 + Consumed gas: 2439.320 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 09283d70668b..5df3d3193cce 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: 2599.169 units (will add 100 for safety) +Estimated gas: 2599.209 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]' @@ -82,7 +82,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 136 bytes Paid storage size diff: 136 bytes - Consumed gas: 2599.169 + Consumed gas: 2599.209 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 67b3d0875a80..8349d14c1b9f 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.997 units (will add 100 for safety) +Estimated gas: 1410.017 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]' @@ -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.000421 + Fee to the baker: ꜩ0.000422 Expected counter: [EXPECTED_COUNTER] - Gas limit: 1510 + Gas limit: 1511 Storage limit: 317 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000421 - payload fees(the block proposer) ....... +ꜩ0.000421 + [CONTRACT_HASH] ... -ꜩ0.000422 + payload fees(the block proposer) ....... +ꜩ0.000422 Origination: From: [CONTRACT_HASH] Credit: ꜩ100 @@ -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.997 + Consumed gas: 1410.017 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: 2109.355 units (will add 100 for safety) +Estimated gas: 2109.385 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]' @@ -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: 2109.355 + Consumed gas: 2109.385 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 3eeebf047ef2..63e618538bee 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: 1409.005 units (will add 100 for safety) +Estimated gas: 1409.025 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]' @@ -31,7 +31,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 38 bytes Paid storage size diff: 38 bytes - Consumed gas: 1409.005 + Consumed gas: 1409.025 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: 1409.005 units (will add 100 for safety) +Estimated gas: 1409.025 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]' @@ -74,7 +74,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 38 bytes Paid storage size diff: 38 bytes - Consumed gas: 1409.005 + Consumed gas: 1409.025 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: 1419.137 units (will add 100 for safety) +Estimated gas: 1419.177 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]' @@ -127,7 +127,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 66 bytes Paid storage size diff: 66 bytes - Consumed gas: 1419.137 + Consumed gas: 1419.177 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: 4679.477 units (will add 100 for safety) +Estimated gas: 4679.592 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_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: 2571.066 + Consumed gas: 2571.151 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: 2108.411 + Consumed gas: 2108.441 Balance updates: [CONTRACT_HASH] ... -ꜩ100 [CONTRACT_HASH] ... +ꜩ100 @@ -191,7 +191,7 @@ Injected block at minimal timestamp [CONTRACT_HASH] Node is bootstrapped. -Estimated gas: 3767.910 units (will add 100 for safety) +Estimated gas: 3768.025 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -204,7 +204,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000684 Expected counter: [EXPECTED_COUNTER] - Gas limit: 3868 + Gas limit: 3869 Storage limit: 0 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000684 @@ -217,7 +217,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 66 bytes - Consumed gas: 1659.499 + Consumed gas: 1659.584 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: 2108.411 + Consumed gas: 2108.441 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 d18f17930ae8..8f833bffea76 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" @@ -18,18 +18,18 @@ trace - location: 16 (remaining gas: 1039991.401 units remaining) [ (Some 4) {} ] - - location: 14 (remaining gas: 1039991.381 units remaining) + - location: 14 (remaining gas: 1039991.376 units remaining) [ "hello" (Some 4) {} ] - - location: 17 (remaining gas: 1039990.614 units remaining) + - location: 17 (remaining gas: 1039990.589 units remaining) [ None { Elt "hello" 4 } ] - - location: 18 (remaining gas: 1039990.604 units remaining) + - location: 18 (remaining gas: 1039990.579 units remaining) [ (Pair None { Elt "hello" 4 }) ] - - location: 19 (remaining gas: 1039990.594 units remaining) + - location: 19 (remaining gas: 1039990.569 units remaining) [ {} (Pair None { Elt "hello" 4 }) ] - - location: 21 (remaining gas: 1039990.584 units remaining) + - location: 21 (remaining gas: 1039990.559 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 bc7367c2054b..cbea1e7f24ce 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: 1039990.411 units remaining) + - location: 13 (remaining gas: 1039990.391 units remaining) [ (Pair "hello" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039990.401 units remaining) + - location: 13 (remaining gas: 1039990.381 units remaining) [ "hello" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039990.401 units remaining) + - location: 14 (remaining gas: 1039990.381 units remaining) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039990.391 units remaining) + - location: 16 (remaining gas: 1039990.371 units remaining) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039990.371 units remaining) + - location: 14 (remaining gas: 1039990.346 units remaining) [ "hello" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039989.599 units remaining) + - location: 17 (remaining gas: 1039989.554 units remaining) [ (Some 4) { Elt "hello" 5 } ] - - location: 18 (remaining gas: 1039989.589 units remaining) + - location: 18 (remaining gas: 1039989.544 units remaining) [ (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 19 (remaining gas: 1039989.579 units remaining) + - location: 19 (remaining gas: 1039989.534 units remaining) [ {} (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 21 (remaining gas: 1039989.569 units remaining) + - location: 21 (remaining gas: 1039989.524 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 560f26be57b4..8682a14413f9 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: 1039990.441 units remaining) + - location: 13 (remaining gas: 1039990.421 units remaining) [ (Pair "hi" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039990.431 units remaining) + - location: 13 (remaining gas: 1039990.411 units remaining) [ "hi" (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039990.431 units remaining) + - location: 14 (remaining gas: 1039990.411 units remaining) [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039990.421 units remaining) + - location: 16 (remaining gas: 1039990.401 units remaining) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039990.401 units remaining) + - location: 14 (remaining gas: 1039990.376 units remaining) [ "hi" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039989.662 units remaining) + - location: 17 (remaining gas: 1039989.617 units remaining) [ None { Elt "hello" 4 ; Elt "hi" 5 } ] - - location: 18 (remaining gas: 1039989.652 units remaining) + - location: 18 (remaining gas: 1039989.607 units remaining) [ (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 19 (remaining gas: 1039989.642 units remaining) + - location: 19 (remaining gas: 1039989.597 units remaining) [ {} (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 21 (remaining gas: 1039989.632 units remaining) + - location: 21 (remaining gas: 1039989.587 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 97b6fee772ac..c406a8b6a648 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: 1039989.673 units remaining) + - location: 13 (remaining gas: 1039989.633 units remaining) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (remaining gas: 1039989.663 units remaining) + - location: 13 (remaining gas: 1039989.623 units remaining) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (remaining gas: 1039989.663 units remaining) + - location: 14 (remaining gas: 1039989.623 units remaining) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (remaining gas: 1039989.653 units remaining) + - location: 16 (remaining gas: 1039989.613 units remaining) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039989.633 units remaining) + - location: 14 (remaining gas: 1039989.588 units remaining) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039988.902 units remaining) + - location: 17 (remaining gas: 1039988.837 units remaining) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039988.892 units remaining) + - location: 18 (remaining gas: 1039988.827 units remaining) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039988.882 units remaining) + - location: 19 (remaining gas: 1039988.817 units remaining) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039988.872 units remaining) + - location: 21 (remaining gas: 1039988.807 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 780f6cdcef08..e7a1701eb40b 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: 1039989.673 units remaining) + - location: 13 (remaining gas: 1039989.633 units remaining) [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (remaining gas: 1039989.663 units remaining) + - location: 13 (remaining gas: 1039989.623 units remaining) [ "1" (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (remaining gas: 1039989.663 units remaining) + - location: 14 (remaining gas: 1039989.623 units remaining) [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (remaining gas: 1039989.653 units remaining) + - location: 16 (remaining gas: 1039989.613 units remaining) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039989.633 units remaining) + - location: 14 (remaining gas: 1039989.588 units remaining) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039988.902 units remaining) + - location: 17 (remaining gas: 1039988.837 units remaining) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039988.892 units remaining) + - location: 18 (remaining gas: 1039988.827 units remaining) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039988.882 units remaining) + - location: 19 (remaining gas: 1039988.817 units remaining) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039988.872 units remaining) + - location: 21 (remaining gas: 1039988.807 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 47731182cf2d..09b4fca70874 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: 1039990.511 units remaining) + - location: 13 (remaining gas: 1039990.491 units remaining) [ (Pair "hello" None { Elt "hello" 4 }) ] - - location: 13 (remaining gas: 1039990.501 units remaining) + - location: 13 (remaining gas: 1039990.481 units remaining) [ "hello" (Pair None { Elt "hello" 4 }) ] - - location: 14 (remaining gas: 1039990.501 units remaining) + - location: 14 (remaining gas: 1039990.481 units remaining) [ (Pair None { Elt "hello" 4 }) ] - - location: 16 (remaining gas: 1039990.491 units remaining) + - location: 16 (remaining gas: 1039990.471 units remaining) [ None { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039990.471 units remaining) + - location: 14 (remaining gas: 1039990.446 units remaining) [ "hello" None { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039989.699 units remaining) + - location: 17 (remaining gas: 1039989.654 units remaining) [ (Some 4) {} ] - - location: 18 (remaining gas: 1039989.689 units remaining) + - location: 18 (remaining gas: 1039989.644 units remaining) [ (Pair (Some 4) {}) ] - - location: 19 (remaining gas: 1039989.679 units remaining) + - location: 19 (remaining gas: 1039989.634 units remaining) [ {} (Pair (Some 4) {}) ] - - location: 21 (remaining gas: 1039989.669 units remaining) + - location: 21 (remaining gas: 1039989.624 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 a7afb1935f18..6c748db809bf 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" @@ -18,18 +18,18 @@ trace - location: 16 (remaining gas: 1039991.501 units remaining) [ None {} ] - - location: 14 (remaining gas: 1039991.481 units remaining) + - location: 14 (remaining gas: 1039991.476 units remaining) [ "hello" None {} ] - - location: 17 (remaining gas: 1039990.714 units remaining) + - location: 17 (remaining gas: 1039990.689 units remaining) [ None {} ] - - location: 18 (remaining gas: 1039990.704 units remaining) + - location: 18 (remaining gas: 1039990.679 units remaining) [ (Pair None {}) ] - - location: 19 (remaining gas: 1039990.694 units remaining) + - location: 19 (remaining gas: 1039990.669 units remaining) [ {} (Pair None {}) ] - - location: 21 (remaining gas: 1039990.684 units remaining) + - location: 21 (remaining gas: 1039990.659 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 f083f8a0a05d..44656f6ffdb5 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: 1039986.514 units remaining) + - location: 12 (remaining gas: 1039986.474 units remaining) [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 12 (remaining gas: 1039986.504 units remaining) + - location: 12 (remaining gas: 1039986.464 units remaining) [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 13 (remaining gas: 1039986.494 units remaining) + - location: 13 (remaining gas: 1039986.454 units remaining) [ "1" (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 14 (remaining gas: 1039986.494 units remaining) + - location: 14 (remaining gas: 1039986.454 units remaining) [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 17 (remaining gas: 1039986.484 units remaining) + - location: 17 (remaining gas: 1039986.444 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 18 (remaining gas: 1039986.474 units remaining) + - location: 18 (remaining gas: 1039986.434 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } ] - - location: 19 (remaining gas: 1039986.464 units remaining) + - location: 19 (remaining gas: 1039986.424 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } { Elt "1" "one" ; Elt "2" "two" } ] - - location: 14 (remaining gas: 1039986.444 units remaining) + - location: 14 (remaining gas: 1039986.399 units remaining) [ "1" { Elt "1" "one" ; Elt "2" "two" } { Elt "1" "one" ; Elt "2" "two" } ] - - location: 20 (remaining gas: 1039985.752 units remaining) + - location: 20 (remaining gas: 1039985.687 units remaining) [ (Some "one") { Elt "1" "one" ; Elt "2" "two" } ] - - location: 21 (remaining gas: 1039985.742 units remaining) + - location: 21 (remaining gas: 1039985.677 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } (Some "one") ] - - location: 22 (remaining gas: 1039985.732 units remaining) + - location: 22 (remaining gas: 1039985.667 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] - - location: 23 (remaining gas: 1039985.722 units remaining) + - location: 23 (remaining gas: 1039985.657 units remaining) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] - - location: 25 (remaining gas: 1039985.712 units remaining) + - location: 25 (remaining gas: 1039985.647 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 60ede629e195..fc8c6ef6ccb4 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: 1039987.456 units remaining) + - location: 12 (remaining gas: 1039987.436 units remaining) [ (Pair "" { Elt "hello" "hi" } None) ] - - location: 12 (remaining gas: 1039987.446 units remaining) + - location: 12 (remaining gas: 1039987.426 units remaining) [ (Pair "" { Elt "hello" "hi" } None) (Pair "" { Elt "hello" "hi" } None) ] - - location: 13 (remaining gas: 1039987.436 units remaining) + - location: 13 (remaining gas: 1039987.416 units remaining) [ "" (Pair "" { Elt "hello" "hi" } None) ] - - location: 14 (remaining gas: 1039987.436 units remaining) + - location: 14 (remaining gas: 1039987.416 units remaining) [ (Pair "" { Elt "hello" "hi" } None) ] - - location: 17 (remaining gas: 1039987.426 units remaining) + - location: 17 (remaining gas: 1039987.406 units remaining) [ (Pair { Elt "hello" "hi" } None) ] - - location: 18 (remaining gas: 1039987.416 units remaining) + - location: 18 (remaining gas: 1039987.396 units remaining) [ { Elt "hello" "hi" } ] - - location: 19 (remaining gas: 1039987.406 units remaining) + - location: 19 (remaining gas: 1039987.386 units remaining) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039987.386 units remaining) + - location: 14 (remaining gas: 1039987.361 units remaining) [ "" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039986.706 units remaining) + - location: 20 (remaining gas: 1039986.661 units remaining) [ None { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039986.696 units remaining) + - location: 21 (remaining gas: 1039986.651 units remaining) [ { Elt "hello" "hi" } None ] - - location: 22 (remaining gas: 1039986.686 units remaining) + - location: 22 (remaining gas: 1039986.641 units remaining) [ (Pair { Elt "hello" "hi" } None) ] - - location: 23 (remaining gas: 1039986.676 units remaining) + - location: 23 (remaining gas: 1039986.631 units remaining) [ {} (Pair { Elt "hello" "hi" } None) ] - - location: 25 (remaining gas: 1039986.666 units remaining) + - location: 25 (remaining gas: 1039986.621 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 8afd4ac8e642..57efd12e7cd3 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: 1039987.406 units remaining) + - location: 12 (remaining gas: 1039987.386 units remaining) [ (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 12 (remaining gas: 1039987.396 units remaining) + - location: 12 (remaining gas: 1039987.376 units remaining) [ (Pair "hello" { Elt "hello" "hi" } None) (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 13 (remaining gas: 1039987.386 units remaining) + - location: 13 (remaining gas: 1039987.366 units remaining) [ "hello" (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 14 (remaining gas: 1039987.386 units remaining) + - location: 14 (remaining gas: 1039987.366 units remaining) [ (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 17 (remaining gas: 1039987.376 units remaining) + - location: 17 (remaining gas: 1039987.356 units remaining) [ (Pair { Elt "hello" "hi" } None) ] - - location: 18 (remaining gas: 1039987.366 units remaining) + - location: 18 (remaining gas: 1039987.346 units remaining) [ { Elt "hello" "hi" } ] - - location: 19 (remaining gas: 1039987.356 units remaining) + - location: 19 (remaining gas: 1039987.336 units remaining) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039987.336 units remaining) + - location: 14 (remaining gas: 1039987.311 units remaining) [ "hello" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039986.600 units remaining) + - location: 20 (remaining gas: 1039986.555 units remaining) [ (Some "hi") { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039986.590 units remaining) + - location: 21 (remaining gas: 1039986.545 units remaining) [ { Elt "hello" "hi" } (Some "hi") ] - - location: 22 (remaining gas: 1039986.580 units remaining) + - location: 22 (remaining gas: 1039986.535 units remaining) [ (Pair { Elt "hello" "hi" } (Some "hi")) ] - - location: 23 (remaining gas: 1039986.570 units remaining) + - location: 23 (remaining gas: 1039986.525 units remaining) [ {} (Pair { Elt "hello" "hi" } (Some "hi")) ] - - location: 25 (remaining gas: 1039986.560 units remaining) + - location: 25 (remaining gas: 1039986.515 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 2139c4b07e4f..a92cb7c6bc87 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: 1039987.975 units remaining) + - location: 15 (remaining gas: 1039987.935 units remaining) [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039987.965 units remaining) + - location: 15 (remaining gas: 1039987.925 units remaining) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039987.965 units remaining) + - location: 16 (remaining gas: 1039987.925 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.955 units remaining) + - location: 18 (remaining gas: 1039987.915 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.935 units remaining) + - location: 16 (remaining gas: 1039987.890 units remaining) [ {} { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.935 units remaining) + - location: 19 (remaining gas: 1039987.890 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039987.925 units remaining) + - location: 23 (remaining gas: 1039987.880 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039987.915 units remaining) + - location: 24 (remaining gas: 1039987.870 units remaining) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039987.905 units remaining) + - location: 26 (remaining gas: 1039987.860 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 7455aeb8676f..e7a929e6bd8e 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: 1039987.525 units remaining) + - location: 15 (remaining gas: 1039987.485 units remaining) [ (Pair { Elt "1" (Some "two") } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039987.515 units remaining) + - location: 15 (remaining gas: 1039987.475 units remaining) [ { Elt "1" (Some "two") } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039987.515 units remaining) + - location: 16 (remaining gas: 1039987.475 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.505 units remaining) + - location: 18 (remaining gas: 1039987.465 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.485 units remaining) + - location: 16 (remaining gas: 1039987.440 units remaining) [ { Elt "1" (Some "two") } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.485 units remaining) + - location: 19 (remaining gas: 1039987.440 units remaining) [ (Pair "1" (Some "two")) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039987.475 units remaining) + - location: 21 (remaining gas: 1039987.430 units remaining) [ "1" (Some "two") { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039986.768 units remaining) + - location: 22 (remaining gas: 1039986.703 units remaining) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039986.758 units remaining) + - location: 19 (remaining gas: 1039986.688 units remaining) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039986.748 units remaining) + - location: 23 (remaining gas: 1039986.678 units remaining) [ (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039986.738 units remaining) + - location: 24 (remaining gas: 1039986.668 units remaining) [ {} (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039986.728 units remaining) + - location: 26 (remaining gas: 1039986.658 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 61570e08e04f..f040567ba851 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: 1039987.525 units remaining) + - location: 15 (remaining gas: 1039987.485 units remaining) [ (Pair { Elt "1" (Some "two") } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039987.515 units remaining) + - location: 15 (remaining gas: 1039987.475 units remaining) [ { Elt "1" (Some "two") } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039987.515 units remaining) + - location: 16 (remaining gas: 1039987.475 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.505 units remaining) + - location: 18 (remaining gas: 1039987.465 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.485 units remaining) + - location: 16 (remaining gas: 1039987.440 units remaining) [ { Elt "1" (Some "two") } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.485 units remaining) + - location: 19 (remaining gas: 1039987.440 units remaining) [ (Pair "1" (Some "two")) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039987.475 units remaining) + - location: 21 (remaining gas: 1039987.430 units remaining) [ "1" (Some "two") { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039986.768 units remaining) + - location: 22 (remaining gas: 1039986.703 units remaining) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039986.758 units remaining) + - location: 19 (remaining gas: 1039986.688 units remaining) [ { Elt "1" "two" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039986.748 units remaining) + - location: 23 (remaining gas: 1039986.678 units remaining) [ (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039986.738 units remaining) + - location: 24 (remaining gas: 1039986.668 units remaining) [ {} (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039986.728 units remaining) + - location: 26 (remaining gas: 1039986.658 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 3392d270a827..c45d4ffcda4d 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: 1039987.505 units remaining) + - location: 15 (remaining gas: 1039987.465 units remaining) [ (Pair { Elt "3" (Some "three") } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039987.495 units remaining) + - location: 15 (remaining gas: 1039987.455 units remaining) [ { Elt "3" (Some "three") } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039987.495 units remaining) + - location: 16 (remaining gas: 1039987.455 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.485 units remaining) + - location: 18 (remaining gas: 1039987.445 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.465 units remaining) + - location: 16 (remaining gas: 1039987.420 units remaining) [ { Elt "3" (Some "three") } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.465 units remaining) + - location: 19 (remaining gas: 1039987.420 units remaining) [ (Pair "3" (Some "three")) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039987.455 units remaining) + - location: 21 (remaining gas: 1039987.410 units remaining) [ "3" (Some "three") { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039986.748 units remaining) + - location: 22 (remaining gas: 1039986.683 units remaining) [ { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit ] - - location: 19 (remaining gas: 1039986.738 units remaining) + - location: 19 (remaining gas: 1039986.668 units remaining) [ { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit ] - - location: 23 (remaining gas: 1039986.728 units remaining) + - location: 23 (remaining gas: 1039986.658 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit) ] - - location: 24 (remaining gas: 1039986.718 units remaining) + - location: 24 (remaining gas: 1039986.648 units remaining) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit) ] - - location: 26 (remaining gas: 1039986.708 units remaining) + - location: 26 (remaining gas: 1039986.638 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 cab3fcec6e8b..dca0ace11d78 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: 1039987.669 units remaining) + - location: 15 (remaining gas: 1039987.629 units remaining) [ (Pair { Elt "3" None } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039987.659 units remaining) + - location: 15 (remaining gas: 1039987.619 units remaining) [ { Elt "3" None } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039987.659 units remaining) + - location: 16 (remaining gas: 1039987.619 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.649 units remaining) + - location: 18 (remaining gas: 1039987.609 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.629 units remaining) + - location: 16 (remaining gas: 1039987.584 units remaining) [ { Elt "3" None } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.629 units remaining) + - location: 19 (remaining gas: 1039987.584 units remaining) [ (Pair "3" None) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039987.619 units remaining) + - location: 21 (remaining gas: 1039987.574 units remaining) [ "3" None { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039986.912 units remaining) + - location: 22 (remaining gas: 1039986.847 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039986.902 units remaining) + - location: 19 (remaining gas: 1039986.832 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 23 (remaining gas: 1039986.892 units remaining) + - location: 23 (remaining gas: 1039986.822 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 24 (remaining gas: 1039986.882 units remaining) + - location: 24 (remaining gas: 1039986.812 units remaining) [ {} (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 26 (remaining gas: 1039986.872 units remaining) + - location: 26 (remaining gas: 1039986.802 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 5159769ddf81..ef0f839c63d9 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: 1039987.669 units remaining) + - location: 15 (remaining gas: 1039987.629 units remaining) [ (Pair { Elt "2" None } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (remaining gas: 1039987.659 units remaining) + - location: 15 (remaining gas: 1039987.619 units remaining) [ { Elt "2" None } (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (remaining gas: 1039987.659 units remaining) + - location: 16 (remaining gas: 1039987.619 units remaining) [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (remaining gas: 1039987.649 units remaining) + - location: 18 (remaining gas: 1039987.609 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 16 (remaining gas: 1039987.629 units remaining) + - location: 16 (remaining gas: 1039987.584 units remaining) [ { Elt "2" None } { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 19 (remaining gas: 1039987.629 units remaining) + - location: 19 (remaining gas: 1039987.584 units remaining) [ (Pair "2" None) { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 21 (remaining gas: 1039987.619 units remaining) + - location: 21 (remaining gas: 1039987.574 units remaining) [ "2" None { Elt "1" "one" ; Elt "2" "two" } Unit ] - - location: 22 (remaining gas: 1039986.912 units remaining) + - location: 22 (remaining gas: 1039986.847 units remaining) [ { Elt "1" "one" } Unit ] - - location: 19 (remaining gas: 1039986.902 units remaining) + - location: 19 (remaining gas: 1039986.832 units remaining) [ { Elt "1" "one" } Unit ] - - location: 23 (remaining gas: 1039986.892 units remaining) + - location: 23 (remaining gas: 1039986.822 units remaining) [ (Pair { Elt "1" "one" } Unit) ] - - location: 24 (remaining gas: 1039986.882 units remaining) + - location: 24 (remaining gas: 1039986.812 units remaining) [ {} (Pair { Elt "1" "one" } Unit) ] - - location: 26 (remaining gas: 1039986.872 units remaining) + - location: 26 (remaining gas: 1039986.802 units remaining) [ (Pair {} { Elt "1" "one" } 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 (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 d645ea1e05b0..a3d05fb971f4 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: 1039937.004 units remaining) + - location: 43 (remaining gas: 1039936.964 units remaining) [ (Pair (Right (Right (Right (Left { Pair "3" "three" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039936.994 units remaining) + - location: 43 (remaining gas: 1039936.954 units remaining) [ (Right (Right (Right (Left { Pair "3" "three" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039936.994 units remaining) + - location: 44 (remaining gas: 1039936.954 units remaining) [ (Right (Right (Left { Pair "3" "three" }))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039936.994 units remaining) + - location: 60 (remaining gas: 1039936.954 units remaining) [ (Right (Left { Pair "3" "three" })) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039936.994 units remaining) + - location: 65 (remaining gas: 1039936.954 units remaining) [ (Left { Pair "3" "three" }) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039936.994 units remaining) + - location: 108 (remaining gas: 1039936.954 units remaining) [ { Pair "3" "three" } (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 110 (remaining gas: 1039936.994 units remaining) + - location: 110 (remaining gas: 1039936.954 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 113 (remaining gas: 1039936.994 units remaining) + - location: 113 (remaining gas: 1039936.954 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 113 (remaining gas: 1039936.984 units remaining) + - location: 113 (remaining gas: 1039936.939 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 119 (remaining gas: 1039936.974 units remaining) + - location: 119 (remaining gas: 1039936.929 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 110 (remaining gas: 1039936.954 units remaining) + - location: 110 (remaining gas: 1039936.904 units remaining) [ { Pair "3" "three" } { Elt "1" "one" } { Elt "2" "two" } ] - - location: 120 (remaining gas: 1039936.954 units remaining) + - location: 120 (remaining gas: 1039936.904 units remaining) [ (Pair "3" "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 122 (remaining gas: 1039936.944 units remaining) + - location: 122 (remaining gas: 1039936.894 units remaining) [ "3" "three" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 123 (remaining gas: 1039936.944 units remaining) + - location: 123 (remaining gas: 1039936.894 units remaining) [ "three" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 125 (remaining gas: 1039936.934 units remaining) + - location: 125 (remaining gas: 1039936.884 units remaining) [ (Some "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 123 (remaining gas: 1039936.914 units remaining) + - location: 123 (remaining gas: 1039936.859 units remaining) [ "3" (Some "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 126 (remaining gas: 1039936.210 units remaining) + - location: 126 (remaining gas: 1039936.135 units remaining) [ { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" } ] - - location: 120 (remaining gas: 1039936.200 units remaining) + - location: 120 (remaining gas: 1039936.120 units remaining) [ { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" } ] - - location: 127 (remaining gas: 1039936.190 units remaining) + - location: 127 (remaining gas: 1039936.110 units remaining) [ (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" }) ] - - location: 128 (remaining gas: 1039936.180 units remaining) + - location: 128 (remaining gas: 1039936.100 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039936.170 units remaining) + - location: 108 (remaining gas: 1039936.085 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039936.160 units remaining) + - location: 65 (remaining gas: 1039936.070 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039936.150 units remaining) + - location: 60 (remaining gas: 1039936.055 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039936.140 units remaining) + - location: 44 (remaining gas: 1039936.040 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 151 (remaining gas: 1039936.130 units remaining) + - location: 151 (remaining gas: 1039936.030 units remaining) [ {} (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 153 (remaining gas: 1039936.120 units remaining) + - location: 153 (remaining gas: 1039936.020 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 f31fcabca86f..9ef942574adf 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: 1039937.912 units remaining) + - location: 43 (remaining gas: 1039937.872 units remaining) [ (Pair (Left Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039937.902 units remaining) + - location: 43 (remaining gas: 1039937.862 units remaining) [ (Left Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039937.902 units remaining) + - location: 44 (remaining gas: 1039937.862 units remaining) [ Unit (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 46 (remaining gas: 1039937.892 units remaining) + - location: 46 (remaining gas: 1039937.852 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 48 (remaining gas: 1039937.892 units remaining) + - location: 48 (remaining gas: 1039937.852 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 48 (remaining gas: 1039937.882 units remaining) + - location: 48 (remaining gas: 1039937.837 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 54 (remaining gas: 1039937.872 units remaining) + - location: 54 (remaining gas: 1039937.827 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 55 (remaining gas: 1039937.862 units remaining) + - location: 55 (remaining gas: 1039937.817 units remaining) [ { Elt "2" "two" } { Elt "1" "one" } ] - - location: 56 (remaining gas: 1039937.852 units remaining) + - location: 56 (remaining gas: 1039937.807 units remaining) [ (Pair { Elt "2" "two" } { Elt "1" "one" }) ] - - location: 57 (remaining gas: 1039937.842 units remaining) + - location: 57 (remaining gas: 1039937.797 units remaining) [ (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 44 (remaining gas: 1039937.832 units remaining) + - location: 44 (remaining gas: 1039937.782 units remaining) [ (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 151 (remaining gas: 1039937.822 units remaining) + - location: 151 (remaining gas: 1039937.772 units remaining) [ {} (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 153 (remaining gas: 1039937.812 units remaining) + - location: 153 (remaining gas: 1039937.762 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 b860178af97d..703f59f09251 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: 1039934.664 units remaining) + - location: 43 (remaining gas: 1039934.584 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: 1039934.654 units remaining) + - location: 43 (remaining gas: 1039934.574 units remaining) [ (Right (Left (Left (Pair { Elt "3" "three" } { Elt "4" "four" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039934.654 units remaining) + - location: 44 (remaining gas: 1039934.574 units remaining) [ (Left (Left (Pair { Elt "3" "three" } { Elt "4" "four" }))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039934.654 units remaining) + - location: 60 (remaining gas: 1039934.574 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 62 (remaining gas: 1039934.644 units remaining) + - location: 62 (remaining gas: 1039934.564 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 63 (remaining gas: 1039934.634 units remaining) + - location: 63 (remaining gas: 1039934.554 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 60 (remaining gas: 1039934.624 units remaining) + - location: 60 (remaining gas: 1039934.539 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 44 (remaining gas: 1039934.614 units remaining) + - location: 44 (remaining gas: 1039934.524 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 151 (remaining gas: 1039934.604 units remaining) + - location: 151 (remaining gas: 1039934.514 units remaining) [ {} (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 153 (remaining gas: 1039934.594 units remaining) + - location: 153 (remaining gas: 1039934.504 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 ba9ef1a9384f..9e8724b6b969 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: 1039937.272 units remaining) + - location: 43 (remaining gas: 1039937.232 units remaining) [ (Pair (Right (Left (Right Unit))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039937.262 units remaining) + - location: 43 (remaining gas: 1039937.222 units remaining) [ (Right (Left (Right Unit))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039937.262 units remaining) + - location: 44 (remaining gas: 1039937.222 units remaining) [ (Left (Right Unit)) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039937.262 units remaining) + - location: 60 (remaining gas: 1039937.222 units remaining) [ (Right Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 62 (remaining gas: 1039937.252 units remaining) + - location: 62 (remaining gas: 1039937.212 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) (Right Unit) ] - - location: 63 (remaining gas: 1039937.242 units remaining) + - location: 63 (remaining gas: 1039937.202 units remaining) [ (Right Unit) ] - - location: 60 (remaining gas: 1039937.232 units remaining) + - location: 60 (remaining gas: 1039937.187 units remaining) [ (Right Unit) ] - - location: 44 (remaining gas: 1039937.222 units remaining) + - location: 44 (remaining gas: 1039937.172 units remaining) [ (Right Unit) ] - - location: 151 (remaining gas: 1039937.212 units remaining) + - location: 151 (remaining gas: 1039937.162 units remaining) [ {} (Right Unit) ] - - location: 153 (remaining gas: 1039937.202 units remaining) + - location: 153 (remaining gas: 1039937.152 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 ab28874cb315..cb9e0c8a96f0 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: 1039937.268 units remaining) + - location: 43 (remaining gas: 1039937.228 units remaining) [ (Pair (Right (Right (Right (Right { "1" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039937.258 units remaining) + - location: 43 (remaining gas: 1039937.218 units remaining) [ (Right (Right (Right (Right { "1" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039937.258 units remaining) + - location: 44 (remaining gas: 1039937.218 units remaining) [ (Right (Right (Right { "1" }))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039937.258 units remaining) + - location: 60 (remaining gas: 1039937.218 units remaining) [ (Right (Right { "1" })) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039937.258 units remaining) + - location: 65 (remaining gas: 1039937.218 units remaining) [ (Right { "1" }) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039937.258 units remaining) + - location: 108 (remaining gas: 1039937.218 units remaining) [ { "1" } (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 131 (remaining gas: 1039937.258 units remaining) + - location: 131 (remaining gas: 1039937.218 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 134 (remaining gas: 1039937.258 units remaining) + - location: 134 (remaining gas: 1039937.218 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 134 (remaining gas: 1039937.248 units remaining) + - location: 134 (remaining gas: 1039937.203 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 140 (remaining gas: 1039937.238 units remaining) + - location: 140 (remaining gas: 1039937.193 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 131 (remaining gas: 1039937.218 units remaining) + - location: 131 (remaining gas: 1039937.168 units remaining) [ { "1" } { Elt "1" "one" } { Elt "2" "two" } ] - - location: 141 (remaining gas: 1039937.218 units remaining) + - location: 141 (remaining gas: 1039937.168 units remaining) [ "1" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 143 (remaining gas: 1039937.218 units remaining) + - location: 143 (remaining gas: 1039937.168 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 145 (remaining gas: 1039937.208 units remaining) + - location: 145 (remaining gas: 1039937.158 units remaining) [ None { Elt "1" "one" } { Elt "2" "two" } ] - - location: 143 (remaining gas: 1039937.188 units remaining) + - location: 143 (remaining gas: 1039937.133 units remaining) [ "1" None { Elt "1" "one" } { Elt "2" "two" } ] - - location: 147 (remaining gas: 1039936.484 units remaining) + - location: 147 (remaining gas: 1039936.409 units remaining) [ {} { Elt "2" "two" } ] - - location: 141 (remaining gas: 1039936.474 units remaining) + - location: 141 (remaining gas: 1039936.394 units remaining) [ {} { Elt "2" "two" } ] - - location: 148 (remaining gas: 1039936.464 units remaining) + - location: 148 (remaining gas: 1039936.384 units remaining) [ (Pair {} { Elt "2" "two" }) ] - - location: 149 (remaining gas: 1039936.454 units remaining) + - location: 149 (remaining gas: 1039936.374 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039936.444 units remaining) + - location: 108 (remaining gas: 1039936.359 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039936.434 units remaining) + - location: 65 (remaining gas: 1039936.344 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039936.424 units remaining) + - location: 60 (remaining gas: 1039936.329 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039936.414 units remaining) + - location: 44 (remaining gas: 1039936.314 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 151 (remaining gas: 1039936.404 units remaining) + - location: 151 (remaining gas: 1039936.304 units remaining) [ {} (Left (Pair {} { Elt "2" "two" })) ] - - location: 153 (remaining gas: 1039936.394 units remaining) + - location: 153 (remaining gas: 1039936.294 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 51d6387f6b7b..6cd9042e381c 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" @@ -28,108 +28,108 @@ trace [ (Right Unit) ] - location: 70 (remaining gas: 1039939.084 units remaining) [ Unit ] - - location: 70 (remaining gas: 1039939.074 units remaining) + - location: 70 (remaining gas: 1039939.069 units remaining) [ Unit ] - - location: 76 (remaining gas: 1039939.064 units remaining) + - location: 76 (remaining gas: 1039939.059 units remaining) [ ] - - location: 67 (remaining gas: 1039939.044 units remaining) + - location: 67 (remaining gas: 1039939.034 units remaining) [ (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }) ] - - location: 77 (remaining gas: 1039939.034 units remaining) + - location: 77 (remaining gas: 1039939.024 units remaining) [ { Pair "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 78 (remaining gas: 1039939.034 units remaining) + - location: 78 (remaining gas: 1039939.024 units remaining) [ { Pair "gaz" "baz" } ] - - location: 80 (remaining gas: 1039939.024 units remaining) + - location: 80 (remaining gas: 1039938.724 units remaining) [ {} { Pair "gaz" "baz" } ] - - location: 78 (remaining gas: 1039939.004 units remaining) + - location: 78 (remaining gas: 1039938.699 units remaining) [ { Pair "foo" "bar" } {} { Pair "gaz" "baz" } ] - - location: 83 (remaining gas: 1039939.004 units remaining) + - location: 83 (remaining gas: 1039938.699 units remaining) [ (Pair "foo" "bar") {} { Pair "gaz" "baz" } ] - - location: 85 (remaining gas: 1039938.994 units remaining) + - location: 85 (remaining gas: 1039938.689 units remaining) [ "foo" "bar" {} { Pair "gaz" "baz" } ] - - location: 86 (remaining gas: 1039938.994 units remaining) + - location: 86 (remaining gas: 1039938.689 units remaining) [ "bar" {} { Pair "gaz" "baz" } ] - - location: 88 (remaining gas: 1039938.984 units remaining) + - location: 88 (remaining gas: 1039938.679 units remaining) [ (Some "bar") {} { Pair "gaz" "baz" } ] - - location: 86 (remaining gas: 1039938.964 units remaining) + - location: 86 (remaining gas: 1039938.654 units remaining) [ "foo" (Some "bar") {} { Pair "gaz" "baz" } ] - - location: 89 (remaining gas: 1039938.240 units remaining) + - location: 89 (remaining gas: 1039937.910 units remaining) [ { Elt "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 83 (remaining gas: 1039938.230 units remaining) + - location: 83 (remaining gas: 1039937.895 units remaining) [ { Elt "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 90 (remaining gas: 1039938.220 units remaining) + - location: 90 (remaining gas: 1039937.885 units remaining) [ { Pair "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 91 (remaining gas: 1039938.220 units remaining) + - location: 91 (remaining gas: 1039937.885 units remaining) [ { Elt "foo" "bar" } ] - - location: 93 (remaining gas: 1039938.210 units remaining) + - location: 93 (remaining gas: 1039937.585 units remaining) [ {} { Elt "foo" "bar" } ] - - location: 91 (remaining gas: 1039938.190 units remaining) + - location: 91 (remaining gas: 1039937.560 units remaining) [ { Pair "gaz" "baz" } {} { Elt "foo" "bar" } ] - - location: 96 (remaining gas: 1039938.190 units remaining) + - location: 96 (remaining gas: 1039937.560 units remaining) [ (Pair "gaz" "baz") {} { Elt "foo" "bar" } ] - - location: 98 (remaining gas: 1039938.180 units remaining) + - location: 98 (remaining gas: 1039937.550 units remaining) [ "gaz" "baz" {} { Elt "foo" "bar" } ] - - location: 99 (remaining gas: 1039938.180 units remaining) + - location: 99 (remaining gas: 1039937.550 units remaining) [ "baz" {} { Elt "foo" "bar" } ] - - location: 101 (remaining gas: 1039938.170 units remaining) + - location: 101 (remaining gas: 1039937.540 units remaining) [ (Some "baz") {} { Elt "foo" "bar" } ] - - location: 99 (remaining gas: 1039938.150 units remaining) + - location: 99 (remaining gas: 1039937.515 units remaining) [ "gaz" (Some "baz") {} { Elt "foo" "bar" } ] - - location: 102 (remaining gas: 1039937.426 units remaining) + - location: 102 (remaining gas: 1039936.771 units remaining) [ { Elt "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 96 (remaining gas: 1039937.416 units remaining) + - location: 96 (remaining gas: 1039936.756 units remaining) [ { Elt "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 103 (remaining gas: 1039937.406 units remaining) + - location: 103 (remaining gas: 1039936.746 units remaining) [ { Elt "foo" "bar" } { Elt "gaz" "baz" } ] - - location: 104 (remaining gas: 1039937.396 units remaining) + - location: 104 (remaining gas: 1039936.736 units remaining) [ (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" }) ] - - location: 105 (remaining gas: 1039937.386 units remaining) + - location: 105 (remaining gas: 1039936.726 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 65 (remaining gas: 1039937.376 units remaining) + - location: 65 (remaining gas: 1039936.711 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 60 (remaining gas: 1039937.366 units remaining) + - location: 60 (remaining gas: 1039936.696 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 44 (remaining gas: 1039937.356 units remaining) + - location: 44 (remaining gas: 1039936.681 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 151 (remaining gas: 1039937.346 units remaining) + - location: 151 (remaining gas: 1039936.671 units remaining) [ {} (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 153 (remaining gas: 1039937.336 units remaining) + - location: 153 (remaining gas: 1039936.661 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 7e54a8cd1ce0..3c897022da99 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 @@ -68,18 +68,18 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 19 (remaining gas: 1039653.414 units remaining) + - location: 19 (remaining gas: 1039653.394 units remaining) [ 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 16 (remaining gas: 1039653.394 units remaining) + - location: 16 (remaining gas: 1039653.369 units remaining) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 11 (remaining gas: 1039653.374 units remaining) + - location: 11 (remaining gas: 1039653.344 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") @@ -88,34 +88,34 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 20 (remaining gas: 1039653.364 units remaining) + - location: 20 (remaining gas: 1039653.334 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000568656c6c6f (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 21 (remaining gas: 1039587.552 units remaining) + - location: 21 (remaining gas: 1039587.522 units remaining) [ True (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 22 (remaining gas: 1039587.552 units remaining) + - location: 22 (remaining gas: 1039587.522 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 22 (remaining gas: 1039587.542 units remaining) + - location: 22 (remaining gas: 1039587.507 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 28 (remaining gas: 1039587.532 units remaining) + - location: 28 (remaining gas: 1039587.497 units remaining) [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 29 (remaining gas: 1039587.522 units remaining) + - location: 29 (remaining gas: 1039587.487 units remaining) [ {} (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] - - location: 31 (remaining gas: 1039587.512 units remaining) + - location: 31 (remaining gas: 1039587.477 units remaining) [ (Pair {} "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] @@ -196,18 +196,18 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 19 (remaining gas: 1039653.434 units remaining) + - location: 19 (remaining gas: 1039653.414 units remaining) [ 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 16 (remaining gas: 1039653.414 units remaining) + - location: 16 (remaining gas: 1039653.389 units remaining) [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 11 (remaining gas: 1039653.394 units remaining) + - location: 11 (remaining gas: 1039653.364 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") @@ -216,23 +216,23 @@ trace (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 20 (remaining gas: 1039653.384 units remaining) + - location: 20 (remaining gas: 1039653.354 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" 0x05010000000461626364 (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 21 (remaining gas: 1039587.573 units remaining) + - location: 21 (remaining gas: 1039587.543 units remaining) [ False (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 22 (remaining gas: 1039587.573 units remaining) + - location: 22 (remaining gas: 1039587.543 units remaining) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] - - location: 26 (remaining gas: 1039587.563 units remaining) + - location: 26 (remaining gas: 1039587.533 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 c719d5c2f248..839297d87b66 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 @@ -26,13 +26,13 @@ trace [ True ] - location: 14 (remaining gas: 1039989.679 units remaining) [ ] - - location: 14 (remaining gas: 1039989.669 units remaining) + - location: 14 (remaining gas: 1039989.664 units remaining) [ ] - - location: 20 (remaining gas: 1039989.659 units remaining) + - location: 20 (remaining gas: 1039989.654 units remaining) [ Unit ] - - location: 21 (remaining gas: 1039989.649 units remaining) + - location: 21 (remaining gas: 1039989.644 units remaining) [ {} Unit ] - - location: 23 (remaining gas: 1039989.639 units remaining) + - location: 23 (remaining gas: 1039989.634 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 c5199925bb4c..7dea5e6520e5 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 @@ -14,25 +14,25 @@ trace - location: 8 (remaining gas: 1039989.769 units remaining) [ 12039123919239192312931 12039123919239192312931 ] - - location: 9 (remaining gas: 1039989.744 units remaining) + - location: 9 (remaining gas: 1039989.739 units remaining) [ -12039123919239192312931 12039123919239192312931 ] - - location: 10 (remaining gas: 1039989.724 units remaining) + - location: 10 (remaining gas: 1039989.714 units remaining) [ 12039123919239192312931 12039123919239192312931 ] - - location: 11 (remaining gas: 1039989.689 units remaining) + - location: 11 (remaining gas: 1039989.679 units remaining) [ 0 ] - - location: 13 (remaining gas: 1039989.679 units remaining) + - location: 13 (remaining gas: 1039989.669 units remaining) [ True ] - - location: 14 (remaining gas: 1039989.679 units remaining) - [ ] - location: 14 (remaining gas: 1039989.669 units remaining) [ ] - - location: 20 (remaining gas: 1039989.659 units remaining) + - location: 14 (remaining gas: 1039989.654 units remaining) + [ ] + - location: 20 (remaining gas: 1039989.644 units remaining) [ Unit ] - - location: 21 (remaining gas: 1039989.649 units remaining) + - location: 21 (remaining gas: 1039989.634 units remaining) [ {} Unit ] - - location: 23 (remaining gas: 1039989.639 units remaining) + - location: 23 (remaining gas: 1039989.624 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 57f4f7e5c333..2920a18d298e 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 @@ -14,25 +14,25 @@ trace - location: 8 (remaining gas: 1039989.769 units remaining) [ 948 948 ] - - location: 9 (remaining gas: 1039989.744 units remaining) + - location: 9 (remaining gas: 1039989.743 units remaining) [ -948 948 ] - - location: 10 (remaining gas: 1039989.724 units remaining) + - location: 10 (remaining gas: 1039989.722 units remaining) [ 948 948 ] - - location: 11 (remaining gas: 1039989.689 units remaining) + - location: 11 (remaining gas: 1039989.687 units remaining) [ 0 ] - - location: 13 (remaining gas: 1039989.679 units remaining) + - location: 13 (remaining gas: 1039989.677 units remaining) [ True ] - - location: 14 (remaining gas: 1039989.679 units remaining) + - location: 14 (remaining gas: 1039989.677 units remaining) [ ] - - location: 14 (remaining gas: 1039989.669 units remaining) + - location: 14 (remaining gas: 1039989.662 units remaining) [ ] - - location: 20 (remaining gas: 1039989.659 units remaining) + - location: 20 (remaining gas: 1039989.652 units remaining) [ Unit ] - - location: 21 (remaining gas: 1039989.649 units remaining) + - location: 21 (remaining gas: 1039989.642 units remaining) [ {} Unit ] - - location: 23 (remaining gas: 1039989.639 units remaining) + - location: 23 (remaining gas: 1039989.632 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 ef7e2fc9b7fc..d62ce4406523 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 @@ -33,179 +33,179 @@ trace Unit ] - location: 22 (remaining gas: 1039931.431 units remaining) [ Unit ] - - location: 22 (remaining gas: 1039931.421 units remaining) + - location: 22 (remaining gas: 1039931.416 units remaining) [ Unit ] - - location: 28 (remaining gas: 1039931.411 units remaining) + - location: 28 (remaining gas: 1039931.406 units remaining) [ 2 Unit ] - - location: 31 (remaining gas: 1039931.401 units remaining) + - location: 31 (remaining gas: 1039931.396 units remaining) [ 2 2 Unit ] - - location: 34 (remaining gas: 1039931.366 units remaining) + - location: 34 (remaining gas: 1039931.361 units remaining) [ 4 Unit ] - - location: 35 (remaining gas: 1039931.356 units remaining) + - location: 35 (remaining gas: 1039931.351 units remaining) [ 4 4 Unit ] - - location: 40 (remaining gas: 1039931.321 units remaining) + - location: 40 (remaining gas: 1039931.316 units remaining) [ 0 Unit ] - - location: 41 (remaining gas: 1039931.311 units remaining) + - location: 41 (remaining gas: 1039931.306 units remaining) [ True Unit ] - - location: 42 (remaining gas: 1039931.311 units remaining) + - location: 42 (remaining gas: 1039931.306 units remaining) [ Unit ] - - location: 42 (remaining gas: 1039931.301 units remaining) + - location: 42 (remaining gas: 1039931.291 units remaining) [ Unit ] - - location: 48 (remaining gas: 1039931.291 units remaining) + - location: 48 (remaining gas: 1039931.281 units remaining) [ 2 Unit ] - - location: 51 (remaining gas: 1039931.281 units remaining) + - location: 51 (remaining gas: 1039931.271 units remaining) [ 2 2 Unit ] - - location: 54 (remaining gas: 1039931.246 units remaining) + - location: 54 (remaining gas: 1039931.236 units remaining) [ 4 Unit ] - - location: 55 (remaining gas: 1039931.236 units remaining) + - location: 55 (remaining gas: 1039931.226 units remaining) [ 4 4 Unit ] - - location: 60 (remaining gas: 1039931.201 units remaining) + - location: 60 (remaining gas: 1039931.191 units remaining) [ 0 Unit ] - - location: 61 (remaining gas: 1039931.191 units remaining) + - location: 61 (remaining gas: 1039931.181 units remaining) [ True Unit ] - - location: 62 (remaining gas: 1039931.191 units remaining) - [ Unit ] - location: 62 (remaining gas: 1039931.181 units remaining) [ Unit ] - - location: 68 (remaining gas: 1039931.171 units remaining) + - location: 62 (remaining gas: 1039931.166 units remaining) + [ Unit ] + - location: 68 (remaining gas: 1039931.156 units remaining) [ 2 Unit ] - - location: 71 (remaining gas: 1039931.161 units remaining) + - location: 71 (remaining gas: 1039931.146 units remaining) [ 2 2 Unit ] - - location: 74 (remaining gas: 1039931.126 units remaining) + - location: 74 (remaining gas: 1039931.111 units remaining) [ 4 Unit ] - - location: 75 (remaining gas: 1039931.116 units remaining) + - location: 75 (remaining gas: 1039931.101 units remaining) [ 4 4 Unit ] - - location: 80 (remaining gas: 1039931.081 units remaining) + - location: 80 (remaining gas: 1039931.066 units remaining) [ 0 Unit ] - - location: 81 (remaining gas: 1039931.071 units remaining) + - location: 81 (remaining gas: 1039931.056 units remaining) [ True Unit ] - - location: 82 (remaining gas: 1039931.071 units remaining) + - location: 82 (remaining gas: 1039931.056 units remaining) [ Unit ] - - location: 82 (remaining gas: 1039931.061 units remaining) + - location: 82 (remaining gas: 1039931.041 units remaining) [ Unit ] - - location: 88 (remaining gas: 1039931.051 units remaining) + - location: 88 (remaining gas: 1039931.031 units remaining) [ 2 Unit ] - - location: 91 (remaining gas: 1039931.041 units remaining) + - location: 91 (remaining gas: 1039931.021 units remaining) [ 2 2 Unit ] - - location: 94 (remaining gas: 1039931.006 units remaining) + - location: 94 (remaining gas: 1039930.986 units remaining) [ 4 Unit ] - - location: 95 (remaining gas: 1039930.996 units remaining) + - location: 95 (remaining gas: 1039930.976 units remaining) [ 4 4 Unit ] - - location: 100 (remaining gas: 1039930.961 units remaining) + - location: 100 (remaining gas: 1039930.941 units remaining) [ 0 Unit ] - - location: 101 (remaining gas: 1039930.951 units remaining) + - location: 101 (remaining gas: 1039930.931 units remaining) [ True Unit ] - - location: 102 (remaining gas: 1039930.951 units remaining) + - location: 102 (remaining gas: 1039930.931 units remaining) [ Unit ] - - location: 102 (remaining gas: 1039930.941 units remaining) + - location: 102 (remaining gas: 1039930.916 units remaining) [ Unit ] - - location: 108 (remaining gas: 1039930.931 units remaining) + - location: 108 (remaining gas: 1039930.906 units remaining) [ 60 Unit ] - - location: 111 (remaining gas: 1039930.921 units remaining) + - location: 111 (remaining gas: 1039930.896 units remaining) [ "2019-09-09T12:08:37Z" 60 Unit ] - - location: 114 (remaining gas: 1039930.886 units remaining) + - location: 114 (remaining gas: 1039930.859 units remaining) [ "2019-09-09T12:09:37Z" Unit ] - - location: 115 (remaining gas: 1039930.876 units remaining) + - location: 115 (remaining gas: 1039930.849 units remaining) [ "2019-09-09T12:09:37Z" "2019-09-09T12:09:37Z" Unit ] - - location: 120 (remaining gas: 1039930.841 units remaining) + - location: 120 (remaining gas: 1039930.814 units remaining) [ 0 Unit ] - - location: 121 (remaining gas: 1039930.831 units remaining) + - location: 121 (remaining gas: 1039930.804 units remaining) [ True Unit ] - - location: 122 (remaining gas: 1039930.831 units remaining) + - location: 122 (remaining gas: 1039930.804 units remaining) [ Unit ] - - location: 122 (remaining gas: 1039930.821 units remaining) + - location: 122 (remaining gas: 1039930.789 units remaining) [ Unit ] - - location: 128 (remaining gas: 1039930.811 units remaining) + - location: 128 (remaining gas: 1039930.779 units remaining) [ "2019-09-09T12:08:37Z" Unit ] - - location: 131 (remaining gas: 1039930.801 units remaining) + - location: 131 (remaining gas: 1039930.769 units remaining) [ 60 "2019-09-09T12:08:37Z" Unit ] - - location: 134 (remaining gas: 1039930.766 units remaining) + - location: 134 (remaining gas: 1039930.732 units remaining) [ "2019-09-09T12:09:37Z" Unit ] - - location: 135 (remaining gas: 1039930.756 units remaining) + - location: 135 (remaining gas: 1039930.722 units remaining) [ "2019-09-09T12:09:37Z" "2019-09-09T12:09:37Z" Unit ] - - location: 140 (remaining gas: 1039930.721 units remaining) + - location: 140 (remaining gas: 1039930.687 units remaining) [ 0 Unit ] - - location: 141 (remaining gas: 1039930.711 units remaining) + - location: 141 (remaining gas: 1039930.677 units remaining) [ True Unit ] - - location: 142 (remaining gas: 1039930.711 units remaining) + - location: 142 (remaining gas: 1039930.677 units remaining) [ Unit ] - - location: 142 (remaining gas: 1039930.701 units remaining) + - location: 142 (remaining gas: 1039930.662 units remaining) [ Unit ] - - location: 148 (remaining gas: 1039930.691 units remaining) + - location: 148 (remaining gas: 1039930.652 units remaining) [ 1000 Unit ] - - location: 151 (remaining gas: 1039930.681 units remaining) + - location: 151 (remaining gas: 1039930.642 units remaining) [ 1000 1000 Unit ] - - location: 154 (remaining gas: 1039930.661 units remaining) + - location: 154 (remaining gas: 1039930.622 units remaining) [ 2000 Unit ] - - location: 155 (remaining gas: 1039930.651 units remaining) + - location: 155 (remaining gas: 1039930.612 units remaining) [ 2000 2000 Unit ] - - location: 160 (remaining gas: 1039930.616 units remaining) + - location: 160 (remaining gas: 1039930.577 units remaining) [ 0 Unit ] - - location: 161 (remaining gas: 1039930.606 units remaining) + - location: 161 (remaining gas: 1039930.567 units remaining) [ True Unit ] - - location: 162 (remaining gas: 1039930.606 units remaining) + - location: 162 (remaining gas: 1039930.567 units remaining) [ Unit ] - - location: 162 (remaining gas: 1039930.596 units remaining) + - location: 162 (remaining gas: 1039930.552 units remaining) [ Unit ] - - location: 168 (remaining gas: 1039930.586 units remaining) + - location: 168 (remaining gas: 1039930.542 units remaining) [ {} Unit ] - - location: 170 (remaining gas: 1039930.576 units remaining) + - location: 170 (remaining gas: 1039930.532 units remaining) [ (Pair {} Unit) ] 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 22f9fa14de28..38eb64657827 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" @@ -21,16 +21,16 @@ trace [ (Pair -100 "1970-01-01T00:01:40Z") ] - location: 15 (remaining gas: 1039991.728 units remaining) [ "1970-01-01T00:01:40Z" ] - - location: 13 (remaining gas: 1039991.708 units remaining) + - location: 13 (remaining gas: 1039991.703 units remaining) [ -100 "1970-01-01T00:01:40Z" ] - - location: 16 (remaining gas: 1039991.673 units remaining) + - location: 16 (remaining gas: 1039991.668 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039991.663 units remaining) + - location: 17 (remaining gas: 1039991.658 units remaining) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039991.653 units remaining) + - location: 18 (remaining gas: 1039991.648 units remaining) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039991.643 units remaining) + - location: 20 (remaining gas: 1039991.638 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 7239777c187b..2794d5d50abf 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" @@ -21,16 +21,16 @@ trace [ (Pair 0 "1970-01-01T00:00:00Z") ] - location: 15 (remaining gas: 1039991.620 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 13 (remaining gas: 1039991.600 units remaining) + - location: 13 (remaining gas: 1039991.595 units remaining) [ 0 "1970-01-01T00:00:00Z" ] - - location: 16 (remaining gas: 1039991.565 units remaining) + - location: 16 (remaining gas: 1039991.560 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039991.555 units remaining) + - location: 17 (remaining gas: 1039991.550 units remaining) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039991.545 units remaining) + - location: 18 (remaining gas: 1039991.540 units remaining) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039991.535 units remaining) + - location: 20 (remaining gas: 1039991.530 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 54bd4fe5b199..d063d924b767 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" @@ -21,16 +21,16 @@ trace [ (Pair 100 "1970-01-01T00:01:40Z") ] - location: 15 (remaining gas: 1039991.728 units remaining) [ "1970-01-01T00:01:40Z" ] - - location: 13 (remaining gas: 1039991.708 units remaining) + - location: 13 (remaining gas: 1039991.703 units remaining) [ 100 "1970-01-01T00:01:40Z" ] - - location: 16 (remaining gas: 1039991.673 units remaining) + - location: 16 (remaining gas: 1039991.668 units remaining) [ "1970-01-01T00:03:20Z" ] - - location: 17 (remaining gas: 1039991.663 units remaining) + - location: 17 (remaining gas: 1039991.658 units remaining) [ (Some "1970-01-01T00:03:20Z") ] - - location: 18 (remaining gas: 1039991.653 units remaining) + - location: 18 (remaining gas: 1039991.648 units remaining) [ {} (Some "1970-01-01T00:03:20Z") ] - - location: 20 (remaining gas: 1039991.643 units remaining) + - location: 20 (remaining gas: 1039991.638 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 b5055b3ec16b..c80107a27db8 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" @@ -21,16 +21,16 @@ trace [ (Pair "1970-01-01T00:00:00Z" 0) ] - location: 15 (remaining gas: 1039991.620 units remaining) [ 0 ] - - location: 13 (remaining gas: 1039991.600 units remaining) + - location: 13 (remaining gas: 1039991.595 units remaining) [ "1970-01-01T00:00:00Z" 0 ] - - location: 16 (remaining gas: 1039991.565 units remaining) + - location: 16 (remaining gas: 1039991.560 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039991.555 units remaining) + - location: 17 (remaining gas: 1039991.550 units remaining) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039991.545 units remaining) + - location: 18 (remaining gas: 1039991.540 units remaining) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039991.535 units remaining) + - location: 20 (remaining gas: 1039991.530 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 c5063d3341b5..fd3e31fb92e8 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" @@ -21,16 +21,16 @@ trace [ (Pair "1970-01-01T00:01:40Z" -100) ] - location: 15 (remaining gas: 1039991.728 units remaining) [ -100 ] - - location: 13 (remaining gas: 1039991.708 units remaining) + - location: 13 (remaining gas: 1039991.703 units remaining) [ "1970-01-01T00:01:40Z" -100 ] - - location: 16 (remaining gas: 1039991.673 units remaining) + - location: 16 (remaining gas: 1039991.668 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 17 (remaining gas: 1039991.663 units remaining) + - location: 17 (remaining gas: 1039991.658 units remaining) [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (remaining gas: 1039991.653 units remaining) + - location: 18 (remaining gas: 1039991.648 units remaining) [ {} (Some "1970-01-01T00:00:00Z") ] - - location: 20 (remaining gas: 1039991.643 units remaining) + - location: 20 (remaining gas: 1039991.638 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 6956b0f62491..0c06bd7ac16a 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" @@ -21,16 +21,16 @@ trace [ (Pair "1970-01-01T00:01:40Z" 100) ] - location: 15 (remaining gas: 1039991.728 units remaining) [ 100 ] - - location: 13 (remaining gas: 1039991.708 units remaining) + - location: 13 (remaining gas: 1039991.703 units remaining) [ "1970-01-01T00:01:40Z" 100 ] - - location: 16 (remaining gas: 1039991.673 units remaining) + - location: 16 (remaining gas: 1039991.668 units remaining) [ "1970-01-01T00:03:20Z" ] - - location: 17 (remaining gas: 1039991.663 units remaining) + - location: 17 (remaining gas: 1039991.658 units remaining) [ (Some "1970-01-01T00:03:20Z") ] - - location: 18 (remaining gas: 1039991.653 units remaining) + - location: 18 (remaining gas: 1039991.648 units remaining) [ {} (Some "1970-01-01T00:03:20Z") ] - - location: 20 (remaining gas: 1039991.643 units remaining) + - location: 20 (remaining gas: 1039991.638 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[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 c744b76ff201..02775f4c7d0b 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 @@ -27,67 +27,67 @@ trace [ True ] - location: 22 (remaining gas: 1039963.631 units remaining) [ ] - - location: 22 (remaining gas: 1039963.621 units remaining) + - location: 22 (remaining gas: 1039963.616 units remaining) [ ] - - location: 28 (remaining gas: 1039963.611 units remaining) + - location: 28 (remaining gas: 1039963.606 units remaining) [ 6 ] - - location: 31 (remaining gas: 1039963.601 units remaining) + - location: 31 (remaining gas: 1039963.596 units remaining) [ 5 6 ] - - location: 34 (remaining gas: 1039963.566 units remaining) + - location: 34 (remaining gas: 1039963.561 units remaining) [ 4 ] - - location: 35 (remaining gas: 1039963.556 units remaining) + - location: 35 (remaining gas: 1039963.551 units remaining) [ 4 4 ] - - location: 40 (remaining gas: 1039963.521 units remaining) + - location: 40 (remaining gas: 1039963.516 units remaining) [ 0 ] - - location: 41 (remaining gas: 1039963.511 units remaining) + - location: 41 (remaining gas: 1039963.506 units remaining) [ True ] - - location: 42 (remaining gas: 1039963.511 units remaining) + - location: 42 (remaining gas: 1039963.506 units remaining) [ ] - - location: 42 (remaining gas: 1039963.501 units remaining) + - location: 42 (remaining gas: 1039963.491 units remaining) [ ] - - location: 48 (remaining gas: 1039963.491 units remaining) + - location: 48 (remaining gas: 1039963.481 units remaining) [ 12 ] - - location: 51 (remaining gas: 1039963.481 units remaining) + - location: 51 (remaining gas: 1039963.471 units remaining) [ -1 12 ] - - location: 54 (remaining gas: 1039963.446 units remaining) + - location: 54 (remaining gas: 1039963.436 units remaining) [ 12 ] - - location: 55 (remaining gas: 1039963.436 units remaining) + - location: 55 (remaining gas: 1039963.426 units remaining) [ 12 12 ] - - location: 60 (remaining gas: 1039963.401 units remaining) + - location: 60 (remaining gas: 1039963.391 units remaining) [ 0 ] - - location: 61 (remaining gas: 1039963.391 units remaining) + - location: 61 (remaining gas: 1039963.381 units remaining) [ True ] - - location: 62 (remaining gas: 1039963.391 units remaining) - [ ] - location: 62 (remaining gas: 1039963.381 units remaining) [ ] - - location: 68 (remaining gas: 1039963.371 units remaining) + - location: 62 (remaining gas: 1039963.366 units remaining) + [ ] + - location: 68 (remaining gas: 1039963.356 units remaining) [ 12 ] - - location: 71 (remaining gas: 1039963.361 units remaining) + - location: 71 (remaining gas: 1039963.346 units remaining) [ -5 12 ] - - location: 74 (remaining gas: 1039963.326 units remaining) + - location: 74 (remaining gas: 1039963.311 units remaining) [ 8 ] - - location: 75 (remaining gas: 1039963.316 units remaining) + - location: 75 (remaining gas: 1039963.301 units remaining) [ 8 8 ] - - location: 80 (remaining gas: 1039963.281 units remaining) + - location: 80 (remaining gas: 1039963.266 units remaining) [ 0 ] - - location: 81 (remaining gas: 1039963.271 units remaining) + - location: 81 (remaining gas: 1039963.256 units remaining) [ True ] - - location: 82 (remaining gas: 1039963.271 units remaining) + - location: 82 (remaining gas: 1039963.256 units remaining) [ ] - - location: 82 (remaining gas: 1039963.261 units remaining) + - location: 82 (remaining gas: 1039963.241 units remaining) [ ] - - location: 88 (remaining gas: 1039963.251 units remaining) + - location: 88 (remaining gas: 1039963.231 units remaining) [ Unit ] - - location: 89 (remaining gas: 1039963.241 units remaining) + - location: 89 (remaining gas: 1039963.221 units remaining) [ {} Unit ] - - location: 91 (remaining gas: 1039963.231 units remaining) + - location: 91 (remaining gas: 1039963.211 units remaining) [ (Pair {} Unit) ] 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 af8813495da9..383edc04061a 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: 1039989.177 units remaining) + - location: 12 (remaining gas: 1039989.157 units remaining) [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (remaining gas: 1039989.167 units remaining) + - location: 12 (remaining gas: 1039989.147 units remaining) [ 1 (Pair { Elt 0 1 } None) ] - - location: 13 (remaining gas: 1039989.167 units remaining) + - location: 13 (remaining gas: 1039989.147 units remaining) [ (Pair { Elt 0 1 } None) ] - - location: 15 (remaining gas: 1039989.157 units remaining) + - location: 15 (remaining gas: 1039989.137 units remaining) [ { Elt 0 1 } ] - - location: 16 (remaining gas: 1039989.147 units remaining) + - location: 16 (remaining gas: 1039989.127 units remaining) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (remaining gas: 1039989.127 units remaining) + - location: 13 (remaining gas: 1039989.102 units remaining) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (remaining gas: 1039988.425 units remaining) + - location: 17 (remaining gas: 1039988.380 units remaining) [ False { Elt 0 1 } ] - - location: 18 (remaining gas: 1039988.415 units remaining) + - location: 18 (remaining gas: 1039988.370 units remaining) [ (Some False) { Elt 0 1 } ] - - location: 19 (remaining gas: 1039988.405 units remaining) + - location: 19 (remaining gas: 1039988.360 units remaining) [ { Elt 0 1 } (Some False) ] - - location: 20 (remaining gas: 1039988.395 units remaining) + - location: 20 (remaining gas: 1039988.350 units remaining) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (remaining gas: 1039988.385 units remaining) + - location: 21 (remaining gas: 1039988.340 units remaining) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (remaining gas: 1039988.375 units remaining) + - location: 23 (remaining gas: 1039988.330 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 4d12750dcc4a..8d5aae07f4dc 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: 1039989.177 units remaining) + - location: 12 (remaining gas: 1039989.157 units remaining) [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (remaining gas: 1039989.167 units remaining) + - location: 12 (remaining gas: 1039989.147 units remaining) [ 1 (Pair { Elt 0 1 } None) ] - - location: 13 (remaining gas: 1039989.167 units remaining) + - location: 13 (remaining gas: 1039989.147 units remaining) [ (Pair { Elt 0 1 } None) ] - - location: 15 (remaining gas: 1039989.157 units remaining) + - location: 15 (remaining gas: 1039989.137 units remaining) [ { Elt 0 1 } ] - - location: 16 (remaining gas: 1039989.147 units remaining) + - location: 16 (remaining gas: 1039989.127 units remaining) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (remaining gas: 1039989.127 units remaining) + - location: 13 (remaining gas: 1039989.102 units remaining) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (remaining gas: 1039988.425 units remaining) + - location: 17 (remaining gas: 1039988.380 units remaining) [ False { Elt 0 1 } ] - - location: 18 (remaining gas: 1039988.415 units remaining) + - location: 18 (remaining gas: 1039988.370 units remaining) [ (Some False) { Elt 0 1 } ] - - location: 19 (remaining gas: 1039988.405 units remaining) + - location: 19 (remaining gas: 1039988.360 units remaining) [ { Elt 0 1 } (Some False) ] - - location: 20 (remaining gas: 1039988.395 units remaining) + - location: 20 (remaining gas: 1039988.350 units remaining) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (remaining gas: 1039988.385 units remaining) + - location: 21 (remaining gas: 1039988.340 units remaining) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (remaining gas: 1039988.375 units remaining) + - location: 23 (remaining gas: 1039988.330 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 d74732417e98..987ad130285e 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: 1039989.152 units remaining) + - location: 12 (remaining gas: 1039989.132 units remaining) [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (remaining gas: 1039989.142 units remaining) + - location: 12 (remaining gas: 1039989.122 units remaining) [ 1 (Pair { Elt 1 0 } None) ] - - location: 13 (remaining gas: 1039989.142 units remaining) + - location: 13 (remaining gas: 1039989.122 units remaining) [ (Pair { Elt 1 0 } None) ] - - location: 15 (remaining gas: 1039989.132 units remaining) + - location: 15 (remaining gas: 1039989.112 units remaining) [ { Elt 1 0 } ] - - location: 16 (remaining gas: 1039989.122 units remaining) + - location: 16 (remaining gas: 1039989.102 units remaining) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (remaining gas: 1039989.102 units remaining) + - location: 13 (remaining gas: 1039989.077 units remaining) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (remaining gas: 1039988.400 units remaining) + - location: 17 (remaining gas: 1039988.355 units remaining) [ True { Elt 1 0 } ] - - location: 18 (remaining gas: 1039988.390 units remaining) + - location: 18 (remaining gas: 1039988.345 units remaining) [ (Some True) { Elt 1 0 } ] - - location: 19 (remaining gas: 1039988.380 units remaining) + - location: 19 (remaining gas: 1039988.335 units remaining) [ { Elt 1 0 } (Some True) ] - - location: 20 (remaining gas: 1039988.370 units remaining) + - location: 20 (remaining gas: 1039988.325 units remaining) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (remaining gas: 1039988.360 units remaining) + - location: 21 (remaining gas: 1039988.315 units remaining) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (remaining gas: 1039988.350 units remaining) + - location: 23 (remaining gas: 1039988.305 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 e0afc0ebfe89..5bfeb260a335 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: 1039989.152 units remaining) + - location: 12 (remaining gas: 1039989.132 units remaining) [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (remaining gas: 1039989.142 units remaining) + - location: 12 (remaining gas: 1039989.122 units remaining) [ 1 (Pair { Elt 1 0 } None) ] - - location: 13 (remaining gas: 1039989.142 units remaining) + - location: 13 (remaining gas: 1039989.122 units remaining) [ (Pair { Elt 1 0 } None) ] - - location: 15 (remaining gas: 1039989.132 units remaining) + - location: 15 (remaining gas: 1039989.112 units remaining) [ { Elt 1 0 } ] - - location: 16 (remaining gas: 1039989.122 units remaining) + - location: 16 (remaining gas: 1039989.102 units remaining) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (remaining gas: 1039989.102 units remaining) + - location: 13 (remaining gas: 1039989.077 units remaining) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (remaining gas: 1039988.400 units remaining) + - location: 17 (remaining gas: 1039988.355 units remaining) [ True { Elt 1 0 } ] - - location: 18 (remaining gas: 1039988.390 units remaining) + - location: 18 (remaining gas: 1039988.345 units remaining) [ (Some True) { Elt 1 0 } ] - - location: 19 (remaining gas: 1039988.380 units remaining) + - location: 19 (remaining gas: 1039988.335 units remaining) [ { Elt 1 0 } (Some True) ] - - location: 20 (remaining gas: 1039988.370 units remaining) + - location: 20 (remaining gas: 1039988.325 units remaining) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (remaining gas: 1039988.360 units remaining) + - location: 21 (remaining gas: 1039988.315 units remaining) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (remaining gas: 1039988.350 units remaining) + - location: 23 (remaining gas: 1039988.305 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 67b56336ba6b..765b4a747183 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: 1039988.202 units remaining) + - location: 12 (remaining gas: 1039988.162 units remaining) [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.192 units remaining) + - location: 12 (remaining gas: 1039988.152 units remaining) [ 1 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.192 units remaining) + - location: 13 (remaining gas: 1039988.152 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.182 units remaining) + - location: 15 (remaining gas: 1039988.142 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.172 units remaining) + - location: 16 (remaining gas: 1039988.132 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (remaining gas: 1039988.107 units remaining) [ 1 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.449 units remaining) + - location: 17 (remaining gas: 1039987.384 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.439 units remaining) + - location: 18 (remaining gas: 1039987.374 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.429 units remaining) + - location: 19 (remaining gas: 1039987.364 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.419 units remaining) + - location: 20 (remaining gas: 1039987.354 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.409 units remaining) + - location: 21 (remaining gas: 1039987.344 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.399 units remaining) + - location: 23 (remaining gas: 1039987.334 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 ec5747894829..bf9b661f5e8c 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: 1039988.202 units remaining) + - location: 12 (remaining gas: 1039988.162 units remaining) [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.192 units remaining) + - location: 12 (remaining gas: 1039988.152 units remaining) [ 1 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.192 units remaining) + - location: 13 (remaining gas: 1039988.152 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.182 units remaining) + - location: 15 (remaining gas: 1039988.142 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.172 units remaining) + - location: 16 (remaining gas: 1039988.132 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (remaining gas: 1039988.107 units remaining) [ 1 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.449 units remaining) + - location: 17 (remaining gas: 1039987.384 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.439 units remaining) + - location: 18 (remaining gas: 1039987.374 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.429 units remaining) + - location: 19 (remaining gas: 1039987.364 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.419 units remaining) + - location: 20 (remaining gas: 1039987.354 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.409 units remaining) + - location: 21 (remaining gas: 1039987.344 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.399 units remaining) + - location: 23 (remaining gas: 1039987.334 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 7e301571085b..04ebf6074d59 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: 1039988.202 units remaining) + - location: 12 (remaining gas: 1039988.162 units remaining) [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.192 units remaining) + - location: 12 (remaining gas: 1039988.152 units remaining) [ 2 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.192 units remaining) + - location: 13 (remaining gas: 1039988.152 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.182 units remaining) + - location: 15 (remaining gas: 1039988.142 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.172 units remaining) + - location: 16 (remaining gas: 1039988.132 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (remaining gas: 1039988.107 units remaining) [ 2 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.449 units remaining) + - location: 17 (remaining gas: 1039987.384 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.439 units remaining) + - location: 18 (remaining gas: 1039987.374 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.429 units remaining) + - location: 19 (remaining gas: 1039987.364 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.419 units remaining) + - location: 20 (remaining gas: 1039987.354 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.409 units remaining) + - location: 21 (remaining gas: 1039987.344 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.399 units remaining) + - location: 23 (remaining gas: 1039987.334 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 e0408db29251..b704ceefd234 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: 1039988.202 units remaining) + - location: 12 (remaining gas: 1039988.162 units remaining) [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.192 units remaining) + - location: 12 (remaining gas: 1039988.152 units remaining) [ 2 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.192 units remaining) + - location: 13 (remaining gas: 1039988.152 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.182 units remaining) + - location: 15 (remaining gas: 1039988.142 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.172 units remaining) + - location: 16 (remaining gas: 1039988.132 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (remaining gas: 1039988.107 units remaining) [ 2 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.449 units remaining) + - location: 17 (remaining gas: 1039987.384 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.439 units remaining) + - location: 18 (remaining gas: 1039987.374 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.429 units remaining) + - location: 19 (remaining gas: 1039987.364 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.419 units remaining) + - location: 20 (remaining gas: 1039987.354 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.409 units remaining) + - location: 21 (remaining gas: 1039987.344 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.399 units remaining) + - location: 23 (remaining gas: 1039987.334 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 73d60dffaf6d..cbb7c2e6820d 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: 1039988.202 units remaining) + - location: 12 (remaining gas: 1039988.162 units remaining) [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.192 units remaining) + - location: 12 (remaining gas: 1039988.152 units remaining) [ 3 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.192 units remaining) + - location: 13 (remaining gas: 1039988.152 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.182 units remaining) + - location: 15 (remaining gas: 1039988.142 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.172 units remaining) + - location: 16 (remaining gas: 1039988.132 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (remaining gas: 1039988.107 units remaining) [ 3 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.449 units remaining) + - location: 17 (remaining gas: 1039987.384 units remaining) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.439 units remaining) + - location: 18 (remaining gas: 1039987.374 units remaining) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.429 units remaining) + - location: 19 (remaining gas: 1039987.364 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (remaining gas: 1039987.419 units remaining) + - location: 20 (remaining gas: 1039987.354 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (remaining gas: 1039987.409 units remaining) + - location: 21 (remaining gas: 1039987.344 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (remaining gas: 1039987.399 units remaining) + - location: 23 (remaining gas: 1039987.334 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 7d445b37b3c3..81c26ba7a83d 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: 1039988.202 units remaining) + - location: 12 (remaining gas: 1039988.162 units remaining) [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (remaining gas: 1039988.192 units remaining) + - location: 12 (remaining gas: 1039988.152 units remaining) [ 3 (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (remaining gas: 1039988.192 units remaining) + - location: 13 (remaining gas: 1039988.152 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (remaining gas: 1039988.182 units remaining) + - location: 15 (remaining gas: 1039988.142 units remaining) [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (remaining gas: 1039988.172 units remaining) + - location: 16 (remaining gas: 1039988.132 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039988.152 units remaining) + - location: 13 (remaining gas: 1039988.107 units remaining) [ 3 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039987.449 units remaining) + - location: 17 (remaining gas: 1039987.384 units remaining) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039987.439 units remaining) + - location: 18 (remaining gas: 1039987.374 units remaining) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039987.429 units remaining) + - location: 19 (remaining gas: 1039987.364 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (remaining gas: 1039987.419 units remaining) + - location: 20 (remaining gas: 1039987.354 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (remaining gas: 1039987.409 units remaining) + - location: 21 (remaining gas: 1039987.344 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (remaining gas: 1039987.399 units remaining) + - location: 23 (remaining gas: 1039987.334 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 9442a11178c1..216f84993286 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 @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039990.034 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039990.014 units remaining) + - location: 13 (remaining gas: 1039990.009 units remaining) [ 1 {} {} ] - - location: 17 (remaining gas: 1039989.314 units remaining) + - location: 17 (remaining gas: 1039989.289 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039989.304 units remaining) + - location: 18 (remaining gas: 1039989.279 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039989.294 units remaining) + - location: 19 (remaining gas: 1039989.269 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039989.284 units remaining) + - location: 20 (remaining gas: 1039989.259 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039989.274 units remaining) + - location: 21 (remaining gas: 1039989.249 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039989.264 units remaining) + - location: 23 (remaining gas: 1039989.239 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 5d05f7e6555a..f905c8930aa8 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 @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039990.034 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039990.014 units remaining) + - location: 13 (remaining gas: 1039990.009 units remaining) [ 1 {} {} ] - - location: 17 (remaining gas: 1039989.314 units remaining) + - location: 17 (remaining gas: 1039989.289 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039989.304 units remaining) + - location: 18 (remaining gas: 1039989.279 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039989.294 units remaining) + - location: 19 (remaining gas: 1039989.269 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039989.284 units remaining) + - location: 20 (remaining gas: 1039989.259 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039989.274 units remaining) + - location: 21 (remaining gas: 1039989.249 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039989.264 units remaining) + - location: 23 (remaining gas: 1039989.239 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 d55a79440c55..beabb4357205 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: 1039988.046 units remaining) + - location: 12 (remaining gas: 1039988.006 units remaining) [ (Pair "baz" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039988.036 units remaining) + - location: 12 (remaining gas: 1039987.996 units remaining) [ "baz" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039988.036 units remaining) + - location: 13 (remaining gas: 1039987.996 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039988.026 units remaining) + - location: 15 (remaining gas: 1039987.986 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039988.016 units remaining) + - location: 16 (remaining gas: 1039987.976 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039987.996 units remaining) + - location: 13 (remaining gas: 1039987.951 units remaining) [ "baz" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039987.281 units remaining) + - location: 17 (remaining gas: 1039987.216 units remaining) [ False { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039987.271 units remaining) + - location: 18 (remaining gas: 1039987.206 units remaining) [ (Some False) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039987.261 units remaining) + - location: 19 (remaining gas: 1039987.196 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some False) ] - - location: 20 (remaining gas: 1039987.251 units remaining) + - location: 20 (remaining gas: 1039987.186 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 21 (remaining gas: 1039987.241 units remaining) + - location: 21 (remaining gas: 1039987.176 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 23 (remaining gas: 1039987.231 units remaining) + - location: 23 (remaining gas: 1039987.166 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 d62934ee1589..d352542b12fc 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: 1039988.046 units remaining) + - location: 12 (remaining gas: 1039988.006 units remaining) [ (Pair "foo" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039988.036 units remaining) + - location: 12 (remaining gas: 1039987.996 units remaining) [ "foo" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039988.036 units remaining) + - location: 13 (remaining gas: 1039987.996 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039988.026 units remaining) + - location: 15 (remaining gas: 1039987.986 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039988.016 units remaining) + - location: 16 (remaining gas: 1039987.976 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039987.996 units remaining) + - location: 13 (remaining gas: 1039987.951 units remaining) [ "foo" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039987.281 units remaining) + - location: 17 (remaining gas: 1039987.216 units remaining) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039987.271 units remaining) + - location: 18 (remaining gas: 1039987.206 units remaining) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039987.261 units remaining) + - location: 19 (remaining gas: 1039987.196 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.251 units remaining) + - location: 20 (remaining gas: 1039987.186 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.241 units remaining) + - location: 21 (remaining gas: 1039987.176 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.231 units remaining) + - location: 23 (remaining gas: 1039987.166 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 e52826cc1eea..fd88d7e9d06d 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: 1039988.046 units remaining) + - location: 12 (remaining gas: 1039988.006 units remaining) [ (Pair "bar" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (remaining gas: 1039988.036 units remaining) + - location: 12 (remaining gas: 1039987.996 units remaining) [ "bar" (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (remaining gas: 1039988.036 units remaining) + - location: 13 (remaining gas: 1039987.996 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (remaining gas: 1039988.026 units remaining) + - location: 15 (remaining gas: 1039987.986 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (remaining gas: 1039988.016 units remaining) + - location: 16 (remaining gas: 1039987.976 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039987.996 units remaining) + - location: 13 (remaining gas: 1039987.951 units remaining) [ "bar" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039987.281 units remaining) + - location: 17 (remaining gas: 1039987.216 units remaining) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039987.271 units remaining) + - location: 18 (remaining gas: 1039987.206 units remaining) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039987.261 units remaining) + - location: 19 (remaining gas: 1039987.196 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039987.251 units remaining) + - location: 20 (remaining gas: 1039987.186 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039987.241 units remaining) + - location: 21 (remaining gas: 1039987.176 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039987.231 units remaining) + - location: 23 (remaining gas: 1039987.166 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 42329075e4b0..2baff56c26f1 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: 1039989.052 units remaining) + - location: 12 (remaining gas: 1039989.032 units remaining) [ (Pair "foo" { Elt "foo" 0 } None) ] - - location: 12 (remaining gas: 1039989.042 units remaining) + - location: 12 (remaining gas: 1039989.022 units remaining) [ "foo" (Pair { Elt "foo" 0 } None) ] - - location: 13 (remaining gas: 1039989.042 units remaining) + - location: 13 (remaining gas: 1039989.022 units remaining) [ (Pair { Elt "foo" 0 } None) ] - - location: 15 (remaining gas: 1039989.032 units remaining) + - location: 15 (remaining gas: 1039989.012 units remaining) [ { Elt "foo" 0 } ] - - location: 16 (remaining gas: 1039989.022 units remaining) + - location: 16 (remaining gas: 1039989.002 units remaining) [ { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 13 (remaining gas: 1039989.002 units remaining) + - location: 13 (remaining gas: 1039988.977 units remaining) [ "foo" { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 17 (remaining gas: 1039988.288 units remaining) + - location: 17 (remaining gas: 1039988.243 units remaining) [ True { Elt "foo" 0 } ] - - location: 18 (remaining gas: 1039988.278 units remaining) + - location: 18 (remaining gas: 1039988.233 units remaining) [ (Some True) { Elt "foo" 0 } ] - - location: 19 (remaining gas: 1039988.268 units remaining) + - location: 19 (remaining gas: 1039988.223 units remaining) [ { Elt "foo" 0 } (Some True) ] - - location: 20 (remaining gas: 1039988.258 units remaining) + - location: 20 (remaining gas: 1039988.213 units remaining) [ (Pair { Elt "foo" 0 } (Some True)) ] - - location: 21 (remaining gas: 1039988.248 units remaining) + - location: 21 (remaining gas: 1039988.203 units remaining) [ {} (Pair { Elt "foo" 0 } (Some True)) ] - - location: 23 (remaining gas: 1039988.238 units remaining) + - location: 23 (remaining gas: 1039988.193 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 123401285269..dd335781a987 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: 1039989.052 units remaining) + - location: 12 (remaining gas: 1039989.032 units remaining) [ (Pair "bar" { Elt "foo" 1 } None) ] - - location: 12 (remaining gas: 1039989.042 units remaining) + - location: 12 (remaining gas: 1039989.022 units remaining) [ "bar" (Pair { Elt "foo" 1 } None) ] - - location: 13 (remaining gas: 1039989.042 units remaining) + - location: 13 (remaining gas: 1039989.022 units remaining) [ (Pair { Elt "foo" 1 } None) ] - - location: 15 (remaining gas: 1039989.032 units remaining) + - location: 15 (remaining gas: 1039989.012 units remaining) [ { Elt "foo" 1 } ] - - location: 16 (remaining gas: 1039989.022 units remaining) + - location: 16 (remaining gas: 1039989.002 units remaining) [ { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 13 (remaining gas: 1039989.002 units remaining) + - location: 13 (remaining gas: 1039988.977 units remaining) [ "bar" { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 17 (remaining gas: 1039988.288 units remaining) + - location: 17 (remaining gas: 1039988.243 units remaining) [ False { Elt "foo" 1 } ] - - location: 18 (remaining gas: 1039988.278 units remaining) + - location: 18 (remaining gas: 1039988.233 units remaining) [ (Some False) { Elt "foo" 1 } ] - - location: 19 (remaining gas: 1039988.268 units remaining) + - location: 19 (remaining gas: 1039988.223 units remaining) [ { Elt "foo" 1 } (Some False) ] - - location: 20 (remaining gas: 1039988.258 units remaining) + - location: 20 (remaining gas: 1039988.213 units remaining) [ (Pair { Elt "foo" 1 } (Some False)) ] - - location: 21 (remaining gas: 1039988.248 units remaining) + - location: 21 (remaining gas: 1039988.203 units remaining) [ {} (Pair { Elt "foo" 1 } (Some False)) ] - - location: 23 (remaining gas: 1039988.238 units remaining) + - location: 23 (remaining gas: 1039988.193 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 ec613447c25d..bb2697257348 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" @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039989.990 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039989.970 units remaining) + - location: 13 (remaining gas: 1039989.965 units remaining) [ "bar" {} {} ] - - location: 17 (remaining gas: 1039989.258 units remaining) + - location: 17 (remaining gas: 1039989.233 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039989.248 units remaining) + - location: 18 (remaining gas: 1039989.223 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039989.238 units remaining) + - location: 19 (remaining gas: 1039989.213 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039989.228 units remaining) + - location: 20 (remaining gas: 1039989.203 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039989.218 units remaining) + - location: 21 (remaining gas: 1039989.193 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039989.208 units remaining) + - location: 23 (remaining gas: 1039989.183 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_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 108dad323f62..e138f036dfe8 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 @@ -17,16 +17,16 @@ trace [ (Some 16) ] - location: 11 (remaining gas: 1039990.549 units remaining) [ 16 ] - - location: 11 (remaining gas: 1039990.539 units remaining) + - location: 11 (remaining gas: 1039990.534 units remaining) [ 16 ] - - location: 17 (remaining gas: 1039990.529 units remaining) + - location: 17 (remaining gas: 1039990.524 units remaining) [ 1 16 ] - - location: 20 (remaining gas: 1039990.529 units remaining) + - location: 20 (remaining gas: 1039990.524 units remaining) [ 16 ] - - location: 21 (remaining gas: 1039990.519 units remaining) + - location: 21 (remaining gas: 1039990.514 units remaining) [ {} 16 ] - - location: 23 (remaining gas: 1039990.509 units remaining) + - location: 23 (remaining gas: 1039990.504 units remaining) [ (Pair {} 16) ] 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 9f67ff47d284..7ae31c2795c4 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 @@ -29,95 +29,95 @@ trace (Pair 1 4 2 Unit) ] - location: 21 (remaining gas: 1039956.567 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 21 (remaining gas: 1039956.557 units remaining) + - location: 21 (remaining gas: 1039956.552 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 27 (remaining gas: 1039956.547 units remaining) + - location: 27 (remaining gas: 1039956.542 units remaining) [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - location: 28 (remaining gas: 1039956.527 units remaining) + - location: 28 (remaining gas: 1039956.522 units remaining) [ 1 (Pair 1 4 2 Unit) ] - - location: 30 (remaining gas: 1039956.517 units remaining) + - location: 30 (remaining gas: 1039956.512 units remaining) [ 1 1 (Pair 1 4 2 Unit) ] - - location: 35 (remaining gas: 1039956.482 units remaining) + - location: 35 (remaining gas: 1039956.477 units remaining) [ 0 (Pair 1 4 2 Unit) ] - - location: 36 (remaining gas: 1039956.472 units remaining) + - location: 36 (remaining gas: 1039956.467 units remaining) [ True (Pair 1 4 2 Unit) ] - - location: 37 (remaining gas: 1039956.472 units remaining) + - location: 37 (remaining gas: 1039956.467 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 37 (remaining gas: 1039956.462 units remaining) + - location: 37 (remaining gas: 1039956.452 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 43 (remaining gas: 1039956.452 units remaining) + - location: 43 (remaining gas: 1039956.442 units remaining) [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - location: 44 (remaining gas: 1039956.431 units remaining) + - location: 44 (remaining gas: 1039956.421 units remaining) [ 4 (Pair 1 4 2 Unit) ] - - location: 46 (remaining gas: 1039956.421 units remaining) + - location: 46 (remaining gas: 1039956.411 units remaining) [ 4 4 (Pair 1 4 2 Unit) ] - - location: 51 (remaining gas: 1039956.386 units remaining) + - location: 51 (remaining gas: 1039956.376 units remaining) [ 0 (Pair 1 4 2 Unit) ] - - location: 52 (remaining gas: 1039956.376 units remaining) + - location: 52 (remaining gas: 1039956.366 units remaining) [ True (Pair 1 4 2 Unit) ] - - location: 53 (remaining gas: 1039956.376 units remaining) - [ (Pair 1 4 2 Unit) ] - location: 53 (remaining gas: 1039956.366 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 59 (remaining gas: 1039956.356 units remaining) + - location: 53 (remaining gas: 1039956.351 units remaining) + [ (Pair 1 4 2 Unit) ] + - location: 59 (remaining gas: 1039956.341 units remaining) [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - location: 60 (remaining gas: 1039956.334 units remaining) + - location: 60 (remaining gas: 1039956.319 units remaining) [ 2 (Pair 1 4 2 Unit) ] - - location: 62 (remaining gas: 1039956.324 units remaining) + - location: 62 (remaining gas: 1039956.309 units remaining) [ 2 2 (Pair 1 4 2 Unit) ] - - location: 67 (remaining gas: 1039956.289 units remaining) + - location: 67 (remaining gas: 1039956.274 units remaining) [ 0 (Pair 1 4 2 Unit) ] - - location: 68 (remaining gas: 1039956.279 units remaining) + - location: 68 (remaining gas: 1039956.264 units remaining) [ True (Pair 1 4 2 Unit) ] - - location: 69 (remaining gas: 1039956.279 units remaining) + - location: 69 (remaining gas: 1039956.264 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 69 (remaining gas: 1039956.269 units remaining) + - location: 69 (remaining gas: 1039956.249 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 75 (remaining gas: 1039956.259 units remaining) + - location: 75 (remaining gas: 1039956.239 units remaining) [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - location: 76 (remaining gas: 1039956.236 units remaining) + - location: 76 (remaining gas: 1039956.216 units remaining) [ Unit (Pair 1 4 2 Unit) ] - - location: 78 (remaining gas: 1039956.226 units remaining) + - location: 78 (remaining gas: 1039956.206 units remaining) [ Unit Unit (Pair 1 4 2 Unit) ] - - location: 81 (remaining gas: 1039956.216 units remaining) + - location: 81 (remaining gas: 1039956.196 units remaining) [ 0 (Pair 1 4 2 Unit) ] - - location: 82 (remaining gas: 1039956.206 units remaining) + - location: 82 (remaining gas: 1039956.186 units remaining) [ True (Pair 1 4 2 Unit) ] - - location: 83 (remaining gas: 1039956.206 units remaining) + - location: 83 (remaining gas: 1039956.186 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 83 (remaining gas: 1039956.196 units remaining) + - location: 83 (remaining gas: 1039956.171 units remaining) [ (Pair 1 4 2 Unit) ] - - location: 89 (remaining gas: 1039956.186 units remaining) + - location: 89 (remaining gas: 1039956.161 units remaining) [ ] - - location: 90 (remaining gas: 1039956.176 units remaining) + - location: 90 (remaining gas: 1039956.151 units remaining) [ Unit ] - - location: 91 (remaining gas: 1039956.166 units remaining) + - location: 91 (remaining gas: 1039956.141 units remaining) [ {} Unit ] - - location: 93 (remaining gas: 1039956.156 units remaining) + - location: 93 (remaining gas: 1039956.131 units remaining) [ (Pair {} Unit) ] 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 94850fa0dcea..d5df0593941a 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 @@ -22,377 +22,377 @@ trace [ True ] - location: 15 (remaining gas: 1039800.953 units remaining) [ ] - - location: 15 (remaining gas: 1039800.943 units remaining) + - location: 15 (remaining gas: 1039800.938 units remaining) [ ] - - location: 21 (remaining gas: 1039800.933 units remaining) + - location: 21 (remaining gas: 1039800.928 units remaining) [ False ] - - location: 24 (remaining gas: 1039800.923 units remaining) + - location: 24 (remaining gas: 1039800.918 units remaining) [ False False ] - - location: 25 (remaining gas: 1039800.888 units remaining) + - location: 25 (remaining gas: 1039800.883 units remaining) [ 0 ] - - location: 27 (remaining gas: 1039800.878 units remaining) + - location: 27 (remaining gas: 1039800.873 units remaining) [ True ] - - location: 28 (remaining gas: 1039800.878 units remaining) + - location: 28 (remaining gas: 1039800.873 units remaining) [ ] - - location: 28 (remaining gas: 1039800.868 units remaining) + - location: 28 (remaining gas: 1039800.858 units remaining) [ ] - - location: 34 (remaining gas: 1039800.858 units remaining) + - location: 34 (remaining gas: 1039800.848 units remaining) [ False ] - - location: 37 (remaining gas: 1039800.848 units remaining) + - location: 37 (remaining gas: 1039800.838 units remaining) [ True False ] - - location: 40 (remaining gas: 1039800.813 units remaining) + - location: 40 (remaining gas: 1039800.803 units remaining) [ 1 ] - - location: 42 (remaining gas: 1039800.803 units remaining) + - location: 42 (remaining gas: 1039800.793 units remaining) [ True ] - - location: 43 (remaining gas: 1039800.803 units remaining) - [ ] - location: 43 (remaining gas: 1039800.793 units remaining) [ ] - - location: 49 (remaining gas: 1039800.783 units remaining) + - location: 43 (remaining gas: 1039800.778 units remaining) + [ ] + - location: 49 (remaining gas: 1039800.768 units remaining) [ True ] - - location: 52 (remaining gas: 1039800.773 units remaining) + - location: 52 (remaining gas: 1039800.758 units remaining) [ False True ] - - location: 55 (remaining gas: 1039800.738 units remaining) + - location: 55 (remaining gas: 1039800.723 units remaining) [ -1 ] - - location: 57 (remaining gas: 1039800.728 units remaining) + - location: 57 (remaining gas: 1039800.713 units remaining) [ True ] - - location: 58 (remaining gas: 1039800.728 units remaining) + - location: 58 (remaining gas: 1039800.713 units remaining) [ ] - - location: 58 (remaining gas: 1039800.718 units remaining) + - location: 58 (remaining gas: 1039800.698 units remaining) [ ] - - location: 64 (remaining gas: 1039800.708 units remaining) + - location: 64 (remaining gas: 1039800.688 units remaining) [ 0xaabbcc ] - - location: 67 (remaining gas: 1039800.698 units remaining) + - location: 67 (remaining gas: 1039800.678 units remaining) [ 0xaabbcc 0xaabbcc ] - - location: 68 (remaining gas: 1039800.663 units remaining) + - location: 68 (remaining gas: 1039800.643 units remaining) [ 0 ] - - location: 70 (remaining gas: 1039800.653 units remaining) + - location: 70 (remaining gas: 1039800.633 units remaining) [ True ] - - location: 71 (remaining gas: 1039800.653 units remaining) + - location: 71 (remaining gas: 1039800.633 units remaining) [ ] - - location: 71 (remaining gas: 1039800.643 units remaining) + - location: 71 (remaining gas: 1039800.618 units remaining) [ ] - - location: 77 (remaining gas: 1039800.633 units remaining) + - location: 77 (remaining gas: 1039800.608 units remaining) [ 0x ] - - location: 80 (remaining gas: 1039800.623 units remaining) + - location: 80 (remaining gas: 1039800.598 units remaining) [ 0x 0x ] - - location: 83 (remaining gas: 1039800.588 units remaining) + - location: 83 (remaining gas: 1039800.563 units remaining) [ 0 ] - - location: 85 (remaining gas: 1039800.578 units remaining) + - location: 85 (remaining gas: 1039800.553 units remaining) [ True ] - - location: 86 (remaining gas: 1039800.578 units remaining) + - location: 86 (remaining gas: 1039800.553 units remaining) [ ] - - location: 86 (remaining gas: 1039800.568 units remaining) + - location: 86 (remaining gas: 1039800.538 units remaining) [ ] - - location: 92 (remaining gas: 1039800.558 units remaining) + - location: 92 (remaining gas: 1039800.528 units remaining) [ 0x ] - - location: 95 (remaining gas: 1039800.548 units remaining) + - location: 95 (remaining gas: 1039800.518 units remaining) [ 0x01 0x ] - - location: 98 (remaining gas: 1039800.513 units remaining) + - location: 98 (remaining gas: 1039800.483 units remaining) [ 1 ] - - location: 100 (remaining gas: 1039800.503 units remaining) + - location: 100 (remaining gas: 1039800.473 units remaining) [ True ] - - location: 101 (remaining gas: 1039800.503 units remaining) + - location: 101 (remaining gas: 1039800.473 units remaining) [ ] - - location: 101 (remaining gas: 1039800.493 units remaining) + - location: 101 (remaining gas: 1039800.458 units remaining) [ ] - - location: 107 (remaining gas: 1039800.483 units remaining) + - location: 107 (remaining gas: 1039800.448 units remaining) [ 0x01 ] - - location: 110 (remaining gas: 1039800.473 units remaining) + - location: 110 (remaining gas: 1039800.438 units remaining) [ 0x02 0x01 ] - - location: 113 (remaining gas: 1039800.438 units remaining) + - location: 113 (remaining gas: 1039800.403 units remaining) [ 1 ] - - location: 115 (remaining gas: 1039800.428 units remaining) + - location: 115 (remaining gas: 1039800.393 units remaining) [ True ] - - location: 116 (remaining gas: 1039800.428 units remaining) + - location: 116 (remaining gas: 1039800.393 units remaining) [ ] - - location: 116 (remaining gas: 1039800.418 units remaining) + - location: 116 (remaining gas: 1039800.378 units remaining) [ ] - - location: 122 (remaining gas: 1039800.408 units remaining) + - location: 122 (remaining gas: 1039800.368 units remaining) [ 0x02 ] - - location: 125 (remaining gas: 1039800.398 units remaining) + - location: 125 (remaining gas: 1039800.358 units remaining) [ 0x01 0x02 ] - - location: 128 (remaining gas: 1039800.363 units remaining) + - location: 128 (remaining gas: 1039800.323 units remaining) [ -1 ] - - location: 130 (remaining gas: 1039800.353 units remaining) + - location: 130 (remaining gas: 1039800.313 units remaining) [ True ] - - location: 131 (remaining gas: 1039800.353 units remaining) + - location: 131 (remaining gas: 1039800.313 units remaining) [ ] - - location: 131 (remaining gas: 1039800.343 units remaining) + - location: 131 (remaining gas: 1039800.298 units remaining) [ ] - - location: 137 (remaining gas: 1039800.333 units remaining) + - location: 137 (remaining gas: 1039800.288 units remaining) [ 1 ] - - location: 140 (remaining gas: 1039800.323 units remaining) + - location: 140 (remaining gas: 1039800.278 units remaining) [ 1 1 ] - - location: 141 (remaining gas: 1039800.288 units remaining) + - location: 141 (remaining gas: 1039800.243 units remaining) [ 0 ] - - location: 143 (remaining gas: 1039800.278 units remaining) + - location: 143 (remaining gas: 1039800.233 units remaining) [ True ] - - location: 144 (remaining gas: 1039800.278 units remaining) + - location: 144 (remaining gas: 1039800.233 units remaining) [ ] - - location: 144 (remaining gas: 1039800.268 units remaining) + - location: 144 (remaining gas: 1039800.218 units remaining) [ ] - - location: 150 (remaining gas: 1039800.258 units remaining) + - location: 150 (remaining gas: 1039800.208 units remaining) [ 10 ] - - location: 153 (remaining gas: 1039800.248 units remaining) + - location: 153 (remaining gas: 1039800.198 units remaining) [ 5 10 ] - - location: 156 (remaining gas: 1039800.213 units remaining) + - location: 156 (remaining gas: 1039800.163 units remaining) [ -1 ] - - location: 158 (remaining gas: 1039800.203 units remaining) + - location: 158 (remaining gas: 1039800.153 units remaining) [ True ] - - location: 159 (remaining gas: 1039800.203 units remaining) + - location: 159 (remaining gas: 1039800.153 units remaining) [ ] - - location: 159 (remaining gas: 1039800.193 units remaining) + - location: 159 (remaining gas: 1039800.138 units remaining) [ ] - - location: 165 (remaining gas: 1039800.183 units remaining) + - location: 165 (remaining gas: 1039800.128 units remaining) [ -4 ] - - location: 168 (remaining gas: 1039800.173 units remaining) + - location: 168 (remaining gas: 1039800.118 units remaining) [ 1923 -4 ] - - location: 171 (remaining gas: 1039800.138 units remaining) + - location: 171 (remaining gas: 1039800.083 units remaining) [ 1 ] - - location: 173 (remaining gas: 1039800.128 units remaining) + - location: 173 (remaining gas: 1039800.073 units remaining) [ True ] - - location: 174 (remaining gas: 1039800.128 units remaining) + - location: 174 (remaining gas: 1039800.073 units remaining) [ ] - - location: 174 (remaining gas: 1039800.118 units remaining) + - location: 174 (remaining gas: 1039800.058 units remaining) [ ] - - location: 180 (remaining gas: 1039800.108 units remaining) + - location: 180 (remaining gas: 1039800.048 units remaining) [ 1 ] - - location: 183 (remaining gas: 1039800.098 units remaining) + - location: 183 (remaining gas: 1039800.038 units remaining) [ 1 1 ] - - location: 184 (remaining gas: 1039800.063 units remaining) + - location: 184 (remaining gas: 1039800.003 units remaining) [ 0 ] - - location: 186 (remaining gas: 1039800.053 units remaining) + - location: 186 (remaining gas: 1039799.993 units remaining) [ True ] - - location: 187 (remaining gas: 1039800.053 units remaining) + - location: 187 (remaining gas: 1039799.993 units remaining) [ ] - - location: 187 (remaining gas: 1039800.043 units remaining) + - location: 187 (remaining gas: 1039799.978 units remaining) [ ] - - location: 193 (remaining gas: 1039800.033 units remaining) + - location: 193 (remaining gas: 1039799.968 units remaining) [ 10 ] - - location: 196 (remaining gas: 1039800.023 units remaining) + - location: 196 (remaining gas: 1039799.958 units remaining) [ 5 10 ] - - location: 199 (remaining gas: 1039799.988 units remaining) + - location: 199 (remaining gas: 1039799.923 units remaining) [ -1 ] - - location: 201 (remaining gas: 1039799.978 units remaining) + - location: 201 (remaining gas: 1039799.913 units remaining) [ True ] - - location: 202 (remaining gas: 1039799.978 units remaining) + - location: 202 (remaining gas: 1039799.913 units remaining) [ ] - - location: 202 (remaining gas: 1039799.968 units remaining) + - location: 202 (remaining gas: 1039799.898 units remaining) [ ] - - location: 208 (remaining gas: 1039799.958 units remaining) + - location: 208 (remaining gas: 1039799.888 units remaining) [ 4 ] - - location: 211 (remaining gas: 1039799.948 units remaining) + - location: 211 (remaining gas: 1039799.878 units remaining) [ 1923 4 ] - - location: 214 (remaining gas: 1039799.913 units remaining) + - location: 214 (remaining gas: 1039799.843 units remaining) [ 1 ] - - location: 216 (remaining gas: 1039799.903 units remaining) + - location: 216 (remaining gas: 1039799.833 units remaining) [ True ] - - location: 217 (remaining gas: 1039799.903 units remaining) + - location: 217 (remaining gas: 1039799.833 units remaining) [ ] - - location: 217 (remaining gas: 1039799.893 units remaining) + - location: 217 (remaining gas: 1039799.818 units remaining) [ ] - - location: 223 (remaining gas: 1039799.883 units remaining) + - location: 223 (remaining gas: 1039799.808 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 226 (remaining gas: 1039799.873 units remaining) + - location: 226 (remaining gas: 1039799.798 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 227 (remaining gas: 1039799.837 units remaining) + - location: 227 (remaining gas: 1039799.762 units remaining) [ 0 ] - - location: 229 (remaining gas: 1039799.827 units remaining) + - location: 229 (remaining gas: 1039799.752 units remaining) [ True ] - - location: 230 (remaining gas: 1039799.827 units remaining) + - location: 230 (remaining gas: 1039799.752 units remaining) [ ] - - location: 230 (remaining gas: 1039799.817 units remaining) + - location: 230 (remaining gas: 1039799.737 units remaining) [ ] - - location: 236 (remaining gas: 1039799.807 units remaining) + - location: 236 (remaining gas: 1039799.727 units remaining) [ "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" ] - - location: 239 (remaining gas: 1039799.797 units remaining) + - location: 239 (remaining gas: 1039799.717 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" ] - - location: 242 (remaining gas: 1039799.761 units remaining) + - location: 242 (remaining gas: 1039799.681 units remaining) [ -1 ] - - location: 244 (remaining gas: 1039799.751 units remaining) + - location: 244 (remaining gas: 1039799.671 units remaining) [ True ] - - location: 245 (remaining gas: 1039799.751 units remaining) + - location: 245 (remaining gas: 1039799.671 units remaining) [ ] - - location: 245 (remaining gas: 1039799.741 units remaining) + - location: 245 (remaining gas: 1039799.656 units remaining) [ ] - - location: 251 (remaining gas: 1039799.731 units remaining) + - location: 251 (remaining gas: 1039799.646 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 254 (remaining gas: 1039799.721 units remaining) + - location: 254 (remaining gas: 1039799.636 units remaining) [ "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 257 (remaining gas: 1039799.685 units remaining) + - location: 257 (remaining gas: 1039799.600 units remaining) [ 1 ] - - location: 259 (remaining gas: 1039799.675 units remaining) + - location: 259 (remaining gas: 1039799.590 units remaining) [ True ] - - location: 260 (remaining gas: 1039799.675 units remaining) + - location: 260 (remaining gas: 1039799.590 units remaining) [ ] - - location: 260 (remaining gas: 1039799.665 units remaining) + - location: 260 (remaining gas: 1039799.575 units remaining) [ ] - - location: 266 (remaining gas: 1039799.655 units remaining) + - location: 266 (remaining gas: 1039799.565 units remaining) [ 1 ] - - location: 269 (remaining gas: 1039799.645 units remaining) + - location: 269 (remaining gas: 1039799.555 units remaining) [ 1 1 ] - - location: 270 (remaining gas: 1039799.610 units remaining) + - location: 270 (remaining gas: 1039799.520 units remaining) [ 0 ] - - location: 272 (remaining gas: 1039799.600 units remaining) + - location: 272 (remaining gas: 1039799.510 units remaining) [ True ] - - location: 273 (remaining gas: 1039799.600 units remaining) + - location: 273 (remaining gas: 1039799.510 units remaining) [ ] - - location: 273 (remaining gas: 1039799.590 units remaining) + - location: 273 (remaining gas: 1039799.495 units remaining) [ ] - - location: 279 (remaining gas: 1039799.580 units remaining) + - location: 279 (remaining gas: 1039799.485 units remaining) [ 10 ] - - location: 282 (remaining gas: 1039799.570 units remaining) + - location: 282 (remaining gas: 1039799.475 units remaining) [ 5 10 ] - - location: 285 (remaining gas: 1039799.535 units remaining) + - location: 285 (remaining gas: 1039799.440 units remaining) [ -1 ] - - location: 287 (remaining gas: 1039799.525 units remaining) + - location: 287 (remaining gas: 1039799.430 units remaining) [ True ] - - location: 288 (remaining gas: 1039799.525 units remaining) + - location: 288 (remaining gas: 1039799.430 units remaining) [ ] - - location: 288 (remaining gas: 1039799.515 units remaining) + - location: 288 (remaining gas: 1039799.415 units remaining) [ ] - - location: 294 (remaining gas: 1039799.505 units remaining) + - location: 294 (remaining gas: 1039799.405 units remaining) [ 4 ] - - location: 297 (remaining gas: 1039799.495 units remaining) + - location: 297 (remaining gas: 1039799.395 units remaining) [ 1923 4 ] - - location: 300 (remaining gas: 1039799.460 units remaining) + - location: 300 (remaining gas: 1039799.360 units remaining) [ 1 ] - - location: 302 (remaining gas: 1039799.450 units remaining) + - location: 302 (remaining gas: 1039799.350 units remaining) [ True ] - - location: 303 (remaining gas: 1039799.450 units remaining) + - location: 303 (remaining gas: 1039799.350 units remaining) [ ] - - location: 303 (remaining gas: 1039799.440 units remaining) + - location: 303 (remaining gas: 1039799.335 units remaining) [ ] - - location: 309 (remaining gas: 1039799.430 units remaining) + - location: 309 (remaining gas: 1039799.325 units remaining) [ "AABBCC" ] - - location: 312 (remaining gas: 1039799.420 units remaining) + - location: 312 (remaining gas: 1039799.315 units remaining) [ "AABBCC" "AABBCC" ] - - location: 313 (remaining gas: 1039799.385 units remaining) + - location: 313 (remaining gas: 1039799.280 units remaining) [ 0 ] - - location: 315 (remaining gas: 1039799.375 units remaining) + - location: 315 (remaining gas: 1039799.270 units remaining) [ True ] - - location: 316 (remaining gas: 1039799.375 units remaining) + - location: 316 (remaining gas: 1039799.270 units remaining) [ ] - - location: 316 (remaining gas: 1039799.365 units remaining) + - location: 316 (remaining gas: 1039799.255 units remaining) [ ] - - location: 322 (remaining gas: 1039799.355 units remaining) + - location: 322 (remaining gas: 1039799.245 units remaining) [ "" ] - - location: 325 (remaining gas: 1039799.345 units remaining) + - location: 325 (remaining gas: 1039799.235 units remaining) [ "" "" ] - - location: 328 (remaining gas: 1039799.310 units remaining) + - location: 328 (remaining gas: 1039799.200 units remaining) [ 0 ] - - location: 330 (remaining gas: 1039799.300 units remaining) + - location: 330 (remaining gas: 1039799.190 units remaining) [ True ] - - location: 331 (remaining gas: 1039799.300 units remaining) + - location: 331 (remaining gas: 1039799.190 units remaining) [ ] - - location: 331 (remaining gas: 1039799.290 units remaining) + - location: 331 (remaining gas: 1039799.175 units remaining) [ ] - - location: 337 (remaining gas: 1039799.280 units remaining) + - location: 337 (remaining gas: 1039799.165 units remaining) [ "" ] - - location: 340 (remaining gas: 1039799.270 units remaining) + - location: 340 (remaining gas: 1039799.155 units remaining) [ "a" "" ] - - location: 343 (remaining gas: 1039799.235 units remaining) + - location: 343 (remaining gas: 1039799.120 units remaining) [ 1 ] - - location: 345 (remaining gas: 1039799.225 units remaining) + - location: 345 (remaining gas: 1039799.110 units remaining) [ True ] - - location: 346 (remaining gas: 1039799.225 units remaining) + - location: 346 (remaining gas: 1039799.110 units remaining) [ ] - - location: 346 (remaining gas: 1039799.215 units remaining) + - location: 346 (remaining gas: 1039799.095 units remaining) [ ] - - location: 352 (remaining gas: 1039799.205 units remaining) + - location: 352 (remaining gas: 1039799.085 units remaining) [ "a" ] - - location: 355 (remaining gas: 1039799.195 units remaining) + - location: 355 (remaining gas: 1039799.075 units remaining) [ "b" "a" ] - - location: 358 (remaining gas: 1039799.160 units remaining) + - location: 358 (remaining gas: 1039799.040 units remaining) [ 1 ] - - location: 360 (remaining gas: 1039799.150 units remaining) + - location: 360 (remaining gas: 1039799.030 units remaining) [ True ] - - location: 361 (remaining gas: 1039799.150 units remaining) + - location: 361 (remaining gas: 1039799.030 units remaining) [ ] - - location: 361 (remaining gas: 1039799.140 units remaining) + - location: 361 (remaining gas: 1039799.015 units remaining) [ ] - - location: 367 (remaining gas: 1039799.130 units remaining) + - location: 367 (remaining gas: 1039799.005 units remaining) [ "b" ] - - location: 370 (remaining gas: 1039799.120 units remaining) + - location: 370 (remaining gas: 1039798.995 units remaining) [ "a" "b" ] - - location: 373 (remaining gas: 1039799.085 units remaining) + - location: 373 (remaining gas: 1039798.960 units remaining) [ -1 ] - - location: 375 (remaining gas: 1039799.075 units remaining) + - location: 375 (remaining gas: 1039798.950 units remaining) [ True ] - - location: 376 (remaining gas: 1039799.075 units remaining) + - location: 376 (remaining gas: 1039798.950 units remaining) [ ] - - location: 376 (remaining gas: 1039799.065 units remaining) + - location: 376 (remaining gas: 1039798.935 units remaining) [ ] - - location: 382 (remaining gas: 1039799.055 units remaining) + - location: 382 (remaining gas: 1039798.925 units remaining) [ "2019-09-16T08:38:05Z" ] - - location: 385 (remaining gas: 1039799.045 units remaining) + - location: 385 (remaining gas: 1039798.915 units remaining) [ "2019-09-16T08:38:05Z" "2019-09-16T08:38:05Z" ] - - location: 386 (remaining gas: 1039799.010 units remaining) + - location: 386 (remaining gas: 1039798.880 units remaining) [ 0 ] - - location: 388 (remaining gas: 1039799 units remaining) + - location: 388 (remaining gas: 1039798.870 units remaining) [ True ] - - location: 389 (remaining gas: 1039799 units remaining) + - location: 389 (remaining gas: 1039798.870 units remaining) [ ] - - location: 389 (remaining gas: 1039798.990 units remaining) + - location: 389 (remaining gas: 1039798.855 units remaining) [ ] - - location: 395 (remaining gas: 1039798.980 units remaining) + - location: 395 (remaining gas: 1039798.845 units remaining) [ "2017-09-16T08:38:04Z" ] - - location: 398 (remaining gas: 1039798.970 units remaining) + - location: 398 (remaining gas: 1039798.835 units remaining) [ "2019-09-16T08:38:05Z" "2017-09-16T08:38:04Z" ] - - location: 401 (remaining gas: 1039798.935 units remaining) + - location: 401 (remaining gas: 1039798.800 units remaining) [ 1 ] - - location: 403 (remaining gas: 1039798.925 units remaining) + - location: 403 (remaining gas: 1039798.790 units remaining) [ True ] - - location: 404 (remaining gas: 1039798.925 units remaining) + - location: 404 (remaining gas: 1039798.790 units remaining) [ ] - - location: 404 (remaining gas: 1039798.915 units remaining) + - location: 404 (remaining gas: 1039798.775 units remaining) [ ] - - location: 410 (remaining gas: 1039798.905 units remaining) + - location: 410 (remaining gas: 1039798.765 units remaining) [ "2019-09-16T08:38:05Z" ] - - location: 413 (remaining gas: 1039798.895 units remaining) + - location: 413 (remaining gas: 1039798.755 units remaining) [ "2019-09-16T08:38:04Z" "2019-09-16T08:38:05Z" ] - - location: 416 (remaining gas: 1039798.860 units remaining) + - location: 416 (remaining gas: 1039798.720 units remaining) [ -1 ] - - location: 418 (remaining gas: 1039798.850 units remaining) + - location: 418 (remaining gas: 1039798.710 units remaining) [ True ] - - location: 419 (remaining gas: 1039798.850 units remaining) + - location: 419 (remaining gas: 1039798.710 units remaining) [ ] - - location: 419 (remaining gas: 1039798.840 units remaining) + - location: 419 (remaining gas: 1039798.695 units remaining) [ ] - - location: 425 (remaining gas: 1039798.830 units remaining) + - location: 425 (remaining gas: 1039798.685 units remaining) [ Unit ] - - location: 426 (remaining gas: 1039798.820 units remaining) + - location: 426 (remaining gas: 1039798.675 units remaining) [ {} Unit ] - - location: 428 (remaining gas: 1039798.810 units remaining) + - location: 428 (remaining gas: 1039798.665 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 3e753d6e461b..b715861c8589 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 @@ -30,308 +30,308 @@ trace - location: 19 (remaining gas: 1039970.327 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.317 units remaining) + - location: 17 (remaining gas: 1039970.312 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039970.307 units remaining) + - location: 19 (remaining gas: 1039970.302 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.297 units remaining) + - location: 17 (remaining gas: 1039970.287 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039970.287 units remaining) + - location: 19 (remaining gas: 1039970.277 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.277 units remaining) + - location: 17 (remaining gas: 1039970.262 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039970.267 units remaining) + - location: 19 (remaining gas: 1039970.252 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.257 units remaining) + - location: 17 (remaining gas: 1039970.237 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (remaining gas: 1039970.247 units remaining) + - location: 19 (remaining gas: 1039970.227 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (remaining gas: 1039970.237 units remaining) + - location: 17 (remaining gas: 1039970.212 units remaining) [ { False ; False ; True ; False ; False } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 14 (remaining gas: 1039970.217 units remaining) + - location: 14 (remaining gas: 1039970.187 units remaining) [ {} { False ; False ; True ; False ; False } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 20 (remaining gas: 1039970.207 units remaining) + - location: 20 (remaining gas: 1039970.177 units remaining) [ { False ; False ; True ; False ; False } {} { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 21 (remaining gas: 1039970.197 units remaining) + - location: 21 (remaining gas: 1039970.167 units remaining) [ { { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 22 (remaining gas: 1039970.197 units remaining) + - location: 22 (remaining gas: 1039970.167 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 24 (remaining gas: 1039970.187 units remaining) + - location: 24 (remaining gas: 1039970.157 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.187 units remaining) + - location: 25 (remaining gas: 1039970.157 units remaining) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.177 units remaining) + - location: 27 (remaining gas: 1039970.147 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.167 units remaining) + - location: 25 (remaining gas: 1039970.132 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.157 units remaining) + - location: 27 (remaining gas: 1039970.122 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.147 units remaining) + - location: 25 (remaining gas: 1039970.107 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.137 units remaining) + - location: 27 (remaining gas: 1039970.097 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.127 units remaining) + - location: 25 (remaining gas: 1039970.082 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.117 units remaining) + - location: 27 (remaining gas: 1039970.072 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.107 units remaining) + - location: 25 (remaining gas: 1039970.057 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (remaining gas: 1039970.097 units remaining) + - location: 27 (remaining gas: 1039970.047 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (remaining gas: 1039970.087 units remaining) + - location: 25 (remaining gas: 1039970.032 units remaining) [ { True ; True ; False ; True ; True } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 22 (remaining gas: 1039970.067 units remaining) + - location: 22 (remaining gas: 1039970.007 units remaining) [ { { False ; False ; True ; False ; False } } { True ; True ; False ; True ; True } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 28 (remaining gas: 1039970.057 units remaining) + - location: 28 (remaining gas: 1039969.997 units remaining) [ { True ; True ; False ; True ; True } { { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 29 (remaining gas: 1039970.047 units remaining) + - location: 29 (remaining gas: 1039969.987 units remaining) [ { { True ; True ; False ; True ; True } ; { False ; False ; True ; False ; False } } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 30 (remaining gas: 1039970.047 units remaining) + - location: 30 (remaining gas: 1039969.987 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 32 (remaining gas: 1039970.037 units remaining) + - location: 32 (remaining gas: 1039969.977 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039970.037 units remaining) + - location: 33 (remaining gas: 1039969.977 units remaining) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039970.027 units remaining) + - location: 35 (remaining gas: 1039969.967 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039970.017 units remaining) + - location: 33 (remaining gas: 1039969.952 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039970.007 units remaining) + - location: 35 (remaining gas: 1039969.942 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.997 units remaining) + - location: 33 (remaining gas: 1039969.927 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039969.987 units remaining) + - location: 35 (remaining gas: 1039969.917 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.977 units remaining) + - location: 33 (remaining gas: 1039969.902 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039969.967 units remaining) + - location: 35 (remaining gas: 1039969.892 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.957 units remaining) + - location: 33 (remaining gas: 1039969.877 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (remaining gas: 1039969.947 units remaining) + - location: 35 (remaining gas: 1039969.867 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (remaining gas: 1039969.937 units remaining) + - location: 33 (remaining gas: 1039969.852 units remaining) [ { True ; True ; True ; False ; False } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 30 (remaining gas: 1039969.917 units remaining) + - location: 30 (remaining gas: 1039969.827 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: 1039969.907 units remaining) + - location: 36 (remaining gas: 1039969.817 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: 1039969.897 units remaining) + - location: 37 (remaining gas: 1039969.807 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: 1039969.897 units remaining) + - location: 38 (remaining gas: 1039969.807 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 40 (remaining gas: 1039969.887 units remaining) + - location: 40 (remaining gas: 1039969.797 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.887 units remaining) + - location: 41 (remaining gas: 1039969.797 units remaining) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.877 units remaining) + - location: 43 (remaining gas: 1039969.787 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.867 units remaining) + - location: 41 (remaining gas: 1039969.772 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.857 units remaining) + - location: 43 (remaining gas: 1039969.762 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.847 units remaining) + - location: 41 (remaining gas: 1039969.747 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.837 units remaining) + - location: 43 (remaining gas: 1039969.737 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.827 units remaining) + - location: 41 (remaining gas: 1039969.722 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.817 units remaining) + - location: 43 (remaining gas: 1039969.712 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.807 units remaining) + - location: 41 (remaining gas: 1039969.697 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (remaining gas: 1039969.797 units remaining) + - location: 43 (remaining gas: 1039969.687 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (remaining gas: 1039969.787 units remaining) + - location: 41 (remaining gas: 1039969.672 units remaining) [ { True ; True ; False ; False ; False } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 38 (remaining gas: 1039969.767 units remaining) + - location: 38 (remaining gas: 1039969.647 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: 1039969.757 units remaining) + - location: 44 (remaining gas: 1039969.637 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: 1039969.747 units remaining) + - location: 45 (remaining gas: 1039969.627 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: 1039969.747 units remaining) + - location: 46 (remaining gas: 1039969.627 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 48 (remaining gas: 1039969.737 units remaining) + - location: 48 (remaining gas: 1039969.617 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.737 units remaining) + - location: 49 (remaining gas: 1039969.617 units remaining) [ -9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.727 units remaining) + - location: 51 (remaining gas: 1039969.607 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.717 units remaining) + - location: 49 (remaining gas: 1039969.592 units remaining) [ -1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.707 units remaining) + - location: 51 (remaining gas: 1039969.582 units remaining) [ False { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.697 units remaining) + - location: 49 (remaining gas: 1039969.567 units remaining) [ 0 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.687 units remaining) + - location: 51 (remaining gas: 1039969.557 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.677 units remaining) + - location: 49 (remaining gas: 1039969.542 units remaining) [ 1 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.667 units remaining) + - location: 51 (remaining gas: 1039969.532 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.657 units remaining) + - location: 49 (remaining gas: 1039969.517 units remaining) [ 9999999 { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (remaining gas: 1039969.647 units remaining) + - location: 51 (remaining gas: 1039969.507 units remaining) [ True { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (remaining gas: 1039969.637 units remaining) + - location: 49 (remaining gas: 1039969.492 units remaining) [ { False ; False ; True ; True ; True } { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 46 (remaining gas: 1039969.617 units remaining) + - location: 46 (remaining gas: 1039969.467 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: 1039969.607 units remaining) + - location: 52 (remaining gas: 1039969.457 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: 1039969.597 units remaining) + - location: 53 (remaining gas: 1039969.447 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: 1039969.597 units remaining) + - location: 54 (remaining gas: 1039969.447 units remaining) [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 56 (remaining gas: 1039969.597 units remaining) + - location: 56 (remaining gas: 1039969.447 units remaining) [ -9999999 ] - - location: 58 (remaining gas: 1039969.587 units remaining) + - location: 58 (remaining gas: 1039969.437 units remaining) [ False ] - - location: 56 (remaining gas: 1039969.577 units remaining) + - location: 56 (remaining gas: 1039969.422 units remaining) [ -1 ] - - location: 58 (remaining gas: 1039969.567 units remaining) + - location: 58 (remaining gas: 1039969.412 units remaining) [ False ] - - location: 56 (remaining gas: 1039969.557 units remaining) + - location: 56 (remaining gas: 1039969.397 units remaining) [ 0 ] - - location: 58 (remaining gas: 1039969.547 units remaining) + - location: 58 (remaining gas: 1039969.387 units remaining) [ False ] - - location: 56 (remaining gas: 1039969.537 units remaining) + - location: 56 (remaining gas: 1039969.372 units remaining) [ 1 ] - - location: 58 (remaining gas: 1039969.527 units remaining) + - location: 58 (remaining gas: 1039969.362 units remaining) [ True ] - - location: 56 (remaining gas: 1039969.517 units remaining) + - location: 56 (remaining gas: 1039969.347 units remaining) [ 9999999 ] - - location: 58 (remaining gas: 1039969.507 units remaining) + - location: 58 (remaining gas: 1039969.337 units remaining) [ True ] - - location: 56 (remaining gas: 1039969.497 units remaining) + - location: 56 (remaining gas: 1039969.322 units remaining) [ { False ; False ; False ; True ; True } ] - - location: 54 (remaining gas: 1039969.477 units remaining) + - location: 54 (remaining gas: 1039969.297 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: 1039969.467 units remaining) + - location: 59 (remaining gas: 1039969.287 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: 1039969.457 units remaining) + - location: 60 (remaining gas: 1039969.277 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: 1039969.447 units remaining) + - location: 61 (remaining gas: 1039969.267 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: 1039969.437 units remaining) + - location: 63 (remaining gas: 1039969.257 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 dead024f3671..5e6851411f08 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" @@ -16,13 +16,13 @@ trace - location: 12 (remaining gas: 1039993.365 units remaining) [ "Hello " "World!" ] - - location: 15 (remaining gas: 1039993.320 units remaining) + - location: 15 (remaining gas: 1039993.314 units remaining) [ "Hello World!" ] - - location: 10 (remaining gas: 1039993.310 units remaining) + - location: 10 (remaining gas: 1039993.299 units remaining) [ { "Hello World!" } ] - - location: 16 (remaining gas: 1039993.300 units remaining) + - location: 16 (remaining gas: 1039993.289 units remaining) [ {} { "Hello World!" } ] - - location: 18 (remaining gas: 1039993.290 units remaining) + - location: 18 (remaining gas: 1039993.279 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 1338d9c4470c..9cbd1acbef40 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" @@ -16,20 +16,20 @@ trace - location: 12 (remaining gas: 1039993.211 units remaining) [ "Hello " "test1" ] - - location: 15 (remaining gas: 1039993.166 units remaining) + - location: 15 (remaining gas: 1039993.161 units remaining) [ "Hello test1" ] - - location: 10 (remaining gas: 1039993.156 units remaining) + - location: 10 (remaining gas: 1039993.146 units remaining) [ "test2" ] - - location: 12 (remaining gas: 1039993.146 units remaining) + - location: 12 (remaining gas: 1039993.136 units remaining) [ "Hello " "test2" ] - - location: 15 (remaining gas: 1039993.101 units remaining) + - location: 15 (remaining gas: 1039993.086 units remaining) [ "Hello test2" ] - - location: 10 (remaining gas: 1039993.091 units remaining) + - location: 10 (remaining gas: 1039993.071 units remaining) [ { "Hello test1" ; "Hello test2" } ] - - location: 16 (remaining gas: 1039993.081 units remaining) + - location: 16 (remaining gas: 1039993.061 units remaining) [ {} { "Hello test1" ; "Hello test2" } ] - - location: 18 (remaining gas: 1039993.071 units remaining) + - location: 18 (remaining gas: 1039993.051 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_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 360e8ff89d00..be74315513a2 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 @@ -16,20 +16,20 @@ trace - location: 12 (remaining gas: 1039993.458 units remaining) [ 0xff 0xab ] - - location: 15 (remaining gas: 1039993.413 units remaining) + - location: 15 (remaining gas: 1039993.412 units remaining) [ 0xffab ] - - location: 10 (remaining gas: 1039993.403 units remaining) + - location: 10 (remaining gas: 1039993.397 units remaining) [ 0xcd ] - - location: 12 (remaining gas: 1039993.393 units remaining) + - location: 12 (remaining gas: 1039993.387 units remaining) [ 0xff 0xcd ] - - location: 15 (remaining gas: 1039993.348 units remaining) + - location: 15 (remaining gas: 1039993.341 units remaining) [ 0xffcd ] - - location: 10 (remaining gas: 1039993.338 units remaining) + - location: 10 (remaining gas: 1039993.326 units remaining) [ { 0xffab ; 0xffcd } ] - - location: 16 (remaining gas: 1039993.328 units remaining) + - location: 16 (remaining gas: 1039993.316 units remaining) [ {} { 0xffab ; 0xffcd } ] - - location: 18 (remaining gas: 1039993.318 units remaining) + - location: 18 (remaining gas: 1039993.306 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 e80e7adf5923..714fd8d5ef4b 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 @@ -16,13 +16,13 @@ trace - location: 12 (remaining gas: 1039993.558 units remaining) [ 0xff 0xcd ] - - location: 15 (remaining gas: 1039993.513 units remaining) + - location: 15 (remaining gas: 1039993.512 units remaining) [ 0xffcd ] - - location: 10 (remaining gas: 1039993.503 units remaining) + - location: 10 (remaining gas: 1039993.497 units remaining) [ { 0xffcd } ] - - location: 16 (remaining gas: 1039993.493 units remaining) + - location: 16 (remaining gas: 1039993.487 units remaining) [ {} { 0xffcd } ] - - location: 18 (remaining gas: 1039993.483 units remaining) + - location: 18 (remaining gas: 1039993.477 units remaining) [ (Pair {} { 0xffcd }) ] 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 3169ec7409c5..41c160f0584e 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" @@ -33,87 +33,87 @@ trace {} ] - location: 21 (remaining gas: 1039988.862 units remaining) [ { "Hello" } ] - - location: 16 (remaining gas: 1039988.842 units remaining) + - location: 16 (remaining gas: 1039988.837 units remaining) [ "" { "Hello" } ] - - location: 22 (remaining gas: 1039988.832 units remaining) + - location: 22 (remaining gas: 1039988.827 units remaining) [ { "" ; "Hello" } ] - - location: 23 (remaining gas: 1039988.712 units remaining) + - location: 23 (remaining gas: 1039988.705 units remaining) [ "Hello" ] - - location: 13 (remaining gas: 1039988.702 units remaining) + - location: 13 (remaining gas: 1039988.690 units remaining) [ " " "Hello" ] - - location: 15 (remaining gas: 1039988.692 units remaining) + - location: 15 (remaining gas: 1039988.680 units remaining) [ "Hello" " " ] - - location: 16 (remaining gas: 1039988.692 units remaining) + - location: 16 (remaining gas: 1039988.680 units remaining) [ " " ] - - location: 18 (remaining gas: 1039988.682 units remaining) + - location: 18 (remaining gas: 1039988.670 units remaining) [ {} " " ] - - location: 20 (remaining gas: 1039988.672 units remaining) + - location: 20 (remaining gas: 1039988.660 units remaining) [ " " {} ] - - location: 21 (remaining gas: 1039988.662 units remaining) + - location: 21 (remaining gas: 1039988.650 units remaining) [ { " " } ] - - location: 16 (remaining gas: 1039988.642 units remaining) + - location: 16 (remaining gas: 1039988.625 units remaining) [ "Hello" { " " } ] - - location: 22 (remaining gas: 1039988.632 units remaining) + - location: 22 (remaining gas: 1039988.615 units remaining) [ { "Hello" ; " " } ] - - location: 23 (remaining gas: 1039988.512 units remaining) + - location: 23 (remaining gas: 1039988.492 units remaining) [ "Hello " ] - - location: 13 (remaining gas: 1039988.502 units remaining) + - location: 13 (remaining gas: 1039988.477 units remaining) [ "World" "Hello " ] - - location: 15 (remaining gas: 1039988.492 units remaining) + - location: 15 (remaining gas: 1039988.467 units remaining) [ "Hello " "World" ] - - location: 16 (remaining gas: 1039988.492 units remaining) + - location: 16 (remaining gas: 1039988.467 units remaining) [ "World" ] - - location: 18 (remaining gas: 1039988.482 units remaining) + - location: 18 (remaining gas: 1039988.457 units remaining) [ {} "World" ] - - location: 20 (remaining gas: 1039988.472 units remaining) + - location: 20 (remaining gas: 1039988.447 units remaining) [ "World" {} ] - - location: 21 (remaining gas: 1039988.462 units remaining) + - location: 21 (remaining gas: 1039988.437 units remaining) [ { "World" } ] - - location: 16 (remaining gas: 1039988.442 units remaining) + - location: 16 (remaining gas: 1039988.412 units remaining) [ "Hello " { "World" } ] - - location: 22 (remaining gas: 1039988.432 units remaining) + - location: 22 (remaining gas: 1039988.402 units remaining) [ { "Hello " ; "World" } ] - - location: 23 (remaining gas: 1039988.311 units remaining) + - location: 23 (remaining gas: 1039988.277 units remaining) [ "Hello World" ] - - location: 13 (remaining gas: 1039988.301 units remaining) + - location: 13 (remaining gas: 1039988.262 units remaining) [ "!" "Hello World" ] - - location: 15 (remaining gas: 1039988.291 units remaining) + - location: 15 (remaining gas: 1039988.252 units remaining) [ "Hello World" "!" ] - - location: 16 (remaining gas: 1039988.291 units remaining) + - location: 16 (remaining gas: 1039988.252 units remaining) [ "!" ] - - location: 18 (remaining gas: 1039988.281 units remaining) + - location: 18 (remaining gas: 1039988.242 units remaining) [ {} "!" ] - - location: 20 (remaining gas: 1039988.271 units remaining) + - location: 20 (remaining gas: 1039988.232 units remaining) [ "!" {} ] - - location: 21 (remaining gas: 1039988.261 units remaining) + - location: 21 (remaining gas: 1039988.222 units remaining) [ { "!" } ] - - location: 16 (remaining gas: 1039988.241 units remaining) + - location: 16 (remaining gas: 1039988.197 units remaining) [ "Hello World" { "!" } ] - - location: 22 (remaining gas: 1039988.231 units remaining) + - location: 22 (remaining gas: 1039988.187 units remaining) [ { "Hello World" ; "!" } ] - - location: 23 (remaining gas: 1039988.110 units remaining) + - location: 23 (remaining gas: 1039988.061 units remaining) [ "Hello World!" ] - - location: 13 (remaining gas: 1039988.100 units remaining) + - location: 13 (remaining gas: 1039988.046 units remaining) [ "Hello World!" ] - - location: 24 (remaining gas: 1039988.090 units remaining) + - location: 24 (remaining gas: 1039988.036 units remaining) [ {} "Hello World!" ] - - location: 26 (remaining gas: 1039988.080 units remaining) + - location: 26 (remaining gas: 1039988.026 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 ea197a14133d..108e7fd4bae4 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" @@ -33,64 +33,64 @@ trace {} ] - location: 21 (remaining gas: 1039989.066 units remaining) [ { "a" } ] - - location: 16 (remaining gas: 1039989.046 units remaining) + - location: 16 (remaining gas: 1039989.041 units remaining) [ "" { "a" } ] - - location: 22 (remaining gas: 1039989.036 units remaining) + - location: 22 (remaining gas: 1039989.031 units remaining) [ { "" ; "a" } ] - - location: 23 (remaining gas: 1039988.916 units remaining) + - location: 23 (remaining gas: 1039988.911 units remaining) [ "a" ] - - location: 13 (remaining gas: 1039988.906 units remaining) + - location: 13 (remaining gas: 1039988.896 units remaining) [ "b" "a" ] - - location: 15 (remaining gas: 1039988.896 units remaining) + - location: 15 (remaining gas: 1039988.886 units remaining) [ "a" "b" ] - - location: 16 (remaining gas: 1039988.896 units remaining) + - location: 16 (remaining gas: 1039988.886 units remaining) [ "b" ] - - location: 18 (remaining gas: 1039988.886 units remaining) + - location: 18 (remaining gas: 1039988.876 units remaining) [ {} "b" ] - - location: 20 (remaining gas: 1039988.876 units remaining) + - location: 20 (remaining gas: 1039988.866 units remaining) [ "b" {} ] - - location: 21 (remaining gas: 1039988.866 units remaining) + - location: 21 (remaining gas: 1039988.856 units remaining) [ { "b" } ] - - location: 16 (remaining gas: 1039988.846 units remaining) + - location: 16 (remaining gas: 1039988.831 units remaining) [ "a" { "b" } ] - - location: 22 (remaining gas: 1039988.836 units remaining) + - location: 22 (remaining gas: 1039988.821 units remaining) [ { "a" ; "b" } ] - - location: 23 (remaining gas: 1039988.716 units remaining) + - location: 23 (remaining gas: 1039988.700 units remaining) [ "ab" ] - - location: 13 (remaining gas: 1039988.706 units remaining) + - location: 13 (remaining gas: 1039988.685 units remaining) [ "c" "ab" ] - - location: 15 (remaining gas: 1039988.696 units remaining) + - location: 15 (remaining gas: 1039988.675 units remaining) [ "ab" "c" ] - - location: 16 (remaining gas: 1039988.696 units remaining) + - location: 16 (remaining gas: 1039988.675 units remaining) [ "c" ] - - location: 18 (remaining gas: 1039988.686 units remaining) + - location: 18 (remaining gas: 1039988.665 units remaining) [ {} "c" ] - - location: 20 (remaining gas: 1039988.676 units remaining) + - location: 20 (remaining gas: 1039988.655 units remaining) [ "c" {} ] - - location: 21 (remaining gas: 1039988.666 units remaining) + - location: 21 (remaining gas: 1039988.645 units remaining) [ { "c" } ] - - location: 16 (remaining gas: 1039988.646 units remaining) + - location: 16 (remaining gas: 1039988.620 units remaining) [ "ab" { "c" } ] - - location: 22 (remaining gas: 1039988.636 units remaining) + - location: 22 (remaining gas: 1039988.610 units remaining) [ { "ab" ; "c" } ] - - location: 23 (remaining gas: 1039988.516 units remaining) + - location: 23 (remaining gas: 1039988.489 units remaining) [ "abc" ] - - location: 13 (remaining gas: 1039988.506 units remaining) + - location: 13 (remaining gas: 1039988.474 units remaining) [ "abc" ] - - location: 24 (remaining gas: 1039988.496 units remaining) + - location: 24 (remaining gas: 1039988.464 units remaining) [ {} "abc" ] - - location: 26 (remaining gas: 1039988.486 units remaining) + - location: 26 (remaining gas: 1039988.454 units remaining) [ (Pair {} "abc") ] 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 86e91d1fe7e7..343b43d74655 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" @@ -21,146 +21,146 @@ trace [ (Pair { "A" } { "B" }) ] - location: 17 (remaining gas: 1039967.709 units remaining) [ { "B" } ] - - location: 15 (remaining gas: 1039967.689 units remaining) + - location: 15 (remaining gas: 1039967.684 units remaining) [ { "A" } { "B" } ] - - location: 18 (remaining gas: 1039967.469 units remaining) + - location: 18 (remaining gas: 1039967.384 units remaining) [ {} { "A" } { "B" } ] - - location: 20 (remaining gas: 1039967.459 units remaining) + - location: 20 (remaining gas: 1039967.374 units remaining) [ { "A" } {} { "B" } ] - - location: 21 (remaining gas: 1039967.459 units remaining) + - location: 21 (remaining gas: 1039967.374 units remaining) [ "A" {} { "B" } ] - - location: 23 (remaining gas: 1039967.449 units remaining) + - location: 23 (remaining gas: 1039967.364 units remaining) [ (Pair "A" {}) { "B" } ] - - location: 24 (remaining gas: 1039967.439 units remaining) + - location: 24 (remaining gas: 1039967.354 units remaining) [ (Pair "A" {}) (Pair "A" {}) { "B" } ] - - location: 25 (remaining gas: 1039967.429 units remaining) + - location: 25 (remaining gas: 1039967.344 units remaining) [ "A" (Pair "A" {}) { "B" } ] - - location: 26 (remaining gas: 1039967.429 units remaining) + - location: 26 (remaining gas: 1039967.344 units remaining) [ (Pair "A" {}) { "B" } ] - - location: 28 (remaining gas: 1039967.419 units remaining) + - location: 28 (remaining gas: 1039967.334 units remaining) [ {} { "B" } ] - - location: 26 (remaining gas: 1039967.399 units remaining) + - location: 26 (remaining gas: 1039967.309 units remaining) [ "A" {} { "B" } ] - - location: 29 (remaining gas: 1039967.389 units remaining) + - location: 29 (remaining gas: 1039967.299 units remaining) [ True "A" {} { "B" } ] - - location: 32 (remaining gas: 1039967.379 units remaining) + - location: 32 (remaining gas: 1039967.289 units remaining) [ "A" True {} { "B" } ] - - location: 33 (remaining gas: 1039967.247 units remaining) + - location: 33 (remaining gas: 1039967.157 units remaining) [ { "A" } { "B" } ] - - location: 21 (remaining gas: 1039967.237 units remaining) + - location: 21 (remaining gas: 1039967.142 units remaining) [ { "A" } { "B" } ] - - location: 34 (remaining gas: 1039967.227 units remaining) + - location: 34 (remaining gas: 1039967.132 units remaining) [ True { "A" } { "B" } ] - - location: 37 (remaining gas: 1039967.217 units remaining) + - location: 37 (remaining gas: 1039967.122 units remaining) [ { "A" } True { "B" } ] - - location: 38 (remaining gas: 1039967.207 units remaining) + - location: 38 (remaining gas: 1039967.112 units remaining) [ (Pair { "A" } True) { "B" } ] - - location: 39 (remaining gas: 1039967.197 units remaining) + - location: 39 (remaining gas: 1039967.102 units remaining) [ { "B" } (Pair { "A" } True) ] - - location: 40 (remaining gas: 1039967.197 units remaining) + - location: 40 (remaining gas: 1039967.102 units remaining) [ "B" (Pair { "A" } True) ] - - location: 42 (remaining gas: 1039967.187 units remaining) + - location: 42 (remaining gas: 1039967.092 units remaining) [ (Pair "B" { "A" } True) ] - - location: 43 (remaining gas: 1039967.177 units remaining) + - location: 43 (remaining gas: 1039967.082 units remaining) [ (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 44 (remaining gas: 1039967.167 units remaining) + - location: 44 (remaining gas: 1039967.072 units remaining) [ (Pair "B" { "A" } True) (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 45 (remaining gas: 1039967.157 units remaining) + - location: 45 (remaining gas: 1039967.062 units remaining) [ "B" (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 46 (remaining gas: 1039967.157 units remaining) + - location: 46 (remaining gas: 1039967.062 units remaining) [ (Pair "B" { "A" } True) (Pair "B" { "A" } True) ] - - location: 49 (remaining gas: 1039967.147 units remaining) + - location: 49 (remaining gas: 1039967.052 units remaining) [ (Pair { "A" } True) (Pair "B" { "A" } True) ] - - location: 50 (remaining gas: 1039967.137 units remaining) + - location: 50 (remaining gas: 1039967.042 units remaining) [ { "A" } (Pair "B" { "A" } True) ] - - location: 51 (remaining gas: 1039967.137 units remaining) + - location: 51 (remaining gas: 1039967.042 units remaining) [ (Pair "B" { "A" } True) ] - - location: 54 (remaining gas: 1039967.127 units remaining) + - location: 54 (remaining gas: 1039967.032 units remaining) [ (Pair { "A" } True) ] - - location: 55 (remaining gas: 1039967.117 units remaining) + - location: 55 (remaining gas: 1039967.022 units remaining) [ True ] - - location: 51 (remaining gas: 1039967.097 units remaining) + - location: 51 (remaining gas: 1039966.997 units remaining) [ { "A" } True ] - - location: 56 (remaining gas: 1039967.087 units remaining) + - location: 56 (remaining gas: 1039966.987 units remaining) [ { "A" } { "A" } True ] - - location: 46 (remaining gas: 1039967.067 units remaining) + - location: 46 (remaining gas: 1039966.962 units remaining) [ "B" { "A" } { "A" } True ] - - location: 57 (remaining gas: 1039966.950 units remaining) + - location: 57 (remaining gas: 1039966.845 units remaining) [ False { "A" } True ] - - location: 58 (remaining gas: 1039966.950 units remaining) + - location: 58 (remaining gas: 1039966.845 units remaining) [ { "A" } True ] - - location: 60 (remaining gas: 1039966.940 units remaining) + - location: 60 (remaining gas: 1039966.835 units remaining) [ True { "A" } ] - - location: 58 (remaining gas: 1039966.920 units remaining) + - location: 58 (remaining gas: 1039966.810 units remaining) [ False True { "A" } ] - - location: 61 (remaining gas: 1039966.910 units remaining) + - location: 61 (remaining gas: 1039966.800 units remaining) [ False { "A" } ] - - location: 62 (remaining gas: 1039966.900 units remaining) + - location: 62 (remaining gas: 1039966.790 units remaining) [ { "A" } False ] - - location: 63 (remaining gas: 1039966.890 units remaining) + - location: 63 (remaining gas: 1039966.780 units remaining) [ (Pair { "A" } False) ] - - location: 40 (remaining gas: 1039966.880 units remaining) + - location: 40 (remaining gas: 1039966.765 units remaining) [ (Pair { "A" } False) ] - - location: 64 (remaining gas: 1039966.870 units remaining) + - location: 64 (remaining gas: 1039966.755 units remaining) [ False ] - - location: 65 (remaining gas: 1039966.860 units remaining) + - location: 65 (remaining gas: 1039966.745 units remaining) [ (Some False) ] - - location: 66 (remaining gas: 1039966.850 units remaining) + - location: 66 (remaining gas: 1039966.735 units remaining) [ {} (Some False) ] - - location: 68 (remaining gas: 1039966.840 units remaining) + - location: 68 (remaining gas: 1039966.725 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 af8d797bb9b5..f1f03909051b 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" @@ -21,390 +21,390 @@ trace [ (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - location: 17 (remaining gas: 1039967.029 units remaining) [ { "B" ; "C" ; "asdf" } ] - - location: 15 (remaining gas: 1039967.009 units remaining) + - location: 15 (remaining gas: 1039967.004 units remaining) [ { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" } ] - - location: 18 (remaining gas: 1039966.789 units remaining) + - location: 18 (remaining gas: 1039966.704 units remaining) [ {} { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" } ] - - location: 20 (remaining gas: 1039966.779 units remaining) + - location: 20 (remaining gas: 1039966.694 units remaining) [ { "B" ; "B" ; "asdf" ; "C" } {} { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039966.779 units remaining) + - location: 21 (remaining gas: 1039966.694 units remaining) [ "B" {} { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039966.769 units remaining) + - location: 23 (remaining gas: 1039966.684 units remaining) [ (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039966.759 units remaining) + - location: 24 (remaining gas: 1039966.674 units remaining) [ (Pair "B" {}) (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039966.749 units remaining) + - location: 25 (remaining gas: 1039966.664 units remaining) [ "B" (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.749 units remaining) + - location: 26 (remaining gas: 1039966.664 units remaining) [ (Pair "B" {}) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039966.739 units remaining) + - location: 28 (remaining gas: 1039966.654 units remaining) [ {} { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.719 units remaining) + - location: 26 (remaining gas: 1039966.629 units remaining) [ "B" {} { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039966.709 units remaining) + - location: 29 (remaining gas: 1039966.619 units remaining) [ True "B" {} { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039966.699 units remaining) + - location: 32 (remaining gas: 1039966.609 units remaining) [ "B" True {} { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039966.567 units remaining) + - location: 33 (remaining gas: 1039966.477 units remaining) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039966.557 units remaining) + - location: 21 (remaining gas: 1039966.462 units remaining) [ "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039966.547 units remaining) + - location: 23 (remaining gas: 1039966.452 units remaining) [ (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039966.537 units remaining) + - location: 24 (remaining gas: 1039966.442 units remaining) [ (Pair "B" { "B" }) (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039966.527 units remaining) + - location: 25 (remaining gas: 1039966.432 units remaining) [ "B" (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.527 units remaining) + - location: 26 (remaining gas: 1039966.432 units remaining) [ (Pair "B" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039966.517 units remaining) + - location: 28 (remaining gas: 1039966.422 units remaining) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.497 units remaining) + - location: 26 (remaining gas: 1039966.397 units remaining) [ "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039966.487 units remaining) + - location: 29 (remaining gas: 1039966.387 units remaining) [ True "B" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039966.477 units remaining) + - location: 32 (remaining gas: 1039966.377 units remaining) [ "B" True { "B" } { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039966.343 units remaining) + - location: 33 (remaining gas: 1039966.243 units remaining) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039966.333 units remaining) + - location: 21 (remaining gas: 1039966.228 units remaining) [ "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039966.323 units remaining) + - location: 23 (remaining gas: 1039966.218 units remaining) [ (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039966.313 units remaining) + - location: 24 (remaining gas: 1039966.208 units remaining) [ (Pair "asdf" { "B" }) (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039966.303 units remaining) + - location: 25 (remaining gas: 1039966.198 units remaining) [ "asdf" (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.303 units remaining) + - location: 26 (remaining gas: 1039966.198 units remaining) [ (Pair "asdf" { "B" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039966.293 units remaining) + - location: 28 (remaining gas: 1039966.188 units remaining) [ { "B" } { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.273 units remaining) + - location: 26 (remaining gas: 1039966.163 units remaining) [ "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039966.263 units remaining) + - location: 29 (remaining gas: 1039966.153 units remaining) [ True "asdf" { "B" } { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039966.253 units remaining) + - location: 32 (remaining gas: 1039966.143 units remaining) [ "asdf" True { "B" } { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039966.107 units remaining) + - location: 33 (remaining gas: 1039965.997 units remaining) [ { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039966.097 units remaining) + - location: 21 (remaining gas: 1039965.982 units remaining) [ "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 23 (remaining gas: 1039966.087 units remaining) + - location: 23 (remaining gas: 1039965.972 units remaining) [ (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 24 (remaining gas: 1039966.077 units remaining) + - location: 24 (remaining gas: 1039965.962 units remaining) [ (Pair "C" { "B" ; "asdf" }) (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 25 (remaining gas: 1039966.067 units remaining) + - location: 25 (remaining gas: 1039965.952 units remaining) [ "C" (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.067 units remaining) + - location: 26 (remaining gas: 1039965.952 units remaining) [ (Pair "C" { "B" ; "asdf" }) { "B" ; "C" ; "asdf" } ] - - location: 28 (remaining gas: 1039966.057 units remaining) + - location: 28 (remaining gas: 1039965.942 units remaining) [ { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 26 (remaining gas: 1039966.037 units remaining) + - location: 26 (remaining gas: 1039965.917 units remaining) [ "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 29 (remaining gas: 1039966.027 units remaining) + - location: 29 (remaining gas: 1039965.907 units remaining) [ True "C" { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 32 (remaining gas: 1039966.017 units remaining) + - location: 32 (remaining gas: 1039965.897 units remaining) [ "C" True { "B" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 33 (remaining gas: 1039965.881 units remaining) + - location: 33 (remaining gas: 1039965.761 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 21 (remaining gas: 1039965.871 units remaining) + - location: 21 (remaining gas: 1039965.746 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 34 (remaining gas: 1039965.861 units remaining) + - location: 34 (remaining gas: 1039965.736 units remaining) [ True { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } ] - - location: 37 (remaining gas: 1039965.851 units remaining) + - location: 37 (remaining gas: 1039965.726 units remaining) [ { "B" ; "C" ; "asdf" } True { "B" ; "C" ; "asdf" } ] - - location: 38 (remaining gas: 1039965.841 units remaining) + - location: 38 (remaining gas: 1039965.716 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) { "B" ; "C" ; "asdf" } ] - - location: 39 (remaining gas: 1039965.831 units remaining) + - location: 39 (remaining gas: 1039965.706 units remaining) [ { "B" ; "C" ; "asdf" } (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.831 units remaining) + - location: 40 (remaining gas: 1039965.706 units remaining) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.821 units remaining) + - location: 42 (remaining gas: 1039965.696 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.811 units remaining) + - location: 43 (remaining gas: 1039965.686 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039965.801 units remaining) + - location: 44 (remaining gas: 1039965.676 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (remaining gas: 1039965.791 units remaining) + - location: 45 (remaining gas: 1039965.666 units remaining) [ "B" (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039965.791 units remaining) + - location: 46 (remaining gas: 1039965.666 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039965.781 units remaining) + - location: 49 (remaining gas: 1039965.656 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039965.771 units remaining) + - location: 50 (remaining gas: 1039965.646 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.771 units remaining) + - location: 51 (remaining gas: 1039965.646 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.761 units remaining) + - location: 54 (remaining gas: 1039965.636 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.751 units remaining) + - location: 55 (remaining gas: 1039965.626 units remaining) [ True ] - - location: 51 (remaining gas: 1039965.731 units remaining) + - location: 51 (remaining gas: 1039965.601 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.721 units remaining) + - location: 56 (remaining gas: 1039965.591 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.701 units remaining) + - location: 46 (remaining gas: 1039965.566 units remaining) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039965.583 units remaining) + - location: 57 (remaining gas: 1039965.448 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039965.583 units remaining) + - location: 58 (remaining gas: 1039965.448 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039965.573 units remaining) + - location: 60 (remaining gas: 1039965.438 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039965.553 units remaining) + - location: 58 (remaining gas: 1039965.413 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039965.543 units remaining) + - location: 61 (remaining gas: 1039965.403 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039965.533 units remaining) + - location: 62 (remaining gas: 1039965.393 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039965.523 units remaining) + - location: 63 (remaining gas: 1039965.383 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.513 units remaining) + - location: 40 (remaining gas: 1039965.368 units remaining) [ "C" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.503 units remaining) + - location: 42 (remaining gas: 1039965.358 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.493 units remaining) + - location: 43 (remaining gas: 1039965.348 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039965.483 units remaining) + - location: 44 (remaining gas: 1039965.338 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (remaining gas: 1039965.473 units remaining) + - location: 45 (remaining gas: 1039965.328 units remaining) [ "C" (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039965.473 units remaining) + - location: 46 (remaining gas: 1039965.328 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039965.463 units remaining) + - location: 49 (remaining gas: 1039965.318 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039965.453 units remaining) + - location: 50 (remaining gas: 1039965.308 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.453 units remaining) + - location: 51 (remaining gas: 1039965.308 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.443 units remaining) + - location: 54 (remaining gas: 1039965.298 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.433 units remaining) + - location: 55 (remaining gas: 1039965.288 units remaining) [ True ] - - location: 51 (remaining gas: 1039965.413 units remaining) + - location: 51 (remaining gas: 1039965.263 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.403 units remaining) + - location: 56 (remaining gas: 1039965.253 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.383 units remaining) + - location: 46 (remaining gas: 1039965.228 units remaining) [ "C" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039965.265 units remaining) + - location: 57 (remaining gas: 1039965.110 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039965.265 units remaining) + - location: 58 (remaining gas: 1039965.110 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039965.255 units remaining) + - location: 60 (remaining gas: 1039965.100 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039965.235 units remaining) + - location: 58 (remaining gas: 1039965.075 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039965.225 units remaining) + - location: 61 (remaining gas: 1039965.065 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039965.215 units remaining) + - location: 62 (remaining gas: 1039965.055 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039965.205 units remaining) + - location: 63 (remaining gas: 1039965.045 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.195 units remaining) + - location: 40 (remaining gas: 1039965.030 units remaining) [ "asdf" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.185 units remaining) + - location: 42 (remaining gas: 1039965.020 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.175 units remaining) + - location: 43 (remaining gas: 1039965.010 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039965.165 units remaining) + - location: 44 (remaining gas: 1039965 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (remaining gas: 1039965.155 units remaining) + - location: 45 (remaining gas: 1039964.990 units remaining) [ "asdf" (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039965.155 units remaining) + - location: 46 (remaining gas: 1039964.990 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039965.145 units remaining) + - location: 49 (remaining gas: 1039964.980 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039965.135 units remaining) + - location: 50 (remaining gas: 1039964.970 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.135 units remaining) + - location: 51 (remaining gas: 1039964.970 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.125 units remaining) + - location: 54 (remaining gas: 1039964.960 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.115 units remaining) + - location: 55 (remaining gas: 1039964.950 units remaining) [ True ] - - location: 51 (remaining gas: 1039965.095 units remaining) + - location: 51 (remaining gas: 1039964.925 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.085 units remaining) + - location: 56 (remaining gas: 1039964.915 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.065 units remaining) + - location: 46 (remaining gas: 1039964.890 units remaining) [ "asdf" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039964.938 units remaining) + - location: 57 (remaining gas: 1039964.763 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039964.938 units remaining) + - location: 58 (remaining gas: 1039964.763 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039964.928 units remaining) + - location: 60 (remaining gas: 1039964.753 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039964.908 units remaining) + - location: 58 (remaining gas: 1039964.728 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039964.898 units remaining) + - location: 61 (remaining gas: 1039964.718 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039964.888 units remaining) + - location: 62 (remaining gas: 1039964.708 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039964.878 units remaining) + - location: 63 (remaining gas: 1039964.698 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039964.868 units remaining) + - location: 40 (remaining gas: 1039964.683 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 64 (remaining gas: 1039964.858 units remaining) + - location: 64 (remaining gas: 1039964.673 units remaining) [ True ] - - location: 65 (remaining gas: 1039964.848 units remaining) + - location: 65 (remaining gas: 1039964.663 units remaining) [ (Some True) ] - - location: 66 (remaining gas: 1039964.838 units remaining) + - location: 66 (remaining gas: 1039964.653 units remaining) [ {} (Some True) ] - - location: 68 (remaining gas: 1039964.828 units remaining) + - location: 68 (remaining gas: 1039964.643 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 e9eca7428c6b..8bc324f3d6c3 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" @@ -21,417 +21,417 @@ trace [ (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - location: 17 (remaining gas: 1039967.029 units remaining) [ { "B" ; "B" ; "asdf" ; "C" } ] - - location: 15 (remaining gas: 1039967.009 units remaining) + - location: 15 (remaining gas: 1039967.004 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 18 (remaining gas: 1039966.789 units remaining) + - location: 18 (remaining gas: 1039966.704 units remaining) [ {} { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 20 (remaining gas: 1039966.779 units remaining) + - location: 20 (remaining gas: 1039966.694 units remaining) [ { "B" ; "C" ; "asdf" } {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039966.779 units remaining) + - location: 21 (remaining gas: 1039966.694 units remaining) [ "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (remaining gas: 1039966.769 units remaining) + - location: 23 (remaining gas: 1039966.684 units remaining) [ (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (remaining gas: 1039966.759 units remaining) + - location: 24 (remaining gas: 1039966.674 units remaining) [ (Pair "B" {}) (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 25 (remaining gas: 1039966.749 units remaining) + - location: 25 (remaining gas: 1039966.664 units remaining) [ "B" (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.749 units remaining) + - location: 26 (remaining gas: 1039966.664 units remaining) [ (Pair "B" {}) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (remaining gas: 1039966.739 units remaining) + - location: 28 (remaining gas: 1039966.654 units remaining) [ {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.719 units remaining) + - location: 26 (remaining gas: 1039966.629 units remaining) [ "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (remaining gas: 1039966.709 units remaining) + - location: 29 (remaining gas: 1039966.619 units remaining) [ True "B" {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (remaining gas: 1039966.699 units remaining) + - location: 32 (remaining gas: 1039966.609 units remaining) [ "B" True {} { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (remaining gas: 1039966.567 units remaining) + - location: 33 (remaining gas: 1039966.477 units remaining) [ { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039966.557 units remaining) + - location: 21 (remaining gas: 1039966.462 units remaining) [ "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (remaining gas: 1039966.547 units remaining) + - location: 23 (remaining gas: 1039966.452 units remaining) [ (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (remaining gas: 1039966.537 units remaining) + - location: 24 (remaining gas: 1039966.442 units remaining) [ (Pair "C" { "B" }) (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 25 (remaining gas: 1039966.527 units remaining) + - location: 25 (remaining gas: 1039966.432 units remaining) [ "C" (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.527 units remaining) + - location: 26 (remaining gas: 1039966.432 units remaining) [ (Pair "C" { "B" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (remaining gas: 1039966.517 units remaining) + - location: 28 (remaining gas: 1039966.422 units remaining) [ { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.497 units remaining) + - location: 26 (remaining gas: 1039966.397 units remaining) [ "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (remaining gas: 1039966.487 units remaining) + - location: 29 (remaining gas: 1039966.387 units remaining) [ True "C" { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (remaining gas: 1039966.477 units remaining) + - location: 32 (remaining gas: 1039966.377 units remaining) [ "C" True { "B" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (remaining gas: 1039966.343 units remaining) + - location: 33 (remaining gas: 1039966.243 units remaining) [ { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039966.333 units remaining) + - location: 21 (remaining gas: 1039966.228 units remaining) [ "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (remaining gas: 1039966.323 units remaining) + - location: 23 (remaining gas: 1039966.218 units remaining) [ (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (remaining gas: 1039966.313 units remaining) + - location: 24 (remaining gas: 1039966.208 units remaining) [ (Pair "asdf" { "B" ; "C" }) (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 25 (remaining gas: 1039966.303 units remaining) + - location: 25 (remaining gas: 1039966.198 units remaining) [ "asdf" (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.303 units remaining) + - location: 26 (remaining gas: 1039966.198 units remaining) [ (Pair "asdf" { "B" ; "C" }) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (remaining gas: 1039966.293 units remaining) + - location: 28 (remaining gas: 1039966.188 units remaining) [ { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (remaining gas: 1039966.273 units remaining) + - location: 26 (remaining gas: 1039966.163 units remaining) [ "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (remaining gas: 1039966.263 units remaining) + - location: 29 (remaining gas: 1039966.153 units remaining) [ True "asdf" { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (remaining gas: 1039966.253 units remaining) + - location: 32 (remaining gas: 1039966.143 units remaining) [ "asdf" True { "B" ; "C" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (remaining gas: 1039966.099 units remaining) + - location: 33 (remaining gas: 1039965.989 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (remaining gas: 1039966.089 units remaining) + - location: 21 (remaining gas: 1039965.974 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 34 (remaining gas: 1039966.079 units remaining) + - location: 34 (remaining gas: 1039965.964 units remaining) [ True { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" } ] - - location: 37 (remaining gas: 1039966.069 units remaining) + - location: 37 (remaining gas: 1039965.954 units remaining) [ { "B" ; "C" ; "asdf" } True { "B" ; "B" ; "asdf" ; "C" } ] - - location: 38 (remaining gas: 1039966.059 units remaining) + - location: 38 (remaining gas: 1039965.944 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) { "B" ; "B" ; "asdf" ; "C" } ] - - location: 39 (remaining gas: 1039966.049 units remaining) + - location: 39 (remaining gas: 1039965.934 units remaining) [ { "B" ; "B" ; "asdf" ; "C" } (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039966.049 units remaining) + - location: 40 (remaining gas: 1039965.934 units remaining) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039966.039 units remaining) + - location: 42 (remaining gas: 1039965.924 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039966.029 units remaining) + - location: 43 (remaining gas: 1039965.914 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039966.019 units remaining) + - location: 44 (remaining gas: 1039965.904 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (remaining gas: 1039966.009 units remaining) + - location: 45 (remaining gas: 1039965.894 units remaining) [ "B" (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039966.009 units remaining) + - location: 46 (remaining gas: 1039965.894 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039965.999 units remaining) + - location: 49 (remaining gas: 1039965.884 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039965.989 units remaining) + - location: 50 (remaining gas: 1039965.874 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.989 units remaining) + - location: 51 (remaining gas: 1039965.874 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.979 units remaining) + - location: 54 (remaining gas: 1039965.864 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.969 units remaining) + - location: 55 (remaining gas: 1039965.854 units remaining) [ True ] - - location: 51 (remaining gas: 1039965.949 units remaining) + - location: 51 (remaining gas: 1039965.829 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.939 units remaining) + - location: 56 (remaining gas: 1039965.819 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.919 units remaining) + - location: 46 (remaining gas: 1039965.794 units remaining) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039965.801 units remaining) + - location: 57 (remaining gas: 1039965.676 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039965.801 units remaining) + - location: 58 (remaining gas: 1039965.676 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039965.791 units remaining) + - location: 60 (remaining gas: 1039965.666 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039965.771 units remaining) + - location: 58 (remaining gas: 1039965.641 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039965.761 units remaining) + - location: 61 (remaining gas: 1039965.631 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039965.751 units remaining) + - location: 62 (remaining gas: 1039965.621 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039965.741 units remaining) + - location: 63 (remaining gas: 1039965.611 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.731 units remaining) + - location: 40 (remaining gas: 1039965.596 units remaining) [ "B" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.721 units remaining) + - location: 42 (remaining gas: 1039965.586 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.711 units remaining) + - location: 43 (remaining gas: 1039965.576 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039965.701 units remaining) + - location: 44 (remaining gas: 1039965.566 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (remaining gas: 1039965.691 units remaining) + - location: 45 (remaining gas: 1039965.556 units remaining) [ "B" (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039965.691 units remaining) + - location: 46 (remaining gas: 1039965.556 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039965.681 units remaining) + - location: 49 (remaining gas: 1039965.546 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039965.671 units remaining) + - location: 50 (remaining gas: 1039965.536 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.671 units remaining) + - location: 51 (remaining gas: 1039965.536 units remaining) [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.661 units remaining) + - location: 54 (remaining gas: 1039965.526 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.651 units remaining) + - location: 55 (remaining gas: 1039965.516 units remaining) [ True ] - - location: 51 (remaining gas: 1039965.631 units remaining) + - location: 51 (remaining gas: 1039965.491 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.621 units remaining) + - location: 56 (remaining gas: 1039965.481 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.601 units remaining) + - location: 46 (remaining gas: 1039965.456 units remaining) [ "B" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039965.483 units remaining) + - location: 57 (remaining gas: 1039965.338 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039965.483 units remaining) + - location: 58 (remaining gas: 1039965.338 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039965.473 units remaining) + - location: 60 (remaining gas: 1039965.328 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039965.453 units remaining) + - location: 58 (remaining gas: 1039965.303 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039965.443 units remaining) + - location: 61 (remaining gas: 1039965.293 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039965.433 units remaining) + - location: 62 (remaining gas: 1039965.283 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039965.423 units remaining) + - location: 63 (remaining gas: 1039965.273 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.413 units remaining) + - location: 40 (remaining gas: 1039965.258 units remaining) [ "asdf" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.403 units remaining) + - location: 42 (remaining gas: 1039965.248 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.393 units remaining) + - location: 43 (remaining gas: 1039965.238 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039965.383 units remaining) + - location: 44 (remaining gas: 1039965.228 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (remaining gas: 1039965.373 units remaining) + - location: 45 (remaining gas: 1039965.218 units remaining) [ "asdf" (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039965.373 units remaining) + - location: 46 (remaining gas: 1039965.218 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039965.363 units remaining) + - location: 49 (remaining gas: 1039965.208 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039965.353 units remaining) + - location: 50 (remaining gas: 1039965.198 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.353 units remaining) + - location: 51 (remaining gas: 1039965.198 units remaining) [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.343 units remaining) + - location: 54 (remaining gas: 1039965.188 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.333 units remaining) + - location: 55 (remaining gas: 1039965.178 units remaining) [ True ] - - location: 51 (remaining gas: 1039965.313 units remaining) + - location: 51 (remaining gas: 1039965.153 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039965.303 units remaining) + - location: 56 (remaining gas: 1039965.143 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039965.283 units remaining) + - location: 46 (remaining gas: 1039965.118 units remaining) [ "asdf" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039965.156 units remaining) + - location: 57 (remaining gas: 1039964.991 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039965.156 units remaining) + - location: 58 (remaining gas: 1039964.991 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039965.146 units remaining) + - location: 60 (remaining gas: 1039964.981 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039965.126 units remaining) + - location: 58 (remaining gas: 1039964.956 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039965.116 units remaining) + - location: 61 (remaining gas: 1039964.946 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039965.106 units remaining) + - location: 62 (remaining gas: 1039964.936 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039965.096 units remaining) + - location: 63 (remaining gas: 1039964.926 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039965.086 units remaining) + - location: 40 (remaining gas: 1039964.911 units remaining) [ "C" (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (remaining gas: 1039965.076 units remaining) + - location: 42 (remaining gas: 1039964.901 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (remaining gas: 1039965.066 units remaining) + - location: 43 (remaining gas: 1039964.891 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (remaining gas: 1039965.056 units remaining) + - location: 44 (remaining gas: 1039964.881 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (remaining gas: 1039965.046 units remaining) + - location: 45 (remaining gas: 1039964.871 units remaining) [ "C" (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (remaining gas: 1039965.046 units remaining) + - location: 46 (remaining gas: 1039964.871 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (remaining gas: 1039965.036 units remaining) + - location: 49 (remaining gas: 1039964.861 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (remaining gas: 1039965.026 units remaining) + - location: 50 (remaining gas: 1039964.851 units remaining) [ { "B" ; "C" ; "asdf" } (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (remaining gas: 1039965.026 units remaining) + - location: 51 (remaining gas: 1039964.851 units remaining) [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (remaining gas: 1039965.016 units remaining) + - location: 54 (remaining gas: 1039964.841 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (remaining gas: 1039965.006 units remaining) + - location: 55 (remaining gas: 1039964.831 units remaining) [ True ] - - location: 51 (remaining gas: 1039964.986 units remaining) + - location: 51 (remaining gas: 1039964.806 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 56 (remaining gas: 1039964.976 units remaining) + - location: 56 (remaining gas: 1039964.796 units remaining) [ { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 46 (remaining gas: 1039964.956 units remaining) + - location: 46 (remaining gas: 1039964.771 units remaining) [ "C" { "B" ; "C" ; "asdf" } { "B" ; "C" ; "asdf" } True ] - - location: 57 (remaining gas: 1039964.838 units remaining) + - location: 57 (remaining gas: 1039964.653 units remaining) [ True { "B" ; "C" ; "asdf" } True ] - - location: 58 (remaining gas: 1039964.838 units remaining) + - location: 58 (remaining gas: 1039964.653 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 60 (remaining gas: 1039964.828 units remaining) + - location: 60 (remaining gas: 1039964.643 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 58 (remaining gas: 1039964.808 units remaining) + - location: 58 (remaining gas: 1039964.618 units remaining) [ True True { "B" ; "C" ; "asdf" } ] - - location: 61 (remaining gas: 1039964.798 units remaining) + - location: 61 (remaining gas: 1039964.608 units remaining) [ True { "B" ; "C" ; "asdf" } ] - - location: 62 (remaining gas: 1039964.788 units remaining) + - location: 62 (remaining gas: 1039964.598 units remaining) [ { "B" ; "C" ; "asdf" } True ] - - location: 63 (remaining gas: 1039964.778 units remaining) + - location: 63 (remaining gas: 1039964.588 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (remaining gas: 1039964.768 units remaining) + - location: 40 (remaining gas: 1039964.573 units remaining) [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 64 (remaining gas: 1039964.758 units remaining) + - location: 64 (remaining gas: 1039964.563 units remaining) [ True ] - - location: 65 (remaining gas: 1039964.748 units remaining) + - location: 65 (remaining gas: 1039964.553 units remaining) [ (Some True) ] - - location: 66 (remaining gas: 1039964.738 units remaining) + - location: 66 (remaining gas: 1039964.543 units remaining) [ {} (Some True) ] - - location: 68 (remaining gas: 1039964.728 units remaining) + - location: 68 (remaining gas: 1039964.533 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 f85ed21248ca..334d32d3fb3a 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" @@ -21,146 +21,146 @@ trace [ (Pair { "B" } { "B" }) ] - location: 17 (remaining gas: 1039967.709 units remaining) [ { "B" } ] - - location: 15 (remaining gas: 1039967.689 units remaining) + - location: 15 (remaining gas: 1039967.684 units remaining) [ { "B" } { "B" } ] - - location: 18 (remaining gas: 1039967.469 units remaining) + - location: 18 (remaining gas: 1039967.384 units remaining) [ {} { "B" } { "B" } ] - - location: 20 (remaining gas: 1039967.459 units remaining) + - location: 20 (remaining gas: 1039967.374 units remaining) [ { "B" } {} { "B" } ] - - location: 21 (remaining gas: 1039967.459 units remaining) + - location: 21 (remaining gas: 1039967.374 units remaining) [ "B" {} { "B" } ] - - location: 23 (remaining gas: 1039967.449 units remaining) + - location: 23 (remaining gas: 1039967.364 units remaining) [ (Pair "B" {}) { "B" } ] - - location: 24 (remaining gas: 1039967.439 units remaining) + - location: 24 (remaining gas: 1039967.354 units remaining) [ (Pair "B" {}) (Pair "B" {}) { "B" } ] - - location: 25 (remaining gas: 1039967.429 units remaining) + - location: 25 (remaining gas: 1039967.344 units remaining) [ "B" (Pair "B" {}) { "B" } ] - - location: 26 (remaining gas: 1039967.429 units remaining) + - location: 26 (remaining gas: 1039967.344 units remaining) [ (Pair "B" {}) { "B" } ] - - location: 28 (remaining gas: 1039967.419 units remaining) + - location: 28 (remaining gas: 1039967.334 units remaining) [ {} { "B" } ] - - location: 26 (remaining gas: 1039967.399 units remaining) + - location: 26 (remaining gas: 1039967.309 units remaining) [ "B" {} { "B" } ] - - location: 29 (remaining gas: 1039967.389 units remaining) + - location: 29 (remaining gas: 1039967.299 units remaining) [ True "B" {} { "B" } ] - - location: 32 (remaining gas: 1039967.379 units remaining) + - location: 32 (remaining gas: 1039967.289 units remaining) [ "B" True {} { "B" } ] - - location: 33 (remaining gas: 1039967.247 units remaining) + - location: 33 (remaining gas: 1039967.157 units remaining) [ { "B" } { "B" } ] - - location: 21 (remaining gas: 1039967.237 units remaining) + - location: 21 (remaining gas: 1039967.142 units remaining) [ { "B" } { "B" } ] - - location: 34 (remaining gas: 1039967.227 units remaining) + - location: 34 (remaining gas: 1039967.132 units remaining) [ True { "B" } { "B" } ] - - location: 37 (remaining gas: 1039967.217 units remaining) + - location: 37 (remaining gas: 1039967.122 units remaining) [ { "B" } True { "B" } ] - - location: 38 (remaining gas: 1039967.207 units remaining) + - location: 38 (remaining gas: 1039967.112 units remaining) [ (Pair { "B" } True) { "B" } ] - - location: 39 (remaining gas: 1039967.197 units remaining) + - location: 39 (remaining gas: 1039967.102 units remaining) [ { "B" } (Pair { "B" } True) ] - - location: 40 (remaining gas: 1039967.197 units remaining) + - location: 40 (remaining gas: 1039967.102 units remaining) [ "B" (Pair { "B" } True) ] - - location: 42 (remaining gas: 1039967.187 units remaining) + - location: 42 (remaining gas: 1039967.092 units remaining) [ (Pair "B" { "B" } True) ] - - location: 43 (remaining gas: 1039967.177 units remaining) + - location: 43 (remaining gas: 1039967.082 units remaining) [ (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 44 (remaining gas: 1039967.167 units remaining) + - location: 44 (remaining gas: 1039967.072 units remaining) [ (Pair "B" { "B" } True) (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 45 (remaining gas: 1039967.157 units remaining) + - location: 45 (remaining gas: 1039967.062 units remaining) [ "B" (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 46 (remaining gas: 1039967.157 units remaining) + - location: 46 (remaining gas: 1039967.062 units remaining) [ (Pair "B" { "B" } True) (Pair "B" { "B" } True) ] - - location: 49 (remaining gas: 1039967.147 units remaining) + - location: 49 (remaining gas: 1039967.052 units remaining) [ (Pair { "B" } True) (Pair "B" { "B" } True) ] - - location: 50 (remaining gas: 1039967.137 units remaining) + - location: 50 (remaining gas: 1039967.042 units remaining) [ { "B" } (Pair "B" { "B" } True) ] - - location: 51 (remaining gas: 1039967.137 units remaining) + - location: 51 (remaining gas: 1039967.042 units remaining) [ (Pair "B" { "B" } True) ] - - location: 54 (remaining gas: 1039967.127 units remaining) + - location: 54 (remaining gas: 1039967.032 units remaining) [ (Pair { "B" } True) ] - - location: 55 (remaining gas: 1039967.117 units remaining) + - location: 55 (remaining gas: 1039967.022 units remaining) [ True ] - - location: 51 (remaining gas: 1039967.097 units remaining) + - location: 51 (remaining gas: 1039966.997 units remaining) [ { "B" } True ] - - location: 56 (remaining gas: 1039967.087 units remaining) + - location: 56 (remaining gas: 1039966.987 units remaining) [ { "B" } { "B" } True ] - - location: 46 (remaining gas: 1039967.067 units remaining) + - location: 46 (remaining gas: 1039966.962 units remaining) [ "B" { "B" } { "B" } True ] - - location: 57 (remaining gas: 1039966.950 units remaining) + - location: 57 (remaining gas: 1039966.845 units remaining) [ True { "B" } True ] - - location: 58 (remaining gas: 1039966.950 units remaining) + - location: 58 (remaining gas: 1039966.845 units remaining) [ { "B" } True ] - - location: 60 (remaining gas: 1039966.940 units remaining) + - location: 60 (remaining gas: 1039966.835 units remaining) [ True { "B" } ] - - location: 58 (remaining gas: 1039966.920 units remaining) + - location: 58 (remaining gas: 1039966.810 units remaining) [ True True { "B" } ] - - location: 61 (remaining gas: 1039966.910 units remaining) + - location: 61 (remaining gas: 1039966.800 units remaining) [ True { "B" } ] - - location: 62 (remaining gas: 1039966.900 units remaining) + - location: 62 (remaining gas: 1039966.790 units remaining) [ { "B" } True ] - - location: 63 (remaining gas: 1039966.890 units remaining) + - location: 63 (remaining gas: 1039966.780 units remaining) [ (Pair { "B" } True) ] - - location: 40 (remaining gas: 1039966.880 units remaining) + - location: 40 (remaining gas: 1039966.765 units remaining) [ (Pair { "B" } True) ] - - location: 64 (remaining gas: 1039966.870 units remaining) + - location: 64 (remaining gas: 1039966.755 units remaining) [ True ] - - location: 65 (remaining gas: 1039966.860 units remaining) + - location: 65 (remaining gas: 1039966.745 units remaining) [ (Some True) ] - - location: 66 (remaining gas: 1039966.850 units remaining) + - location: 66 (remaining gas: 1039966.735 units remaining) [ {} (Some True) ] - - location: 68 (remaining gas: 1039966.840 units remaining) + - location: 68 (remaining gas: 1039966.725 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 77672644eceb..61ff58887c4b 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" @@ -21,146 +21,146 @@ trace [ (Pair { "c" } { "B" }) ] - location: 17 (remaining gas: 1039967.709 units remaining) [ { "B" } ] - - location: 15 (remaining gas: 1039967.689 units remaining) + - location: 15 (remaining gas: 1039967.684 units remaining) [ { "c" } { "B" } ] - - location: 18 (remaining gas: 1039967.469 units remaining) + - location: 18 (remaining gas: 1039967.384 units remaining) [ {} { "c" } { "B" } ] - - location: 20 (remaining gas: 1039967.459 units remaining) + - location: 20 (remaining gas: 1039967.374 units remaining) [ { "c" } {} { "B" } ] - - location: 21 (remaining gas: 1039967.459 units remaining) + - location: 21 (remaining gas: 1039967.374 units remaining) [ "c" {} { "B" } ] - - location: 23 (remaining gas: 1039967.449 units remaining) + - location: 23 (remaining gas: 1039967.364 units remaining) [ (Pair "c" {}) { "B" } ] - - location: 24 (remaining gas: 1039967.439 units remaining) + - location: 24 (remaining gas: 1039967.354 units remaining) [ (Pair "c" {}) (Pair "c" {}) { "B" } ] - - location: 25 (remaining gas: 1039967.429 units remaining) + - location: 25 (remaining gas: 1039967.344 units remaining) [ "c" (Pair "c" {}) { "B" } ] - - location: 26 (remaining gas: 1039967.429 units remaining) + - location: 26 (remaining gas: 1039967.344 units remaining) [ (Pair "c" {}) { "B" } ] - - location: 28 (remaining gas: 1039967.419 units remaining) + - location: 28 (remaining gas: 1039967.334 units remaining) [ {} { "B" } ] - - location: 26 (remaining gas: 1039967.399 units remaining) + - location: 26 (remaining gas: 1039967.309 units remaining) [ "c" {} { "B" } ] - - location: 29 (remaining gas: 1039967.389 units remaining) + - location: 29 (remaining gas: 1039967.299 units remaining) [ True "c" {} { "B" } ] - - location: 32 (remaining gas: 1039967.379 units remaining) + - location: 32 (remaining gas: 1039967.289 units remaining) [ "c" True {} { "B" } ] - - location: 33 (remaining gas: 1039967.247 units remaining) + - location: 33 (remaining gas: 1039967.157 units remaining) [ { "c" } { "B" } ] - - location: 21 (remaining gas: 1039967.237 units remaining) + - location: 21 (remaining gas: 1039967.142 units remaining) [ { "c" } { "B" } ] - - location: 34 (remaining gas: 1039967.227 units remaining) + - location: 34 (remaining gas: 1039967.132 units remaining) [ True { "c" } { "B" } ] - - location: 37 (remaining gas: 1039967.217 units remaining) + - location: 37 (remaining gas: 1039967.122 units remaining) [ { "c" } True { "B" } ] - - location: 38 (remaining gas: 1039967.207 units remaining) + - location: 38 (remaining gas: 1039967.112 units remaining) [ (Pair { "c" } True) { "B" } ] - - location: 39 (remaining gas: 1039967.197 units remaining) + - location: 39 (remaining gas: 1039967.102 units remaining) [ { "B" } (Pair { "c" } True) ] - - location: 40 (remaining gas: 1039967.197 units remaining) + - location: 40 (remaining gas: 1039967.102 units remaining) [ "B" (Pair { "c" } True) ] - - location: 42 (remaining gas: 1039967.187 units remaining) + - location: 42 (remaining gas: 1039967.092 units remaining) [ (Pair "B" { "c" } True) ] - - location: 43 (remaining gas: 1039967.177 units remaining) + - location: 43 (remaining gas: 1039967.082 units remaining) [ (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 44 (remaining gas: 1039967.167 units remaining) + - location: 44 (remaining gas: 1039967.072 units remaining) [ (Pair "B" { "c" } True) (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 45 (remaining gas: 1039967.157 units remaining) + - location: 45 (remaining gas: 1039967.062 units remaining) [ "B" (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 46 (remaining gas: 1039967.157 units remaining) + - location: 46 (remaining gas: 1039967.062 units remaining) [ (Pair "B" { "c" } True) (Pair "B" { "c" } True) ] - - location: 49 (remaining gas: 1039967.147 units remaining) + - location: 49 (remaining gas: 1039967.052 units remaining) [ (Pair { "c" } True) (Pair "B" { "c" } True) ] - - location: 50 (remaining gas: 1039967.137 units remaining) + - location: 50 (remaining gas: 1039967.042 units remaining) [ { "c" } (Pair "B" { "c" } True) ] - - location: 51 (remaining gas: 1039967.137 units remaining) + - location: 51 (remaining gas: 1039967.042 units remaining) [ (Pair "B" { "c" } True) ] - - location: 54 (remaining gas: 1039967.127 units remaining) + - location: 54 (remaining gas: 1039967.032 units remaining) [ (Pair { "c" } True) ] - - location: 55 (remaining gas: 1039967.117 units remaining) + - location: 55 (remaining gas: 1039967.022 units remaining) [ True ] - - location: 51 (remaining gas: 1039967.097 units remaining) + - location: 51 (remaining gas: 1039966.997 units remaining) [ { "c" } True ] - - location: 56 (remaining gas: 1039967.087 units remaining) + - location: 56 (remaining gas: 1039966.987 units remaining) [ { "c" } { "c" } True ] - - location: 46 (remaining gas: 1039967.067 units remaining) + - location: 46 (remaining gas: 1039966.962 units remaining) [ "B" { "c" } { "c" } True ] - - location: 57 (remaining gas: 1039966.950 units remaining) + - location: 57 (remaining gas: 1039966.845 units remaining) [ False { "c" } True ] - - location: 58 (remaining gas: 1039966.950 units remaining) + - location: 58 (remaining gas: 1039966.845 units remaining) [ { "c" } True ] - - location: 60 (remaining gas: 1039966.940 units remaining) + - location: 60 (remaining gas: 1039966.835 units remaining) [ True { "c" } ] - - location: 58 (remaining gas: 1039966.920 units remaining) + - location: 58 (remaining gas: 1039966.810 units remaining) [ False True { "c" } ] - - location: 61 (remaining gas: 1039966.910 units remaining) + - location: 61 (remaining gas: 1039966.800 units remaining) [ False { "c" } ] - - location: 62 (remaining gas: 1039966.900 units remaining) + - location: 62 (remaining gas: 1039966.790 units remaining) [ { "c" } False ] - - location: 63 (remaining gas: 1039966.890 units remaining) + - location: 63 (remaining gas: 1039966.780 units remaining) [ (Pair { "c" } False) ] - - location: 40 (remaining gas: 1039966.880 units remaining) + - location: 40 (remaining gas: 1039966.765 units remaining) [ (Pair { "c" } False) ] - - location: 64 (remaining gas: 1039966.870 units remaining) + - location: 64 (remaining gas: 1039966.755 units remaining) [ False ] - - location: 65 (remaining gas: 1039966.860 units remaining) + - location: 65 (remaining gas: 1039966.745 units remaining) [ (Some False) ] - - location: 66 (remaining gas: 1039966.850 units remaining) + - location: 66 (remaining gas: 1039966.735 units remaining) [ {} (Some False) ] - - location: 68 (remaining gas: 1039966.840 units remaining) + - location: 68 (remaining gas: 1039966.725 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 f57330d8df89..000a17613623 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 @@ -21,43 +21,43 @@ trace [ (Pair {} {}) ] - location: 17 (remaining gas: 1039967.957 units remaining) [ {} ] - - location: 15 (remaining gas: 1039967.937 units remaining) + - location: 15 (remaining gas: 1039967.932 units remaining) [ {} {} ] - - location: 18 (remaining gas: 1039967.717 units remaining) + - location: 18 (remaining gas: 1039967.632 units remaining) [ {} {} {} ] - - location: 20 (remaining gas: 1039967.707 units remaining) + - location: 20 (remaining gas: 1039967.622 units remaining) [ {} {} {} ] - - location: 21 (remaining gas: 1039967.707 units remaining) + - location: 21 (remaining gas: 1039967.622 units remaining) [ {} {} ] - - location: 34 (remaining gas: 1039967.697 units remaining) + - location: 34 (remaining gas: 1039967.612 units remaining) [ True {} {} ] - - location: 37 (remaining gas: 1039967.687 units remaining) + - location: 37 (remaining gas: 1039967.602 units remaining) [ {} True {} ] - - location: 38 (remaining gas: 1039967.677 units remaining) + - location: 38 (remaining gas: 1039967.592 units remaining) [ (Pair {} True) {} ] - - location: 39 (remaining gas: 1039967.667 units remaining) + - location: 39 (remaining gas: 1039967.582 units remaining) [ {} (Pair {} True) ] - - location: 40 (remaining gas: 1039967.667 units remaining) + - location: 40 (remaining gas: 1039967.582 units remaining) [ (Pair {} True) ] - - location: 64 (remaining gas: 1039967.657 units remaining) + - location: 64 (remaining gas: 1039967.572 units remaining) [ True ] - - location: 65 (remaining gas: 1039967.647 units remaining) + - location: 65 (remaining gas: 1039967.562 units remaining) [ (Some True) ] - - location: 66 (remaining gas: 1039967.637 units remaining) + - location: 66 (remaining gas: 1039967.552 units remaining) [ {} (Some True) ] - - location: 68 (remaining gas: 1039967.627 units remaining) + - location: 68 (remaining gas: 1039967.542 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 8623b676c397..2d4d4c36186a 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" @@ -15,15 +15,15 @@ trace [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - location: 11 (remaining gas: 1039987.870 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 11 (remaining gas: 1039987.860 units remaining) + - location: 11 (remaining gas: 1039987.855 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 17 (remaining gas: 1039987.850 units remaining) + - location: 17 (remaining gas: 1039987.845 units remaining) [ ] - - location: 18 (remaining gas: 1039987.840 units remaining) + - location: 18 (remaining gas: 1039987.835 units remaining) [ Unit ] - - location: 19 (remaining gas: 1039987.830 units remaining) + - location: 19 (remaining gas: 1039987.825 units remaining) [ {} Unit ] - - location: 21 (remaining gas: 1039987.820 units remaining) + - location: 21 (remaining gas: 1039987.815 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 a04a5640551b..3810ea098ff4 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" @@ -26,24 +26,24 @@ trace [ None 50000 Unit ] - - location: 13 (remaining gas: 1039987.233 units remaining) + - location: 13 (remaining gas: 1039987.183 units remaining) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm" ] - - location: 25 (remaining gas: 1039987.233 units remaining) + - location: 25 (remaining gas: 1039987.183 units remaining) [ "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm" ] - - location: 27 (remaining gas: 1039987.223 units remaining) + - location: 27 (remaining gas: 1039987.173 units remaining) [ (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 28 (remaining gas: 1039987.213 units remaining) + - location: 28 (remaining gas: 1039987.163 units remaining) [ {} (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 25 (remaining gas: 1039987.193 units remaining) + - location: 25 (remaining gas: 1039987.138 units remaining) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b {} (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 30 (remaining gas: 1039987.183 units remaining) + - location: 30 (remaining gas: 1039987.128 units remaining) [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b } (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 31 (remaining gas: 1039987.173 units remaining) + - location: 31 (remaining gas: 1039987.118 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 089ab5b0fc2d..3a28a70eefa5 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" @@ -21,14 +21,14 @@ trace [ (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") ] - location: 14 (remaining gas: 1039992.307 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 12 (remaining gas: 1039992.287 units remaining) + - location: 12 (remaining gas: 1039992.282 units remaining) [ "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z" ] - - location: 15 (remaining gas: 1039992.252 units remaining) + - location: 15 (remaining gas: 1039992.247 units remaining) [ 200 ] - - location: 16 (remaining gas: 1039992.242 units remaining) + - location: 16 (remaining gas: 1039992.237 units remaining) [ {} 200 ] - - location: 18 (remaining gas: 1039992.232 units remaining) + - location: 18 (remaining gas: 1039992.227 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 c57929004e2d..a48bdf1092f9 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 @@ -21,14 +21,14 @@ trace [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") ] - location: 14 (remaining gas: 1039992.523 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 12 (remaining gas: 1039992.503 units remaining) + - location: 12 (remaining gas: 1039992.498 units remaining) [ "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z" ] - - location: 15 (remaining gas: 1039992.468 units remaining) + - location: 15 (remaining gas: 1039992.463 units remaining) [ 0 ] - - location: 16 (remaining gas: 1039992.458 units remaining) + - location: 16 (remaining gas: 1039992.453 units remaining) [ {} 0 ] - - location: 18 (remaining gas: 1039992.448 units remaining) + - location: 18 (remaining gas: 1039992.443 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 1f2148376110..0cc05a870a89 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 @@ -21,14 +21,14 @@ trace [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") ] - location: 14 (remaining gas: 1039992.523 units remaining) [ "1970-01-01T00:00:01Z" ] - - location: 12 (remaining gas: 1039992.503 units remaining) + - location: 12 (remaining gas: 1039992.498 units remaining) [ "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z" ] - - location: 15 (remaining gas: 1039992.468 units remaining) + - location: 15 (remaining gas: 1039992.463 units remaining) [ -1 ] - - location: 16 (remaining gas: 1039992.458 units remaining) + - location: 16 (remaining gas: 1039992.453 units remaining) [ {} -1 ] - - location: 18 (remaining gas: 1039992.448 units remaining) + - location: 18 (remaining gas: 1039992.443 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 2aa6ba0402b6..1018550acff6 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 @@ -21,14 +21,14 @@ trace [ (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") ] - location: 14 (remaining gas: 1039992.523 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 12 (remaining gas: 1039992.503 units remaining) + - location: 12 (remaining gas: 1039992.498 units remaining) [ "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z" ] - - location: 15 (remaining gas: 1039992.468 units remaining) + - location: 15 (remaining gas: 1039992.463 units remaining) [ 1 ] - - location: 16 (remaining gas: 1039992.458 units remaining) + - location: 16 (remaining gas: 1039992.453 units remaining) [ {} 1 ] - - location: 18 (remaining gas: 1039992.448 units remaining) + - location: 18 (remaining gas: 1039992.443 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 1134d533eb23..876c43466e92 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 @@ -25,93 +25,93 @@ trace [ 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: 1039840.197 units remaining) + - location: 28 (remaining gas: 1039840.192 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: 1039840.197 units remaining) + - location: 31 (remaining gas: 1039840.192 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: 1039840.187 units remaining) + - location: 34 (remaining gas: 1039840.182 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: 1039840.167 units remaining) + - location: 31 (remaining gas: 1039840.157 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: 1039840.157 units remaining) + - location: 31 (remaining gas: 1039840.147 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: 1039840.157 units remaining) + - location: 31 (remaining gas: 1039840.147 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: 1039840.157 units remaining) + - location: 35 (remaining gas: 1039840.147 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: 1039840.147 units remaining) + - location: 38 (remaining gas: 1039840.137 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: 1039840.127 units remaining) + - location: 35 (remaining gas: 1039840.112 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: 1039840.117 units remaining) + - location: 35 (remaining gas: 1039840.102 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: 1039840.107 units remaining) + - location: 35 (remaining gas: 1039840.092 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: 1039840.107 units remaining) + - location: 35 (remaining gas: 1039840.092 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: 1039840.107 units remaining) + - location: 39 (remaining gas: 1039840.092 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: 1039840.097 units remaining) + - location: 42 (remaining gas: 1039840.082 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: 1039840.077 units remaining) + - location: 39 (remaining gas: 1039840.057 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: 1039840.067 units remaining) + - location: 39 (remaining gas: 1039840.047 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: 1039840.057 units remaining) + - location: 39 (remaining gas: 1039840.037 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: 1039840.047 units remaining) + - location: 39 (remaining gas: 1039840.027 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: 1039840.047 units remaining) + - location: 39 (remaining gas: 1039840.027 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: 1039840.047 units remaining) + - location: 43 (remaining gas: 1039840.027 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: 1039840.037 units remaining) + - location: 46 (remaining gas: 1039840.017 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: 1039840.017 units remaining) + - location: 43 (remaining gas: 1039839.992 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: 1039840.007 units remaining) + - location: 43 (remaining gas: 1039839.982 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: 1039839.997 units remaining) + - location: 43 (remaining gas: 1039839.972 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: 1039839.987 units remaining) + - location: 43 (remaining gas: 1039839.962 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: 1039839.977 units remaining) + - location: 43 (remaining gas: 1039839.952 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: 1039839.977 units remaining) + - location: 43 (remaining gas: 1039839.952 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: 1039839.977 units remaining) + - location: 47 (remaining gas: 1039839.952 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: 1039839.967 units remaining) + - location: 50 (remaining gas: 1039839.942 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: 1039839.947 units remaining) + - location: 47 (remaining gas: 1039839.917 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: 1039839.937 units remaining) + - location: 47 (remaining gas: 1039839.907 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: 1039839.927 units remaining) + - location: 47 (remaining gas: 1039839.897 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: 1039839.917 units remaining) + - location: 47 (remaining gas: 1039839.887 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: 1039839.907 units remaining) + - location: 47 (remaining gas: 1039839.877 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: 1039839.897 units remaining) + - location: 47 (remaining gas: 1039839.867 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: 1039839.897 units remaining) + - location: 47 (remaining gas: 1039839.867 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: 1039839.897 units remaining) + - location: 51 (remaining gas: 1039839.867 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: 1039839.887 units remaining) + - location: 54 (remaining gas: 1039839.857 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: 1039839.867 units remaining) + - location: 51 (remaining gas: 1039839.832 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: 1039839.857 units remaining) + - location: 51 (remaining gas: 1039839.822 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: 1039839.847 units remaining) + - location: 51 (remaining gas: 1039839.812 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: 1039839.837 units remaining) + - location: 51 (remaining gas: 1039839.802 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: 1039839.827 units remaining) + - location: 51 (remaining gas: 1039839.792 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: 1039839.817 units remaining) + - location: 51 (remaining gas: 1039839.782 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: 1039839.807 units remaining) + - location: 51 (remaining gas: 1039839.772 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: 1039839.807 units remaining) + - location: 51 (remaining gas: 1039839.772 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: 1039839.807 units remaining) + - location: 55 (remaining gas: 1039839.772 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: 1039839.797 units remaining) + - location: 58 (remaining gas: 1039839.762 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: 1039839.777 units remaining) + - location: 55 (remaining gas: 1039839.737 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: 1039839.767 units remaining) + - location: 55 (remaining gas: 1039839.727 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: 1039839.757 units remaining) + - location: 55 (remaining gas: 1039839.717 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: 1039839.747 units remaining) + - location: 55 (remaining gas: 1039839.707 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: 1039839.737 units remaining) + - location: 55 (remaining gas: 1039839.697 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: 1039839.727 units remaining) + - location: 55 (remaining gas: 1039839.687 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: 1039839.717 units remaining) + - location: 55 (remaining gas: 1039839.677 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: 1039839.707 units remaining) + - location: 55 (remaining gas: 1039839.667 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: 1039839.707 units remaining) + - location: 55 (remaining gas: 1039839.667 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: 1039839.707 units remaining) + - location: 59 (remaining gas: 1039839.667 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: 1039839.697 units remaining) + - location: 62 (remaining gas: 1039839.657 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: 1039839.677 units remaining) + - location: 59 (remaining gas: 1039839.632 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: 1039839.667 units remaining) + - location: 59 (remaining gas: 1039839.622 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: 1039839.657 units remaining) + - location: 59 (remaining gas: 1039839.612 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: 1039839.647 units remaining) + - location: 59 (remaining gas: 1039839.602 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: 1039839.637 units remaining) + - location: 59 (remaining gas: 1039839.592 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: 1039839.627 units remaining) + - location: 59 (remaining gas: 1039839.582 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: 1039839.617 units remaining) + - location: 59 (remaining gas: 1039839.572 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: 1039839.607 units remaining) + - location: 59 (remaining gas: 1039839.562 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: 1039839.597 units remaining) + - location: 59 (remaining gas: 1039839.552 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: 1039839.597 units remaining) + - location: 59 (remaining gas: 1039839.552 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: 1039839.597 units remaining) + - location: 63 (remaining gas: 1039839.552 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: 1039839.587 units remaining) + - location: 66 (remaining gas: 1039839.542 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: 1039839.567 units remaining) + - location: 63 (remaining gas: 1039839.517 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: 1039839.557 units remaining) + - location: 63 (remaining gas: 1039839.507 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: 1039839.547 units remaining) + - location: 63 (remaining gas: 1039839.497 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: 1039839.537 units remaining) + - location: 63 (remaining gas: 1039839.487 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: 1039839.527 units remaining) + - location: 63 (remaining gas: 1039839.477 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: 1039839.517 units remaining) + - location: 63 (remaining gas: 1039839.467 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: 1039839.507 units remaining) + - location: 63 (remaining gas: 1039839.457 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: 1039839.497 units remaining) + - location: 63 (remaining gas: 1039839.447 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: 1039839.487 units remaining) + - location: 63 (remaining gas: 1039839.437 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: 1039839.477 units remaining) + - location: 63 (remaining gas: 1039839.427 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: 1039839.477 units remaining) + - location: 63 (remaining gas: 1039839.427 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: 1039839.477 units remaining) + - location: 67 (remaining gas: 1039839.427 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: 1039839.467 units remaining) + - location: 70 (remaining gas: 1039839.417 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: 1039839.447 units remaining) + - location: 67 (remaining gas: 1039839.392 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: 1039839.437 units remaining) + - location: 67 (remaining gas: 1039839.382 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: 1039839.427 units remaining) + - location: 67 (remaining gas: 1039839.372 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: 1039839.417 units remaining) + - location: 67 (remaining gas: 1039839.362 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: 1039839.407 units remaining) + - location: 67 (remaining gas: 1039839.352 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: 1039839.397 units remaining) + - location: 67 (remaining gas: 1039839.342 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: 1039839.387 units remaining) + - location: 67 (remaining gas: 1039839.332 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: 1039839.377 units remaining) + - location: 67 (remaining gas: 1039839.322 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: 1039839.367 units remaining) + - location: 67 (remaining gas: 1039839.312 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: 1039839.357 units remaining) + - location: 67 (remaining gas: 1039839.302 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: 1039839.347 units remaining) + - location: 67 (remaining gas: 1039839.292 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: 1039839.347 units remaining) + - location: 67 (remaining gas: 1039839.292 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: 1039839.347 units remaining) + - location: 71 (remaining gas: 1039839.292 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: 1039839.337 units remaining) + - location: 74 (remaining gas: 1039839.282 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: 1039839.317 units remaining) + - location: 71 (remaining gas: 1039839.257 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: 1039839.307 units remaining) + - location: 71 (remaining gas: 1039839.247 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: 1039839.297 units remaining) + - location: 71 (remaining gas: 1039839.237 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: 1039839.287 units remaining) + - location: 71 (remaining gas: 1039839.227 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: 1039839.277 units remaining) + - location: 71 (remaining gas: 1039839.217 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: 1039839.267 units remaining) + - location: 71 (remaining gas: 1039839.207 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: 1039839.257 units remaining) + - location: 71 (remaining gas: 1039839.197 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: 1039839.247 units remaining) + - location: 71 (remaining gas: 1039839.187 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: 1039839.237 units remaining) + - location: 71 (remaining gas: 1039839.177 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: 1039839.227 units remaining) + - location: 71 (remaining gas: 1039839.167 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: 1039839.217 units remaining) + - location: 71 (remaining gas: 1039839.157 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: 1039839.207 units remaining) + - location: 71 (remaining gas: 1039839.147 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: 1039839.207 units remaining) + - location: 71 (remaining gas: 1039839.147 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: 1039839.207 units remaining) + - location: 75 (remaining gas: 1039839.147 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: 1039839.197 units remaining) + - location: 78 (remaining gas: 1039839.137 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: 1039839.177 units remaining) + - location: 75 (remaining gas: 1039839.112 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: 1039839.167 units remaining) + - location: 75 (remaining gas: 1039839.102 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: 1039839.157 units remaining) + - location: 75 (remaining gas: 1039839.092 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: 1039839.147 units remaining) + - location: 75 (remaining gas: 1039839.082 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: 1039839.137 units remaining) + - location: 75 (remaining gas: 1039839.072 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: 1039839.127 units remaining) + - location: 75 (remaining gas: 1039839.062 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: 1039839.117 units remaining) + - location: 75 (remaining gas: 1039839.052 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: 1039839.107 units remaining) + - location: 75 (remaining gas: 1039839.042 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: 1039839.097 units remaining) + - location: 75 (remaining gas: 1039839.032 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: 1039839.087 units remaining) + - location: 75 (remaining gas: 1039839.022 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: 1039839.077 units remaining) + - location: 75 (remaining gas: 1039839.012 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: 1039839.067 units remaining) + - location: 75 (remaining gas: 1039839.002 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: 1039839.057 units remaining) + - location: 75 (remaining gas: 1039838.992 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: 1039839.057 units remaining) + - location: 75 (remaining gas: 1039838.992 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: 1039839.057 units remaining) + - location: 79 (remaining gas: 1039838.992 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: 1039839.047 units remaining) + - location: 82 (remaining gas: 1039838.982 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: 1039839.027 units remaining) + - location: 79 (remaining gas: 1039838.957 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: 1039839.017 units remaining) + - location: 79 (remaining gas: 1039838.947 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: 1039839.007 units remaining) + - location: 79 (remaining gas: 1039838.937 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: 1039838.997 units remaining) + - location: 79 (remaining gas: 1039838.927 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: 1039838.987 units remaining) + - location: 79 (remaining gas: 1039838.917 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: 1039838.977 units remaining) + - location: 79 (remaining gas: 1039838.907 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: 1039838.967 units remaining) + - location: 79 (remaining gas: 1039838.897 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: 1039838.957 units remaining) + - location: 79 (remaining gas: 1039838.887 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: 1039838.947 units remaining) + - location: 79 (remaining gas: 1039838.877 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: 1039838.937 units remaining) + - location: 79 (remaining gas: 1039838.867 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: 1039838.927 units remaining) + - location: 79 (remaining gas: 1039838.857 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: 1039838.917 units remaining) + - location: 79 (remaining gas: 1039838.847 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: 1039838.907 units remaining) + - location: 79 (remaining gas: 1039838.837 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: 1039838.897 units remaining) + - location: 79 (remaining gas: 1039838.827 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: 1039838.897 units remaining) + - location: 79 (remaining gas: 1039838.827 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: 1039838.897 units remaining) + - location: 83 (remaining gas: 1039838.827 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: 1039838.887 units remaining) + - location: 86 (remaining gas: 1039838.817 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: 1039838.867 units remaining) + - location: 83 (remaining gas: 1039838.792 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: 1039838.857 units remaining) + - location: 83 (remaining gas: 1039838.782 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: 1039838.847 units remaining) + - location: 83 (remaining gas: 1039838.772 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: 1039838.837 units remaining) + - location: 83 (remaining gas: 1039838.762 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: 1039838.827 units remaining) + - location: 83 (remaining gas: 1039838.752 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: 1039838.817 units remaining) + - location: 83 (remaining gas: 1039838.742 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: 1039838.807 units remaining) + - location: 83 (remaining gas: 1039838.732 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: 1039838.797 units remaining) + - location: 83 (remaining gas: 1039838.722 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: 1039838.787 units remaining) + - location: 83 (remaining gas: 1039838.712 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: 1039838.777 units remaining) + - location: 83 (remaining gas: 1039838.702 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: 1039838.767 units remaining) + - location: 83 (remaining gas: 1039838.692 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: 1039838.757 units remaining) + - location: 83 (remaining gas: 1039838.682 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: 1039838.747 units remaining) + - location: 83 (remaining gas: 1039838.672 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: 1039838.737 units remaining) + - location: 83 (remaining gas: 1039838.662 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: 1039838.727 units remaining) + - location: 83 (remaining gas: 1039838.652 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: 1039838.727 units remaining) + - location: 83 (remaining gas: 1039838.652 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: 1039838.697 units remaining) + - location: 87 (remaining gas: 1039838.622 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: 1039838.661 units remaining) + - location: 89 (remaining gas: 1039838.586 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: 1039838.618 units remaining) + - location: 91 (remaining gas: 1039838.543 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: 1039838.569 units remaining) + - location: 93 (remaining gas: 1039838.494 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: 1039838.512 units remaining) + - location: 95 (remaining gas: 1039838.437 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: 1039838.449 units remaining) + - location: 97 (remaining gas: 1039838.374 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: 1039838.379 units remaining) + - location: 99 (remaining gas: 1039838.304 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: 1039838.303 units remaining) + - location: 101 (remaining gas: 1039838.228 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: 1039838.219 units remaining) + - location: 103 (remaining gas: 1039838.144 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: 1039838.129 units remaining) + - location: 105 (remaining gas: 1039838.054 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: 1039838.032 units remaining) + - location: 107 (remaining gas: 1039837.957 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: 1039837.929 units remaining) + - location: 109 (remaining gas: 1039837.854 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: 1039837.818 units remaining) + - location: 111 (remaining gas: 1039837.743 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: 1039837.701 units remaining) + - location: 113 (remaining gas: 1039837.626 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: 1039837.577 units remaining) + - location: 115 (remaining gas: 1039837.502 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: 1039837.447 units remaining) + - location: 117 (remaining gas: 1039837.372 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: 1039837.309 units remaining) + - location: 119 (remaining gas: 1039837.234 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: 1039837.279 units remaining) + - location: 121 (remaining gas: 1039837.204 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: 1039837.243 units remaining) + - location: 123 (remaining gas: 1039837.168 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: 1039837.200 units remaining) + - location: 125 (remaining gas: 1039837.125 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: 1039837.151 units remaining) + - location: 127 (remaining gas: 1039837.076 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: 1039837.094 units remaining) + - location: 129 (remaining gas: 1039837.019 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: 1039837.031 units remaining) + - location: 131 (remaining gas: 1039836.956 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: 1039836.961 units remaining) + - location: 133 (remaining gas: 1039836.886 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: 1039836.885 units remaining) + - location: 135 (remaining gas: 1039836.810 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: 1039836.801 units remaining) + - location: 137 (remaining gas: 1039836.726 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: 1039836.711 units remaining) + - location: 139 (remaining gas: 1039836.636 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: 1039836.614 units remaining) + - location: 141 (remaining gas: 1039836.539 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: 1039836.511 units remaining) + - location: 143 (remaining gas: 1039836.436 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: 1039836.400 units remaining) + - location: 145 (remaining gas: 1039836.325 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: 1039836.283 units remaining) + - location: 147 (remaining gas: 1039836.208 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: 1039836.159 units remaining) + - location: 149 (remaining gas: 1039836.084 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: 1039836.029 units remaining) + - location: 151 (remaining gas: 1039835.954 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: 1039835.891 units remaining) + - location: 153 (remaining gas: 1039835.816 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: 1039835.891 units remaining) + - location: 156 (remaining gas: 1039835.816 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: 1039835.881 units remaining) + - location: 159 (remaining gas: 1039835.806 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: 1039835.861 units remaining) + - location: 156 (remaining gas: 1039835.781 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: 1039835.851 units remaining) + - location: 156 (remaining gas: 1039835.771 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: 1039835.841 units remaining) + - location: 156 (remaining gas: 1039835.761 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: 1039835.831 units remaining) + - location: 156 (remaining gas: 1039835.751 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: 1039835.821 units remaining) + - location: 156 (remaining gas: 1039835.741 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: 1039835.811 units remaining) + - location: 156 (remaining gas: 1039835.731 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: 1039835.801 units remaining) + - location: 156 (remaining gas: 1039835.721 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: 1039835.791 units remaining) + - location: 156 (remaining gas: 1039835.711 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: 1039835.781 units remaining) + - location: 156 (remaining gas: 1039835.701 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: 1039835.771 units remaining) + - location: 156 (remaining gas: 1039835.691 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: 1039835.761 units remaining) + - location: 156 (remaining gas: 1039835.681 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: 1039835.751 units remaining) + - location: 156 (remaining gas: 1039835.671 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: 1039835.741 units remaining) + - location: 156 (remaining gas: 1039835.661 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: 1039835.731 units remaining) + - location: 156 (remaining gas: 1039835.651 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: 1039835.721 units remaining) + - location: 156 (remaining gas: 1039835.641 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: 1039835.721 units remaining) + - location: 156 (remaining gas: 1039835.641 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: 1039835.721 units remaining) + - location: 160 (remaining gas: 1039835.641 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: 1039835.711 units remaining) + - location: 163 (remaining gas: 1039835.631 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: 1039835.691 units remaining) + - location: 160 (remaining gas: 1039835.606 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: 1039835.681 units remaining) + - location: 160 (remaining gas: 1039835.596 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: 1039835.671 units remaining) + - location: 160 (remaining gas: 1039835.586 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: 1039835.661 units remaining) + - location: 160 (remaining gas: 1039835.576 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: 1039835.651 units remaining) + - location: 160 (remaining gas: 1039835.566 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: 1039835.641 units remaining) + - location: 160 (remaining gas: 1039835.556 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: 1039835.631 units remaining) + - location: 160 (remaining gas: 1039835.546 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: 1039835.621 units remaining) + - location: 160 (remaining gas: 1039835.536 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: 1039835.611 units remaining) + - location: 160 (remaining gas: 1039835.526 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: 1039835.601 units remaining) + - location: 160 (remaining gas: 1039835.516 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: 1039835.591 units remaining) + - location: 160 (remaining gas: 1039835.506 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: 1039835.581 units remaining) + - location: 160 (remaining gas: 1039835.496 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: 1039835.571 units remaining) + - location: 160 (remaining gas: 1039835.486 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: 1039835.561 units remaining) + - location: 160 (remaining gas: 1039835.476 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: 1039835.561 units remaining) + - location: 160 (remaining gas: 1039835.476 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: 1039835.561 units remaining) + - location: 164 (remaining gas: 1039835.476 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: 1039835.551 units remaining) + - location: 167 (remaining gas: 1039835.466 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: 1039835.531 units remaining) + - location: 164 (remaining gas: 1039835.441 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: 1039835.521 units remaining) + - location: 164 (remaining gas: 1039835.431 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: 1039835.511 units remaining) + - location: 164 (remaining gas: 1039835.421 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: 1039835.501 units remaining) + - location: 164 (remaining gas: 1039835.411 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: 1039835.491 units remaining) + - location: 164 (remaining gas: 1039835.401 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: 1039835.481 units remaining) + - location: 164 (remaining gas: 1039835.391 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: 1039835.471 units remaining) + - location: 164 (remaining gas: 1039835.381 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: 1039835.461 units remaining) + - location: 164 (remaining gas: 1039835.371 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: 1039835.451 units remaining) + - location: 164 (remaining gas: 1039835.361 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: 1039835.441 units remaining) + - location: 164 (remaining gas: 1039835.351 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: 1039835.431 units remaining) + - location: 164 (remaining gas: 1039835.341 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: 1039835.421 units remaining) + - location: 164 (remaining gas: 1039835.331 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: 1039835.411 units remaining) + - location: 164 (remaining gas: 1039835.321 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: 1039835.411 units remaining) + - location: 164 (remaining gas: 1039835.321 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: 1039835.411 units remaining) + - location: 168 (remaining gas: 1039835.321 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: 1039835.401 units remaining) + - location: 171 (remaining gas: 1039835.311 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: 1039835.381 units remaining) + - location: 168 (remaining gas: 1039835.286 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: 1039835.371 units remaining) + - location: 168 (remaining gas: 1039835.276 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: 1039835.361 units remaining) + - location: 168 (remaining gas: 1039835.266 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: 1039835.351 units remaining) + - location: 168 (remaining gas: 1039835.256 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: 1039835.341 units remaining) + - location: 168 (remaining gas: 1039835.246 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: 1039835.331 units remaining) + - location: 168 (remaining gas: 1039835.236 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: 1039835.321 units remaining) + - location: 168 (remaining gas: 1039835.226 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: 1039835.311 units remaining) + - location: 168 (remaining gas: 1039835.216 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: 1039835.301 units remaining) + - location: 168 (remaining gas: 1039835.206 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: 1039835.291 units remaining) + - location: 168 (remaining gas: 1039835.196 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: 1039835.281 units remaining) + - location: 168 (remaining gas: 1039835.186 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: 1039835.271 units remaining) + - location: 168 (remaining gas: 1039835.176 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: 1039835.271 units remaining) + - location: 168 (remaining gas: 1039835.176 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: 1039835.271 units remaining) + - location: 172 (remaining gas: 1039835.176 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: 1039835.261 units remaining) + - location: 175 (remaining gas: 1039835.166 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: 1039835.241 units remaining) + - location: 172 (remaining gas: 1039835.141 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: 1039835.231 units remaining) + - location: 172 (remaining gas: 1039835.131 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: 1039835.221 units remaining) + - location: 172 (remaining gas: 1039835.121 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: 1039835.211 units remaining) + - location: 172 (remaining gas: 1039835.111 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: 1039835.201 units remaining) + - location: 172 (remaining gas: 1039835.101 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: 1039835.191 units remaining) + - location: 172 (remaining gas: 1039835.091 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: 1039835.181 units remaining) + - location: 172 (remaining gas: 1039835.081 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: 1039835.171 units remaining) + - location: 172 (remaining gas: 1039835.071 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: 1039835.161 units remaining) + - location: 172 (remaining gas: 1039835.061 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: 1039835.151 units remaining) + - location: 172 (remaining gas: 1039835.051 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: 1039835.141 units remaining) + - location: 172 (remaining gas: 1039835.041 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: 1039835.141 units remaining) + - location: 172 (remaining gas: 1039835.041 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: 1039835.141 units remaining) + - location: 176 (remaining gas: 1039835.041 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: 1039835.131 units remaining) + - location: 179 (remaining gas: 1039835.031 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: 1039835.111 units remaining) + - location: 176 (remaining gas: 1039835.006 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: 1039835.101 units remaining) + - location: 176 (remaining gas: 1039834.996 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: 1039835.091 units remaining) + - location: 176 (remaining gas: 1039834.986 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: 1039835.081 units remaining) + - location: 176 (remaining gas: 1039834.976 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: 1039835.071 units remaining) + - location: 176 (remaining gas: 1039834.966 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: 1039835.061 units remaining) + - location: 176 (remaining gas: 1039834.956 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: 1039835.051 units remaining) + - location: 176 (remaining gas: 1039834.946 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: 1039835.041 units remaining) + - location: 176 (remaining gas: 1039834.936 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: 1039835.031 units remaining) + - location: 176 (remaining gas: 1039834.926 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: 1039835.021 units remaining) + - location: 176 (remaining gas: 1039834.916 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: 1039835.021 units remaining) + - location: 176 (remaining gas: 1039834.916 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: 1039835.021 units remaining) + - location: 180 (remaining gas: 1039834.916 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: 1039835.011 units remaining) + - location: 183 (remaining gas: 1039834.906 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: 1039834.991 units remaining) + - location: 180 (remaining gas: 1039834.881 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: 1039834.981 units remaining) + - location: 180 (remaining gas: 1039834.871 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: 1039834.971 units remaining) + - location: 180 (remaining gas: 1039834.861 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: 1039834.961 units remaining) + - location: 180 (remaining gas: 1039834.851 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: 1039834.951 units remaining) + - location: 180 (remaining gas: 1039834.841 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: 1039834.941 units remaining) + - location: 180 (remaining gas: 1039834.831 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: 1039834.931 units remaining) + - location: 180 (remaining gas: 1039834.821 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: 1039834.921 units remaining) + - location: 180 (remaining gas: 1039834.811 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: 1039834.911 units remaining) + - location: 180 (remaining gas: 1039834.801 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: 1039834.911 units remaining) + - location: 180 (remaining gas: 1039834.801 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: 1039834.911 units remaining) + - location: 184 (remaining gas: 1039834.801 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: 1039834.901 units remaining) + - location: 187 (remaining gas: 1039834.791 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: 1039834.881 units remaining) + - location: 184 (remaining gas: 1039834.766 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: 1039834.871 units remaining) + - location: 184 (remaining gas: 1039834.756 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: 1039834.861 units remaining) + - location: 184 (remaining gas: 1039834.746 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: 1039834.851 units remaining) + - location: 184 (remaining gas: 1039834.736 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: 1039834.841 units remaining) + - location: 184 (remaining gas: 1039834.726 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: 1039834.831 units remaining) + - location: 184 (remaining gas: 1039834.716 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: 1039834.821 units remaining) + - location: 184 (remaining gas: 1039834.706 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: 1039834.811 units remaining) + - location: 184 (remaining gas: 1039834.696 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: 1039834.811 units remaining) + - location: 184 (remaining gas: 1039834.696 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: 1039834.811 units remaining) + - location: 188 (remaining gas: 1039834.696 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: 1039834.801 units remaining) + - location: 191 (remaining gas: 1039834.686 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: 1039834.781 units remaining) + - location: 188 (remaining gas: 1039834.661 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: 1039834.771 units remaining) + - location: 188 (remaining gas: 1039834.651 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: 1039834.761 units remaining) + - location: 188 (remaining gas: 1039834.641 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: 1039834.751 units remaining) + - location: 188 (remaining gas: 1039834.631 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: 1039834.741 units remaining) + - location: 188 (remaining gas: 1039834.621 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: 1039834.731 units remaining) + - location: 188 (remaining gas: 1039834.611 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: 1039834.721 units remaining) + - location: 188 (remaining gas: 1039834.601 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: 1039834.721 units remaining) + - location: 188 (remaining gas: 1039834.601 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: 1039834.721 units remaining) + - location: 192 (remaining gas: 1039834.601 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: 1039834.711 units remaining) + - location: 195 (remaining gas: 1039834.591 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: 1039834.691 units remaining) + - location: 192 (remaining gas: 1039834.566 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: 1039834.681 units remaining) + - location: 192 (remaining gas: 1039834.556 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: 1039834.671 units remaining) + - location: 192 (remaining gas: 1039834.546 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: 1039834.661 units remaining) + - location: 192 (remaining gas: 1039834.536 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: 1039834.651 units remaining) + - location: 192 (remaining gas: 1039834.526 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: 1039834.641 units remaining) + - location: 192 (remaining gas: 1039834.516 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: 1039834.641 units remaining) + - location: 192 (remaining gas: 1039834.516 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: 1039834.641 units remaining) + - location: 196 (remaining gas: 1039834.516 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: 1039834.631 units remaining) + - location: 199 (remaining gas: 1039834.506 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: 1039834.611 units remaining) + - location: 196 (remaining gas: 1039834.481 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: 1039834.601 units remaining) + - location: 196 (remaining gas: 1039834.471 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: 1039834.591 units remaining) + - location: 196 (remaining gas: 1039834.461 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: 1039834.581 units remaining) + - location: 196 (remaining gas: 1039834.451 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: 1039834.571 units remaining) + - location: 196 (remaining gas: 1039834.441 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: 1039834.571 units remaining) + - location: 196 (remaining gas: 1039834.441 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: 1039834.571 units remaining) + - location: 200 (remaining gas: 1039834.441 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: 1039834.561 units remaining) + - location: 203 (remaining gas: 1039834.431 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: 1039834.541 units remaining) + - location: 200 (remaining gas: 1039834.406 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: 1039834.531 units remaining) + - location: 200 (remaining gas: 1039834.396 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: 1039834.521 units remaining) + - location: 200 (remaining gas: 1039834.386 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: 1039834.511 units remaining) + - location: 200 (remaining gas: 1039834.376 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: 1039834.511 units remaining) + - location: 200 (remaining gas: 1039834.376 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: 1039834.511 units remaining) + - location: 204 (remaining gas: 1039834.376 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: 1039834.501 units remaining) + - location: 207 (remaining gas: 1039834.366 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: 1039834.481 units remaining) + - location: 204 (remaining gas: 1039834.341 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: 1039834.471 units remaining) + - location: 204 (remaining gas: 1039834.331 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: 1039834.461 units remaining) + - location: 204 (remaining gas: 1039834.321 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: 1039834.461 units remaining) + - location: 204 (remaining gas: 1039834.321 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: 1039834.461 units remaining) + - location: 208 (remaining gas: 1039834.321 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: 1039834.451 units remaining) + - location: 211 (remaining gas: 1039834.311 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: 1039834.431 units remaining) + - location: 208 (remaining gas: 1039834.286 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: 1039834.421 units remaining) + - location: 208 (remaining gas: 1039834.276 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: 1039834.421 units remaining) + - location: 208 (remaining gas: 1039834.276 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: 1039834.421 units remaining) + - location: 212 (remaining gas: 1039834.276 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: 1039834.411 units remaining) + - location: 214 (remaining gas: 1039834.266 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: 1039834.391 units remaining) + - location: 212 (remaining gas: 1039834.241 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: 1039834.381 units remaining) + - location: 215 (remaining gas: 1039834.231 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: 1039833.626 units remaining) + - location: 218 (remaining gas: 1039833.476 units remaining) [ 0 ] - - location: 219 (remaining gas: 1039833.616 units remaining) + - location: 219 (remaining gas: 1039833.466 units remaining) [ True ] - - location: 220 (remaining gas: 1039833.616 units remaining) + - location: 220 (remaining gas: 1039833.466 units remaining) [ ] - - location: 220 (remaining gas: 1039833.606 units remaining) + - location: 220 (remaining gas: 1039833.451 units remaining) [ ] - - location: 226 (remaining gas: 1039833.596 units remaining) + - location: 226 (remaining gas: 1039833.441 units remaining) [ Unit ] - - location: 227 (remaining gas: 1039833.586 units remaining) + - location: 227 (remaining gas: 1039833.431 units remaining) [ {} Unit ] - - location: 229 (remaining gas: 1039833.576 units remaining) + - location: 229 (remaining gas: 1039833.421 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 846315076802..3e05a85881b4 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 @@ -25,93 +25,93 @@ trace [ 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: 1039840.197 units remaining) + - location: 28 (remaining gas: 1039840.192 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: 1039840.197 units remaining) + - location: 31 (remaining gas: 1039840.192 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: 1039840.187 units remaining) + - location: 34 (remaining gas: 1039840.182 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: 1039840.167 units remaining) + - location: 31 (remaining gas: 1039840.157 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: 1039840.157 units remaining) + - location: 31 (remaining gas: 1039840.147 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: 1039840.157 units remaining) + - location: 31 (remaining gas: 1039840.147 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: 1039840.157 units remaining) + - location: 35 (remaining gas: 1039840.147 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: 1039840.147 units remaining) + - location: 38 (remaining gas: 1039840.137 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: 1039840.127 units remaining) + - location: 35 (remaining gas: 1039840.112 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: 1039840.117 units remaining) + - location: 35 (remaining gas: 1039840.102 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: 1039840.107 units remaining) + - location: 35 (remaining gas: 1039840.092 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: 1039840.107 units remaining) + - location: 35 (remaining gas: 1039840.092 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: 1039840.107 units remaining) + - location: 39 (remaining gas: 1039840.092 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: 1039840.097 units remaining) + - location: 42 (remaining gas: 1039840.082 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: 1039840.077 units remaining) + - location: 39 (remaining gas: 1039840.057 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: 1039840.067 units remaining) + - location: 39 (remaining gas: 1039840.047 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: 1039840.057 units remaining) + - location: 39 (remaining gas: 1039840.037 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: 1039840.047 units remaining) + - location: 39 (remaining gas: 1039840.027 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: 1039840.047 units remaining) + - location: 39 (remaining gas: 1039840.027 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: 1039840.047 units remaining) + - location: 43 (remaining gas: 1039840.027 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: 1039840.037 units remaining) + - location: 46 (remaining gas: 1039840.017 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: 1039840.017 units remaining) + - location: 43 (remaining gas: 1039839.992 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: 1039840.007 units remaining) + - location: 43 (remaining gas: 1039839.982 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: 1039839.997 units remaining) + - location: 43 (remaining gas: 1039839.972 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: 1039839.987 units remaining) + - location: 43 (remaining gas: 1039839.962 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: 1039839.977 units remaining) + - location: 43 (remaining gas: 1039839.952 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: 1039839.977 units remaining) + - location: 43 (remaining gas: 1039839.952 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: 1039839.977 units remaining) + - location: 47 (remaining gas: 1039839.952 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: 1039839.967 units remaining) + - location: 50 (remaining gas: 1039839.942 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: 1039839.947 units remaining) + - location: 47 (remaining gas: 1039839.917 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: 1039839.937 units remaining) + - location: 47 (remaining gas: 1039839.907 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: 1039839.927 units remaining) + - location: 47 (remaining gas: 1039839.897 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: 1039839.917 units remaining) + - location: 47 (remaining gas: 1039839.887 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: 1039839.907 units remaining) + - location: 47 (remaining gas: 1039839.877 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: 1039839.897 units remaining) + - location: 47 (remaining gas: 1039839.867 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: 1039839.897 units remaining) + - location: 47 (remaining gas: 1039839.867 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: 1039839.897 units remaining) + - location: 51 (remaining gas: 1039839.867 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: 1039839.887 units remaining) + - location: 54 (remaining gas: 1039839.857 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: 1039839.867 units remaining) + - location: 51 (remaining gas: 1039839.832 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: 1039839.857 units remaining) + - location: 51 (remaining gas: 1039839.822 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: 1039839.847 units remaining) + - location: 51 (remaining gas: 1039839.812 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: 1039839.837 units remaining) + - location: 51 (remaining gas: 1039839.802 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: 1039839.827 units remaining) + - location: 51 (remaining gas: 1039839.792 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: 1039839.817 units remaining) + - location: 51 (remaining gas: 1039839.782 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: 1039839.807 units remaining) + - location: 51 (remaining gas: 1039839.772 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: 1039839.807 units remaining) + - location: 51 (remaining gas: 1039839.772 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: 1039839.807 units remaining) + - location: 55 (remaining gas: 1039839.772 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: 1039839.797 units remaining) + - location: 58 (remaining gas: 1039839.762 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: 1039839.777 units remaining) + - location: 55 (remaining gas: 1039839.737 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: 1039839.767 units remaining) + - location: 55 (remaining gas: 1039839.727 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: 1039839.757 units remaining) + - location: 55 (remaining gas: 1039839.717 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: 1039839.747 units remaining) + - location: 55 (remaining gas: 1039839.707 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: 1039839.737 units remaining) + - location: 55 (remaining gas: 1039839.697 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: 1039839.727 units remaining) + - location: 55 (remaining gas: 1039839.687 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: 1039839.717 units remaining) + - location: 55 (remaining gas: 1039839.677 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: 1039839.707 units remaining) + - location: 55 (remaining gas: 1039839.667 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: 1039839.707 units remaining) + - location: 55 (remaining gas: 1039839.667 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: 1039839.707 units remaining) + - location: 59 (remaining gas: 1039839.667 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: 1039839.697 units remaining) + - location: 62 (remaining gas: 1039839.657 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: 1039839.677 units remaining) + - location: 59 (remaining gas: 1039839.632 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: 1039839.667 units remaining) + - location: 59 (remaining gas: 1039839.622 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: 1039839.657 units remaining) + - location: 59 (remaining gas: 1039839.612 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: 1039839.647 units remaining) + - location: 59 (remaining gas: 1039839.602 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: 1039839.637 units remaining) + - location: 59 (remaining gas: 1039839.592 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: 1039839.627 units remaining) + - location: 59 (remaining gas: 1039839.582 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: 1039839.617 units remaining) + - location: 59 (remaining gas: 1039839.572 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: 1039839.607 units remaining) + - location: 59 (remaining gas: 1039839.562 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: 1039839.597 units remaining) + - location: 59 (remaining gas: 1039839.552 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: 1039839.597 units remaining) + - location: 59 (remaining gas: 1039839.552 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: 1039839.597 units remaining) + - location: 63 (remaining gas: 1039839.552 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: 1039839.587 units remaining) + - location: 66 (remaining gas: 1039839.542 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: 1039839.567 units remaining) + - location: 63 (remaining gas: 1039839.517 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: 1039839.557 units remaining) + - location: 63 (remaining gas: 1039839.507 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: 1039839.547 units remaining) + - location: 63 (remaining gas: 1039839.497 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: 1039839.537 units remaining) + - location: 63 (remaining gas: 1039839.487 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: 1039839.527 units remaining) + - location: 63 (remaining gas: 1039839.477 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: 1039839.517 units remaining) + - location: 63 (remaining gas: 1039839.467 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: 1039839.507 units remaining) + - location: 63 (remaining gas: 1039839.457 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: 1039839.497 units remaining) + - location: 63 (remaining gas: 1039839.447 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: 1039839.487 units remaining) + - location: 63 (remaining gas: 1039839.437 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: 1039839.477 units remaining) + - location: 63 (remaining gas: 1039839.427 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: 1039839.477 units remaining) + - location: 63 (remaining gas: 1039839.427 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: 1039839.477 units remaining) + - location: 67 (remaining gas: 1039839.427 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: 1039839.467 units remaining) + - location: 70 (remaining gas: 1039839.417 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: 1039839.447 units remaining) + - location: 67 (remaining gas: 1039839.392 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: 1039839.437 units remaining) + - location: 67 (remaining gas: 1039839.382 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: 1039839.427 units remaining) + - location: 67 (remaining gas: 1039839.372 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: 1039839.417 units remaining) + - location: 67 (remaining gas: 1039839.362 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: 1039839.407 units remaining) + - location: 67 (remaining gas: 1039839.352 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: 1039839.397 units remaining) + - location: 67 (remaining gas: 1039839.342 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: 1039839.387 units remaining) + - location: 67 (remaining gas: 1039839.332 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: 1039839.377 units remaining) + - location: 67 (remaining gas: 1039839.322 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: 1039839.367 units remaining) + - location: 67 (remaining gas: 1039839.312 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: 1039839.357 units remaining) + - location: 67 (remaining gas: 1039839.302 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: 1039839.347 units remaining) + - location: 67 (remaining gas: 1039839.292 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: 1039839.347 units remaining) + - location: 67 (remaining gas: 1039839.292 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: 1039839.347 units remaining) + - location: 71 (remaining gas: 1039839.292 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: 1039839.337 units remaining) + - location: 74 (remaining gas: 1039839.282 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: 1039839.317 units remaining) + - location: 71 (remaining gas: 1039839.257 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: 1039839.307 units remaining) + - location: 71 (remaining gas: 1039839.247 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: 1039839.297 units remaining) + - location: 71 (remaining gas: 1039839.237 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: 1039839.287 units remaining) + - location: 71 (remaining gas: 1039839.227 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: 1039839.277 units remaining) + - location: 71 (remaining gas: 1039839.217 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: 1039839.267 units remaining) + - location: 71 (remaining gas: 1039839.207 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: 1039839.257 units remaining) + - location: 71 (remaining gas: 1039839.197 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: 1039839.247 units remaining) + - location: 71 (remaining gas: 1039839.187 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: 1039839.237 units remaining) + - location: 71 (remaining gas: 1039839.177 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: 1039839.227 units remaining) + - location: 71 (remaining gas: 1039839.167 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: 1039839.217 units remaining) + - location: 71 (remaining gas: 1039839.157 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: 1039839.207 units remaining) + - location: 71 (remaining gas: 1039839.147 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: 1039839.207 units remaining) + - location: 71 (remaining gas: 1039839.147 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: 1039839.207 units remaining) + - location: 75 (remaining gas: 1039839.147 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: 1039839.197 units remaining) + - location: 78 (remaining gas: 1039839.137 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: 1039839.177 units remaining) + - location: 75 (remaining gas: 1039839.112 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: 1039839.167 units remaining) + - location: 75 (remaining gas: 1039839.102 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: 1039839.157 units remaining) + - location: 75 (remaining gas: 1039839.092 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: 1039839.147 units remaining) + - location: 75 (remaining gas: 1039839.082 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: 1039839.137 units remaining) + - location: 75 (remaining gas: 1039839.072 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: 1039839.127 units remaining) + - location: 75 (remaining gas: 1039839.062 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: 1039839.117 units remaining) + - location: 75 (remaining gas: 1039839.052 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: 1039839.107 units remaining) + - location: 75 (remaining gas: 1039839.042 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: 1039839.097 units remaining) + - location: 75 (remaining gas: 1039839.032 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: 1039839.087 units remaining) + - location: 75 (remaining gas: 1039839.022 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: 1039839.077 units remaining) + - location: 75 (remaining gas: 1039839.012 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: 1039839.067 units remaining) + - location: 75 (remaining gas: 1039839.002 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: 1039839.057 units remaining) + - location: 75 (remaining gas: 1039838.992 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: 1039839.057 units remaining) + - location: 75 (remaining gas: 1039838.992 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: 1039839.057 units remaining) + - location: 79 (remaining gas: 1039838.992 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: 1039839.047 units remaining) + - location: 82 (remaining gas: 1039838.982 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: 1039839.027 units remaining) + - location: 79 (remaining gas: 1039838.957 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: 1039839.017 units remaining) + - location: 79 (remaining gas: 1039838.947 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: 1039839.007 units remaining) + - location: 79 (remaining gas: 1039838.937 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: 1039838.997 units remaining) + - location: 79 (remaining gas: 1039838.927 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: 1039838.987 units remaining) + - location: 79 (remaining gas: 1039838.917 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: 1039838.977 units remaining) + - location: 79 (remaining gas: 1039838.907 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: 1039838.967 units remaining) + - location: 79 (remaining gas: 1039838.897 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: 1039838.957 units remaining) + - location: 79 (remaining gas: 1039838.887 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: 1039838.947 units remaining) + - location: 79 (remaining gas: 1039838.877 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: 1039838.937 units remaining) + - location: 79 (remaining gas: 1039838.867 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: 1039838.927 units remaining) + - location: 79 (remaining gas: 1039838.857 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: 1039838.917 units remaining) + - location: 79 (remaining gas: 1039838.847 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: 1039838.907 units remaining) + - location: 79 (remaining gas: 1039838.837 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: 1039838.897 units remaining) + - location: 79 (remaining gas: 1039838.827 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: 1039838.897 units remaining) + - location: 79 (remaining gas: 1039838.827 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: 1039838.897 units remaining) + - location: 83 (remaining gas: 1039838.827 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: 1039838.887 units remaining) + - location: 86 (remaining gas: 1039838.817 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: 1039838.867 units remaining) + - location: 83 (remaining gas: 1039838.792 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: 1039838.857 units remaining) + - location: 83 (remaining gas: 1039838.782 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: 1039838.847 units remaining) + - location: 83 (remaining gas: 1039838.772 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: 1039838.837 units remaining) + - location: 83 (remaining gas: 1039838.762 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: 1039838.827 units remaining) + - location: 83 (remaining gas: 1039838.752 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: 1039838.817 units remaining) + - location: 83 (remaining gas: 1039838.742 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: 1039838.807 units remaining) + - location: 83 (remaining gas: 1039838.732 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: 1039838.797 units remaining) + - location: 83 (remaining gas: 1039838.722 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: 1039838.787 units remaining) + - location: 83 (remaining gas: 1039838.712 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: 1039838.777 units remaining) + - location: 83 (remaining gas: 1039838.702 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: 1039838.767 units remaining) + - location: 83 (remaining gas: 1039838.692 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: 1039838.757 units remaining) + - location: 83 (remaining gas: 1039838.682 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: 1039838.747 units remaining) + - location: 83 (remaining gas: 1039838.672 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: 1039838.737 units remaining) + - location: 83 (remaining gas: 1039838.662 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: 1039838.727 units remaining) + - location: 83 (remaining gas: 1039838.652 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: 1039838.727 units remaining) + - location: 83 (remaining gas: 1039838.652 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: 1039838.697 units remaining) + - location: 87 (remaining gas: 1039838.622 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: 1039838.661 units remaining) + - location: 89 (remaining gas: 1039838.586 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: 1039838.618 units remaining) + - location: 91 (remaining gas: 1039838.543 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: 1039838.569 units remaining) + - location: 93 (remaining gas: 1039838.494 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: 1039838.512 units remaining) + - location: 95 (remaining gas: 1039838.437 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: 1039838.449 units remaining) + - location: 97 (remaining gas: 1039838.374 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: 1039838.379 units remaining) + - location: 99 (remaining gas: 1039838.304 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: 1039838.303 units remaining) + - location: 101 (remaining gas: 1039838.228 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: 1039838.219 units remaining) + - location: 103 (remaining gas: 1039838.144 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: 1039838.129 units remaining) + - location: 105 (remaining gas: 1039838.054 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: 1039838.032 units remaining) + - location: 107 (remaining gas: 1039837.957 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: 1039837.929 units remaining) + - location: 109 (remaining gas: 1039837.854 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: 1039837.818 units remaining) + - location: 111 (remaining gas: 1039837.743 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: 1039837.701 units remaining) + - location: 113 (remaining gas: 1039837.626 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: 1039837.577 units remaining) + - location: 115 (remaining gas: 1039837.502 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: 1039837.447 units remaining) + - location: 117 (remaining gas: 1039837.372 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: 1039837.309 units remaining) + - location: 119 (remaining gas: 1039837.234 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: 1039837.279 units remaining) + - location: 121 (remaining gas: 1039837.204 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: 1039837.243 units remaining) + - location: 123 (remaining gas: 1039837.168 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: 1039837.200 units remaining) + - location: 125 (remaining gas: 1039837.125 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: 1039837.151 units remaining) + - location: 127 (remaining gas: 1039837.076 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: 1039837.094 units remaining) + - location: 129 (remaining gas: 1039837.019 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: 1039837.031 units remaining) + - location: 131 (remaining gas: 1039836.956 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: 1039836.961 units remaining) + - location: 133 (remaining gas: 1039836.886 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: 1039836.885 units remaining) + - location: 135 (remaining gas: 1039836.810 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: 1039836.801 units remaining) + - location: 137 (remaining gas: 1039836.726 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: 1039836.711 units remaining) + - location: 139 (remaining gas: 1039836.636 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: 1039836.614 units remaining) + - location: 141 (remaining gas: 1039836.539 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: 1039836.511 units remaining) + - location: 143 (remaining gas: 1039836.436 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: 1039836.400 units remaining) + - location: 145 (remaining gas: 1039836.325 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: 1039836.283 units remaining) + - location: 147 (remaining gas: 1039836.208 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: 1039836.159 units remaining) + - location: 149 (remaining gas: 1039836.084 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: 1039836.029 units remaining) + - location: 151 (remaining gas: 1039835.954 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: 1039835.891 units remaining) + - location: 153 (remaining gas: 1039835.816 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: 1039835.891 units remaining) + - location: 156 (remaining gas: 1039835.816 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: 1039835.881 units remaining) + - location: 159 (remaining gas: 1039835.806 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: 1039835.861 units remaining) + - location: 156 (remaining gas: 1039835.781 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: 1039835.851 units remaining) + - location: 156 (remaining gas: 1039835.771 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: 1039835.841 units remaining) + - location: 156 (remaining gas: 1039835.761 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: 1039835.831 units remaining) + - location: 156 (remaining gas: 1039835.751 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: 1039835.821 units remaining) + - location: 156 (remaining gas: 1039835.741 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: 1039835.811 units remaining) + - location: 156 (remaining gas: 1039835.731 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: 1039835.801 units remaining) + - location: 156 (remaining gas: 1039835.721 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: 1039835.791 units remaining) + - location: 156 (remaining gas: 1039835.711 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: 1039835.781 units remaining) + - location: 156 (remaining gas: 1039835.701 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: 1039835.771 units remaining) + - location: 156 (remaining gas: 1039835.691 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: 1039835.761 units remaining) + - location: 156 (remaining gas: 1039835.681 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: 1039835.751 units remaining) + - location: 156 (remaining gas: 1039835.671 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: 1039835.741 units remaining) + - location: 156 (remaining gas: 1039835.661 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: 1039835.731 units remaining) + - location: 156 (remaining gas: 1039835.651 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: 1039835.721 units remaining) + - location: 156 (remaining gas: 1039835.641 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: 1039835.721 units remaining) + - location: 156 (remaining gas: 1039835.641 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: 1039835.721 units remaining) + - location: 160 (remaining gas: 1039835.641 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: 1039835.711 units remaining) + - location: 163 (remaining gas: 1039835.631 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: 1039835.691 units remaining) + - location: 160 (remaining gas: 1039835.606 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: 1039835.681 units remaining) + - location: 160 (remaining gas: 1039835.596 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: 1039835.671 units remaining) + - location: 160 (remaining gas: 1039835.586 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: 1039835.661 units remaining) + - location: 160 (remaining gas: 1039835.576 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: 1039835.651 units remaining) + - location: 160 (remaining gas: 1039835.566 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: 1039835.641 units remaining) + - location: 160 (remaining gas: 1039835.556 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: 1039835.631 units remaining) + - location: 160 (remaining gas: 1039835.546 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: 1039835.621 units remaining) + - location: 160 (remaining gas: 1039835.536 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: 1039835.611 units remaining) + - location: 160 (remaining gas: 1039835.526 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: 1039835.601 units remaining) + - location: 160 (remaining gas: 1039835.516 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: 1039835.591 units remaining) + - location: 160 (remaining gas: 1039835.506 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: 1039835.581 units remaining) + - location: 160 (remaining gas: 1039835.496 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: 1039835.571 units remaining) + - location: 160 (remaining gas: 1039835.486 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: 1039835.561 units remaining) + - location: 160 (remaining gas: 1039835.476 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: 1039835.561 units remaining) + - location: 160 (remaining gas: 1039835.476 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: 1039835.561 units remaining) + - location: 164 (remaining gas: 1039835.476 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: 1039835.551 units remaining) + - location: 167 (remaining gas: 1039835.466 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: 1039835.531 units remaining) + - location: 164 (remaining gas: 1039835.441 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: 1039835.521 units remaining) + - location: 164 (remaining gas: 1039835.431 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: 1039835.511 units remaining) + - location: 164 (remaining gas: 1039835.421 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: 1039835.501 units remaining) + - location: 164 (remaining gas: 1039835.411 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: 1039835.491 units remaining) + - location: 164 (remaining gas: 1039835.401 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: 1039835.481 units remaining) + - location: 164 (remaining gas: 1039835.391 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: 1039835.471 units remaining) + - location: 164 (remaining gas: 1039835.381 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: 1039835.461 units remaining) + - location: 164 (remaining gas: 1039835.371 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: 1039835.451 units remaining) + - location: 164 (remaining gas: 1039835.361 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: 1039835.441 units remaining) + - location: 164 (remaining gas: 1039835.351 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: 1039835.431 units remaining) + - location: 164 (remaining gas: 1039835.341 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: 1039835.421 units remaining) + - location: 164 (remaining gas: 1039835.331 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: 1039835.411 units remaining) + - location: 164 (remaining gas: 1039835.321 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: 1039835.411 units remaining) + - location: 164 (remaining gas: 1039835.321 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: 1039835.411 units remaining) + - location: 168 (remaining gas: 1039835.321 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: 1039835.401 units remaining) + - location: 171 (remaining gas: 1039835.311 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: 1039835.381 units remaining) + - location: 168 (remaining gas: 1039835.286 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: 1039835.371 units remaining) + - location: 168 (remaining gas: 1039835.276 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: 1039835.361 units remaining) + - location: 168 (remaining gas: 1039835.266 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: 1039835.351 units remaining) + - location: 168 (remaining gas: 1039835.256 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: 1039835.341 units remaining) + - location: 168 (remaining gas: 1039835.246 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: 1039835.331 units remaining) + - location: 168 (remaining gas: 1039835.236 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: 1039835.321 units remaining) + - location: 168 (remaining gas: 1039835.226 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: 1039835.311 units remaining) + - location: 168 (remaining gas: 1039835.216 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: 1039835.301 units remaining) + - location: 168 (remaining gas: 1039835.206 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: 1039835.291 units remaining) + - location: 168 (remaining gas: 1039835.196 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: 1039835.281 units remaining) + - location: 168 (remaining gas: 1039835.186 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: 1039835.271 units remaining) + - location: 168 (remaining gas: 1039835.176 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: 1039835.271 units remaining) + - location: 168 (remaining gas: 1039835.176 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: 1039835.271 units remaining) + - location: 172 (remaining gas: 1039835.176 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: 1039835.261 units remaining) + - location: 175 (remaining gas: 1039835.166 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: 1039835.241 units remaining) + - location: 172 (remaining gas: 1039835.141 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: 1039835.231 units remaining) + - location: 172 (remaining gas: 1039835.131 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: 1039835.221 units remaining) + - location: 172 (remaining gas: 1039835.121 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: 1039835.211 units remaining) + - location: 172 (remaining gas: 1039835.111 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: 1039835.201 units remaining) + - location: 172 (remaining gas: 1039835.101 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: 1039835.191 units remaining) + - location: 172 (remaining gas: 1039835.091 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: 1039835.181 units remaining) + - location: 172 (remaining gas: 1039835.081 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: 1039835.171 units remaining) + - location: 172 (remaining gas: 1039835.071 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: 1039835.161 units remaining) + - location: 172 (remaining gas: 1039835.061 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: 1039835.151 units remaining) + - location: 172 (remaining gas: 1039835.051 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: 1039835.141 units remaining) + - location: 172 (remaining gas: 1039835.041 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: 1039835.141 units remaining) + - location: 172 (remaining gas: 1039835.041 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: 1039835.141 units remaining) + - location: 176 (remaining gas: 1039835.041 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: 1039835.131 units remaining) + - location: 179 (remaining gas: 1039835.031 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: 1039835.111 units remaining) + - location: 176 (remaining gas: 1039835.006 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: 1039835.101 units remaining) + - location: 176 (remaining gas: 1039834.996 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: 1039835.091 units remaining) + - location: 176 (remaining gas: 1039834.986 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: 1039835.081 units remaining) + - location: 176 (remaining gas: 1039834.976 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: 1039835.071 units remaining) + - location: 176 (remaining gas: 1039834.966 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: 1039835.061 units remaining) + - location: 176 (remaining gas: 1039834.956 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: 1039835.051 units remaining) + - location: 176 (remaining gas: 1039834.946 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: 1039835.041 units remaining) + - location: 176 (remaining gas: 1039834.936 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: 1039835.031 units remaining) + - location: 176 (remaining gas: 1039834.926 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: 1039835.021 units remaining) + - location: 176 (remaining gas: 1039834.916 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: 1039835.021 units remaining) + - location: 176 (remaining gas: 1039834.916 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: 1039835.021 units remaining) + - location: 180 (remaining gas: 1039834.916 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: 1039835.011 units remaining) + - location: 183 (remaining gas: 1039834.906 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: 1039834.991 units remaining) + - location: 180 (remaining gas: 1039834.881 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: 1039834.981 units remaining) + - location: 180 (remaining gas: 1039834.871 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: 1039834.971 units remaining) + - location: 180 (remaining gas: 1039834.861 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: 1039834.961 units remaining) + - location: 180 (remaining gas: 1039834.851 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: 1039834.951 units remaining) + - location: 180 (remaining gas: 1039834.841 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: 1039834.941 units remaining) + - location: 180 (remaining gas: 1039834.831 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: 1039834.931 units remaining) + - location: 180 (remaining gas: 1039834.821 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: 1039834.921 units remaining) + - location: 180 (remaining gas: 1039834.811 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: 1039834.911 units remaining) + - location: 180 (remaining gas: 1039834.801 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: 1039834.911 units remaining) + - location: 180 (remaining gas: 1039834.801 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: 1039834.911 units remaining) + - location: 184 (remaining gas: 1039834.801 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: 1039834.901 units remaining) + - location: 187 (remaining gas: 1039834.791 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: 1039834.881 units remaining) + - location: 184 (remaining gas: 1039834.766 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: 1039834.871 units remaining) + - location: 184 (remaining gas: 1039834.756 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: 1039834.861 units remaining) + - location: 184 (remaining gas: 1039834.746 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: 1039834.851 units remaining) + - location: 184 (remaining gas: 1039834.736 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: 1039834.841 units remaining) + - location: 184 (remaining gas: 1039834.726 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: 1039834.831 units remaining) + - location: 184 (remaining gas: 1039834.716 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: 1039834.821 units remaining) + - location: 184 (remaining gas: 1039834.706 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: 1039834.811 units remaining) + - location: 184 (remaining gas: 1039834.696 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: 1039834.811 units remaining) + - location: 184 (remaining gas: 1039834.696 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: 1039834.811 units remaining) + - location: 188 (remaining gas: 1039834.696 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: 1039834.801 units remaining) + - location: 191 (remaining gas: 1039834.686 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: 1039834.781 units remaining) + - location: 188 (remaining gas: 1039834.661 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: 1039834.771 units remaining) + - location: 188 (remaining gas: 1039834.651 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: 1039834.761 units remaining) + - location: 188 (remaining gas: 1039834.641 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: 1039834.751 units remaining) + - location: 188 (remaining gas: 1039834.631 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: 1039834.741 units remaining) + - location: 188 (remaining gas: 1039834.621 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: 1039834.731 units remaining) + - location: 188 (remaining gas: 1039834.611 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: 1039834.721 units remaining) + - location: 188 (remaining gas: 1039834.601 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: 1039834.721 units remaining) + - location: 188 (remaining gas: 1039834.601 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: 1039834.721 units remaining) + - location: 192 (remaining gas: 1039834.601 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: 1039834.711 units remaining) + - location: 195 (remaining gas: 1039834.591 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: 1039834.691 units remaining) + - location: 192 (remaining gas: 1039834.566 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: 1039834.681 units remaining) + - location: 192 (remaining gas: 1039834.556 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: 1039834.671 units remaining) + - location: 192 (remaining gas: 1039834.546 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: 1039834.661 units remaining) + - location: 192 (remaining gas: 1039834.536 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: 1039834.651 units remaining) + - location: 192 (remaining gas: 1039834.526 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: 1039834.641 units remaining) + - location: 192 (remaining gas: 1039834.516 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: 1039834.641 units remaining) + - location: 192 (remaining gas: 1039834.516 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: 1039834.641 units remaining) + - location: 196 (remaining gas: 1039834.516 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: 1039834.631 units remaining) + - location: 199 (remaining gas: 1039834.506 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: 1039834.611 units remaining) + - location: 196 (remaining gas: 1039834.481 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: 1039834.601 units remaining) + - location: 196 (remaining gas: 1039834.471 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: 1039834.591 units remaining) + - location: 196 (remaining gas: 1039834.461 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: 1039834.581 units remaining) + - location: 196 (remaining gas: 1039834.451 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: 1039834.571 units remaining) + - location: 196 (remaining gas: 1039834.441 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: 1039834.571 units remaining) + - location: 196 (remaining gas: 1039834.441 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: 1039834.571 units remaining) + - location: 200 (remaining gas: 1039834.441 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: 1039834.561 units remaining) + - location: 203 (remaining gas: 1039834.431 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: 1039834.541 units remaining) + - location: 200 (remaining gas: 1039834.406 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: 1039834.531 units remaining) + - location: 200 (remaining gas: 1039834.396 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: 1039834.521 units remaining) + - location: 200 (remaining gas: 1039834.386 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: 1039834.511 units remaining) + - location: 200 (remaining gas: 1039834.376 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: 1039834.511 units remaining) + - location: 200 (remaining gas: 1039834.376 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: 1039834.511 units remaining) + - location: 204 (remaining gas: 1039834.376 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: 1039834.501 units remaining) + - location: 207 (remaining gas: 1039834.366 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: 1039834.481 units remaining) + - location: 204 (remaining gas: 1039834.341 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: 1039834.471 units remaining) + - location: 204 (remaining gas: 1039834.331 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: 1039834.461 units remaining) + - location: 204 (remaining gas: 1039834.321 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: 1039834.461 units remaining) + - location: 204 (remaining gas: 1039834.321 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: 1039834.461 units remaining) + - location: 208 (remaining gas: 1039834.321 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: 1039834.451 units remaining) + - location: 211 (remaining gas: 1039834.311 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: 1039834.431 units remaining) + - location: 208 (remaining gas: 1039834.286 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: 1039834.421 units remaining) + - location: 208 (remaining gas: 1039834.276 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: 1039834.421 units remaining) + - location: 208 (remaining gas: 1039834.276 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: 1039834.421 units remaining) + - location: 212 (remaining gas: 1039834.276 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: 1039834.411 units remaining) + - location: 214 (remaining gas: 1039834.266 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: 1039834.391 units remaining) + - location: 212 (remaining gas: 1039834.241 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: 1039834.381 units remaining) + - location: 215 (remaining gas: 1039834.231 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: 1039833.626 units remaining) + - location: 218 (remaining gas: 1039833.476 units remaining) [ 0 ] - - location: 219 (remaining gas: 1039833.616 units remaining) + - location: 219 (remaining gas: 1039833.466 units remaining) [ True ] - - location: 220 (remaining gas: 1039833.616 units remaining) + - location: 220 (remaining gas: 1039833.466 units remaining) [ ] - - location: 220 (remaining gas: 1039833.606 units remaining) + - location: 220 (remaining gas: 1039833.451 units remaining) [ ] - - location: 226 (remaining gas: 1039833.596 units remaining) + - location: 226 (remaining gas: 1039833.441 units remaining) [ Unit ] - - location: 227 (remaining gas: 1039833.586 units remaining) + - location: 227 (remaining gas: 1039833.431 units remaining) [ {} Unit ] - - location: 229 (remaining gas: 1039833.576 units remaining) + - location: 229 (remaining gas: 1039833.421 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 a4da22a1b0c1..38fda574b226 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 @@ -51,11 +51,11 @@ trace [ 4 ] - location: 27 (remaining gas: 1039987.898 units remaining) [ ] - - location: 22 (remaining gas: 1039987.878 units remaining) + - location: 22 (remaining gas: 1039987.873 units remaining) [ 5 ] - - location: 28 (remaining gas: 1039987.868 units remaining) + - location: 28 (remaining gas: 1039987.863 units remaining) [ {} 5 ] - - location: 30 (remaining gas: 1039987.858 units remaining) + - location: 30 (remaining gas: 1039987.853 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 6ba098bd84da..d59d6a06901f 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 @@ -23,14 +23,14 @@ trace 1 ] - location: 16 (remaining gas: 1039992.023 units remaining) [ 2 ] - - location: 14 (remaining gas: 1039992.003 units remaining) + - location: 14 (remaining gas: 1039991.998 units remaining) [ 1 2 ] - - location: 17 (remaining gas: 1039991.993 units remaining) + - location: 17 (remaining gas: 1039991.988 units remaining) [ (Pair 1 2) ] - - location: 18 (remaining gas: 1039991.983 units remaining) + - location: 18 (remaining gas: 1039991.978 units remaining) [ {} (Pair 1 2) ] - - location: 20 (remaining gas: 1039991.973 units remaining) + - location: 20 (remaining gas: 1039991.968 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 cd96aee20413..e299e206e680 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 @@ -23,14 +23,14 @@ trace 9 ] - location: 16 (remaining gas: 1039992.023 units remaining) [ 24 ] - - location: 14 (remaining gas: 1039992.003 units remaining) + - location: 14 (remaining gas: 1039991.998 units remaining) [ 15 24 ] - - location: 17 (remaining gas: 1039991.993 units remaining) + - location: 17 (remaining gas: 1039991.988 units remaining) [ (Pair 15 24) ] - - location: 18 (remaining gas: 1039991.983 units remaining) + - location: 18 (remaining gas: 1039991.978 units remaining) [ {} (Pair 15 24) ] - - location: 20 (remaining gas: 1039991.973 units remaining) + - location: 20 (remaining gas: 1039991.968 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 0e18cd22dcce..dce8d8ccd17e 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 @@ -33,61 +33,61 @@ trace [ ] - location: 23 (remaining gas: 1039986.735 units remaining) [ 6 ] - - location: 20 (remaining gas: 1039986.715 units remaining) + - location: 20 (remaining gas: 1039986.710 units remaining) [ 5 6 ] - - location: 20 (remaining gas: 1039986.705 units remaining) + - location: 20 (remaining gas: 1039986.700 units remaining) [ 4 5 6 ] - - location: 20 (remaining gas: 1039986.695 units remaining) + - location: 20 (remaining gas: 1039986.690 units remaining) [ 3 4 5 6 ] - - location: 20 (remaining gas: 1039986.685 units remaining) + - location: 20 (remaining gas: 1039986.680 units remaining) [ 2 3 4 5 6 ] - - location: 20 (remaining gas: 1039986.675 units remaining) + - location: 20 (remaining gas: 1039986.670 units remaining) [ 1 2 3 4 5 6 ] - - location: 20 (remaining gas: 1039986.675 units remaining) + - location: 20 (remaining gas: 1039986.670 units remaining) [ 1 2 3 4 5 6 ] - - location: 26 (remaining gas: 1039986.665 units remaining) + - location: 26 (remaining gas: 1039986.660 units remaining) [ 2 3 4 5 6 ] - - location: 27 (remaining gas: 1039986.655 units remaining) + - location: 27 (remaining gas: 1039986.650 units remaining) [ 3 4 5 6 ] - - location: 28 (remaining gas: 1039986.645 units remaining) + - location: 28 (remaining gas: 1039986.640 units remaining) [ 4 5 6 ] - - location: 29 (remaining gas: 1039986.635 units remaining) + - location: 29 (remaining gas: 1039986.630 units remaining) [ 5 6 ] - - location: 30 (remaining gas: 1039986.625 units remaining) + - location: 30 (remaining gas: 1039986.620 units remaining) [ 6 ] - - location: 31 (remaining gas: 1039986.615 units remaining) + - location: 31 (remaining gas: 1039986.610 units remaining) [ {} 6 ] - - location: 33 (remaining gas: 1039986.605 units remaining) + - location: 33 (remaining gas: 1039986.600 units remaining) [ (Pair {} 6) ] 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 ebb21e58df89..0a08f3ca651a 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 @@ -66,20 +66,20 @@ trace 3 4 5 ] - - location: 32 (remaining gas: 1039957.626 units remaining) + - location: 32 (remaining gas: 1039957.621 units remaining) [ 1 2 3 4 5 ] - - location: 38 (remaining gas: 1039957.604 units remaining) + - location: 38 (remaining gas: 1039957.599 units remaining) [ 2 1 2 3 4 5 ] - - location: 40 (remaining gas: 1039957.594 units remaining) + - location: 40 (remaining gas: 1039957.589 units remaining) [ 2 2 1 @@ -87,40 +87,40 @@ trace 3 4 5 ] - - location: 45 (remaining gas: 1039957.559 units remaining) + - location: 45 (remaining gas: 1039957.554 units remaining) [ 0 1 2 3 4 5 ] - - location: 46 (remaining gas: 1039957.549 units remaining) + - location: 46 (remaining gas: 1039957.544 units remaining) [ True 1 2 3 4 5 ] - - location: 47 (remaining gas: 1039957.549 units remaining) + - location: 47 (remaining gas: 1039957.544 units remaining) [ 1 2 3 4 5 ] - - location: 47 (remaining gas: 1039957.539 units remaining) + - location: 47 (remaining gas: 1039957.529 units remaining) [ 1 2 3 4 5 ] - - location: 53 (remaining gas: 1039957.516 units remaining) + - location: 53 (remaining gas: 1039957.506 units remaining) [ 3 1 2 3 4 5 ] - - location: 55 (remaining gas: 1039957.506 units remaining) + - location: 55 (remaining gas: 1039957.496 units remaining) [ 3 3 1 @@ -128,40 +128,40 @@ trace 3 4 5 ] - - location: 60 (remaining gas: 1039957.471 units remaining) + - location: 60 (remaining gas: 1039957.461 units remaining) [ 0 1 2 3 4 5 ] - - location: 61 (remaining gas: 1039957.461 units remaining) + - location: 61 (remaining gas: 1039957.451 units remaining) [ True 1 2 3 4 5 ] - - location: 62 (remaining gas: 1039957.461 units remaining) + - location: 62 (remaining gas: 1039957.451 units remaining) [ 1 2 3 4 5 ] - - location: 62 (remaining gas: 1039957.451 units remaining) + - location: 62 (remaining gas: 1039957.436 units remaining) [ 1 2 3 4 5 ] - - location: 68 (remaining gas: 1039957.426 units remaining) + - location: 68 (remaining gas: 1039957.411 units remaining) [ 4 1 2 3 4 5 ] - - location: 70 (remaining gas: 1039957.416 units remaining) + - location: 70 (remaining gas: 1039957.401 units remaining) [ 4 4 1 @@ -169,40 +169,40 @@ trace 3 4 5 ] - - location: 75 (remaining gas: 1039957.381 units remaining) + - location: 75 (remaining gas: 1039957.366 units remaining) [ 0 1 2 3 4 5 ] - - location: 76 (remaining gas: 1039957.371 units remaining) + - location: 76 (remaining gas: 1039957.356 units remaining) [ True 1 2 3 4 5 ] - - location: 77 (remaining gas: 1039957.371 units remaining) + - location: 77 (remaining gas: 1039957.356 units remaining) [ 1 2 3 4 5 ] - - location: 77 (remaining gas: 1039957.361 units remaining) + - location: 77 (remaining gas: 1039957.341 units remaining) [ 1 2 3 4 5 ] - - location: 83 (remaining gas: 1039957.335 units remaining) + - location: 83 (remaining gas: 1039957.315 units remaining) [ 5 1 2 3 4 5 ] - - location: 85 (remaining gas: 1039957.325 units remaining) + - location: 85 (remaining gas: 1039957.305 units remaining) [ 5 5 1 @@ -210,39 +210,39 @@ trace 3 4 5 ] - - location: 90 (remaining gas: 1039957.290 units remaining) + - location: 90 (remaining gas: 1039957.270 units remaining) [ 0 1 2 3 4 5 ] - - location: 91 (remaining gas: 1039957.280 units remaining) + - location: 91 (remaining gas: 1039957.260 units remaining) [ True 1 2 3 4 5 ] - - location: 92 (remaining gas: 1039957.280 units remaining) + - location: 92 (remaining gas: 1039957.260 units remaining) [ 1 2 3 4 5 ] - - location: 92 (remaining gas: 1039957.270 units remaining) + - location: 92 (remaining gas: 1039957.245 units remaining) [ 1 2 3 4 5 ] - - location: 98 (remaining gas: 1039957.228 units remaining) + - location: 98 (remaining gas: 1039957.203 units remaining) [ ] - - location: 100 (remaining gas: 1039957.218 units remaining) + - location: 100 (remaining gas: 1039957.193 units remaining) [ Unit ] - - location: 101 (remaining gas: 1039957.208 units remaining) + - location: 101 (remaining gas: 1039957.183 units remaining) [ {} Unit ] - - location: 103 (remaining gas: 1039957.198 units remaining) + - location: 103 (remaining gas: 1039957.173 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 8a2163c87cd6..00e020f71ba4 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 @@ -28,115 +28,115 @@ trace - location: 31 (remaining gas: 1039974.368 units remaining) [ 2 (Pair -8 2) ] - - location: 29 (remaining gas: 1039974.348 units remaining) + - location: 29 (remaining gas: 1039974.343 units remaining) [ 8 2 (Pair -8 2) ] - - location: 32 (remaining gas: 1039974.243 units remaining) + - location: 32 (remaining gas: 1039974.238 units remaining) [ (Some (Pair 4 0)) (Pair -8 2) ] - - location: 33 (remaining gas: 1039974.233 units remaining) + - location: 33 (remaining gas: 1039974.228 units remaining) [ (Pair -8 2) (Some (Pair 4 0)) ] - - location: 34 (remaining gas: 1039974.223 units remaining) + - location: 34 (remaining gas: 1039974.218 units remaining) [ (Pair -8 2) (Pair -8 2) (Some (Pair 4 0)) ] - - location: 35 (remaining gas: 1039974.213 units remaining) + - location: 35 (remaining gas: 1039974.208 units remaining) [ -8 2 (Pair -8 2) (Some (Pair 4 0)) ] - - location: 36 (remaining gas: 1039974.193 units remaining) + - location: 36 (remaining gas: 1039974.188 units remaining) [ 8 2 (Pair -8 2) (Some (Pair 4 0)) ] - - location: 37 (remaining gas: 1039974.088 units remaining) + - location: 37 (remaining gas: 1039974.083 units remaining) [ (Some (Pair 4 0)) (Pair -8 2) (Some (Pair 4 0)) ] - - location: 38 (remaining gas: 1039974.078 units remaining) + - location: 38 (remaining gas: 1039974.073 units remaining) [ (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 39 (remaining gas: 1039974.068 units remaining) + - location: 39 (remaining gas: 1039974.063 units remaining) [ (Pair -8 2) (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 40 (remaining gas: 1039974.058 units remaining) + - location: 40 (remaining gas: 1039974.053 units remaining) [ -8 2 (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 41 (remaining gas: 1039974.058 units remaining) + - location: 41 (remaining gas: 1039974.053 units remaining) [ 2 (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 43 (remaining gas: 1039974.038 units remaining) + - location: 43 (remaining gas: 1039974.033 units remaining) [ 2 (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 41 (remaining gas: 1039974.018 units remaining) + - location: 41 (remaining gas: 1039974.008 units remaining) [ -8 2 (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 44 (remaining gas: 1039973.913 units remaining) + - location: 44 (remaining gas: 1039973.903 units remaining) [ (Some (Pair -4 0)) (Pair -8 2) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 45 (remaining gas: 1039973.903 units remaining) + - location: 45 (remaining gas: 1039973.893 units remaining) [ (Pair -8 2) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 46 (remaining gas: 1039973.893 units remaining) + - location: 46 (remaining gas: 1039973.883 units remaining) [ -8 2 (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 47 (remaining gas: 1039973.788 units remaining) + - location: 47 (remaining gas: 1039973.778 units remaining) [ (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 49 (remaining gas: 1039973.788 units remaining) + - location: 49 (remaining gas: 1039973.778 units remaining) [ (Some (Pair 4 0)) (Some (Pair 4 0)) ] - - location: 52 (remaining gas: 1039973.778 units remaining) + - location: 52 (remaining gas: 1039973.768 units remaining) [ (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 49 (remaining gas: 1039973.758 units remaining) + - location: 49 (remaining gas: 1039973.743 units remaining) [ (Some (Pair -4 0)) (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 49 (remaining gas: 1039973.748 units remaining) + - location: 49 (remaining gas: 1039973.733 units remaining) [ (Some (Pair -4 0)) (Some (Pair -4 0)) (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 49 (remaining gas: 1039973.748 units remaining) + - location: 49 (remaining gas: 1039973.733 units remaining) [ (Some (Pair -4 0)) (Some (Pair -4 0)) (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 53 (remaining gas: 1039973.748 units remaining) + - location: 53 (remaining gas: 1039973.733 units remaining) [ (Some (Pair -4 0)) (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 55 (remaining gas: 1039973.738 units remaining) + - location: 55 (remaining gas: 1039973.723 units remaining) [ (Pair (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 53 (remaining gas: 1039973.718 units remaining) + - location: 53 (remaining gas: 1039973.698 units remaining) [ (Some (Pair -4 0)) (Pair (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 56 (remaining gas: 1039973.708 units remaining) + - location: 56 (remaining gas: 1039973.688 units remaining) [ (Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 57 (remaining gas: 1039973.698 units remaining) + - location: 57 (remaining gas: 1039973.678 units remaining) [ {} (Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 59 (remaining gas: 1039973.688 units remaining) + - location: 59 (remaining gas: 1039973.668 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 4c344786f295..1953b7a0ef5d 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 @@ -28,115 +28,115 @@ trace - location: 31 (remaining gas: 1039974.368 units remaining) [ 3 (Pair 10 -3) ] - - location: 29 (remaining gas: 1039974.348 units remaining) + - location: 29 (remaining gas: 1039974.343 units remaining) [ 10 3 (Pair 10 -3) ] - - location: 32 (remaining gas: 1039974.243 units remaining) + - location: 32 (remaining gas: 1039974.238 units remaining) [ (Some (Pair 3 1)) (Pair 10 -3) ] - - location: 33 (remaining gas: 1039974.233 units remaining) + - location: 33 (remaining gas: 1039974.228 units remaining) [ (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 34 (remaining gas: 1039974.223 units remaining) + - location: 34 (remaining gas: 1039974.218 units remaining) [ (Pair 10 -3) (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 35 (remaining gas: 1039974.213 units remaining) + - location: 35 (remaining gas: 1039974.208 units remaining) [ 10 -3 (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 36 (remaining gas: 1039974.193 units remaining) + - location: 36 (remaining gas: 1039974.188 units remaining) [ 10 -3 (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 37 (remaining gas: 1039974.088 units remaining) + - location: 37 (remaining gas: 1039974.083 units remaining) [ (Some (Pair -3 1)) (Pair 10 -3) (Some (Pair 3 1)) ] - - location: 38 (remaining gas: 1039974.078 units remaining) + - location: 38 (remaining gas: 1039974.073 units remaining) [ (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 39 (remaining gas: 1039974.068 units remaining) + - location: 39 (remaining gas: 1039974.063 units remaining) [ (Pair 10 -3) (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 40 (remaining gas: 1039974.058 units remaining) + - location: 40 (remaining gas: 1039974.053 units remaining) [ 10 -3 (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 41 (remaining gas: 1039974.058 units remaining) + - location: 41 (remaining gas: 1039974.053 units remaining) [ -3 (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 43 (remaining gas: 1039974.038 units remaining) + - location: 43 (remaining gas: 1039974.033 units remaining) [ 3 (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 41 (remaining gas: 1039974.018 units remaining) + - location: 41 (remaining gas: 1039974.008 units remaining) [ 10 3 (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 44 (remaining gas: 1039973.913 units remaining) + - location: 44 (remaining gas: 1039973.903 units remaining) [ (Some (Pair 3 1)) (Pair 10 -3) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 45 (remaining gas: 1039973.903 units remaining) + - location: 45 (remaining gas: 1039973.893 units remaining) [ (Pair 10 -3) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 46 (remaining gas: 1039973.893 units remaining) + - location: 46 (remaining gas: 1039973.883 units remaining) [ 10 -3 (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 47 (remaining gas: 1039973.788 units remaining) + - location: 47 (remaining gas: 1039973.778 units remaining) [ (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 49 (remaining gas: 1039973.788 units remaining) + - location: 49 (remaining gas: 1039973.778 units remaining) [ (Some (Pair -3 1)) (Some (Pair 3 1)) ] - - location: 52 (remaining gas: 1039973.778 units remaining) + - location: 52 (remaining gas: 1039973.768 units remaining) [ (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 49 (remaining gas: 1039973.758 units remaining) + - location: 49 (remaining gas: 1039973.743 units remaining) [ (Some (Pair 3 1)) (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 49 (remaining gas: 1039973.748 units remaining) + - location: 49 (remaining gas: 1039973.733 units remaining) [ (Some (Pair -3 1)) (Some (Pair 3 1)) (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 49 (remaining gas: 1039973.748 units remaining) + - location: 49 (remaining gas: 1039973.733 units remaining) [ (Some (Pair -3 1)) (Some (Pair 3 1)) (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 53 (remaining gas: 1039973.748 units remaining) + - location: 53 (remaining gas: 1039973.733 units remaining) [ (Some (Pair 3 1)) (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 55 (remaining gas: 1039973.738 units remaining) + - location: 55 (remaining gas: 1039973.723 units remaining) [ (Pair (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 53 (remaining gas: 1039973.718 units remaining) + - location: 53 (remaining gas: 1039973.698 units remaining) [ (Some (Pair -3 1)) (Pair (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 56 (remaining gas: 1039973.708 units remaining) + - location: 56 (remaining gas: 1039973.688 units remaining) [ (Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 57 (remaining gas: 1039973.698 units remaining) + - location: 57 (remaining gas: 1039973.678 units remaining) [ {} (Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 59 (remaining gas: 1039973.688 units remaining) + - location: 59 (remaining gas: 1039973.668 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 0ff7b2d13503..1613d94798ea 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 @@ -28,115 +28,115 @@ trace - location: 31 (remaining gas: 1039974.368 units remaining) [ 0 (Pair 10 0) ] - - location: 29 (remaining gas: 1039974.348 units remaining) + - location: 29 (remaining gas: 1039974.343 units remaining) [ 10 0 (Pair 10 0) ] - - location: 32 (remaining gas: 1039974.243 units remaining) + - location: 32 (remaining gas: 1039974.238 units remaining) [ None (Pair 10 0) ] - - location: 33 (remaining gas: 1039974.233 units remaining) + - location: 33 (remaining gas: 1039974.228 units remaining) [ (Pair 10 0) None ] - - location: 34 (remaining gas: 1039974.223 units remaining) + - location: 34 (remaining gas: 1039974.218 units remaining) [ (Pair 10 0) (Pair 10 0) None ] - - location: 35 (remaining gas: 1039974.213 units remaining) + - location: 35 (remaining gas: 1039974.208 units remaining) [ 10 0 (Pair 10 0) None ] - - location: 36 (remaining gas: 1039974.193 units remaining) + - location: 36 (remaining gas: 1039974.188 units remaining) [ 10 0 (Pair 10 0) None ] - - location: 37 (remaining gas: 1039974.088 units remaining) + - location: 37 (remaining gas: 1039974.083 units remaining) [ None (Pair 10 0) None ] - - location: 38 (remaining gas: 1039974.078 units remaining) + - location: 38 (remaining gas: 1039974.073 units remaining) [ (Pair 10 0) None None ] - - location: 39 (remaining gas: 1039974.068 units remaining) + - location: 39 (remaining gas: 1039974.063 units remaining) [ (Pair 10 0) (Pair 10 0) None None ] - - location: 40 (remaining gas: 1039974.058 units remaining) + - location: 40 (remaining gas: 1039974.053 units remaining) [ 10 0 (Pair 10 0) None None ] - - location: 41 (remaining gas: 1039974.058 units remaining) + - location: 41 (remaining gas: 1039974.053 units remaining) [ 0 (Pair 10 0) None None ] - - location: 43 (remaining gas: 1039974.038 units remaining) + - location: 43 (remaining gas: 1039974.033 units remaining) [ 0 (Pair 10 0) None None ] - - location: 41 (remaining gas: 1039974.018 units remaining) + - location: 41 (remaining gas: 1039974.008 units remaining) [ 10 0 (Pair 10 0) None None ] - - location: 44 (remaining gas: 1039973.913 units remaining) + - location: 44 (remaining gas: 1039973.903 units remaining) [ None (Pair 10 0) None None ] - - location: 45 (remaining gas: 1039973.903 units remaining) + - location: 45 (remaining gas: 1039973.893 units remaining) [ (Pair 10 0) None None None ] - - location: 46 (remaining gas: 1039973.893 units remaining) + - location: 46 (remaining gas: 1039973.883 units remaining) [ 10 0 None None None ] - - location: 47 (remaining gas: 1039973.788 units remaining) + - location: 47 (remaining gas: 1039973.778 units remaining) [ None None None None ] - - location: 49 (remaining gas: 1039973.788 units remaining) + - location: 49 (remaining gas: 1039973.778 units remaining) [ None None ] - - location: 52 (remaining gas: 1039973.778 units remaining) + - location: 52 (remaining gas: 1039973.768 units remaining) [ (Pair None None) ] - - location: 49 (remaining gas: 1039973.758 units remaining) + - location: 49 (remaining gas: 1039973.743 units remaining) [ None (Pair None None) ] - - location: 49 (remaining gas: 1039973.748 units remaining) + - location: 49 (remaining gas: 1039973.733 units remaining) [ None None (Pair None None) ] - - location: 49 (remaining gas: 1039973.748 units remaining) + - location: 49 (remaining gas: 1039973.733 units remaining) [ None None (Pair None None) ] - - location: 53 (remaining gas: 1039973.748 units remaining) + - location: 53 (remaining gas: 1039973.733 units remaining) [ None (Pair None None) ] - - location: 55 (remaining gas: 1039973.738 units remaining) + - location: 55 (remaining gas: 1039973.723 units remaining) [ (Pair None None None) ] - - location: 53 (remaining gas: 1039973.718 units remaining) + - location: 53 (remaining gas: 1039973.698 units remaining) [ None (Pair None None None) ] - - location: 56 (remaining gas: 1039973.708 units remaining) + - location: 56 (remaining gas: 1039973.688 units remaining) [ (Pair None None None None) ] - - location: 57 (remaining gas: 1039973.698 units remaining) + - location: 57 (remaining gas: 1039973.678 units remaining) [ {} (Pair None None None None) ] - - location: 59 (remaining gas: 1039973.688 units remaining) + - location: 59 (remaining gas: 1039973.668 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 2b3fcbb39262..ae3fca03fd0f 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 @@ -27,11 +27,11 @@ trace [ None ] - location: 26 (remaining gas: 1039985.861 units remaining) [ (Left None) ] - - location: 22 (remaining gas: 1039985.851 units remaining) + - location: 22 (remaining gas: 1039985.846 units remaining) [ (Left None) ] - - location: 39 (remaining gas: 1039985.841 units remaining) + - location: 39 (remaining gas: 1039985.836 units remaining) [ {} (Left None) ] - - location: 41 (remaining gas: 1039985.831 units remaining) + - location: 41 (remaining gas: 1039985.826 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 9f8ba0381737..53e2fc3c0856 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 @@ -27,11 +27,11 @@ trace [ (Some (Pair 1 0)) ] - location: 26 (remaining gas: 1039985.861 units remaining) [ (Left (Some (Pair 1 0))) ] - - location: 22 (remaining gas: 1039985.851 units remaining) + - location: 22 (remaining gas: 1039985.846 units remaining) [ (Left (Some (Pair 1 0))) ] - - location: 39 (remaining gas: 1039985.841 units remaining) + - location: 39 (remaining gas: 1039985.836 units remaining) [ {} (Left (Some (Pair 1 0))) ] - - location: 41 (remaining gas: 1039985.831 units remaining) + - location: 41 (remaining gas: 1039985.826 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 0cfe49550e90..8b5ef419757f 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 @@ -27,11 +27,11 @@ trace [ (Some (Pair 3 1)) ] - location: 26 (remaining gas: 1039985.861 units remaining) [ (Left (Some (Pair 3 1))) ] - - location: 22 (remaining gas: 1039985.851 units remaining) + - location: 22 (remaining gas: 1039985.846 units remaining) [ (Left (Some (Pair 3 1))) ] - - location: 39 (remaining gas: 1039985.841 units remaining) + - location: 39 (remaining gas: 1039985.836 units remaining) [ {} (Left (Some (Pair 3 1))) ] - - location: 41 (remaining gas: 1039985.831 units remaining) + - location: 41 (remaining gas: 1039985.826 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 90eca06b0dcb..750c2d14a7cd 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 @@ -27,11 +27,11 @@ trace [ None ] - location: 34 (remaining gas: 1039985.871 units remaining) [ (Right None) ] - - location: 22 (remaining gas: 1039985.861 units remaining) + - location: 22 (remaining gas: 1039985.856 units remaining) [ (Right None) ] - - location: 39 (remaining gas: 1039985.851 units remaining) + - location: 39 (remaining gas: 1039985.846 units remaining) [ {} (Right None) ] - - location: 41 (remaining gas: 1039985.841 units remaining) + - location: 41 (remaining gas: 1039985.836 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 3cde310a08a6..a49fa18f3548 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 @@ -27,11 +27,11 @@ trace [ (Some (Pair 1 0)) ] - location: 34 (remaining gas: 1039985.871 units remaining) [ (Right (Some (Pair 1 0))) ] - - location: 22 (remaining gas: 1039985.861 units remaining) + - location: 22 (remaining gas: 1039985.856 units remaining) [ (Right (Some (Pair 1 0))) ] - - location: 39 (remaining gas: 1039985.851 units remaining) + - location: 39 (remaining gas: 1039985.846 units remaining) [ {} (Right (Some (Pair 1 0))) ] - - location: 41 (remaining gas: 1039985.841 units remaining) + - location: 41 (remaining gas: 1039985.836 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 97b1785e7ed5..b6221db7ed1e 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 @@ -27,11 +27,11 @@ trace [ (Some (Pair 3 1)) ] - location: 34 (remaining gas: 1039985.871 units remaining) [ (Right (Some (Pair 3 1))) ] - - location: 22 (remaining gas: 1039985.861 units remaining) + - location: 22 (remaining gas: 1039985.856 units remaining) [ (Right (Some (Pair 3 1))) ] - - location: 39 (remaining gas: 1039985.851 units remaining) + - location: 39 (remaining gas: 1039985.846 units remaining) [ {} (Right (Some (Pair 3 1))) ] - - location: 41 (remaining gas: 1039985.841 units remaining) + - location: 41 (remaining gas: 1039985.836 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 87571c28443c..dd8f1a4a9c97 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 @@ -27,11 +27,11 @@ trace [ (Some (Pair 0 5)) ] - location: 34 (remaining gas: 1039985.871 units remaining) [ (Right (Some (Pair 0 5))) ] - - location: 22 (remaining gas: 1039985.861 units remaining) + - location: 22 (remaining gas: 1039985.856 units remaining) [ (Right (Some (Pair 0 5))) ] - - location: 39 (remaining gas: 1039985.851 units remaining) + - location: 39 (remaining gas: 1039985.846 units remaining) [ {} (Right (Some (Pair 0 5))) ] - - location: 41 (remaining gas: 1039985.841 units remaining) + - location: 41 (remaining gas: 1039985.836 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[emit.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out index 69e4056e2c31..476819485d73 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[emit.tz-Unit-Unit-Unit].out @@ -28,44 +28,44 @@ trace - location: 12 (remaining gas: 1039986.825 units remaining) [ (Left 10) Unit ] - - location: 14 (remaining gas: 1039986.378 units remaining) + - location: 14 (remaining gas: 1039986.338 units remaining) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 15 (remaining gas: 1039986.368 units remaining) + - location: 15 (remaining gas: 1039986.328 units remaining) [ "lorem ipsum" 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 18 (remaining gas: 1039986.358 units remaining) + - location: 18 (remaining gas: 1039986.318 units remaining) [ (Right "lorem ipsum") 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 20 (remaining gas: 1039985.826 units remaining) + - location: 20 (remaining gas: 1039985.746 units remaining) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 24 (remaining gas: 1039985.816 units remaining) + - location: 24 (remaining gas: 1039985.736 units remaining) [ {} 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 26 (remaining gas: 1039985.806 units remaining) + - location: 26 (remaining gas: 1039985.726 units remaining) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d {} 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 27 (remaining gas: 1039985.796 units remaining) + - location: 27 (remaining gas: 1039985.716 units remaining) [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a Unit ] - - location: 28 (remaining gas: 1039985.786 units remaining) + - location: 28 (remaining gas: 1039985.706 units remaining) [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } Unit ] - - location: 29 (remaining gas: 1039985.776 units remaining) + - location: 29 (remaining gas: 1039985.696 units remaining) [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a ; 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } Unit ] - - location: 30 (remaining gas: 1039985.766 units remaining) + - location: 30 (remaining gas: 1039985.686 units remaining) [ (Pair { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a ; 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } Unit) ] 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 e7d10c4ca78b..4cd059a3cfb3 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" @@ -11,23 +11,23 @@ trace [ (Pair Unit {}) ] - location: 9 (remaining gas: 1039991.611 units remaining) [ ] - - location: 10 (remaining gas: 1039991.391 units remaining) + - location: 10 (remaining gas: 1039991.311 units remaining) [ {} ] - - location: 13 (remaining gas: 1039991.381 units remaining) + - location: 13 (remaining gas: 1039991.301 units remaining) [ "world" {} ] - - location: 16 (remaining gas: 1039991.371 units remaining) + - location: 16 (remaining gas: 1039991.291 units remaining) [ (Some "world") {} ] - - location: 17 (remaining gas: 1039991.361 units remaining) + - location: 17 (remaining gas: 1039991.281 units remaining) [ "hello" (Some "world") {} ] - - location: 20 (remaining gas: 1039991.271 units remaining) + - location: 20 (remaining gas: 1039991.191 units remaining) [ { Elt "hello" "world" } ] - - location: 21 (remaining gas: 1039991.261 units remaining) + - location: 21 (remaining gas: 1039991.181 units remaining) [ {} { Elt "hello" "world" } ] - - location: 23 (remaining gas: 1039991.251 units remaining) + - location: 23 (remaining gas: 1039991.171 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 8fa3dd651dc3..a77441bee4e7 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" @@ -36,13 +36,13 @@ trace { "_abc" } ] - location: 20 (remaining gas: 1039989.009 units remaining) [ { "" ; "_abc" } ] - - location: 21 (remaining gas: 1039988.889 units remaining) + - location: 21 (remaining gas: 1039988.887 units remaining) [ "_abc" ] - - location: 23 (remaining gas: 1039988.869 units remaining) + - location: 23 (remaining gas: 1039988.862 units remaining) [ "_abc" ] - - location: 24 (remaining gas: 1039988.859 units remaining) + - location: 24 (remaining gas: 1039988.852 units remaining) [ {} "_abc" ] - - location: 26 (remaining gas: 1039988.849 units remaining) + - location: 26 (remaining gas: 1039988.842 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 abc680533020..caeccaefb8d9 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" @@ -36,13 +36,13 @@ trace { "_abc" } ] - location: 20 (remaining gas: 1039988.969 units remaining) [ { "test" ; "_abc" } ] - - location: 21 (remaining gas: 1039988.849 units remaining) + - location: 21 (remaining gas: 1039988.845 units remaining) [ "test_abc" ] - - location: 23 (remaining gas: 1039988.829 units remaining) + - location: 23 (remaining gas: 1039988.820 units remaining) [ "test_abc" ] - - location: 24 (remaining gas: 1039988.819 units remaining) + - location: 24 (remaining gas: 1039988.810 units remaining) [ {} "test_abc" ] - - location: 26 (remaining gas: 1039988.809 units remaining) + - location: 26 (remaining gas: 1039988.800 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 1a2fd10da4e0..1d078c94ef0b 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 @@ -18,13 +18,13 @@ trace [ { 2 ; 3 ; 4 } ] - location: 13 (remaining gas: 1039992.158 units remaining) [ ] - - location: 11 (remaining gas: 1039992.138 units remaining) + - location: 11 (remaining gas: 1039992.133 units remaining) [ 1 ] - - location: 9 (remaining gas: 1039992.128 units remaining) + - location: 9 (remaining gas: 1039992.118 units remaining) [ 1 ] - - location: 18 (remaining gas: 1039992.118 units remaining) + - location: 18 (remaining gas: 1039992.108 units remaining) [ {} 1 ] - - location: 20 (remaining gas: 1039992.108 units remaining) + - location: 20 (remaining gas: 1039992.098 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 7d5ef42ec8b2..85b4d1df418e 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 @@ -18,13 +18,13 @@ trace [ {} ] - location: 13 (remaining gas: 1039992.458 units remaining) [ ] - - location: 11 (remaining gas: 1039992.438 units remaining) + - location: 11 (remaining gas: 1039992.433 units remaining) [ 4 ] - - location: 9 (remaining gas: 1039992.428 units remaining) + - location: 9 (remaining gas: 1039992.418 units remaining) [ 4 ] - - location: 18 (remaining gas: 1039992.418 units remaining) + - location: 18 (remaining gas: 1039992.408 units remaining) [ {} 4 ] - - location: 20 (remaining gas: 1039992.408 units remaining) + - location: 20 (remaining gas: 1039992.398 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 ddb0c493f1dd..81e2ffbcef26 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" @@ -17,18 +17,18 @@ trace - location: 16 (remaining gas: 1039991.901 units remaining) [ (Some 4) {} ] - - location: 14 (remaining gas: 1039991.881 units remaining) + - location: 14 (remaining gas: 1039991.876 units remaining) [ "hello" (Some 4) {} ] - - location: 17 (remaining gas: 1039991.786 units remaining) + - location: 17 (remaining gas: 1039991.781 units remaining) [ None { Elt "hello" 4 } ] - - location: 18 (remaining gas: 1039991.776 units remaining) + - location: 18 (remaining gas: 1039991.771 units remaining) [ (Pair None { Elt "hello" 4 }) ] - - location: 19 (remaining gas: 1039991.766 units remaining) + - location: 19 (remaining gas: 1039991.761 units remaining) [ {} (Pair None { Elt "hello" 4 }) ] - - location: 21 (remaining gas: 1039991.756 units remaining) + - location: 21 (remaining gas: 1039991.751 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 aaba5770cf0e..b517ef8f3eed 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" @@ -17,18 +17,18 @@ trace - location: 16 (remaining gas: 1039991.577 units remaining) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039991.557 units remaining) + - location: 14 (remaining gas: 1039991.552 units remaining) [ "hi" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039991.465 units remaining) + - location: 17 (remaining gas: 1039991.460 units remaining) [ None { Elt "hello" 4 ; Elt "hi" 5 } ] - - location: 18 (remaining gas: 1039991.455 units remaining) + - location: 18 (remaining gas: 1039991.450 units remaining) [ (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 19 (remaining gas: 1039991.445 units remaining) + - location: 19 (remaining gas: 1039991.440 units remaining) [ {} (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 21 (remaining gas: 1039991.435 units remaining) + - location: 21 (remaining gas: 1039991.430 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 5c4760e6d8ea..eec6208f50f4 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" @@ -17,18 +17,18 @@ trace - location: 16 (remaining gas: 1039991.547 units remaining) [ (Some 5) { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039991.527 units remaining) + - location: 14 (remaining gas: 1039991.522 units remaining) [ "hello" (Some 5) { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039991.417 units remaining) + - location: 17 (remaining gas: 1039991.412 units remaining) [ (Some 4) { Elt "hello" 5 } ] - - location: 18 (remaining gas: 1039991.407 units remaining) + - location: 18 (remaining gas: 1039991.402 units remaining) [ (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 19 (remaining gas: 1039991.397 units remaining) + - location: 19 (remaining gas: 1039991.392 units remaining) [ {} (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 21 (remaining gas: 1039991.387 units remaining) + - location: 21 (remaining gas: 1039991.382 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 135f0652afc1..31b00c27ce77 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" @@ -17,18 +17,18 @@ trace - location: 16 (remaining gas: 1039991.392 units remaining) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039991.372 units remaining) + - location: 14 (remaining gas: 1039991.367 units remaining) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039991.283 units remaining) + - location: 17 (remaining gas: 1039991.278 units remaining) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039991.273 units remaining) + - location: 18 (remaining gas: 1039991.268 units remaining) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039991.263 units remaining) + - location: 19 (remaining gas: 1039991.258 units remaining) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039991.253 units remaining) + - location: 21 (remaining gas: 1039991.248 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 0837f31141d0..c42ecb1e50a5 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" @@ -17,18 +17,18 @@ trace - location: 16 (remaining gas: 1039991.392 units remaining) [ None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (remaining gas: 1039991.372 units remaining) + - location: 14 (remaining gas: 1039991.367 units remaining) [ "1" None { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (remaining gas: 1039991.283 units remaining) + - location: 17 (remaining gas: 1039991.278 units remaining) [ (Some 1) { Elt "2" 2 } ] - - location: 18 (remaining gas: 1039991.273 units remaining) + - location: 18 (remaining gas: 1039991.268 units remaining) [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (remaining gas: 1039991.263 units remaining) + - location: 19 (remaining gas: 1039991.258 units remaining) [ {} (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (remaining gas: 1039991.253 units remaining) + - location: 21 (remaining gas: 1039991.248 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 ab78f260fa10..ed5352a20c2d 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" @@ -17,18 +17,18 @@ trace - location: 16 (remaining gas: 1039991.647 units remaining) [ None { Elt "hello" 4 } ] - - location: 14 (remaining gas: 1039991.627 units remaining) + - location: 14 (remaining gas: 1039991.622 units remaining) [ "hello" None { Elt "hello" 4 } ] - - location: 17 (remaining gas: 1039991.517 units remaining) + - location: 17 (remaining gas: 1039991.512 units remaining) [ (Some 4) {} ] - - location: 18 (remaining gas: 1039991.507 units remaining) + - location: 18 (remaining gas: 1039991.502 units remaining) [ (Pair (Some 4) {}) ] - - location: 19 (remaining gas: 1039991.497 units remaining) + - location: 19 (remaining gas: 1039991.492 units remaining) [ {} (Pair (Some 4) {}) ] - - location: 21 (remaining gas: 1039991.487 units remaining) + - location: 21 (remaining gas: 1039991.482 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 0a3b356ee36a..8172e6bb8353 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" @@ -17,18 +17,18 @@ trace - location: 16 (remaining gas: 1039992.001 units remaining) [ None {} ] - - location: 14 (remaining gas: 1039991.981 units remaining) + - location: 14 (remaining gas: 1039991.976 units remaining) [ "hello" None {} ] - - location: 17 (remaining gas: 1039991.886 units remaining) + - location: 17 (remaining gas: 1039991.881 units remaining) [ None {} ] - - location: 18 (remaining gas: 1039991.876 units remaining) + - location: 18 (remaining gas: 1039991.871 units remaining) [ (Pair None {}) ] - - location: 19 (remaining gas: 1039991.866 units remaining) + - location: 19 (remaining gas: 1039991.861 units remaining) [ {} (Pair None {}) ] - - location: 21 (remaining gas: 1039991.856 units remaining) + - location: 21 (remaining gas: 1039991.851 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 d23cf0902707..cb09030f04ce 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" @@ -24,18 +24,18 @@ trace - location: 19 (remaining gas: 1039988.761 units remaining) [ { Elt "1" "one" ; Elt "2" "two" } { Elt "1" "one" ; Elt "2" "two" } ] - - location: 14 (remaining gas: 1039988.741 units remaining) + - location: 14 (remaining gas: 1039988.736 units remaining) [ "1" { Elt "1" "one" ; Elt "2" "two" } { Elt "1" "one" ; Elt "2" "two" } ] - - location: 20 (remaining gas: 1039988.658 units remaining) + - location: 20 (remaining gas: 1039988.653 units remaining) [ (Some "one") { Elt "1" "one" ; Elt "2" "two" } ] - - location: 21 (remaining gas: 1039988.648 units remaining) + - location: 21 (remaining gas: 1039988.643 units remaining) [ (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 22 (remaining gas: 1039988.638 units remaining) + - location: 22 (remaining gas: 1039988.633 units remaining) [ {} (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 24 (remaining gas: 1039988.628 units remaining) + - location: 24 (remaining gas: 1039988.623 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 b8fffe28508c..730d90ae5e57 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" @@ -24,18 +24,18 @@ trace - location: 19 (remaining gas: 1039989.120 units remaining) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039989.100 units remaining) + - location: 14 (remaining gas: 1039989.095 units remaining) [ "" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039989.020 units remaining) + - location: 20 (remaining gas: 1039989.015 units remaining) [ None { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039989.010 units remaining) + - location: 21 (remaining gas: 1039989.005 units remaining) [ (Pair None { Elt "hello" "hi" }) ] - - location: 22 (remaining gas: 1039989 units remaining) + - location: 22 (remaining gas: 1039988.995 units remaining) [ {} (Pair None { Elt "hello" "hi" }) ] - - location: 24 (remaining gas: 1039988.990 units remaining) + - location: 24 (remaining gas: 1039988.985 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 136d46fc9a37..3d01bada321f 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" @@ -24,18 +24,18 @@ trace - location: 19 (remaining gas: 1039989.070 units remaining) [ { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 14 (remaining gas: 1039989.050 units remaining) + - location: 14 (remaining gas: 1039989.045 units remaining) [ "hello" { Elt "hello" "hi" } { Elt "hello" "hi" } ] - - location: 20 (remaining gas: 1039988.960 units remaining) + - location: 20 (remaining gas: 1039988.955 units remaining) [ (Some "hi") { Elt "hello" "hi" } ] - - location: 21 (remaining gas: 1039988.950 units remaining) + - location: 21 (remaining gas: 1039988.945 units remaining) [ (Pair (Some "hi") { Elt "hello" "hi" }) ] - - location: 22 (remaining gas: 1039988.940 units remaining) + - location: 22 (remaining gas: 1039988.935 units remaining) [ {} (Pair (Some "hi") { Elt "hello" "hi" }) ] - - location: 24 (remaining gas: 1039988.930 units remaining) + - location: 24 (remaining gas: 1039988.925 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_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 4ad6a0a94af4..6ff38a758e72 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" @@ -11,13 +11,13 @@ trace [ (Pair "12345" 0x00) ] - location: 7 (remaining gas: 1039995.061 units remaining) [ "12345" ] - - location: 8 (remaining gas: 1039994.815 units remaining) + - location: 8 (remaining gas: 1039994.795 units remaining) [ 0x0501000000053132333435 ] - - location: 9 (remaining gas: 1039994.373 units remaining) + - location: 9 (remaining gas: 1039994.353 units remaining) [ 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f ] - - location: 10 (remaining gas: 1039994.363 units remaining) + - location: 10 (remaining gas: 1039994.343 units remaining) [ {} 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f ] - - location: 12 (remaining gas: 1039994.353 units remaining) + - location: 12 (remaining gas: 1039994.333 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 aa35c40d5e4b..c05b7f5d1c18 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" @@ -11,13 +11,13 @@ trace [ (Pair "abcdefg" 0x00) ] - location: 7 (remaining gas: 1039995.041 units remaining) [ "abcdefg" ] - - location: 8 (remaining gas: 1039994.775 units remaining) + - location: 8 (remaining gas: 1039994.755 units remaining) [ 0x05010000000761626364656667 ] - - location: 9 (remaining gas: 1039994.331 units remaining) + - location: 9 (remaining gas: 1039994.311 units remaining) [ 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e ] - - location: 10 (remaining gas: 1039994.321 units remaining) + - location: 10 (remaining gas: 1039994.301 units remaining) [ {} 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e ] - - location: 12 (remaining gas: 1039994.311 units remaining) + - location: 12 (remaining gas: 1039994.291 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 faa9466ec509..4647611158c0 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 @@ -15,13 +15,13 @@ trace [ ] - location: 15 (remaining gas: 1039992.660 units remaining) [ False ] - - location: 9 (remaining gas: 1039992.650 units remaining) + - location: 9 (remaining gas: 1039992.645 units remaining) [ False ] - - location: 18 (remaining gas: 1039992.640 units remaining) + - location: 18 (remaining gas: 1039992.635 units remaining) [ (Some False) ] - - location: 19 (remaining gas: 1039992.630 units remaining) + - location: 19 (remaining gas: 1039992.625 units remaining) [ {} (Some False) ] - - location: 21 (remaining gas: 1039992.620 units remaining) + - location: 21 (remaining gas: 1039992.615 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 e1f0dba7902c..5b055e7ff3b3 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 @@ -15,13 +15,13 @@ trace [ ] - location: 11 (remaining gas: 1039992.660 units remaining) [ True ] - - location: 9 (remaining gas: 1039992.650 units remaining) + - location: 9 (remaining gas: 1039992.645 units remaining) [ True ] - - location: 18 (remaining gas: 1039992.640 units remaining) + - location: 18 (remaining gas: 1039992.635 units remaining) [ (Some True) ] - - location: 19 (remaining gas: 1039992.630 units remaining) + - location: 19 (remaining gas: 1039992.625 units remaining) [ {} (Some True) ] - - location: 21 (remaining gas: 1039992.620 units remaining) + - location: 21 (remaining gas: 1039992.615 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 cfb283f29c4a..3153a1f29020 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" @@ -13,11 +13,11 @@ trace [ (Some "hello") ] - location: 10 (remaining gas: 1039993.571 units remaining) [ "hello" ] - - location: 10 (remaining gas: 1039993.561 units remaining) + - location: 10 (remaining gas: 1039993.556 units remaining) [ "hello" ] - - location: 16 (remaining gas: 1039993.551 units remaining) + - location: 16 (remaining gas: 1039993.546 units remaining) [ {} "hello" ] - - location: 18 (remaining gas: 1039993.541 units remaining) + - location: 18 (remaining gas: 1039993.536 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 45d487383747..b3589386862e 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" @@ -15,11 +15,11 @@ trace [ ] - location: 12 (remaining gas: 1039993.725 units remaining) [ "" ] - - location: 10 (remaining gas: 1039993.715 units remaining) + - location: 10 (remaining gas: 1039993.710 units remaining) [ "" ] - - location: 16 (remaining gas: 1039993.705 units remaining) + - location: 16 (remaining gas: 1039993.700 units remaining) [ {} "" ] - - location: 18 (remaining gas: 1039993.695 units remaining) + - location: 18 (remaining gas: 1039993.690 units remaining) [ (Pair {} "") ] 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 4692cadcd2f1..0880b5d620f2 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" @@ -15,11 +15,11 @@ trace [ True ] - location: 14 (remaining gas: 1039992.736 units remaining) [ (Right True) ] - - location: 12 (remaining gas: 1039992.726 units remaining) + - location: 12 (remaining gas: 1039992.721 units remaining) [ (Right True) ] - - location: 19 (remaining gas: 1039992.716 units remaining) + - location: 19 (remaining gas: 1039992.711 units remaining) [ {} (Right True) ] - - location: 21 (remaining gas: 1039992.706 units remaining) + - location: 21 (remaining gas: 1039992.701 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 136fe1712e4b..40df8b2bddce 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" @@ -15,11 +15,11 @@ trace [ "a" ] - location: 17 (remaining gas: 1039992.712 units remaining) [ (Left "a") ] - - location: 12 (remaining gas: 1039992.702 units remaining) + - location: 12 (remaining gas: 1039992.697 units remaining) [ (Left "a") ] - - location: 19 (remaining gas: 1039992.692 units remaining) + - location: 19 (remaining gas: 1039992.687 units remaining) [ {} (Left "a") ] - - location: 21 (remaining gas: 1039992.682 units remaining) + - location: 21 (remaining gas: 1039992.677 units remaining) [ (Pair {} (Left "a")) ] 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 362eff0d118d..4bc5be46f15d 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" @@ -17,11 +17,11 @@ trace { "d" ; "e" ; "f" } ] - location: 10 (remaining gas: 1039993.993 units remaining) [ { "abc" ; "d" ; "e" ; "f" } ] - - location: 11 (remaining gas: 1039993.853 units remaining) + - location: 11 (remaining gas: 1039993.850 units remaining) [ "abcdef" ] - - location: 12 (remaining gas: 1039993.843 units remaining) + - location: 12 (remaining gas: 1039993.840 units remaining) [ {} "abcdef" ] - - location: 14 (remaining gas: 1039993.833 units remaining) + - location: 14 (remaining gas: 1039993.830 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 9d5f222f8e9c..420b3c341608 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" @@ -17,11 +17,11 @@ trace {} ] - location: 10 (remaining gas: 1039994.365 units remaining) [ { "abc" } ] - - location: 11 (remaining gas: 1039994.255 units remaining) + - location: 11 (remaining gas: 1039994.254 units remaining) [ "abc" ] - - location: 12 (remaining gas: 1039994.245 units remaining) + - location: 12 (remaining gas: 1039994.244 units remaining) [ {} "abc" ] - - location: 14 (remaining gas: 1039994.235 units remaining) + - location: 14 (remaining gas: 1039994.234 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 9ba19a341644..64452c23fedf 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 @@ -17,11 +17,11 @@ trace { 0x00 ; 0x11 ; 0x00 } ] - location: 10 (remaining gas: 1039994.109 units remaining) [ { 0x ; 0x00 ; 0x11 ; 0x00 } ] - - location: 11 (remaining gas: 1039993.969 units remaining) + - location: 11 (remaining gas: 1039993.968 units remaining) [ 0x001100 ] - - location: 12 (remaining gas: 1039993.959 units remaining) + - location: 12 (remaining gas: 1039993.958 units remaining) [ {} 0x001100 ] - - location: 14 (remaining gas: 1039993.949 units remaining) + - location: 14 (remaining gas: 1039993.948 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-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 49cfda4807f3..e9918e4a3906 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 @@ -17,11 +17,11 @@ trace { 0xcd ; 0xef ; 0x00 } ] - location: 10 (remaining gas: 1039994.109 units remaining) [ { 0x00ab ; 0xcd ; 0xef ; 0x00 } ] - - location: 11 (remaining gas: 1039993.969 units remaining) + - location: 11 (remaining gas: 1039993.967 units remaining) [ 0x00abcdef00 ] - - location: 12 (remaining gas: 1039993.959 units remaining) + - location: 12 (remaining gas: 1039993.957 units remaining) [ {} 0x00abcdef00 ] - - location: 14 (remaining gas: 1039993.949 units remaining) + - location: 14 (remaining gas: 1039993.947 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 a2f387243109..db5a8e45a7e5 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 @@ -17,11 +17,11 @@ trace {} ] - location: 10 (remaining gas: 1039994.409 units remaining) [ { 0xabcd } ] - - location: 11 (remaining gas: 1039994.299 units remaining) + - location: 11 (remaining gas: 1039994.298 units remaining) [ 0xabcd ] - - location: 12 (remaining gas: 1039994.289 units remaining) + - location: 12 (remaining gas: 1039994.288 units remaining) [ {} 0xabcd ] - - location: 14 (remaining gas: 1039994.279 units remaining) + - location: 14 (remaining gas: 1039994.278 units remaining) [ (Pair {} 0xabcd) ] 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 be68b9fd3f5d..74b96fdcddc2 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" @@ -13,15 +13,15 @@ trace [ { "1" ; "2" ; "3" } ] - location: 10 (remaining gas: 1039994.543 units remaining) [ "1" ] - - location: 10 (remaining gas: 1039994.533 units remaining) + - location: 10 (remaining gas: 1039994.528 units remaining) [ "2" ] - - location: 10 (remaining gas: 1039994.523 units remaining) - [ "3" ] - location: 10 (remaining gas: 1039994.513 units remaining) + [ "3" ] + - location: 10 (remaining gas: 1039994.498 units remaining) [ { "1" ; "2" ; "3" } ] - - location: 12 (remaining gas: 1039994.503 units remaining) + - location: 12 (remaining gas: 1039994.488 units remaining) [ {} { "1" ; "2" ; "3" } ] - - location: 14 (remaining gas: 1039994.493 units remaining) + - location: 14 (remaining gas: 1039994.478 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 e14a3c6d59a7..9c79d0a4a03b 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" @@ -13,15 +13,15 @@ trace [ { "a" ; "b" ; "c" } ] - location: 10 (remaining gas: 1039994.543 units remaining) [ "a" ] - - location: 10 (remaining gas: 1039994.533 units remaining) + - location: 10 (remaining gas: 1039994.528 units remaining) [ "b" ] - - location: 10 (remaining gas: 1039994.523 units remaining) - [ "c" ] - location: 10 (remaining gas: 1039994.513 units remaining) + [ "c" ] + - location: 10 (remaining gas: 1039994.498 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 12 (remaining gas: 1039994.503 units remaining) + - location: 12 (remaining gas: 1039994.488 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 14 (remaining gas: 1039994.493 units remaining) + - location: 14 (remaining gas: 1039994.478 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] 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 982e86d587d9..d9079641a59b 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 @@ -22,21 +22,21 @@ trace 1 ] - location: 15 (remaining gas: 1039992.909 units remaining) [ 10 ] - - location: 13 (remaining gas: 1039992.899 units remaining) + - location: 13 (remaining gas: 1039992.894 units remaining) [ 2 10 ] - - location: 15 (remaining gas: 1039992.840 units remaining) + - location: 15 (remaining gas: 1039992.835 units remaining) [ 20 ] - - location: 13 (remaining gas: 1039992.830 units remaining) + - location: 13 (remaining gas: 1039992.820 units remaining) [ 1 20 ] - - location: 15 (remaining gas: 1039992.771 units remaining) + - location: 15 (remaining gas: 1039992.761 units remaining) [ 20 ] - - location: 13 (remaining gas: 1039992.761 units remaining) + - location: 13 (remaining gas: 1039992.746 units remaining) [ 20 ] - - location: 16 (remaining gas: 1039992.751 units remaining) + - location: 16 (remaining gas: 1039992.736 units remaining) [ {} 20 ] - - location: 18 (remaining gas: 1039992.741 units remaining) + - location: 18 (remaining gas: 1039992.726 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 b852d21046d9..4640acf7c0af 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 @@ -22,21 +22,21 @@ trace 1 ] - location: 15 (remaining gas: 1039992.909 units remaining) [ 3 ] - - location: 13 (remaining gas: 1039992.899 units remaining) + - location: 13 (remaining gas: 1039992.894 units remaining) [ 6 3 ] - - location: 15 (remaining gas: 1039992.840 units remaining) + - location: 15 (remaining gas: 1039992.835 units remaining) [ 18 ] - - location: 13 (remaining gas: 1039992.830 units remaining) + - location: 13 (remaining gas: 1039992.820 units remaining) [ 9 18 ] - - location: 15 (remaining gas: 1039992.771 units remaining) + - location: 15 (remaining gas: 1039992.761 units remaining) [ 162 ] - - location: 13 (remaining gas: 1039992.761 units remaining) + - location: 13 (remaining gas: 1039992.746 units remaining) [ 162 ] - - location: 16 (remaining gas: 1039992.751 units remaining) + - location: 16 (remaining gas: 1039992.736 units remaining) [ {} 162 ] - - location: 18 (remaining gas: 1039992.741 units remaining) + - location: 18 (remaining gas: 1039992.726 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 b1fa5b65b375..9dbc5fc218c2 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 @@ -25,112 +25,112 @@ trace - location: 18 (remaining gas: 1039987.619 units remaining) [ 0 0 ] - - location: 16 (remaining gas: 1039987.599 units remaining) + - location: 16 (remaining gas: 1039987.594 units remaining) [ 1 0 0 ] - - location: 19 (remaining gas: 1039987.564 units remaining) + - location: 19 (remaining gas: 1039987.559 units remaining) [ 1 0 ] - - location: 20 (remaining gas: 1039987.564 units remaining) + - location: 20 (remaining gas: 1039987.559 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039987.554 units remaining) + - location: 22 (remaining gas: 1039987.549 units remaining) [ 1 0 ] - - location: 25 (remaining gas: 1039987.519 units remaining) + - location: 25 (remaining gas: 1039987.514 units remaining) [ 1 ] - - location: 20 (remaining gas: 1039987.499 units remaining) + - location: 20 (remaining gas: 1039987.489 units remaining) [ 1 1 ] - - location: 14 (remaining gas: 1039987.489 units remaining) + - location: 14 (remaining gas: 1039987.474 units remaining) [ 1 1 ] - - location: 16 (remaining gas: 1039987.489 units remaining) + - location: 16 (remaining gas: 1039987.474 units remaining) [ 1 ] - - location: 18 (remaining gas: 1039987.479 units remaining) + - location: 18 (remaining gas: 1039987.464 units remaining) [ 1 1 ] - - location: 16 (remaining gas: 1039987.459 units remaining) + - location: 16 (remaining gas: 1039987.439 units remaining) [ 1 1 1 ] - - location: 19 (remaining gas: 1039987.424 units remaining) + - location: 19 (remaining gas: 1039987.404 units remaining) [ 2 1 ] - - location: 20 (remaining gas: 1039987.424 units remaining) + - location: 20 (remaining gas: 1039987.404 units remaining) [ 1 ] - - location: 22 (remaining gas: 1039987.414 units remaining) + - location: 22 (remaining gas: 1039987.394 units remaining) [ 1 1 ] - - location: 25 (remaining gas: 1039987.379 units remaining) + - location: 25 (remaining gas: 1039987.359 units remaining) [ 2 ] - - location: 20 (remaining gas: 1039987.359 units remaining) + - location: 20 (remaining gas: 1039987.334 units remaining) [ 2 2 ] - - location: 14 (remaining gas: 1039987.349 units remaining) + - location: 14 (remaining gas: 1039987.319 units remaining) [ 1 2 ] - - location: 16 (remaining gas: 1039987.349 units remaining) + - location: 16 (remaining gas: 1039987.319 units remaining) [ 2 ] - - location: 18 (remaining gas: 1039987.339 units remaining) + - location: 18 (remaining gas: 1039987.309 units remaining) [ 2 2 ] - - location: 16 (remaining gas: 1039987.319 units remaining) + - location: 16 (remaining gas: 1039987.284 units remaining) [ 1 2 2 ] - - location: 19 (remaining gas: 1039987.284 units remaining) + - location: 19 (remaining gas: 1039987.249 units remaining) [ 3 2 ] - - location: 20 (remaining gas: 1039987.284 units remaining) + - location: 20 (remaining gas: 1039987.249 units remaining) [ 2 ] - - location: 22 (remaining gas: 1039987.274 units remaining) + - location: 22 (remaining gas: 1039987.239 units remaining) [ 1 2 ] - - location: 25 (remaining gas: 1039987.239 units remaining) + - location: 25 (remaining gas: 1039987.204 units remaining) [ 3 ] - - location: 20 (remaining gas: 1039987.219 units remaining) + - location: 20 (remaining gas: 1039987.179 units remaining) [ 3 3 ] - - location: 14 (remaining gas: 1039987.209 units remaining) + - location: 14 (remaining gas: 1039987.164 units remaining) [ 1 3 ] - - location: 16 (remaining gas: 1039987.209 units remaining) + - location: 16 (remaining gas: 1039987.164 units remaining) [ 3 ] - - location: 18 (remaining gas: 1039987.199 units remaining) + - location: 18 (remaining gas: 1039987.154 units remaining) [ 3 3 ] - - location: 16 (remaining gas: 1039987.179 units remaining) + - location: 16 (remaining gas: 1039987.129 units remaining) [ 1 3 3 ] - - location: 19 (remaining gas: 1039987.144 units remaining) + - location: 19 (remaining gas: 1039987.094 units remaining) [ 4 3 ] - - location: 20 (remaining gas: 1039987.144 units remaining) + - location: 20 (remaining gas: 1039987.094 units remaining) [ 3 ] - - location: 22 (remaining gas: 1039987.134 units remaining) + - location: 22 (remaining gas: 1039987.084 units remaining) [ 1 3 ] - - location: 25 (remaining gas: 1039987.099 units remaining) + - location: 25 (remaining gas: 1039987.049 units remaining) [ 4 ] - - location: 20 (remaining gas: 1039987.079 units remaining) + - location: 20 (remaining gas: 1039987.024 units remaining) [ 4 4 ] - - location: 14 (remaining gas: 1039987.069 units remaining) + - location: 14 (remaining gas: 1039987.009 units remaining) [ { 1 ; 2 ; 3 ; 4 } 4 ] - - location: 26 (remaining gas: 1039987.059 units remaining) + - location: 26 (remaining gas: 1039986.999 units remaining) [ {} { 1 ; 2 ; 3 ; 4 } 4 ] - - location: 28 (remaining gas: 1039987.049 units remaining) + - location: 28 (remaining gas: 1039986.989 units remaining) [ (Pair {} { 1 ; 2 ; 3 ; 4 }) 4 ] - - location: 29 (remaining gas: 1039987.049 units remaining) + - location: 29 (remaining gas: 1039986.989 units remaining) [ 4 ] - - location: 31 (remaining gas: 1039987.039 units remaining) + - location: 31 (remaining gas: 1039986.979 units remaining) [ ] - - location: 29 (remaining gas: 1039987.019 units remaining) + - location: 29 (remaining gas: 1039986.954 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 fa5420c85d7e..50fb72f0496e 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 @@ -25,112 +25,112 @@ trace - location: 18 (remaining gas: 1039987.619 units remaining) [ 0 0 ] - - location: 16 (remaining gas: 1039987.599 units remaining) + - location: 16 (remaining gas: 1039987.594 units remaining) [ 1 0 0 ] - - location: 19 (remaining gas: 1039987.564 units remaining) + - location: 19 (remaining gas: 1039987.559 units remaining) [ 1 0 ] - - location: 20 (remaining gas: 1039987.564 units remaining) + - location: 20 (remaining gas: 1039987.559 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039987.554 units remaining) + - location: 22 (remaining gas: 1039987.549 units remaining) [ 1 0 ] - - location: 25 (remaining gas: 1039987.519 units remaining) + - location: 25 (remaining gas: 1039987.514 units remaining) [ 1 ] - - location: 20 (remaining gas: 1039987.499 units remaining) + - location: 20 (remaining gas: 1039987.489 units remaining) [ 1 1 ] - - location: 14 (remaining gas: 1039987.489 units remaining) + - location: 14 (remaining gas: 1039987.474 units remaining) [ 2 1 ] - - location: 16 (remaining gas: 1039987.489 units remaining) + - location: 16 (remaining gas: 1039987.474 units remaining) [ 1 ] - - location: 18 (remaining gas: 1039987.479 units remaining) + - location: 18 (remaining gas: 1039987.464 units remaining) [ 1 1 ] - - location: 16 (remaining gas: 1039987.459 units remaining) + - location: 16 (remaining gas: 1039987.439 units remaining) [ 2 1 1 ] - - location: 19 (remaining gas: 1039987.424 units remaining) + - location: 19 (remaining gas: 1039987.404 units remaining) [ 3 1 ] - - location: 20 (remaining gas: 1039987.424 units remaining) + - location: 20 (remaining gas: 1039987.404 units remaining) [ 1 ] - - location: 22 (remaining gas: 1039987.414 units remaining) + - location: 22 (remaining gas: 1039987.394 units remaining) [ 1 1 ] - - location: 25 (remaining gas: 1039987.379 units remaining) + - location: 25 (remaining gas: 1039987.359 units remaining) [ 2 ] - - location: 20 (remaining gas: 1039987.359 units remaining) + - location: 20 (remaining gas: 1039987.334 units remaining) [ 3 2 ] - - location: 14 (remaining gas: 1039987.349 units remaining) + - location: 14 (remaining gas: 1039987.319 units remaining) [ 3 2 ] - - location: 16 (remaining gas: 1039987.349 units remaining) + - location: 16 (remaining gas: 1039987.319 units remaining) [ 2 ] - - location: 18 (remaining gas: 1039987.339 units remaining) + - location: 18 (remaining gas: 1039987.309 units remaining) [ 2 2 ] - - location: 16 (remaining gas: 1039987.319 units remaining) + - location: 16 (remaining gas: 1039987.284 units remaining) [ 3 2 2 ] - - location: 19 (remaining gas: 1039987.284 units remaining) + - location: 19 (remaining gas: 1039987.249 units remaining) [ 5 2 ] - - location: 20 (remaining gas: 1039987.284 units remaining) + - location: 20 (remaining gas: 1039987.249 units remaining) [ 2 ] - - location: 22 (remaining gas: 1039987.274 units remaining) + - location: 22 (remaining gas: 1039987.239 units remaining) [ 1 2 ] - - location: 25 (remaining gas: 1039987.239 units remaining) + - location: 25 (remaining gas: 1039987.204 units remaining) [ 3 ] - - location: 20 (remaining gas: 1039987.219 units remaining) + - location: 20 (remaining gas: 1039987.179 units remaining) [ 5 3 ] - - location: 14 (remaining gas: 1039987.209 units remaining) + - location: 14 (remaining gas: 1039987.164 units remaining) [ 0 3 ] - - location: 16 (remaining gas: 1039987.209 units remaining) + - location: 16 (remaining gas: 1039987.164 units remaining) [ 3 ] - - location: 18 (remaining gas: 1039987.199 units remaining) + - location: 18 (remaining gas: 1039987.154 units remaining) [ 3 3 ] - - location: 16 (remaining gas: 1039987.179 units remaining) + - location: 16 (remaining gas: 1039987.129 units remaining) [ 0 3 3 ] - - location: 19 (remaining gas: 1039987.144 units remaining) + - location: 19 (remaining gas: 1039987.094 units remaining) [ 3 3 ] - - location: 20 (remaining gas: 1039987.144 units remaining) + - location: 20 (remaining gas: 1039987.094 units remaining) [ 3 ] - - location: 22 (remaining gas: 1039987.134 units remaining) + - location: 22 (remaining gas: 1039987.084 units remaining) [ 1 3 ] - - location: 25 (remaining gas: 1039987.099 units remaining) + - location: 25 (remaining gas: 1039987.049 units remaining) [ 4 ] - - location: 20 (remaining gas: 1039987.079 units remaining) + - location: 20 (remaining gas: 1039987.024 units remaining) [ 3 4 ] - - location: 14 (remaining gas: 1039987.069 units remaining) + - location: 14 (remaining gas: 1039987.009 units remaining) [ { 1 ; 3 ; 5 ; 3 } 4 ] - - location: 26 (remaining gas: 1039987.059 units remaining) + - location: 26 (remaining gas: 1039986.999 units remaining) [ {} { 1 ; 3 ; 5 ; 3 } 4 ] - - location: 28 (remaining gas: 1039987.049 units remaining) + - location: 28 (remaining gas: 1039986.989 units remaining) [ (Pair {} { 1 ; 3 ; 5 ; 3 }) 4 ] - - location: 29 (remaining gas: 1039987.049 units remaining) + - location: 29 (remaining gas: 1039986.989 units remaining) [ 4 ] - - location: 31 (remaining gas: 1039987.039 units remaining) + - location: 31 (remaining gas: 1039986.979 units remaining) [ ] - - location: 29 (remaining gas: 1039987.019 units remaining) + - location: 29 (remaining gas: 1039986.954 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 caf60c641b6e..b7840145e91e 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 @@ -31,6 +31,6 @@ trace [ 0 ] - location: 31 (remaining gas: 1039987.999 units remaining) [ ] - - location: 29 (remaining gas: 1039987.979 units remaining) + - location: 29 (remaining gas: 1039987.974 units remaining) [ (Pair {} {}) ] 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 7b2ecc5d6670..b204aae5b070 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" @@ -33,131 +33,131 @@ trace [ (Pair { "c" ; "b" ; "a" } {}) ] - location: 23 (remaining gas: 1039982.285 units remaining) [ {} ] - - location: 21 (remaining gas: 1039982.265 units remaining) + - location: 21 (remaining gas: 1039982.260 units remaining) [ { "c" ; "b" ; "a" } {} ] - - location: 24 (remaining gas: 1039982.265 units remaining) + - location: 24 (remaining gas: 1039982.260 units remaining) [ "c" { "b" ; "a" } {} ] - - location: 26 (remaining gas: 1039982.255 units remaining) + - location: 26 (remaining gas: 1039982.250 units remaining) [ { "b" ; "a" } "c" {} ] - - location: 27 (remaining gas: 1039982.255 units remaining) + - location: 27 (remaining gas: 1039982.250 units remaining) [ "c" {} ] - - location: 29 (remaining gas: 1039982.245 units remaining) + - location: 29 (remaining gas: 1039982.240 units remaining) [ { "c" } ] - - location: 27 (remaining gas: 1039982.225 units remaining) + - location: 27 (remaining gas: 1039982.215 units remaining) [ { "b" ; "a" } { "c" } ] - - location: 30 (remaining gas: 1039982.215 units remaining) + - location: 30 (remaining gas: 1039982.205 units remaining) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 31 (remaining gas: 1039982.205 units remaining) + - location: 31 (remaining gas: 1039982.195 units remaining) [ (Left (Pair { "b" ; "a" } { "c" })) ] - - location: 24 (remaining gas: 1039982.195 units remaining) + - location: 24 (remaining gas: 1039982.180 units remaining) [ (Left (Pair { "b" ; "a" } { "c" })) ] - - location: 41 (remaining gas: 1039982.185 units remaining) + - location: 41 (remaining gas: 1039982.165 units remaining) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 19 (remaining gas: 1039982.175 units remaining) + - location: 19 (remaining gas: 1039982.155 units remaining) [ (Pair { "b" ; "a" } { "c" }) (Pair { "b" ; "a" } { "c" }) ] - - location: 20 (remaining gas: 1039982.165 units remaining) + - location: 20 (remaining gas: 1039982.145 units remaining) [ { "b" ; "a" } (Pair { "b" ; "a" } { "c" }) ] - - location: 21 (remaining gas: 1039982.165 units remaining) + - location: 21 (remaining gas: 1039982.145 units remaining) [ (Pair { "b" ; "a" } { "c" }) ] - - location: 23 (remaining gas: 1039982.155 units remaining) + - location: 23 (remaining gas: 1039982.135 units remaining) [ { "c" } ] - - location: 21 (remaining gas: 1039982.135 units remaining) + - location: 21 (remaining gas: 1039982.110 units remaining) [ { "b" ; "a" } { "c" } ] - - location: 24 (remaining gas: 1039982.135 units remaining) + - location: 24 (remaining gas: 1039982.110 units remaining) [ "b" { "a" } { "c" } ] - - location: 26 (remaining gas: 1039982.125 units remaining) + - location: 26 (remaining gas: 1039982.100 units remaining) [ { "a" } "b" { "c" } ] - - location: 27 (remaining gas: 1039982.125 units remaining) + - location: 27 (remaining gas: 1039982.100 units remaining) [ "b" { "c" } ] - - location: 29 (remaining gas: 1039982.115 units remaining) + - location: 29 (remaining gas: 1039982.090 units remaining) [ { "b" ; "c" } ] - - location: 27 (remaining gas: 1039982.095 units remaining) + - location: 27 (remaining gas: 1039982.065 units remaining) [ { "a" } { "b" ; "c" } ] - - location: 30 (remaining gas: 1039982.085 units remaining) + - location: 30 (remaining gas: 1039982.055 units remaining) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 31 (remaining gas: 1039982.075 units remaining) + - location: 31 (remaining gas: 1039982.045 units remaining) [ (Left (Pair { "a" } { "b" ; "c" })) ] - - location: 24 (remaining gas: 1039982.065 units remaining) + - location: 24 (remaining gas: 1039982.030 units remaining) [ (Left (Pair { "a" } { "b" ; "c" })) ] - - location: 41 (remaining gas: 1039982.055 units remaining) + - location: 41 (remaining gas: 1039982.015 units remaining) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 19 (remaining gas: 1039982.045 units remaining) + - location: 19 (remaining gas: 1039982.005 units remaining) [ (Pair { "a" } { "b" ; "c" }) (Pair { "a" } { "b" ; "c" }) ] - - location: 20 (remaining gas: 1039982.035 units remaining) + - location: 20 (remaining gas: 1039981.995 units remaining) [ { "a" } (Pair { "a" } { "b" ; "c" }) ] - - location: 21 (remaining gas: 1039982.035 units remaining) + - location: 21 (remaining gas: 1039981.995 units remaining) [ (Pair { "a" } { "b" ; "c" }) ] - - location: 23 (remaining gas: 1039982.025 units remaining) + - location: 23 (remaining gas: 1039981.985 units remaining) [ { "b" ; "c" } ] - - location: 21 (remaining gas: 1039982.005 units remaining) + - location: 21 (remaining gas: 1039981.960 units remaining) [ { "a" } { "b" ; "c" } ] - - location: 24 (remaining gas: 1039982.005 units remaining) + - location: 24 (remaining gas: 1039981.960 units remaining) [ "a" {} { "b" ; "c" } ] - - location: 26 (remaining gas: 1039981.995 units remaining) + - location: 26 (remaining gas: 1039981.950 units remaining) [ {} "a" { "b" ; "c" } ] - - location: 27 (remaining gas: 1039981.995 units remaining) + - location: 27 (remaining gas: 1039981.950 units remaining) [ "a" { "b" ; "c" } ] - - location: 29 (remaining gas: 1039981.985 units remaining) + - location: 29 (remaining gas: 1039981.940 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 27 (remaining gas: 1039981.965 units remaining) + - location: 27 (remaining gas: 1039981.915 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 30 (remaining gas: 1039981.955 units remaining) + - location: 30 (remaining gas: 1039981.905 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 31 (remaining gas: 1039981.945 units remaining) + - location: 31 (remaining gas: 1039981.895 units remaining) [ (Left (Pair {} { "a" ; "b" ; "c" })) ] - - location: 24 (remaining gas: 1039981.935 units remaining) + - location: 24 (remaining gas: 1039981.880 units remaining) [ (Left (Pair {} { "a" ; "b" ; "c" })) ] - - location: 41 (remaining gas: 1039981.925 units remaining) + - location: 41 (remaining gas: 1039981.865 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 19 (remaining gas: 1039981.915 units remaining) + - location: 19 (remaining gas: 1039981.855 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) (Pair {} { "a" ; "b" ; "c" }) ] - - location: 20 (remaining gas: 1039981.905 units remaining) + - location: 20 (remaining gas: 1039981.845 units remaining) [ {} (Pair {} { "a" ; "b" ; "c" }) ] - - location: 21 (remaining gas: 1039981.905 units remaining) + - location: 21 (remaining gas: 1039981.845 units remaining) [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 23 (remaining gas: 1039981.895 units remaining) + - location: 23 (remaining gas: 1039981.835 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 21 (remaining gas: 1039981.875 units remaining) + - location: 21 (remaining gas: 1039981.810 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 24 (remaining gas: 1039981.875 units remaining) + - location: 24 (remaining gas: 1039981.810 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 35 (remaining gas: 1039981.865 units remaining) + - location: 35 (remaining gas: 1039981.800 units remaining) [ (Right { "a" ; "b" ; "c" }) ] - - location: 24 (remaining gas: 1039981.855 units remaining) + - location: 24 (remaining gas: 1039981.785 units remaining) [ (Right { "a" ; "b" ; "c" }) ] - - location: 41 (remaining gas: 1039981.845 units remaining) + - location: 41 (remaining gas: 1039981.770 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 41 (remaining gas: 1039981.835 units remaining) + - location: 41 (remaining gas: 1039981.760 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 43 (remaining gas: 1039981.825 units remaining) + - location: 43 (remaining gas: 1039981.750 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 086e8dab04ff..21f748b2691c 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" @@ -33,20 +33,20 @@ trace [ (Pair {} {}) ] - location: 23 (remaining gas: 1039982.657 units remaining) [ {} ] - - location: 21 (remaining gas: 1039982.637 units remaining) + - location: 21 (remaining gas: 1039982.632 units remaining) [ {} {} ] - - location: 24 (remaining gas: 1039982.637 units remaining) + - location: 24 (remaining gas: 1039982.632 units remaining) [ {} ] - - location: 35 (remaining gas: 1039982.627 units remaining) + - location: 35 (remaining gas: 1039982.622 units remaining) [ (Right {}) ] - - location: 24 (remaining gas: 1039982.617 units remaining) + - location: 24 (remaining gas: 1039982.607 units remaining) [ (Right {}) ] - - location: 41 (remaining gas: 1039982.607 units remaining) + - location: 41 (remaining gas: 1039982.592 units remaining) [ {} ] - - location: 41 (remaining gas: 1039982.597 units remaining) + - location: 41 (remaining gas: 1039982.582 units remaining) [ {} {} ] - - location: 43 (remaining gas: 1039982.587 units remaining) + - location: 43 (remaining gas: 1039982.572 units remaining) [ (Pair {} {}) ] 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 091c62915e58..63f2dff238a6 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 @@ -39,114 +39,114 @@ trace [ (Pair 0 0) ] - location: 28 (remaining gas: 1039981.304 units remaining) [ 0 ] - - location: 26 (remaining gas: 1039981.284 units remaining) + - location: 26 (remaining gas: 1039981.279 units remaining) [ 0 0 ] - - location: 22 (remaining gas: 1039981.264 units remaining) + - location: 22 (remaining gas: 1039981.254 units remaining) [ (Pair 0 100) 0 0 ] - - location: 29 (remaining gas: 1039981.254 units remaining) + - location: 29 (remaining gas: 1039981.244 units remaining) [ (Pair 0 100) (Pair 0 100) 0 0 ] - - location: 30 (remaining gas: 1039981.254 units remaining) + - location: 30 (remaining gas: 1039981.244 units remaining) [ (Pair 0 100) 0 0 ] - - location: 32 (remaining gas: 1039981.244 units remaining) + - location: 32 (remaining gas: 1039981.234 units remaining) [ 0 0 0 ] - - location: 33 (remaining gas: 1039981.209 units remaining) + - location: 33 (remaining gas: 1039981.199 units remaining) [ 0 0 ] - - location: 30 (remaining gas: 1039981.189 units remaining) + - location: 30 (remaining gas: 1039981.174 units remaining) [ (Pair 0 100) 0 0 ] - - location: 34 (remaining gas: 1039981.179 units remaining) + - location: 34 (remaining gas: 1039981.164 units remaining) [ 0 (Pair 0 100) 0 ] - - location: 35 (remaining gas: 1039981.179 units remaining) + - location: 35 (remaining gas: 1039981.164 units remaining) [ (Pair 0 100) 0 ] - - location: 37 (remaining gas: 1039981.169 units remaining) + - location: 37 (remaining gas: 1039981.154 units remaining) [ 100 0 ] - - location: 38 (remaining gas: 1039981.134 units remaining) + - location: 38 (remaining gas: 1039981.119 units remaining) [ 100 ] - - location: 35 (remaining gas: 1039981.114 units remaining) + - location: 35 (remaining gas: 1039981.094 units remaining) [ 0 100 ] - - location: 39 (remaining gas: 1039981.104 units remaining) + - location: 39 (remaining gas: 1039981.084 units remaining) [ (Pair 0 100) ] - - location: 20 (remaining gas: 1039981.094 units remaining) + - location: 20 (remaining gas: 1039981.069 units remaining) [ (Pair 2 100) (Pair 0 100) ] - - location: 22 (remaining gas: 1039981.094 units remaining) + - location: 22 (remaining gas: 1039981.069 units remaining) [ (Pair 0 100) ] - - location: 24 (remaining gas: 1039981.084 units remaining) + - location: 24 (remaining gas: 1039981.059 units remaining) [ (Pair 0 100) (Pair 0 100) ] - - location: 25 (remaining gas: 1039981.074 units remaining) + - location: 25 (remaining gas: 1039981.049 units remaining) [ 0 (Pair 0 100) ] - - location: 26 (remaining gas: 1039981.074 units remaining) + - location: 26 (remaining gas: 1039981.049 units remaining) [ (Pair 0 100) ] - - location: 28 (remaining gas: 1039981.064 units remaining) + - location: 28 (remaining gas: 1039981.039 units remaining) [ 100 ] - - location: 26 (remaining gas: 1039981.044 units remaining) + - location: 26 (remaining gas: 1039981.014 units remaining) [ 0 100 ] - - location: 22 (remaining gas: 1039981.024 units remaining) + - location: 22 (remaining gas: 1039980.989 units remaining) [ (Pair 2 100) 0 100 ] - - location: 29 (remaining gas: 1039981.014 units remaining) + - location: 29 (remaining gas: 1039980.979 units remaining) [ (Pair 2 100) (Pair 2 100) 0 100 ] - - location: 30 (remaining gas: 1039981.014 units remaining) + - location: 30 (remaining gas: 1039980.979 units remaining) [ (Pair 2 100) 0 100 ] - - location: 32 (remaining gas: 1039981.004 units remaining) + - location: 32 (remaining gas: 1039980.969 units remaining) [ 2 0 100 ] - - location: 33 (remaining gas: 1039980.969 units remaining) + - location: 33 (remaining gas: 1039980.934 units remaining) [ 2 100 ] - - location: 30 (remaining gas: 1039980.949 units remaining) + - location: 30 (remaining gas: 1039980.909 units remaining) [ (Pair 2 100) 2 100 ] - - location: 34 (remaining gas: 1039980.939 units remaining) + - location: 34 (remaining gas: 1039980.899 units remaining) [ 2 (Pair 2 100) 100 ] - - location: 35 (remaining gas: 1039980.939 units remaining) + - location: 35 (remaining gas: 1039980.899 units remaining) [ (Pair 2 100) 100 ] - - location: 37 (remaining gas: 1039980.929 units remaining) + - location: 37 (remaining gas: 1039980.889 units remaining) [ 100 100 ] - - location: 38 (remaining gas: 1039980.894 units remaining) + - location: 38 (remaining gas: 1039980.854 units remaining) [ 200 ] - - location: 35 (remaining gas: 1039980.874 units remaining) + - location: 35 (remaining gas: 1039980.829 units remaining) [ 2 200 ] - - location: 39 (remaining gas: 1039980.864 units remaining) + - location: 39 (remaining gas: 1039980.819 units remaining) [ (Pair 2 200) ] - - location: 20 (remaining gas: 1039980.854 units remaining) + - location: 20 (remaining gas: 1039980.804 units remaining) [ (Pair 2 200) ] - - location: 40 (remaining gas: 1039980.844 units remaining) + - location: 40 (remaining gas: 1039980.794 units remaining) [ {} (Pair 2 200) ] - - location: 42 (remaining gas: 1039980.834 units remaining) + - location: 42 (remaining gas: 1039980.784 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 ebaeb133c70c..e6d7e861616e 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 @@ -39,114 +39,114 @@ trace [ (Pair 0 0) ] - location: 28 (remaining gas: 1039981.304 units remaining) [ 0 ] - - location: 26 (remaining gas: 1039981.284 units remaining) + - location: 26 (remaining gas: 1039981.279 units remaining) [ 0 0 ] - - location: 22 (remaining gas: 1039981.264 units remaining) + - location: 22 (remaining gas: 1039981.254 units remaining) [ (Pair 1 1) 0 0 ] - - location: 29 (remaining gas: 1039981.254 units remaining) + - location: 29 (remaining gas: 1039981.244 units remaining) [ (Pair 1 1) (Pair 1 1) 0 0 ] - - location: 30 (remaining gas: 1039981.254 units remaining) + - location: 30 (remaining gas: 1039981.244 units remaining) [ (Pair 1 1) 0 0 ] - - location: 32 (remaining gas: 1039981.244 units remaining) + - location: 32 (remaining gas: 1039981.234 units remaining) [ 1 0 0 ] - - location: 33 (remaining gas: 1039981.209 units remaining) + - location: 33 (remaining gas: 1039981.199 units remaining) [ 1 0 ] - - location: 30 (remaining gas: 1039981.189 units remaining) + - location: 30 (remaining gas: 1039981.174 units remaining) [ (Pair 1 1) 1 0 ] - - location: 34 (remaining gas: 1039981.179 units remaining) + - location: 34 (remaining gas: 1039981.164 units remaining) [ 1 (Pair 1 1) 0 ] - - location: 35 (remaining gas: 1039981.179 units remaining) + - location: 35 (remaining gas: 1039981.164 units remaining) [ (Pair 1 1) 0 ] - - location: 37 (remaining gas: 1039981.169 units remaining) + - location: 37 (remaining gas: 1039981.154 units remaining) [ 1 0 ] - - location: 38 (remaining gas: 1039981.134 units remaining) + - location: 38 (remaining gas: 1039981.119 units remaining) [ 1 ] - - location: 35 (remaining gas: 1039981.114 units remaining) + - location: 35 (remaining gas: 1039981.094 units remaining) [ 1 1 ] - - location: 39 (remaining gas: 1039981.104 units remaining) + - location: 39 (remaining gas: 1039981.084 units remaining) [ (Pair 1 1) ] - - location: 20 (remaining gas: 1039981.094 units remaining) + - location: 20 (remaining gas: 1039981.069 units remaining) [ (Pair 2 100) (Pair 1 1) ] - - location: 22 (remaining gas: 1039981.094 units remaining) + - location: 22 (remaining gas: 1039981.069 units remaining) [ (Pair 1 1) ] - - location: 24 (remaining gas: 1039981.084 units remaining) + - location: 24 (remaining gas: 1039981.059 units remaining) [ (Pair 1 1) (Pair 1 1) ] - - location: 25 (remaining gas: 1039981.074 units remaining) + - location: 25 (remaining gas: 1039981.049 units remaining) [ 1 (Pair 1 1) ] - - location: 26 (remaining gas: 1039981.074 units remaining) + - location: 26 (remaining gas: 1039981.049 units remaining) [ (Pair 1 1) ] - - location: 28 (remaining gas: 1039981.064 units remaining) + - location: 28 (remaining gas: 1039981.039 units remaining) [ 1 ] - - location: 26 (remaining gas: 1039981.044 units remaining) + - location: 26 (remaining gas: 1039981.014 units remaining) [ 1 1 ] - - location: 22 (remaining gas: 1039981.024 units remaining) + - location: 22 (remaining gas: 1039980.989 units remaining) [ (Pair 2 100) 1 1 ] - - location: 29 (remaining gas: 1039981.014 units remaining) + - location: 29 (remaining gas: 1039980.979 units remaining) [ (Pair 2 100) (Pair 2 100) 1 1 ] - - location: 30 (remaining gas: 1039981.014 units remaining) + - location: 30 (remaining gas: 1039980.979 units remaining) [ (Pair 2 100) 1 1 ] - - location: 32 (remaining gas: 1039981.004 units remaining) + - location: 32 (remaining gas: 1039980.969 units remaining) [ 2 1 1 ] - - location: 33 (remaining gas: 1039980.969 units remaining) + - location: 33 (remaining gas: 1039980.934 units remaining) [ 3 1 ] - - location: 30 (remaining gas: 1039980.949 units remaining) + - location: 30 (remaining gas: 1039980.909 units remaining) [ (Pair 2 100) 3 1 ] - - location: 34 (remaining gas: 1039980.939 units remaining) + - location: 34 (remaining gas: 1039980.899 units remaining) [ 3 (Pair 2 100) 1 ] - - location: 35 (remaining gas: 1039980.939 units remaining) + - location: 35 (remaining gas: 1039980.899 units remaining) [ (Pair 2 100) 1 ] - - location: 37 (remaining gas: 1039980.929 units remaining) + - location: 37 (remaining gas: 1039980.889 units remaining) [ 100 1 ] - - location: 38 (remaining gas: 1039980.894 units remaining) + - location: 38 (remaining gas: 1039980.854 units remaining) [ 101 ] - - location: 35 (remaining gas: 1039980.874 units remaining) + - location: 35 (remaining gas: 1039980.829 units remaining) [ 3 101 ] - - location: 39 (remaining gas: 1039980.864 units remaining) + - location: 39 (remaining gas: 1039980.819 units remaining) [ (Pair 3 101) ] - - location: 20 (remaining gas: 1039980.854 units remaining) + - location: 20 (remaining gas: 1039980.804 units remaining) [ (Pair 3 101) ] - - location: 40 (remaining gas: 1039980.844 units remaining) + - location: 40 (remaining gas: 1039980.794 units remaining) [ {} (Pair 3 101) ] - - location: 42 (remaining gas: 1039980.834 units remaining) + - location: 42 (remaining gas: 1039980.784 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 30d9dcf634be..74d9aed0778e 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" @@ -26,43 +26,43 @@ trace - location: 16 (remaining gas: 1039990.043 units remaining) [ 15 15 ] - - location: 14 (remaining gas: 1039990.023 units remaining) + - location: 14 (remaining gas: 1039990.018 units remaining) [ 5 15 15 ] - - location: 17 (remaining gas: 1039989.988 units remaining) + - location: 17 (remaining gas: 1039989.983 units remaining) [ 20 15 ] - - location: 11 (remaining gas: 1039989.978 units remaining) + - location: 11 (remaining gas: 1039989.968 units remaining) [ (Pair "foo" 1) 15 ] - - location: 13 (remaining gas: 1039989.968 units remaining) + - location: 13 (remaining gas: 1039989.958 units remaining) [ 1 15 ] - - location: 14 (remaining gas: 1039989.968 units remaining) + - location: 14 (remaining gas: 1039989.958 units remaining) [ 15 ] - - location: 16 (remaining gas: 1039989.958 units remaining) + - location: 16 (remaining gas: 1039989.948 units remaining) [ 15 15 ] - - location: 14 (remaining gas: 1039989.938 units remaining) + - location: 14 (remaining gas: 1039989.923 units remaining) [ 1 15 15 ] - - location: 17 (remaining gas: 1039989.903 units remaining) + - location: 17 (remaining gas: 1039989.888 units remaining) [ 16 15 ] - - location: 11 (remaining gas: 1039989.893 units remaining) + - location: 11 (remaining gas: 1039989.873 units remaining) [ { Elt "bar" 20 ; Elt "foo" 16 } 15 ] - - location: 18 (remaining gas: 1039989.893 units remaining) + - location: 18 (remaining gas: 1039989.873 units remaining) [ 15 ] - - location: 20 (remaining gas: 1039989.883 units remaining) + - location: 20 (remaining gas: 1039989.863 units remaining) [ ] - - location: 18 (remaining gas: 1039989.863 units remaining) + - location: 18 (remaining gas: 1039989.838 units remaining) [ { Elt "bar" 20 ; Elt "foo" 16 } ] - - location: 21 (remaining gas: 1039989.853 units remaining) + - location: 21 (remaining gas: 1039989.828 units remaining) [ {} { Elt "bar" 20 ; Elt "foo" 16 } ] - - location: 23 (remaining gas: 1039989.843 units remaining) + - location: 23 (remaining gas: 1039989.818 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 bd780bb62211..204221d443b6 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" @@ -26,25 +26,25 @@ trace - location: 16 (remaining gas: 1039990.414 units remaining) [ 10 10 ] - - location: 14 (remaining gas: 1039990.394 units remaining) + - location: 14 (remaining gas: 1039990.389 units remaining) [ 1 10 10 ] - - location: 17 (remaining gas: 1039990.359 units remaining) + - location: 17 (remaining gas: 1039990.354 units remaining) [ 11 10 ] - - location: 11 (remaining gas: 1039990.349 units remaining) + - location: 11 (remaining gas: 1039990.339 units remaining) [ { Elt "foo" 11 } 10 ] - - location: 18 (remaining gas: 1039990.349 units remaining) + - location: 18 (remaining gas: 1039990.339 units remaining) [ 10 ] - - location: 20 (remaining gas: 1039990.339 units remaining) + - location: 20 (remaining gas: 1039990.329 units remaining) [ ] - - location: 18 (remaining gas: 1039990.319 units remaining) + - location: 18 (remaining gas: 1039990.304 units remaining) [ { Elt "foo" 11 } ] - - location: 21 (remaining gas: 1039990.309 units remaining) + - location: 21 (remaining gas: 1039990.294 units remaining) [ {} { Elt "foo" 11 } ] - - location: 23 (remaining gas: 1039990.299 units remaining) + - location: 23 (remaining gas: 1039990.284 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 b6e191dca477..30a877c6cbcf 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 @@ -22,11 +22,11 @@ trace [ 10 ] - location: 20 (remaining gas: 1039990.754 units remaining) [ ] - - location: 18 (remaining gas: 1039990.734 units remaining) + - location: 18 (remaining gas: 1039990.729 units remaining) [ {} ] - - location: 21 (remaining gas: 1039990.724 units remaining) + - location: 21 (remaining gas: 1039990.719 units remaining) [ {} {} ] - - location: 23 (remaining gas: 1039990.714 units remaining) + - location: 23 (remaining gas: 1039990.709 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 a5e17ae873e4..c67f5f625ee2 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 @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039990.254 units remaining) [ { Elt 0 1 } { Elt 0 1 } ] - - location: 13 (remaining gas: 1039990.234 units remaining) + - location: 13 (remaining gas: 1039990.229 units remaining) [ 1 { Elt 0 1 } { Elt 0 1 } ] - - location: 17 (remaining gas: 1039990.154 units remaining) + - location: 17 (remaining gas: 1039990.149 units remaining) [ False { Elt 0 1 } ] - - location: 18 (remaining gas: 1039990.144 units remaining) + - location: 18 (remaining gas: 1039990.139 units remaining) [ (Some False) { Elt 0 1 } ] - - location: 19 (remaining gas: 1039990.134 units remaining) + - location: 19 (remaining gas: 1039990.129 units remaining) [ { Elt 0 1 } (Some False) ] - - location: 20 (remaining gas: 1039990.124 units remaining) + - location: 20 (remaining gas: 1039990.119 units remaining) [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (remaining gas: 1039990.114 units remaining) + - location: 21 (remaining gas: 1039990.109 units remaining) [ {} (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (remaining gas: 1039990.104 units remaining) + - location: 23 (remaining gas: 1039990.099 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 a6afa9d662d5..4b737f886893 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 @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039990.254 units remaining) [ { Elt 1 0 } { Elt 1 0 } ] - - location: 13 (remaining gas: 1039990.234 units remaining) + - location: 13 (remaining gas: 1039990.229 units remaining) [ 1 { Elt 1 0 } { Elt 1 0 } ] - - location: 17 (remaining gas: 1039990.154 units remaining) + - location: 17 (remaining gas: 1039990.149 units remaining) [ True { Elt 1 0 } ] - - location: 18 (remaining gas: 1039990.144 units remaining) + - location: 18 (remaining gas: 1039990.139 units remaining) [ (Some True) { Elt 1 0 } ] - - location: 19 (remaining gas: 1039990.134 units remaining) + - location: 19 (remaining gas: 1039990.129 units remaining) [ { Elt 1 0 } (Some True) ] - - location: 20 (remaining gas: 1039990.124 units remaining) + - location: 20 (remaining gas: 1039990.119 units remaining) [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (remaining gas: 1039990.114 units remaining) + - location: 21 (remaining gas: 1039990.109 units remaining) [ {} (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (remaining gas: 1039990.104 units remaining) + - location: 23 (remaining gas: 1039990.099 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 6360854cd53d..52de74fc3aae 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 @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039989.939 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039989.919 units remaining) + - location: 13 (remaining gas: 1039989.914 units remaining) [ 1 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039989.839 units remaining) + - location: 17 (remaining gas: 1039989.834 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039989.829 units remaining) + - location: 18 (remaining gas: 1039989.824 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039989.819 units remaining) + - location: 19 (remaining gas: 1039989.814 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039989.809 units remaining) + - location: 20 (remaining gas: 1039989.804 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039989.799 units remaining) + - location: 21 (remaining gas: 1039989.794 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039989.789 units remaining) + - location: 23 (remaining gas: 1039989.784 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 518ecff0484f..56e8f57438d5 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 @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039989.939 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039989.919 units remaining) + - location: 13 (remaining gas: 1039989.914 units remaining) [ 2 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039989.839 units remaining) + - location: 17 (remaining gas: 1039989.834 units remaining) [ True { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039989.829 units remaining) + - location: 18 (remaining gas: 1039989.824 units remaining) [ (Some True) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039989.819 units remaining) + - location: 19 (remaining gas: 1039989.814 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some True) ] - - location: 20 (remaining gas: 1039989.809 units remaining) + - location: 20 (remaining gas: 1039989.804 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (remaining gas: 1039989.799 units remaining) + - location: 21 (remaining gas: 1039989.794 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (remaining gas: 1039989.789 units remaining) + - location: 23 (remaining gas: 1039989.784 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 42085d266623..b308b20ace4a 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 @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039989.939 units remaining) [ { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (remaining gas: 1039989.919 units remaining) + - location: 13 (remaining gas: 1039989.914 units remaining) [ 3 { Elt 1 4 ; Elt 2 11 } { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (remaining gas: 1039989.839 units remaining) + - location: 17 (remaining gas: 1039989.834 units remaining) [ False { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (remaining gas: 1039989.829 units remaining) + - location: 18 (remaining gas: 1039989.824 units remaining) [ (Some False) { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (remaining gas: 1039989.819 units remaining) + - location: 19 (remaining gas: 1039989.814 units remaining) [ { Elt 1 4 ; Elt 2 11 } (Some False) ] - - location: 20 (remaining gas: 1039989.809 units remaining) + - location: 20 (remaining gas: 1039989.804 units remaining) [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (remaining gas: 1039989.799 units remaining) + - location: 21 (remaining gas: 1039989.794 units remaining) [ {} (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (remaining gas: 1039989.789 units remaining) + - location: 23 (remaining gas: 1039989.784 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 12d26bad5356..e9da23ac69e3 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 @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039990.534 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039990.514 units remaining) + - location: 13 (remaining gas: 1039990.509 units remaining) [ 1 {} {} ] - - location: 17 (remaining gas: 1039990.434 units remaining) + - location: 17 (remaining gas: 1039990.429 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039990.424 units remaining) + - location: 18 (remaining gas: 1039990.419 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039990.414 units remaining) + - location: 19 (remaining gas: 1039990.409 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039990.404 units remaining) + - location: 20 (remaining gas: 1039990.399 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039990.394 units remaining) + - location: 21 (remaining gas: 1039990.389 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039990.384 units remaining) + - location: 23 (remaining gas: 1039990.379 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 67eb8fc04432..9ceadd37ffe2 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" @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039989.789 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039989.769 units remaining) + - location: 13 (remaining gas: 1039989.764 units remaining) [ "bar" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039989.680 units remaining) + - location: 17 (remaining gas: 1039989.675 units remaining) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039989.670 units remaining) + - location: 18 (remaining gas: 1039989.665 units remaining) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039989.660 units remaining) + - location: 19 (remaining gas: 1039989.655 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039989.650 units remaining) + - location: 20 (remaining gas: 1039989.645 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039989.640 units remaining) + - location: 21 (remaining gas: 1039989.635 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039989.630 units remaining) + - location: 23 (remaining gas: 1039989.625 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 5a6dc2910da7..8f7814c98977 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" @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039989.789 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039989.769 units remaining) + - location: 13 (remaining gas: 1039989.764 units remaining) [ "foo" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039989.680 units remaining) + - location: 17 (remaining gas: 1039989.675 units remaining) [ True { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039989.670 units remaining) + - location: 18 (remaining gas: 1039989.665 units remaining) [ (Some True) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039989.660 units remaining) + - location: 19 (remaining gas: 1039989.655 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some True) ] - - location: 20 (remaining gas: 1039989.650 units remaining) + - location: 20 (remaining gas: 1039989.645 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (remaining gas: 1039989.640 units remaining) + - location: 21 (remaining gas: 1039989.635 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (remaining gas: 1039989.630 units remaining) + - location: 23 (remaining gas: 1039989.625 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 27a5ae23a027..ccabc3c552d2 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" @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039989.789 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (remaining gas: 1039989.769 units remaining) + - location: 13 (remaining gas: 1039989.764 units remaining) [ "baz" { Elt "bar" 4 ; Elt "foo" 11 } { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (remaining gas: 1039989.680 units remaining) + - location: 17 (remaining gas: 1039989.675 units remaining) [ False { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (remaining gas: 1039989.670 units remaining) + - location: 18 (remaining gas: 1039989.665 units remaining) [ (Some False) { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (remaining gas: 1039989.660 units remaining) + - location: 19 (remaining gas: 1039989.655 units remaining) [ { Elt "bar" 4 ; Elt "foo" 11 } (Some False) ] - - location: 20 (remaining gas: 1039989.650 units remaining) + - location: 20 (remaining gas: 1039989.645 units remaining) [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 21 (remaining gas: 1039989.640 units remaining) + - location: 21 (remaining gas: 1039989.635 units remaining) [ {} (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 23 (remaining gas: 1039989.630 units remaining) + - location: 23 (remaining gas: 1039989.625 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 e58f171396e0..95320ea2295f 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" @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039990.160 units remaining) [ { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 13 (remaining gas: 1039990.140 units remaining) + - location: 13 (remaining gas: 1039990.135 units remaining) [ "foo" { Elt "foo" 0 } { Elt "foo" 0 } ] - - location: 17 (remaining gas: 1039990.054 units remaining) + - location: 17 (remaining gas: 1039990.049 units remaining) [ True { Elt "foo" 0 } ] - - location: 18 (remaining gas: 1039990.044 units remaining) + - location: 18 (remaining gas: 1039990.039 units remaining) [ (Some True) { Elt "foo" 0 } ] - - location: 19 (remaining gas: 1039990.034 units remaining) + - location: 19 (remaining gas: 1039990.029 units remaining) [ { Elt "foo" 0 } (Some True) ] - - location: 20 (remaining gas: 1039990.024 units remaining) + - location: 20 (remaining gas: 1039990.019 units remaining) [ (Pair { Elt "foo" 0 } (Some True)) ] - - location: 21 (remaining gas: 1039990.014 units remaining) + - location: 21 (remaining gas: 1039990.009 units remaining) [ {} (Pair { Elt "foo" 0 } (Some True)) ] - - location: 23 (remaining gas: 1039990.004 units remaining) + - location: 23 (remaining gas: 1039989.999 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 a75d5f59ac2e..4d554cfd9140 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" @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039990.160 units remaining) [ { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 13 (remaining gas: 1039990.140 units remaining) + - location: 13 (remaining gas: 1039990.135 units remaining) [ "bar" { Elt "foo" 1 } { Elt "foo" 1 } ] - - location: 17 (remaining gas: 1039990.054 units remaining) + - location: 17 (remaining gas: 1039990.049 units remaining) [ False { Elt "foo" 1 } ] - - location: 18 (remaining gas: 1039990.044 units remaining) + - location: 18 (remaining gas: 1039990.039 units remaining) [ (Some False) { Elt "foo" 1 } ] - - location: 19 (remaining gas: 1039990.034 units remaining) + - location: 19 (remaining gas: 1039990.029 units remaining) [ { Elt "foo" 1 } (Some False) ] - - location: 20 (remaining gas: 1039990.024 units remaining) + - location: 20 (remaining gas: 1039990.019 units remaining) [ (Pair { Elt "foo" 1 } (Some False)) ] - - location: 21 (remaining gas: 1039990.014 units remaining) + - location: 21 (remaining gas: 1039990.009 units remaining) [ {} (Pair { Elt "foo" 1 } (Some False)) ] - - location: 23 (remaining gas: 1039990.004 units remaining) + - location: 23 (remaining gas: 1039989.999 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 2fb57047a03a..dd1a90c27c5d 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" @@ -19,24 +19,24 @@ trace - location: 16 (remaining gas: 1039990.490 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039990.470 units remaining) + - location: 13 (remaining gas: 1039990.465 units remaining) [ "bar" {} {} ] - - location: 17 (remaining gas: 1039990.387 units remaining) + - location: 17 (remaining gas: 1039990.382 units remaining) [ False {} ] - - location: 18 (remaining gas: 1039990.377 units remaining) + - location: 18 (remaining gas: 1039990.372 units remaining) [ (Some False) {} ] - - location: 19 (remaining gas: 1039990.367 units remaining) + - location: 19 (remaining gas: 1039990.362 units remaining) [ {} (Some False) ] - - location: 20 (remaining gas: 1039990.357 units remaining) + - location: 20 (remaining gas: 1039990.352 units remaining) [ (Pair {} (Some False)) ] - - location: 21 (remaining gas: 1039990.347 units remaining) + - location: 21 (remaining gas: 1039990.342 units remaining) [ {} (Pair {} (Some False)) ] - - location: 23 (remaining gas: 1039990.337 units remaining) + - location: 23 (remaining gas: 1039990.332 units remaining) [ (Pair {} {} (Some False)) ] 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 b971c6b0eaa8..5ea0b2ac04f7 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 @@ -29,103 +29,103 @@ trace [ True ] - location: 22 (remaining gas: 1039949.106 units remaining) [ ] - - location: 22 (remaining gas: 1039949.096 units remaining) + - location: 22 (remaining gas: 1039949.091 units remaining) [ ] - - location: 28 (remaining gas: 1039949.086 units remaining) + - location: 28 (remaining gas: 1039949.081 units remaining) [ 10 ] - - location: 31 (remaining gas: 1039949.076 units remaining) + - location: 31 (remaining gas: 1039949.071 units remaining) [ 7987 10 ] - - location: 34 (remaining gas: 1039949.076 units remaining) + - location: 34 (remaining gas: 1039949.071 units remaining) [ 79870 ] - - location: 35 (remaining gas: 1039949.066 units remaining) + - location: 35 (remaining gas: 1039949.061 units remaining) [ 79870 79870 ] - - location: 38 (remaining gas: 1039949.031 units remaining) + - location: 38 (remaining gas: 1039949.026 units remaining) [ 0 ] - - location: 40 (remaining gas: 1039949.021 units remaining) + - location: 40 (remaining gas: 1039949.016 units remaining) [ True ] - - location: 41 (remaining gas: 1039949.021 units remaining) + - location: 41 (remaining gas: 1039949.016 units remaining) [ ] - - location: 41 (remaining gas: 1039949.011 units remaining) + - location: 41 (remaining gas: 1039949.001 units remaining) [ ] - - location: 47 (remaining gas: 1039949.001 units remaining) + - location: 47 (remaining gas: 1039948.991 units remaining) [ 10 ] - - location: 50 (remaining gas: 1039948.991 units remaining) + - location: 50 (remaining gas: 1039948.981 units remaining) [ -7987 10 ] - - location: 53 (remaining gas: 1039948.930 units remaining) + - location: 53 (remaining gas: 1039948.920 units remaining) [ -79870 ] - - location: 54 (remaining gas: 1039948.920 units remaining) + - location: 54 (remaining gas: 1039948.910 units remaining) [ -79870 -79870 ] - - location: 57 (remaining gas: 1039948.885 units remaining) + - location: 57 (remaining gas: 1039948.875 units remaining) [ 0 ] - - location: 59 (remaining gas: 1039948.875 units remaining) + - location: 59 (remaining gas: 1039948.865 units remaining) [ True ] - - location: 60 (remaining gas: 1039948.875 units remaining) - [ ] - location: 60 (remaining gas: 1039948.865 units remaining) [ ] - - location: 66 (remaining gas: 1039948.855 units remaining) + - location: 60 (remaining gas: 1039948.850 units remaining) + [ ] + - location: 66 (remaining gas: 1039948.840 units remaining) [ 10 ] - - location: 69 (remaining gas: 1039948.845 units remaining) + - location: 69 (remaining gas: 1039948.830 units remaining) [ -7987 10 ] - - location: 72 (remaining gas: 1039948.784 units remaining) + - location: 72 (remaining gas: 1039948.769 units remaining) [ -79870 ] - - location: 73 (remaining gas: 1039948.774 units remaining) + - location: 73 (remaining gas: 1039948.759 units remaining) [ -79870 -79870 ] - - location: 76 (remaining gas: 1039948.739 units remaining) + - location: 76 (remaining gas: 1039948.724 units remaining) [ 0 ] - - location: 78 (remaining gas: 1039948.729 units remaining) + - location: 78 (remaining gas: 1039948.714 units remaining) [ True ] - - location: 79 (remaining gas: 1039948.729 units remaining) + - location: 79 (remaining gas: 1039948.714 units remaining) [ ] - - location: 79 (remaining gas: 1039948.719 units remaining) + - location: 79 (remaining gas: 1039948.699 units remaining) [ ] - - location: 85 (remaining gas: 1039948.709 units remaining) + - location: 85 (remaining gas: 1039948.689 units remaining) [ -10 ] - - location: 88 (remaining gas: 1039948.699 units remaining) + - location: 88 (remaining gas: 1039948.679 units remaining) [ 7987 -10 ] - - location: 91 (remaining gas: 1039948.638 units remaining) + - location: 91 (remaining gas: 1039948.618 units remaining) [ -79870 ] - - location: 92 (remaining gas: 1039948.628 units remaining) + - location: 92 (remaining gas: 1039948.608 units remaining) [ -79870 -79870 ] - - location: 95 (remaining gas: 1039948.593 units remaining) + - location: 95 (remaining gas: 1039948.573 units remaining) [ 0 ] - - location: 97 (remaining gas: 1039948.583 units remaining) + - location: 97 (remaining gas: 1039948.563 units remaining) [ True ] - - location: 98 (remaining gas: 1039948.583 units remaining) + - location: 98 (remaining gas: 1039948.563 units remaining) [ ] - - location: 98 (remaining gas: 1039948.573 units remaining) + - location: 98 (remaining gas: 1039948.548 units remaining) [ ] - - location: 104 (remaining gas: 1039948.563 units remaining) + - location: 104 (remaining gas: 1039948.538 units remaining) [ 10 ] - - location: 107 (remaining gas: 1039948.553 units remaining) + - location: 107 (remaining gas: 1039948.528 units remaining) [ 7987 10 ] - - location: 110 (remaining gas: 1039948.492 units remaining) + - location: 110 (remaining gas: 1039948.467 units remaining) [ 79870 ] - - location: 111 (remaining gas: 1039948.482 units remaining) + - location: 111 (remaining gas: 1039948.457 units remaining) [ 79870 79870 ] - - location: 114 (remaining gas: 1039948.447 units remaining) + - location: 114 (remaining gas: 1039948.422 units remaining) [ 0 ] - - location: 116 (remaining gas: 1039948.437 units remaining) + - location: 116 (remaining gas: 1039948.412 units remaining) [ True ] - - location: 117 (remaining gas: 1039948.437 units remaining) + - location: 117 (remaining gas: 1039948.412 units remaining) [ ] - - location: 117 (remaining gas: 1039948.427 units remaining) + - location: 117 (remaining gas: 1039948.397 units remaining) [ ] - - location: 123 (remaining gas: 1039948.417 units remaining) + - location: 123 (remaining gas: 1039948.387 units remaining) [ Unit ] - - location: 124 (remaining gas: 1039948.407 units remaining) + - location: 124 (remaining gas: 1039948.377 units remaining) [ {} Unit ] - - location: 126 (remaining gas: 1039948.397 units remaining) + - location: 126 (remaining gas: 1039948.367 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 8fd095cc57e3..b9735ea7c404 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 @@ -21,18 +21,18 @@ trace [ (Some (Pair 257 0)) ] - location: 14 (remaining gas: 1039988.943 units remaining) [ (Pair 257 0) ] - - location: 14 (remaining gas: 1039988.933 units remaining) + - location: 14 (remaining gas: 1039988.928 units remaining) [ (Pair 257 0) ] - - location: 20 (remaining gas: 1039988.923 units remaining) + - location: 20 (remaining gas: 1039988.918 units remaining) [ 257 ] - - location: 21 (remaining gas: 1039988.913 units remaining) + - location: 21 (remaining gas: 1039988.908 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 257 ] - - location: 24 (remaining gas: 1039988.646 units remaining) + - location: 24 (remaining gas: 1039988.641 units remaining) [ 0x0101000000000000000000000000000000000000000000000000000000000000 ] - - location: 25 (remaining gas: 1039988.636 units remaining) + - location: 25 (remaining gas: 1039988.631 units remaining) [ {} 0x0101000000000000000000000000000000000000000000000000000000000000 ] - - location: 27 (remaining gas: 1039988.626 units remaining) + - location: 27 (remaining gas: 1039988.621 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 c2f7ec1d981b..6f015bbcddfd 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 @@ -21,18 +21,18 @@ trace [ (Some (Pair 16 0)) ] - location: 14 (remaining gas: 1039988.943 units remaining) [ (Pair 16 0) ] - - location: 14 (remaining gas: 1039988.933 units remaining) + - location: 14 (remaining gas: 1039988.928 units remaining) [ (Pair 16 0) ] - - location: 20 (remaining gas: 1039988.923 units remaining) + - location: 20 (remaining gas: 1039988.918 units remaining) [ 16 ] - - location: 21 (remaining gas: 1039988.913 units remaining) + - location: 21 (remaining gas: 1039988.908 units remaining) [ 0x0100000000000000000000000000000000000000000000000000000000000000 16 ] - - location: 24 (remaining gas: 1039988.647 units remaining) + - location: 24 (remaining gas: 1039988.642 units remaining) [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 25 (remaining gas: 1039988.637 units remaining) + - location: 25 (remaining gas: 1039988.632 units remaining) [ {} 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 27 (remaining gas: 1039988.627 units remaining) + - location: 27 (remaining gas: 1039988.622 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 25c5d8650687..7a4c4d6ec1f9 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 @@ -15,11 +15,11 @@ trace [ -2 ] - location: 12 (remaining gas: 1039993.796 units remaining) [ 2 ] - - location: 10 (remaining gas: 1039993.786 units remaining) + - location: 10 (remaining gas: 1039993.781 units remaining) [ 2 ] - - location: 15 (remaining gas: 1039993.776 units remaining) + - location: 15 (remaining gas: 1039993.771 units remaining) [ {} 2 ] - - location: 17 (remaining gas: 1039993.766 units remaining) + - location: 17 (remaining gas: 1039993.761 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 542f54843b41..b8025a233edd 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 @@ -15,11 +15,11 @@ trace [ 0 ] - location: 12 (remaining gas: 1039993.796 units remaining) [ 0 ] - - location: 10 (remaining gas: 1039993.786 units remaining) + - location: 10 (remaining gas: 1039993.781 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039993.776 units remaining) + - location: 15 (remaining gas: 1039993.771 units remaining) [ {} 0 ] - - location: 17 (remaining gas: 1039993.766 units remaining) + - location: 17 (remaining gas: 1039993.761 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 315b5fe2b05f..7ef3788ee6a3 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 @@ -15,11 +15,11 @@ trace [ 2 ] - location: 12 (remaining gas: 1039993.796 units remaining) [ -2 ] - - location: 10 (remaining gas: 1039993.786 units remaining) + - location: 10 (remaining gas: 1039993.781 units remaining) [ -2 ] - - location: 15 (remaining gas: 1039993.776 units remaining) + - location: 15 (remaining gas: 1039993.771 units remaining) [ {} -2 ] - - location: 17 (remaining gas: 1039993.766 units remaining) + - location: 17 (remaining gas: 1039993.761 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 11d6e748c2b7..b9326e586c11 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 @@ -15,11 +15,11 @@ trace [ 0 ] - location: 14 (remaining gas: 1039993.796 units remaining) [ 0 ] - - location: 10 (remaining gas: 1039993.786 units remaining) + - location: 10 (remaining gas: 1039993.781 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039993.776 units remaining) + - location: 15 (remaining gas: 1039993.771 units remaining) [ {} 0 ] - - location: 17 (remaining gas: 1039993.766 units remaining) + - location: 17 (remaining gas: 1039993.761 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 69d2b5589ab0..d30a47997111 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 @@ -15,11 +15,11 @@ trace [ 2 ] - location: 14 (remaining gas: 1039993.796 units remaining) [ -2 ] - - location: 10 (remaining gas: 1039993.786 units remaining) + - location: 10 (remaining gas: 1039993.781 units remaining) [ -2 ] - - location: 15 (remaining gas: 1039993.776 units remaining) + - location: 15 (remaining gas: 1039993.771 units remaining) [ {} -2 ] - - location: 17 (remaining gas: 1039993.766 units remaining) + - location: 17 (remaining gas: 1039993.761 units remaining) [ (Pair {} -2) ] 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 71f195e42e32..14a6f34a2193 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 @@ -15,13 +15,13 @@ trace [ -8 ] - location: 13 (remaining gas: 1039993 units remaining) [ 7 ] - - location: 11 (remaining gas: 1039992.990 units remaining) + - location: 11 (remaining gas: 1039992.985 units remaining) [ 7 ] - - location: 16 (remaining gas: 1039992.980 units remaining) + - location: 16 (remaining gas: 1039992.975 units remaining) [ (Some 7) ] - - location: 17 (remaining gas: 1039992.970 units remaining) + - location: 17 (remaining gas: 1039992.965 units remaining) [ {} (Some 7) ] - - location: 19 (remaining gas: 1039992.960 units remaining) + - location: 19 (remaining gas: 1039992.955 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 2b6416125392..0692f83607a1 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 @@ -15,13 +15,13 @@ trace [ -9 ] - location: 13 (remaining gas: 1039993 units remaining) [ 8 ] - - location: 11 (remaining gas: 1039992.990 units remaining) + - location: 11 (remaining gas: 1039992.985 units remaining) [ 8 ] - - location: 16 (remaining gas: 1039992.980 units remaining) + - location: 16 (remaining gas: 1039992.975 units remaining) [ (Some 8) ] - - location: 17 (remaining gas: 1039992.970 units remaining) + - location: 17 (remaining gas: 1039992.965 units remaining) [ {} (Some 8) ] - - location: 19 (remaining gas: 1039992.960 units remaining) + - location: 19 (remaining gas: 1039992.955 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 97c7e142bf48..4e3deaa32a2a 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 @@ -15,13 +15,13 @@ trace [ 0 ] - location: 13 (remaining gas: 1039993 units remaining) [ -1 ] - - location: 11 (remaining gas: 1039992.990 units remaining) + - location: 11 (remaining gas: 1039992.985 units remaining) [ -1 ] - - location: 16 (remaining gas: 1039992.980 units remaining) + - location: 16 (remaining gas: 1039992.975 units remaining) [ (Some -1) ] - - location: 17 (remaining gas: 1039992.970 units remaining) + - location: 17 (remaining gas: 1039992.965 units remaining) [ {} (Some -1) ] - - location: 19 (remaining gas: 1039992.960 units remaining) + - location: 19 (remaining gas: 1039992.955 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 3200f96062a2..0429db07ae33 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 @@ -15,13 +15,13 @@ trace [ 7 ] - location: 13 (remaining gas: 1039993 units remaining) [ -8 ] - - location: 11 (remaining gas: 1039992.990 units remaining) + - location: 11 (remaining gas: 1039992.985 units remaining) [ -8 ] - - location: 16 (remaining gas: 1039992.980 units remaining) + - location: 16 (remaining gas: 1039992.975 units remaining) [ (Some -8) ] - - location: 17 (remaining gas: 1039992.970 units remaining) + - location: 17 (remaining gas: 1039992.965 units remaining) [ {} (Some -8) ] - - location: 19 (remaining gas: 1039992.960 units remaining) + - location: 19 (remaining gas: 1039992.955 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 d2ba8e56348b..394ca276b913 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 @@ -15,13 +15,13 @@ trace [ 8 ] - location: 13 (remaining gas: 1039993 units remaining) [ -9 ] - - location: 11 (remaining gas: 1039992.990 units remaining) + - location: 11 (remaining gas: 1039992.985 units remaining) [ -9 ] - - location: 16 (remaining gas: 1039992.980 units remaining) + - location: 16 (remaining gas: 1039992.975 units remaining) [ (Some -9) ] - - location: 17 (remaining gas: 1039992.970 units remaining) + - location: 17 (remaining gas: 1039992.965 units remaining) [ {} (Some -9) ] - - location: 19 (remaining gas: 1039992.960 units remaining) + - location: 19 (remaining gas: 1039992.955 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 669920f43df9..f495c59805bd 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 @@ -15,13 +15,13 @@ trace [ 0 ] - location: 15 (remaining gas: 1039993 units remaining) [ -1 ] - - location: 11 (remaining gas: 1039992.990 units remaining) + - location: 11 (remaining gas: 1039992.985 units remaining) [ -1 ] - - location: 16 (remaining gas: 1039992.980 units remaining) + - location: 16 (remaining gas: 1039992.975 units remaining) [ (Some -1) ] - - location: 17 (remaining gas: 1039992.970 units remaining) + - location: 17 (remaining gas: 1039992.965 units remaining) [ {} (Some -1) ] - - location: 19 (remaining gas: 1039992.960 units remaining) + - location: 19 (remaining gas: 1039992.955 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 b3a5debadf90..37b65b6feebe 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 @@ -15,13 +15,13 @@ trace [ 7 ] - location: 15 (remaining gas: 1039993 units remaining) [ -8 ] - - location: 11 (remaining gas: 1039992.990 units remaining) + - location: 11 (remaining gas: 1039992.985 units remaining) [ -8 ] - - location: 16 (remaining gas: 1039992.980 units remaining) + - location: 16 (remaining gas: 1039992.975 units remaining) [ (Some -8) ] - - location: 17 (remaining gas: 1039992.970 units remaining) + - location: 17 (remaining gas: 1039992.965 units remaining) [ {} (Some -8) ] - - location: 19 (remaining gas: 1039992.960 units remaining) + - location: 19 (remaining gas: 1039992.955 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 a07f7b1bf3c4..a0f8035d76b4 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 @@ -15,13 +15,13 @@ trace [ 8 ] - location: 15 (remaining gas: 1039993 units remaining) [ -9 ] - - location: 11 (remaining gas: 1039992.990 units remaining) + - location: 11 (remaining gas: 1039992.985 units remaining) [ -9 ] - - location: 16 (remaining gas: 1039992.980 units remaining) + - location: 16 (remaining gas: 1039992.975 units remaining) [ (Some -9) ] - - location: 17 (remaining gas: 1039992.970 units remaining) + - location: 17 (remaining gas: 1039992.965 units remaining) [ {} (Some -9) ] - - location: 19 (remaining gas: 1039992.960 units remaining) + - location: 19 (remaining gas: 1039992.955 units remaining) [ (Pair {} (Some -9)) ] 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 c3582f50b162..147ad9ea25eb 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" @@ -78,7 +78,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 19 (remaining gas: 1039851.757 units remaining) + - location: 19 (remaining gas: 1039851.752 units remaining) [ -1 -1 (Pair 1 @@ -89,7 +89,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 22 (remaining gas: 1039851.536 units remaining) + - location: 22 (remaining gas: 1039851.511 units remaining) [ 0x050041 -1 (Pair 1 @@ -100,7 +100,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 23 (remaining gas: 1039851.116 units remaining) + - location: 23 (remaining gas: 1039851.090 units remaining) [ (Some -1) -1 (Pair 1 @@ -111,7 +111,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (remaining gas: 1039851.116 units remaining) + - location: 26 (remaining gas: 1039851.090 units remaining) [ -1 -1 (Pair 1 @@ -122,7 +122,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (remaining gas: 1039851.106 units remaining) + - location: 26 (remaining gas: 1039851.075 units remaining) [ -1 -1 (Pair 1 @@ -133,7 +133,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 34 (remaining gas: 1039851.071 units remaining) + - location: 34 (remaining gas: 1039851.040 units remaining) [ 0 (Pair 1 "foobar" @@ -143,7 +143,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 35 (remaining gas: 1039851.061 units remaining) + - location: 35 (remaining gas: 1039851.030 units remaining) [ True (Pair 1 "foobar" @@ -153,7 +153,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (remaining gas: 1039851.061 units remaining) + - location: 36 (remaining gas: 1039851.030 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -162,7 +162,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (remaining gas: 1039851.051 units remaining) + - location: 36 (remaining gas: 1039851.015 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -171,7 +171,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 42 (remaining gas: 1039851.041 units remaining) + - location: 42 (remaining gas: 1039851.005 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -188,7 +188,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 43 (remaining gas: 1039851.031 units remaining) + - location: 43 (remaining gas: 1039850.995 units remaining) [ 1 (Pair 1 "foobar" @@ -198,7 +198,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (remaining gas: 1039851.031 units remaining) + - location: 44 (remaining gas: 1039850.995 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -207,7 +207,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 46 (remaining gas: 1039851.021 units remaining) + - location: 46 (remaining gas: 1039850.985 units remaining) [ 1 (Pair "foobar" 0x00aabbcc @@ -216,7 +216,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (remaining gas: 1039851.001 units remaining) + - location: 44 (remaining gas: 1039850.960 units remaining) [ 1 1 (Pair "foobar" @@ -226,7 +226,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 47 (remaining gas: 1039850.780 units remaining) + - location: 47 (remaining gas: 1039850.719 units remaining) [ 0x050001 1 (Pair "foobar" @@ -236,7 +236,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 48 (remaining gas: 1039850.360 units remaining) + - location: 48 (remaining gas: 1039850.298 units remaining) [ (Some 1) 1 (Pair "foobar" @@ -246,7 +246,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (remaining gas: 1039850.360 units remaining) + - location: 51 (remaining gas: 1039850.298 units remaining) [ 1 1 (Pair "foobar" @@ -256,7 +256,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (remaining gas: 1039850.350 units remaining) + - location: 51 (remaining gas: 1039850.283 units remaining) [ 1 1 (Pair "foobar" @@ -266,7 +266,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 59 (remaining gas: 1039850.315 units remaining) + - location: 59 (remaining gas: 1039850.248 units remaining) [ 0 (Pair "foobar" 0x00aabbcc @@ -275,7 +275,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 60 (remaining gas: 1039850.305 units remaining) + - location: 60 (remaining gas: 1039850.238 units remaining) [ True (Pair "foobar" 0x00aabbcc @@ -284,7 +284,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (remaining gas: 1039850.305 units remaining) + - location: 61 (remaining gas: 1039850.238 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -292,7 +292,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (remaining gas: 1039850.295 units remaining) + - location: 61 (remaining gas: 1039850.223 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -300,7 +300,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 67 (remaining gas: 1039850.285 units remaining) + - location: 67 (remaining gas: 1039850.213 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -315,7 +315,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 68 (remaining gas: 1039850.275 units remaining) + - location: 68 (remaining gas: 1039850.203 units remaining) [ "foobar" (Pair "foobar" 0x00aabbcc @@ -324,7 +324,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (remaining gas: 1039850.275 units remaining) + - location: 69 (remaining gas: 1039850.203 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -332,7 +332,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 71 (remaining gas: 1039850.265 units remaining) + - location: 71 (remaining gas: 1039850.193 units remaining) [ "foobar" (Pair 0x00aabbcc 1000 @@ -340,7 +340,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (remaining gas: 1039850.245 units remaining) + - location: 69 (remaining gas: 1039850.168 units remaining) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -349,7 +349,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 72 (remaining gas: 1039849.989 units remaining) + - location: 72 (remaining gas: 1039849.892 units remaining) [ 0x050100000006666f6f626172 "foobar" (Pair 0x00aabbcc @@ -358,7 +358,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 73 (remaining gas: 1039849.314 units remaining) + - location: 73 (remaining gas: 1039849.212 units remaining) [ (Some "foobar") "foobar" (Pair 0x00aabbcc @@ -367,7 +367,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (remaining gas: 1039849.314 units remaining) + - location: 76 (remaining gas: 1039849.212 units remaining) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -376,7 +376,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (remaining gas: 1039849.304 units remaining) + - location: 76 (remaining gas: 1039849.197 units remaining) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -385,7 +385,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 84 (remaining gas: 1039849.269 units remaining) + - location: 84 (remaining gas: 1039849.162 units remaining) [ 0 (Pair 0x00aabbcc 1000 @@ -393,7 +393,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 85 (remaining gas: 1039849.259 units remaining) + - location: 85 (remaining gas: 1039849.152 units remaining) [ True (Pair 0x00aabbcc 1000 @@ -401,21 +401,21 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (remaining gas: 1039849.259 units remaining) + - location: 86 (remaining gas: 1039849.152 units remaining) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (remaining gas: 1039849.249 units remaining) + - location: 86 (remaining gas: 1039849.137 units remaining) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 92 (remaining gas: 1039849.239 units remaining) + - location: 92 (remaining gas: 1039849.127 units remaining) [ (Pair 0x00aabbcc 1000 False @@ -428,7 +428,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 93 (remaining gas: 1039849.229 units remaining) + - location: 93 (remaining gas: 1039849.117 units remaining) [ 0x00aabbcc (Pair 0x00aabbcc 1000 @@ -436,21 +436,21 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (remaining gas: 1039849.229 units remaining) + - location: 94 (remaining gas: 1039849.117 units remaining) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 96 (remaining gas: 1039849.219 units remaining) + - location: 96 (remaining gas: 1039849.107 units remaining) [ 0x00aabbcc (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (remaining gas: 1039849.199 units remaining) + - location: 94 (remaining gas: 1039849.082 units remaining) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -458,7 +458,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 97 (remaining gas: 1039848.963 units remaining) + - location: 97 (remaining gas: 1039848.826 units remaining) [ 0x050a0000000400aabbcc 0x00aabbcc (Pair 1000 @@ -466,7 +466,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 98 (remaining gas: 1039848.402 units remaining) + - location: 98 (remaining gas: 1039848.261 units remaining) [ (Some 0x00aabbcc) 0x00aabbcc (Pair 1000 @@ -474,7 +474,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (remaining gas: 1039848.402 units remaining) + - location: 101 (remaining gas: 1039848.261 units remaining) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -482,7 +482,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (remaining gas: 1039848.392 units remaining) + - location: 101 (remaining gas: 1039848.246 units remaining) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -490,33 +490,33 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 109 (remaining gas: 1039848.357 units remaining) + - location: 109 (remaining gas: 1039848.211 units remaining) [ 0 (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 110 (remaining gas: 1039848.347 units remaining) + - location: 110 (remaining gas: 1039848.201 units remaining) [ True (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (remaining gas: 1039848.347 units remaining) + - location: 111 (remaining gas: 1039848.201 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (remaining gas: 1039848.337 units remaining) + - location: 111 (remaining gas: 1039848.186 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 117 (remaining gas: 1039848.327 units remaining) + - location: 117 (remaining gas: 1039848.176 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" @@ -527,83 +527,83 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 118 (remaining gas: 1039848.317 units remaining) + - location: 118 (remaining gas: 1039848.166 units remaining) [ 1000 (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (remaining gas: 1039848.317 units remaining) + - location: 119 (remaining gas: 1039848.166 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 121 (remaining gas: 1039848.307 units remaining) + - location: 121 (remaining gas: 1039848.156 units remaining) [ 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (remaining gas: 1039848.287 units remaining) + - location: 119 (remaining gas: 1039848.131 units remaining) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 122 (remaining gas: 1039848.041 units remaining) + - location: 122 (remaining gas: 1039847.865 units remaining) [ 0x0500a80f 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 123 (remaining gas: 1039847.601 units remaining) + - location: 123 (remaining gas: 1039847.423 units remaining) [ (Some 1000) 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (remaining gas: 1039847.601 units remaining) + - location: 126 (remaining gas: 1039847.423 units remaining) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (remaining gas: 1039847.591 units remaining) + - location: 126 (remaining gas: 1039847.408 units remaining) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 134 (remaining gas: 1039847.556 units remaining) + - location: 134 (remaining gas: 1039847.373 units remaining) [ 0 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 135 (remaining gas: 1039847.546 units remaining) + - location: 135 (remaining gas: 1039847.363 units remaining) [ True (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039847.546 units remaining) + - location: 136 (remaining gas: 1039847.363 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039847.536 units remaining) + - location: 136 (remaining gas: 1039847.348 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 142 (remaining gas: 1039847.526 units remaining) + - location: 142 (remaining gas: 1039847.338 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: 1039847.516 units remaining) + - location: 143 (remaining gas: 1039847.328 units remaining) [ False (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039847.516 units remaining) + - location: 144 (remaining gas: 1039847.328 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 146 (remaining gas: 1039847.506 units remaining) + - location: 146 (remaining gas: 1039847.318 units remaining) [ False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039847.486 units remaining) + - location: 144 (remaining gas: 1039847.293 units remaining) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 147 (remaining gas: 1039847.290 units remaining) + - location: 147 (remaining gas: 1039847.077 units remaining) [ 0x050303 False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 148 (remaining gas: 1039846.870 units remaining) + - location: 148 (remaining gas: 1039846.656 units remaining) [ (Some False) False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (remaining gas: 1039846.870 units remaining) + - location: 151 (remaining gas: 1039846.656 units remaining) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (remaining gas: 1039846.860 units remaining) + - location: 151 (remaining gas: 1039846.641 units remaining) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 159 (remaining gas: 1039846.825 units remaining) + - location: 159 (remaining gas: 1039846.606 units remaining) [ 0 (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 160 (remaining gas: 1039846.815 units remaining) + - location: 160 (remaining gas: 1039846.596 units remaining) [ True (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039846.815 units remaining) + - location: 161 (remaining gas: 1039846.596 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039846.805 units remaining) + - location: 161 (remaining gas: 1039846.581 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 167 (remaining gas: 1039846.795 units remaining) + - location: 167 (remaining gas: 1039846.571 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 168 (remaining gas: 1039846.785 units remaining) + - location: 168 (remaining gas: 1039846.561 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039846.785 units remaining) + - location: 169 (remaining gas: 1039846.561 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 171 (remaining gas: 1039846.775 units remaining) + - location: 171 (remaining gas: 1039846.551 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039846.755 units remaining) + - location: 169 (remaining gas: 1039846.526 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 172 (remaining gas: 1039846.279 units remaining) + - location: 172 (remaining gas: 1039846.030 units remaining) [ 0x050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 173 (remaining gas: 1039845.326 units remaining) + - location: 173 (remaining gas: 1039845.067 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039845.326 units remaining) + - location: 176 (remaining gas: 1039845.067 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039845.316 units remaining) + - location: 176 (remaining gas: 1039845.052 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 184 (remaining gas: 1039845.280 units remaining) + - location: 184 (remaining gas: 1039845.016 units remaining) [ 0 (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 185 (remaining gas: 1039845.270 units remaining) + - location: 185 (remaining gas: 1039845.006 units remaining) [ True (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039845.270 units remaining) + - location: 186 (remaining gas: 1039845.006 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039845.260 units remaining) + - location: 186 (remaining gas: 1039844.991 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 192 (remaining gas: 1039845.250 units remaining) + - location: 192 (remaining gas: 1039844.981 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 193 (remaining gas: 1039845.240 units remaining) + - location: 193 (remaining gas: 1039844.971 units remaining) [ "2019-09-09T08:35:33Z" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 194 (remaining gas: 1039845.240 units remaining) + - location: 194 (remaining gas: 1039844.971 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 196 (remaining gas: 1039845.230 units remaining) + - location: 196 (remaining gas: 1039844.961 units remaining) [ "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 194 (remaining gas: 1039845.210 units remaining) + - location: 194 (remaining gas: 1039844.936 units remaining) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 197 (remaining gas: 1039844.914 units remaining) + - location: 197 (remaining gas: 1039844.620 units remaining) [ 0x050095bbb0d70b "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 198 (remaining gas: 1039844.414 units remaining) + - location: 198 (remaining gas: 1039844.117 units remaining) [ (Some "2019-09-09T08:35:33Z") "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (remaining gas: 1039844.414 units remaining) + - location: 201 (remaining gas: 1039844.117 units remaining) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (remaining gas: 1039844.404 units remaining) + - location: 201 (remaining gas: 1039844.102 units remaining) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 209 (remaining gas: 1039844.369 units remaining) + - location: 209 (remaining gas: 1039844.067 units remaining) [ 0 "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 210 (remaining gas: 1039844.359 units remaining) + - location: 210 (remaining gas: 1039844.057 units remaining) [ True "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039844.359 units remaining) + - location: 211 (remaining gas: 1039844.057 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039844.349 units remaining) + - location: 211 (remaining gas: 1039844.042 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 217 (remaining gas: 1039844.339 units remaining) + - location: 217 (remaining gas: 1039844.032 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 218 (remaining gas: 1039843.853 units remaining) + - location: 218 (remaining gas: 1039843.526 units remaining) [ 0x050a000000160000bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 219 (remaining gas: 1039842.880 units remaining) + - location: 219 (remaining gas: 1039842.542 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1039842.880 units remaining) + - location: 222 (remaining gas: 1039842.542 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1039842.870 units remaining) + - location: 222 (remaining gas: 1039842.527 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 230 (remaining gas: 1039842.834 units remaining) + - location: 230 (remaining gas: 1039842.491 units remaining) [ 0 ] - - location: 231 (remaining gas: 1039842.824 units remaining) + - location: 231 (remaining gas: 1039842.481 units remaining) [ True ] - - location: 232 (remaining gas: 1039842.824 units remaining) + - location: 232 (remaining gas: 1039842.481 units remaining) [ ] - - location: 232 (remaining gas: 1039842.814 units remaining) + - location: 232 (remaining gas: 1039842.466 units remaining) [ ] - - location: 238 (remaining gas: 1039842.804 units remaining) + - location: 238 (remaining gas: 1039842.456 units remaining) [ 0 ] - - location: 241 (remaining gas: 1039842.608 units remaining) + - location: 241 (remaining gas: 1039842.240 units remaining) [ 0x050000 ] - - location: 242 (remaining gas: 1039842.188 units remaining) + - location: 242 (remaining gas: 1039841.819 units remaining) [ (Some 0) ] - - location: 245 (remaining gas: 1039842.188 units remaining) + - location: 245 (remaining gas: 1039841.819 units remaining) [ 0 ] - - location: 245 (remaining gas: 1039842.178 units remaining) + - location: 245 (remaining gas: 1039841.804 units remaining) [ 0 ] - - location: 251 (remaining gas: 1039842.168 units remaining) + - location: 251 (remaining gas: 1039841.794 units remaining) [ ] - - location: 252 (remaining gas: 1039842.158 units remaining) + - location: 252 (remaining gas: 1039841.784 units remaining) [ -1 ] - - location: 255 (remaining gas: 1039841.937 units remaining) + - location: 255 (remaining gas: 1039841.543 units remaining) [ 0x050041 ] - - location: 256 (remaining gas: 1039745.617 units remaining) + - location: 256 (remaining gas: 1039745.222 units remaining) [ None ] - - location: 259 (remaining gas: 1039745.617 units remaining) + - location: 259 (remaining gas: 1039745.222 units remaining) [ ] - - location: 259 (remaining gas: 1039745.607 units remaining) + - location: 259 (remaining gas: 1039745.207 units remaining) [ ] - - location: 265 (remaining gas: 1039745.597 units remaining) + - location: 265 (remaining gas: 1039745.197 units remaining) [ 0x ] - - location: 268 (remaining gas: 1039745.337 units remaining) + - location: 268 (remaining gas: 1039744.937 units remaining) [ None ] - - location: 271 (remaining gas: 1039745.337 units remaining) + - location: 271 (remaining gas: 1039744.937 units remaining) [ ] - - location: 271 (remaining gas: 1039745.327 units remaining) + - location: 271 (remaining gas: 1039744.922 units remaining) [ ] - - location: 277 (remaining gas: 1039745.317 units remaining) + - location: 277 (remaining gas: 1039744.912 units remaining) [ 0x04 ] - - location: 280 (remaining gas: 1039745.037 units remaining) + - location: 280 (remaining gas: 1039744.632 units remaining) [ None ] - - location: 283 (remaining gas: 1039745.037 units remaining) + - location: 283 (remaining gas: 1039744.632 units remaining) [ ] - - location: 283 (remaining gas: 1039745.027 units remaining) + - location: 283 (remaining gas: 1039744.617 units remaining) [ ] - - location: 289 (remaining gas: 1039745.017 units remaining) + - location: 289 (remaining gas: 1039744.607 units remaining) [ 0x05 ] - - location: 292 (remaining gas: 1039744.737 units remaining) + - location: 292 (remaining gas: 1039744.327 units remaining) [ None ] - - location: 295 (remaining gas: 1039744.737 units remaining) + - location: 295 (remaining gas: 1039744.327 units remaining) [ ] - - location: 295 (remaining gas: 1039744.727 units remaining) + - location: 295 (remaining gas: 1039744.312 units remaining) [ ] - - location: 301 (remaining gas: 1039744.717 units remaining) + - location: 301 (remaining gas: 1039744.302 units remaining) [ Unit ] - - location: 302 (remaining gas: 1039744.707 units remaining) + - location: 302 (remaining gas: 1039744.292 units remaining) [ {} Unit ] - - location: 304 (remaining gas: 1039744.697 units remaining) + - location: 304 (remaining gas: 1039744.282 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 d0fd46e9c0ea..701f595ae548 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" @@ -78,7 +78,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 19 (remaining gas: 1039851.757 units remaining) + - location: 19 (remaining gas: 1039851.752 units remaining) [ -1 -1 (Pair 1 @@ -89,7 +89,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 22 (remaining gas: 1039851.536 units remaining) + - location: 22 (remaining gas: 1039851.511 units remaining) [ 0x050041 -1 (Pair 1 @@ -100,7 +100,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 23 (remaining gas: 1039851.116 units remaining) + - location: 23 (remaining gas: 1039851.090 units remaining) [ (Some -1) -1 (Pair 1 @@ -111,7 +111,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (remaining gas: 1039851.116 units remaining) + - location: 26 (remaining gas: 1039851.090 units remaining) [ -1 -1 (Pair 1 @@ -122,7 +122,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (remaining gas: 1039851.106 units remaining) + - location: 26 (remaining gas: 1039851.075 units remaining) [ -1 -1 (Pair 1 @@ -133,7 +133,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 34 (remaining gas: 1039851.071 units remaining) + - location: 34 (remaining gas: 1039851.040 units remaining) [ 0 (Pair 1 "foobar" @@ -143,7 +143,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 35 (remaining gas: 1039851.061 units remaining) + - location: 35 (remaining gas: 1039851.030 units remaining) [ True (Pair 1 "foobar" @@ -153,7 +153,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (remaining gas: 1039851.061 units remaining) + - location: 36 (remaining gas: 1039851.030 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -162,7 +162,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (remaining gas: 1039851.051 units remaining) + - location: 36 (remaining gas: 1039851.015 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -171,7 +171,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 42 (remaining gas: 1039851.041 units remaining) + - location: 42 (remaining gas: 1039851.005 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -188,7 +188,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 43 (remaining gas: 1039851.031 units remaining) + - location: 43 (remaining gas: 1039850.995 units remaining) [ 1 (Pair 1 "foobar" @@ -198,7 +198,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (remaining gas: 1039851.031 units remaining) + - location: 44 (remaining gas: 1039850.995 units remaining) [ (Pair 1 "foobar" 0x00aabbcc @@ -207,7 +207,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 46 (remaining gas: 1039851.021 units remaining) + - location: 46 (remaining gas: 1039850.985 units remaining) [ 1 (Pair "foobar" 0x00aabbcc @@ -216,7 +216,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (remaining gas: 1039851.001 units remaining) + - location: 44 (remaining gas: 1039850.960 units remaining) [ 1 1 (Pair "foobar" @@ -226,7 +226,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 47 (remaining gas: 1039850.780 units remaining) + - location: 47 (remaining gas: 1039850.719 units remaining) [ 0x050001 1 (Pair "foobar" @@ -236,7 +236,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 48 (remaining gas: 1039850.360 units remaining) + - location: 48 (remaining gas: 1039850.298 units remaining) [ (Some 1) 1 (Pair "foobar" @@ -246,7 +246,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (remaining gas: 1039850.360 units remaining) + - location: 51 (remaining gas: 1039850.298 units remaining) [ 1 1 (Pair "foobar" @@ -256,7 +256,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (remaining gas: 1039850.350 units remaining) + - location: 51 (remaining gas: 1039850.283 units remaining) [ 1 1 (Pair "foobar" @@ -266,7 +266,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 59 (remaining gas: 1039850.315 units remaining) + - location: 59 (remaining gas: 1039850.248 units remaining) [ 0 (Pair "foobar" 0x00aabbcc @@ -275,7 +275,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 60 (remaining gas: 1039850.305 units remaining) + - location: 60 (remaining gas: 1039850.238 units remaining) [ True (Pair "foobar" 0x00aabbcc @@ -284,7 +284,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (remaining gas: 1039850.305 units remaining) + - location: 61 (remaining gas: 1039850.238 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -292,7 +292,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (remaining gas: 1039850.295 units remaining) + - location: 61 (remaining gas: 1039850.223 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -300,7 +300,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 67 (remaining gas: 1039850.285 units remaining) + - location: 67 (remaining gas: 1039850.213 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -315,7 +315,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 68 (remaining gas: 1039850.275 units remaining) + - location: 68 (remaining gas: 1039850.203 units remaining) [ "foobar" (Pair "foobar" 0x00aabbcc @@ -324,7 +324,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (remaining gas: 1039850.275 units remaining) + - location: 69 (remaining gas: 1039850.203 units remaining) [ (Pair "foobar" 0x00aabbcc 1000 @@ -332,7 +332,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 71 (remaining gas: 1039850.265 units remaining) + - location: 71 (remaining gas: 1039850.193 units remaining) [ "foobar" (Pair 0x00aabbcc 1000 @@ -340,7 +340,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (remaining gas: 1039850.245 units remaining) + - location: 69 (remaining gas: 1039850.168 units remaining) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -349,7 +349,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 72 (remaining gas: 1039849.989 units remaining) + - location: 72 (remaining gas: 1039849.892 units remaining) [ 0x050100000006666f6f626172 "foobar" (Pair 0x00aabbcc @@ -358,7 +358,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 73 (remaining gas: 1039849.314 units remaining) + - location: 73 (remaining gas: 1039849.212 units remaining) [ (Some "foobar") "foobar" (Pair 0x00aabbcc @@ -367,7 +367,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (remaining gas: 1039849.314 units remaining) + - location: 76 (remaining gas: 1039849.212 units remaining) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -376,7 +376,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (remaining gas: 1039849.304 units remaining) + - location: 76 (remaining gas: 1039849.197 units remaining) [ "foobar" "foobar" (Pair 0x00aabbcc @@ -385,7 +385,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 84 (remaining gas: 1039849.269 units remaining) + - location: 84 (remaining gas: 1039849.162 units remaining) [ 0 (Pair 0x00aabbcc 1000 @@ -393,7 +393,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 85 (remaining gas: 1039849.259 units remaining) + - location: 85 (remaining gas: 1039849.152 units remaining) [ True (Pair 0x00aabbcc 1000 @@ -401,21 +401,21 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (remaining gas: 1039849.259 units remaining) + - location: 86 (remaining gas: 1039849.152 units remaining) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (remaining gas: 1039849.249 units remaining) + - location: 86 (remaining gas: 1039849.137 units remaining) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 92 (remaining gas: 1039849.239 units remaining) + - location: 92 (remaining gas: 1039849.127 units remaining) [ (Pair 0x00aabbcc 1000 False @@ -428,7 +428,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 93 (remaining gas: 1039849.229 units remaining) + - location: 93 (remaining gas: 1039849.117 units remaining) [ 0x00aabbcc (Pair 0x00aabbcc 1000 @@ -436,21 +436,21 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (remaining gas: 1039849.229 units remaining) + - location: 94 (remaining gas: 1039849.117 units remaining) [ (Pair 0x00aabbcc 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 96 (remaining gas: 1039849.219 units remaining) + - location: 96 (remaining gas: 1039849.107 units remaining) [ 0x00aabbcc (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (remaining gas: 1039849.199 units remaining) + - location: 94 (remaining gas: 1039849.082 units remaining) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -458,7 +458,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 97 (remaining gas: 1039848.963 units remaining) + - location: 97 (remaining gas: 1039848.826 units remaining) [ 0x050a0000000400aabbcc 0x00aabbcc (Pair 1000 @@ -466,7 +466,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 98 (remaining gas: 1039848.402 units remaining) + - location: 98 (remaining gas: 1039848.261 units remaining) [ (Some 0x00aabbcc) 0x00aabbcc (Pair 1000 @@ -474,7 +474,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (remaining gas: 1039848.402 units remaining) + - location: 101 (remaining gas: 1039848.261 units remaining) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -482,7 +482,7 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (remaining gas: 1039848.392 units remaining) + - location: 101 (remaining gas: 1039848.246 units remaining) [ 0x00aabbcc 0x00aabbcc (Pair 1000 @@ -490,33 +490,33 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 109 (remaining gas: 1039848.357 units remaining) + - location: 109 (remaining gas: 1039848.211 units remaining) [ 0 (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 110 (remaining gas: 1039848.347 units remaining) + - location: 110 (remaining gas: 1039848.201 units remaining) [ True (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (remaining gas: 1039848.347 units remaining) + - location: 111 (remaining gas: 1039848.201 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (remaining gas: 1039848.337 units remaining) + - location: 111 (remaining gas: 1039848.186 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 117 (remaining gas: 1039848.327 units remaining) + - location: 117 (remaining gas: 1039848.176 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" @@ -527,83 +527,83 @@ trace "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 118 (remaining gas: 1039848.317 units remaining) + - location: 118 (remaining gas: 1039848.166 units remaining) [ 1000 (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (remaining gas: 1039848.317 units remaining) + - location: 119 (remaining gas: 1039848.166 units remaining) [ (Pair 1000 False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 121 (remaining gas: 1039848.307 units remaining) + - location: 121 (remaining gas: 1039848.156 units remaining) [ 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (remaining gas: 1039848.287 units remaining) + - location: 119 (remaining gas: 1039848.131 units remaining) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 122 (remaining gas: 1039848.041 units remaining) + - location: 122 (remaining gas: 1039847.865 units remaining) [ 0x0500a80f 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 123 (remaining gas: 1039847.601 units remaining) + - location: 123 (remaining gas: 1039847.423 units remaining) [ (Some 1000) 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (remaining gas: 1039847.601 units remaining) + - location: 126 (remaining gas: 1039847.423 units remaining) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (remaining gas: 1039847.591 units remaining) + - location: 126 (remaining gas: 1039847.408 units remaining) [ 1000 1000 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 134 (remaining gas: 1039847.556 units remaining) + - location: 134 (remaining gas: 1039847.373 units remaining) [ 0 (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 135 (remaining gas: 1039847.546 units remaining) + - location: 135 (remaining gas: 1039847.363 units remaining) [ True (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039847.546 units remaining) + - location: 136 (remaining gas: 1039847.363 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (remaining gas: 1039847.536 units remaining) + - location: 136 (remaining gas: 1039847.348 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 142 (remaining gas: 1039847.526 units remaining) + - location: 142 (remaining gas: 1039847.338 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: 1039847.516 units remaining) + - location: 143 (remaining gas: 1039847.328 units remaining) [ False (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039847.516 units remaining) + - location: 144 (remaining gas: 1039847.328 units remaining) [ (Pair False "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 146 (remaining gas: 1039847.506 units remaining) + - location: 146 (remaining gas: 1039847.318 units remaining) [ False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (remaining gas: 1039847.486 units remaining) + - location: 144 (remaining gas: 1039847.293 units remaining) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 147 (remaining gas: 1039847.290 units remaining) + - location: 147 (remaining gas: 1039847.077 units remaining) [ 0x050303 False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 148 (remaining gas: 1039846.870 units remaining) + - location: 148 (remaining gas: 1039846.656 units remaining) [ (Some False) False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (remaining gas: 1039846.870 units remaining) + - location: 151 (remaining gas: 1039846.656 units remaining) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (remaining gas: 1039846.860 units remaining) + - location: 151 (remaining gas: 1039846.641 units remaining) [ False False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 159 (remaining gas: 1039846.825 units remaining) + - location: 159 (remaining gas: 1039846.606 units remaining) [ 0 (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 160 (remaining gas: 1039846.815 units remaining) + - location: 160 (remaining gas: 1039846.596 units remaining) [ True (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039846.815 units remaining) + - location: 161 (remaining gas: 1039846.596 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (remaining gas: 1039846.805 units remaining) + - location: 161 (remaining gas: 1039846.581 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 167 (remaining gas: 1039846.795 units remaining) + - location: 167 (remaining gas: 1039846.571 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 168 (remaining gas: 1039846.785 units remaining) + - location: 168 (remaining gas: 1039846.561 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039846.785 units remaining) + - location: 169 (remaining gas: 1039846.561 units remaining) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 171 (remaining gas: 1039846.775 units remaining) + - location: 171 (remaining gas: 1039846.551 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (remaining gas: 1039846.755 units remaining) + - location: 169 (remaining gas: 1039846.526 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 172 (remaining gas: 1039846.279 units remaining) + - location: 172 (remaining gas: 1039846.030 units remaining) [ 0x050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 173 (remaining gas: 1039845.326 units remaining) + - location: 173 (remaining gas: 1039845.067 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039845.326 units remaining) + - location: 176 (remaining gas: 1039845.067 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (remaining gas: 1039845.316 units remaining) + - location: 176 (remaining gas: 1039845.052 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 184 (remaining gas: 1039845.280 units remaining) + - location: 184 (remaining gas: 1039845.016 units remaining) [ 0 (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 185 (remaining gas: 1039845.270 units remaining) + - location: 185 (remaining gas: 1039845.006 units remaining) [ True (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039845.270 units remaining) + - location: 186 (remaining gas: 1039845.006 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (remaining gas: 1039845.260 units remaining) + - location: 186 (remaining gas: 1039844.991 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 192 (remaining gas: 1039845.250 units remaining) + - location: 192 (remaining gas: 1039844.981 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 193 (remaining gas: 1039845.240 units remaining) + - location: 193 (remaining gas: 1039844.971 units remaining) [ "2019-09-09T08:35:33Z" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 194 (remaining gas: 1039845.240 units remaining) + - location: 194 (remaining gas: 1039844.971 units remaining) [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 196 (remaining gas: 1039845.230 units remaining) + - location: 196 (remaining gas: 1039844.961 units remaining) [ "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 194 (remaining gas: 1039845.210 units remaining) + - location: 194 (remaining gas: 1039844.936 units remaining) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 197 (remaining gas: 1039844.914 units remaining) + - location: 197 (remaining gas: 1039844.620 units remaining) [ 0x050095bbb0d70b "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 198 (remaining gas: 1039844.414 units remaining) + - location: 198 (remaining gas: 1039844.117 units remaining) [ (Some "2019-09-09T08:35:33Z") "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (remaining gas: 1039844.414 units remaining) + - location: 201 (remaining gas: 1039844.117 units remaining) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (remaining gas: 1039844.404 units remaining) + - location: 201 (remaining gas: 1039844.102 units remaining) [ "2019-09-09T08:35:33Z" "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 209 (remaining gas: 1039844.369 units remaining) + - location: 209 (remaining gas: 1039844.067 units remaining) [ 0 "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 210 (remaining gas: 1039844.359 units remaining) + - location: 210 (remaining gas: 1039844.057 units remaining) [ True "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039844.359 units remaining) + - location: 211 (remaining gas: 1039844.057 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (remaining gas: 1039844.349 units remaining) + - location: 211 (remaining gas: 1039844.042 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 217 (remaining gas: 1039844.339 units remaining) + - location: 217 (remaining gas: 1039844.032 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 218 (remaining gas: 1039843.853 units remaining) + - location: 218 (remaining gas: 1039843.526 units remaining) [ 0x050a000000160000bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 219 (remaining gas: 1039842.880 units remaining) + - location: 219 (remaining gas: 1039842.542 units remaining) [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1039842.880 units remaining) + - location: 222 (remaining gas: 1039842.542 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (remaining gas: 1039842.870 units remaining) + - location: 222 (remaining gas: 1039842.527 units remaining) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 230 (remaining gas: 1039842.834 units remaining) + - location: 230 (remaining gas: 1039842.491 units remaining) [ 0 ] - - location: 231 (remaining gas: 1039842.824 units remaining) + - location: 231 (remaining gas: 1039842.481 units remaining) [ True ] - - location: 232 (remaining gas: 1039842.824 units remaining) + - location: 232 (remaining gas: 1039842.481 units remaining) [ ] - - location: 232 (remaining gas: 1039842.814 units remaining) + - location: 232 (remaining gas: 1039842.466 units remaining) [ ] - - location: 238 (remaining gas: 1039842.804 units remaining) + - location: 238 (remaining gas: 1039842.456 units remaining) [ 0 ] - - location: 241 (remaining gas: 1039842.608 units remaining) + - location: 241 (remaining gas: 1039842.240 units remaining) [ 0x050000 ] - - location: 242 (remaining gas: 1039842.188 units remaining) + - location: 242 (remaining gas: 1039841.819 units remaining) [ (Some 0) ] - - location: 245 (remaining gas: 1039842.188 units remaining) + - location: 245 (remaining gas: 1039841.819 units remaining) [ 0 ] - - location: 245 (remaining gas: 1039842.178 units remaining) + - location: 245 (remaining gas: 1039841.804 units remaining) [ 0 ] - - location: 251 (remaining gas: 1039842.168 units remaining) + - location: 251 (remaining gas: 1039841.794 units remaining) [ ] - - location: 252 (remaining gas: 1039842.158 units remaining) + - location: 252 (remaining gas: 1039841.784 units remaining) [ -1 ] - - location: 255 (remaining gas: 1039841.937 units remaining) + - location: 255 (remaining gas: 1039841.543 units remaining) [ 0x050041 ] - - location: 256 (remaining gas: 1039745.617 units remaining) + - location: 256 (remaining gas: 1039745.222 units remaining) [ None ] - - location: 259 (remaining gas: 1039745.617 units remaining) + - location: 259 (remaining gas: 1039745.222 units remaining) [ ] - - location: 259 (remaining gas: 1039745.607 units remaining) + - location: 259 (remaining gas: 1039745.207 units remaining) [ ] - - location: 265 (remaining gas: 1039745.597 units remaining) + - location: 265 (remaining gas: 1039745.197 units remaining) [ 0x ] - - location: 268 (remaining gas: 1039745.337 units remaining) + - location: 268 (remaining gas: 1039744.937 units remaining) [ None ] - - location: 271 (remaining gas: 1039745.337 units remaining) + - location: 271 (remaining gas: 1039744.937 units remaining) [ ] - - location: 271 (remaining gas: 1039745.327 units remaining) + - location: 271 (remaining gas: 1039744.922 units remaining) [ ] - - location: 277 (remaining gas: 1039745.317 units remaining) + - location: 277 (remaining gas: 1039744.912 units remaining) [ 0x04 ] - - location: 280 (remaining gas: 1039745.037 units remaining) + - location: 280 (remaining gas: 1039744.632 units remaining) [ None ] - - location: 283 (remaining gas: 1039745.037 units remaining) + - location: 283 (remaining gas: 1039744.632 units remaining) [ ] - - location: 283 (remaining gas: 1039745.027 units remaining) + - location: 283 (remaining gas: 1039744.617 units remaining) [ ] - - location: 289 (remaining gas: 1039745.017 units remaining) + - location: 289 (remaining gas: 1039744.607 units remaining) [ 0x05 ] - - location: 292 (remaining gas: 1039744.737 units remaining) + - location: 292 (remaining gas: 1039744.327 units remaining) [ None ] - - location: 295 (remaining gas: 1039744.737 units remaining) + - location: 295 (remaining gas: 1039744.327 units remaining) [ ] - - location: 295 (remaining gas: 1039744.727 units remaining) + - location: 295 (remaining gas: 1039744.312 units remaining) [ ] - - location: 301 (remaining gas: 1039744.717 units remaining) + - location: 301 (remaining gas: 1039744.302 units remaining) [ Unit ] - - location: 302 (remaining gas: 1039744.707 units remaining) + - location: 302 (remaining gas: 1039744.292 units remaining) [ {} Unit ] - - location: 304 (remaining gas: 1039744.697 units remaining) + - location: 304 (remaining gas: 1039744.282 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 cc54ca8d9ee1..99b993f0bfd1 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" @@ -85,7 +85,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 31 (remaining gas: 1039497.633 units remaining) + - location: 31 (remaining gas: 1039497.628 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit @@ -97,7 +97,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 34 (remaining gas: 1039496.652 units remaining) + - location: 34 (remaining gas: 1039496.627 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit @@ -109,7 +109,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 35 (remaining gas: 1039496.652 units remaining) + - location: 35 (remaining gas: 1039496.627 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -120,7 +120,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 37 (remaining gas: 1039495.671 units remaining) + - location: 37 (remaining gas: 1039495.626 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -131,7 +131,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 38 (remaining gas: 1039174.527 units remaining) + - location: 38 (remaining gas: 1039174.467 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: 1039174.527 units remaining) + - location: 41 (remaining gas: 1039174.467 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -153,7 +153,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 41 (remaining gas: 1039174.517 units remaining) + - location: 41 (remaining gas: 1039174.452 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -164,7 +164,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 47 (remaining gas: 1039173.536 units remaining) + - location: 47 (remaining gas: 1039173.451 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -175,7 +175,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 35 (remaining gas: 1039173.516 units remaining) + - location: 35 (remaining gas: 1039173.426 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit @@ -187,7 +187,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 50 (remaining gas: 1039173.481 units remaining) + - location: 50 (remaining gas: 1039173.391 units remaining) [ 0 (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -198,7 +198,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 51 (remaining gas: 1039173.471 units remaining) + - location: 51 (remaining gas: 1039173.381 units remaining) [ True (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -209,7 +209,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 52 (remaining gas: 1039173.471 units remaining) + - location: 52 (remaining gas: 1039173.381 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: 1039173.461 units remaining) + - location: 52 (remaining gas: 1039173.366 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: 1039173.451 units remaining) + - location: 58 (remaining gas: 1039173.356 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: 1039173.441 units remaining) + - location: 59 (remaining gas: 1039173.346 units remaining) [ Unit (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -259,7 +259,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 60 (remaining gas: 1039173.441 units remaining) + - location: 60 (remaining gas: 1039173.346 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: 1039173.431 units remaining) + - location: 62 (remaining gas: 1039173.336 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: 1039173.411 units remaining) + - location: 60 (remaining gas: 1039173.311 units remaining) [ Unit Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -290,7 +290,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 63 (remaining gas: 1039173.215 units remaining) + - location: 63 (remaining gas: 1039173.095 units remaining) [ 0x05030b Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -301,7 +301,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 64 (remaining gas: 1039173.215 units remaining) + - location: 64 (remaining gas: 1039173.095 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: 1039173.019 units remaining) + - location: 66 (remaining gas: 1039172.879 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: 1039172.599 units remaining) + - location: 67 (remaining gas: 1039172.458 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: 1039172.599 units remaining) + - location: 70 (remaining gas: 1039172.458 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: 1039172.589 units remaining) + - location: 70 (remaining gas: 1039172.443 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: 1039172.393 units remaining) + - location: 76 (remaining gas: 1039172.227 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: 1039172.373 units remaining) + - location: 64 (remaining gas: 1039172.202 units remaining) [ 0x05030b 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -372,7 +372,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 79 (remaining gas: 1039172.338 units remaining) + - location: 79 (remaining gas: 1039172.167 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: 1039172.328 units remaining) + - location: 80 (remaining gas: 1039172.157 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: 1039172.328 units remaining) + - location: 81 (remaining gas: 1039172.157 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: 1039172.318 units remaining) + - location: 81 (remaining gas: 1039172.142 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: 1039172.308 units remaining) + - location: 87 (remaining gas: 1039172.132 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: 1039172.298 units remaining) + - location: 88 (remaining gas: 1039172.122 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: 1039172.298 units remaining) + - location: 89 (remaining gas: 1039172.122 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: 1039172.288 units remaining) + - location: 91 (remaining gas: 1039172.112 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: 1039172.268 units remaining) + - location: 89 (remaining gas: 1039172.087 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: 1039171.387 units remaining) + - location: 92 (remaining gas: 1039171.186 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: 1039171.387 units remaining) + - location: 93 (remaining gas: 1039171.186 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: 1039170.506 units remaining) + - location: 95 (remaining gas: 1039170.285 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: 1039168.703 units remaining) + - location: 96 (remaining gas: 1039168.455 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: 1039168.703 units remaining) + - location: 99 (remaining gas: 1039168.455 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: 1039168.693 units remaining) + - location: 99 (remaining gas: 1039168.440 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: 1039167.812 units remaining) + - location: 105 (remaining gas: 1039167.539 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: 1039167.792 units remaining) + - location: 93 (remaining gas: 1039167.514 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: 1039167.756 units remaining) + - location: 108 (remaining gas: 1039167.478 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: 1039167.746 units remaining) + - location: 109 (remaining gas: 1039167.468 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: 1039167.746 units remaining) + - location: 110 (remaining gas: 1039167.468 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: 1039167.736 units remaining) + - location: 110 (remaining gas: 1039167.453 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: 1039167.726 units remaining) + - location: 116 (remaining gas: 1039167.443 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: 1039167.716 units remaining) + - location: 117 (remaining gas: 1039167.433 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: 1039167.716 units remaining) + - location: 118 (remaining gas: 1039167.433 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: 1039167.706 units remaining) + - location: 120 (remaining gas: 1039167.423 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: 1039167.686 units remaining) + - location: 118 (remaining gas: 1039167.398 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: 1039166.609 units remaining) + - location: 121 (remaining gas: 1039166.281 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: 1039166.609 units remaining) + - location: 122 (remaining gas: 1039166.281 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: 1039165.532 units remaining) + - location: 124 (remaining gas: 1039165.164 units remaining) [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair { Unit } { True } @@ -647,7 +647,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 125 (remaining gas: 1039163.588 units remaining) + - location: 125 (remaining gas: 1039163.193 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: 1039163.588 units remaining) + - location: 129 (remaining gas: 1039163.193 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: 1039163.578 units remaining) + - location: 129 (remaining gas: 1039163.178 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: 1039162.501 units remaining) + - location: 135 (remaining gas: 1039162.061 units remaining) [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair { Unit } { True } @@ -679,7 +679,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 122 (remaining gas: 1039162.481 units remaining) + - location: 122 (remaining gas: 1039162.036 units remaining) [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair { Unit } @@ -688,7 +688,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 138 (remaining gas: 1039162.445 units remaining) + - location: 138 (remaining gas: 1039162 units remaining) [ 0 (Pair { Unit } { True } @@ -696,7 +696,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 139 (remaining gas: 1039162.435 units remaining) + - location: 139 (remaining gas: 1039161.990 units remaining) [ True (Pair { Unit } { True } @@ -704,21 +704,21 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 140 (remaining gas: 1039162.435 units remaining) + - location: 140 (remaining gas: 1039161.990 units remaining) [ (Pair { Unit } { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 140 (remaining gas: 1039162.425 units remaining) + - location: 140 (remaining gas: 1039161.975 units remaining) [ (Pair { Unit } { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 146 (remaining gas: 1039162.415 units remaining) + - location: 146 (remaining gas: 1039161.965 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: 1039162.405 units remaining) + - location: 147 (remaining gas: 1039161.955 units remaining) [ { Unit } (Pair { Unit } { True } @@ -739,21 +739,21 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 148 (remaining gas: 1039162.405 units remaining) + - location: 148 (remaining gas: 1039161.955 units remaining) [ (Pair { Unit } { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 150 (remaining gas: 1039162.395 units remaining) + - location: 150 (remaining gas: 1039161.945 units remaining) [ { Unit } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 148 (remaining gas: 1039162.375 units remaining) + - location: 148 (remaining gas: 1039161.920 units remaining) [ { Unit } { Unit } (Pair { True } @@ -761,7 +761,7 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 151 (remaining gas: 1039161.983 units remaining) + - location: 151 (remaining gas: 1039161.488 units remaining) [ 0x050200000002030b { Unit } (Pair { True } @@ -769,49 +769,49 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 152 (remaining gas: 1039161.983 units remaining) + - location: 152 (remaining gas: 1039161.488 units remaining) [ { Unit } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 154 (remaining gas: 1039161.591 units remaining) + - location: 154 (remaining gas: 1039161.056 units remaining) [ 0x050200000002030b (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 155 (remaining gas: 1039160.970 units remaining) + - location: 155 (remaining gas: 1039160.432 units remaining) [ (Some { Unit }) (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 159 (remaining gas: 1039160.970 units remaining) + - location: 159 (remaining gas: 1039160.432 units remaining) [ { Unit } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 159 (remaining gas: 1039160.960 units remaining) + - location: 159 (remaining gas: 1039160.417 units remaining) [ { Unit } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 165 (remaining gas: 1039160.568 units remaining) + - location: 165 (remaining gas: 1039159.985 units remaining) [ 0x050200000002030b (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 152 (remaining gas: 1039160.548 units remaining) + - location: 152 (remaining gas: 1039159.960 units remaining) [ 0x050200000002030b 0x050200000002030b (Pair { True } @@ -819,33 +819,33 @@ trace (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 168 (remaining gas: 1039160.513 units remaining) + - location: 168 (remaining gas: 1039159.925 units remaining) [ 0 (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 169 (remaining gas: 1039160.503 units remaining) + - location: 169 (remaining gas: 1039159.915 units remaining) [ True (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 170 (remaining gas: 1039160.503 units remaining) + - location: 170 (remaining gas: 1039159.915 units remaining) [ (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 170 (remaining gas: 1039160.493 units remaining) + - location: 170 (remaining gas: 1039159.900 units remaining) [ (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 176 (remaining gas: 1039160.483 units remaining) + - location: 176 (remaining gas: 1039159.890 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: 1039160.473 units remaining) + - location: 177 (remaining gas: 1039159.880 units remaining) [ { True } (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 178 (remaining gas: 1039160.473 units remaining) + - location: 178 (remaining gas: 1039159.880 units remaining) [ (Pair { True } (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 180 (remaining gas: 1039160.463 units remaining) + - location: 180 (remaining gas: 1039159.870 units remaining) [ { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 178 (remaining gas: 1039160.443 units remaining) + - location: 178 (remaining gas: 1039159.845 units remaining) [ { True } { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 181 (remaining gas: 1039160.051 units remaining) + - location: 181 (remaining gas: 1039159.413 units remaining) [ 0x050200000002030a { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 182 (remaining gas: 1039160.051 units remaining) + - location: 182 (remaining gas: 1039159.413 units remaining) [ { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 184 (remaining gas: 1039159.659 units remaining) + - location: 184 (remaining gas: 1039158.981 units remaining) [ 0x050200000002030a (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 185 (remaining gas: 1039158.906 units remaining) + - location: 185 (remaining gas: 1039158.225 units remaining) [ (Some { True }) (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 189 (remaining gas: 1039158.906 units remaining) + - location: 189 (remaining gas: 1039158.225 units remaining) [ { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 189 (remaining gas: 1039158.896 units remaining) + - location: 189 (remaining gas: 1039158.210 units remaining) [ { True } (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 195 (remaining gas: 1039158.504 units remaining) + - location: 195 (remaining gas: 1039157.778 units remaining) [ 0x050200000002030a (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 182 (remaining gas: 1039158.484 units remaining) + - location: 182 (remaining gas: 1039157.753 units remaining) [ 0x050200000002030a 0x050200000002030a (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 198 (remaining gas: 1039158.449 units remaining) + - location: 198 (remaining gas: 1039157.718 units remaining) [ 0 (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 199 (remaining gas: 1039158.439 units remaining) + - location: 199 (remaining gas: 1039157.708 units remaining) [ True (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 200 (remaining gas: 1039158.439 units remaining) + - location: 200 (remaining gas: 1039157.708 units remaining) [ (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 200 (remaining gas: 1039158.429 units remaining) + - location: 200 (remaining gas: 1039157.693 units remaining) [ (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 206 (remaining gas: 1039158.419 units remaining) + - location: 206 (remaining gas: 1039157.683 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: 1039158.409 units remaining) + - location: 207 (remaining gas: 1039157.673 units remaining) [ (Pair 19 10) (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 208 (remaining gas: 1039158.409 units remaining) + - location: 208 (remaining gas: 1039157.673 units remaining) [ (Pair (Pair 19 10) (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 210 (remaining gas: 1039158.399 units remaining) + - location: 210 (remaining gas: 1039157.663 units remaining) [ (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 208 (remaining gas: 1039158.379 units remaining) + - location: 208 (remaining gas: 1039157.638 units remaining) [ (Pair 19 10) (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 211 (remaining gas: 1039157.741 units remaining) + - location: 211 (remaining gas: 1039156.940 units remaining) [ 0x0507070013000a (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 212 (remaining gas: 1039157.741 units remaining) + - location: 212 (remaining gas: 1039156.940 units remaining) [ (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 214 (remaining gas: 1039157.103 units remaining) + - location: 214 (remaining gas: 1039156.242 units remaining) [ 0x0507070013000a (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 215 (remaining gas: 1039156.403 units remaining) + - location: 215 (remaining gas: 1039155.539 units remaining) [ (Some (Pair 19 10)) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 220 (remaining gas: 1039156.403 units remaining) + - location: 220 (remaining gas: 1039155.539 units remaining) [ (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 220 (remaining gas: 1039156.393 units remaining) + - location: 220 (remaining gas: 1039155.524 units remaining) [ (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 226 (remaining gas: 1039155.755 units remaining) + - location: 226 (remaining gas: 1039154.826 units remaining) [ 0x0507070013000a (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 212 (remaining gas: 1039155.735 units remaining) + - location: 212 (remaining gas: 1039154.801 units remaining) [ 0x0507070013000a 0x0507070013000a (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 229 (remaining gas: 1039155.700 units remaining) + - location: 229 (remaining gas: 1039154.766 units remaining) [ 0 (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 230 (remaining gas: 1039155.690 units remaining) + - location: 230 (remaining gas: 1039154.756 units remaining) [ True (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 231 (remaining gas: 1039155.690 units remaining) + - location: 231 (remaining gas: 1039154.756 units remaining) [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 231 (remaining gas: 1039155.680 units remaining) + - location: 231 (remaining gas: 1039154.741 units remaining) [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 237 (remaining gas: 1039155.670 units remaining) + - location: 237 (remaining gas: 1039154.731 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: 1039155.660 units remaining) + - location: 238 (remaining gas: 1039154.721 units remaining) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 239 (remaining gas: 1039155.660 units remaining) + - location: 239 (remaining gas: 1039154.721 units remaining) [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 241 (remaining gas: 1039155.650 units remaining) + - location: 241 (remaining gas: 1039154.711 units remaining) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 239 (remaining gas: 1039155.630 units remaining) + - location: 239 (remaining gas: 1039154.686 units remaining) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 242 (remaining gas: 1039154.958 units remaining) + - location: 242 (remaining gas: 1039153.974 units remaining) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 243 (remaining gas: 1039154.958 units remaining) + - location: 243 (remaining gas: 1039153.974 units remaining) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 245 (remaining gas: 1039154.286 units remaining) + - location: 245 (remaining gas: 1039153.262 units remaining) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 246 (remaining gas: 1039153.193 units remaining) + - location: 246 (remaining gas: 1039152.158 units remaining) [ (Some (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")) (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 251 (remaining gas: 1039153.193 units remaining) + - location: 251 (remaining gas: 1039152.158 units remaining) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 251 (remaining gas: 1039153.183 units remaining) + - location: 251 (remaining gas: 1039152.143 units remaining) [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 257 (remaining gas: 1039152.511 units remaining) + - location: 257 (remaining gas: 1039151.431 units remaining) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 243 (remaining gas: 1039152.491 units remaining) + - location: 243 (remaining gas: 1039151.406 units remaining) [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 260 (remaining gas: 1039152.456 units remaining) + - location: 260 (remaining gas: 1039151.371 units remaining) [ 0 (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 261 (remaining gas: 1039152.446 units remaining) + - location: 261 (remaining gas: 1039151.361 units remaining) [ True (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 262 (remaining gas: 1039152.446 units remaining) + - location: 262 (remaining gas: 1039151.361 units remaining) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 262 (remaining gas: 1039152.436 units remaining) + - location: 262 (remaining gas: 1039151.346 units remaining) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 268 (remaining gas: 1039152.426 units remaining) + - location: 268 (remaining gas: 1039151.336 units remaining) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 269 (remaining gas: 1039152.416 units remaining) + - location: 269 (remaining gas: 1039151.326 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 270 (remaining gas: 1039152.416 units remaining) + - location: 270 (remaining gas: 1039151.326 units remaining) [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 272 (remaining gas: 1039152.406 units remaining) + - location: 272 (remaining gas: 1039151.316 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 270 (remaining gas: 1039152.386 units remaining) + - location: 270 (remaining gas: 1039151.291 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 273 (remaining gas: 1039151.019 units remaining) + - location: 273 (remaining gas: 1039149.824 units remaining) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 274 (remaining gas: 1039151.019 units remaining) + - location: 274 (remaining gas: 1039149.824 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 276 (remaining gas: 1039149.652 units remaining) + - location: 276 (remaining gas: 1039148.357 units remaining) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 277 (remaining gas: 1039148.006 units remaining) + - location: 277 (remaining gas: 1039146.699 units remaining) [ (Some { Elt 0 "foo" ; Elt 1 "bar" }) { PACK } ] - - location: 282 (remaining gas: 1039148.006 units remaining) + - location: 282 (remaining gas: 1039146.699 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 282 (remaining gas: 1039147.996 units remaining) + - location: 282 (remaining gas: 1039146.684 units remaining) [ { Elt 0 "foo" ; Elt 1 "bar" } { PACK } ] - - location: 288 (remaining gas: 1039146.629 units remaining) + - location: 288 (remaining gas: 1039145.217 units remaining) [ 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 274 (remaining gas: 1039146.609 units remaining) + - location: 274 (remaining gas: 1039145.192 units remaining) [ 0x050200000018070400000100000003666f6f070400010100000003626172 0x050200000018070400000100000003666f6f070400010100000003626172 { PACK } ] - - location: 291 (remaining gas: 1039146.574 units remaining) + - location: 291 (remaining gas: 1039145.157 units remaining) [ 0 { PACK } ] - - location: 292 (remaining gas: 1039146.564 units remaining) + - location: 292 (remaining gas: 1039145.147 units remaining) [ True { PACK } ] - - location: 293 (remaining gas: 1039146.564 units remaining) + - location: 293 (remaining gas: 1039145.147 units remaining) [ { PACK } ] - - location: 293 (remaining gas: 1039146.554 units remaining) + - location: 293 (remaining gas: 1039145.132 units remaining) [ { PACK } ] - - location: 299 (remaining gas: 1039146.544 units remaining) + - location: 299 (remaining gas: 1039145.122 units remaining) [ { PACK } { PACK } ] - - location: 300 (remaining gas: 1039145.967 units remaining) + - location: 300 (remaining gas: 1039144.525 units remaining) [ 0x050200000002030c { PACK } ] - - location: 301 (remaining gas: 1039145.967 units remaining) + - location: 301 (remaining gas: 1039144.525 units remaining) [ { PACK } ] - - location: 303 (remaining gas: 1039145.390 units remaining) + - location: 303 (remaining gas: 1039143.928 units remaining) [ 0x050200000002030c ] - - location: 304 (remaining gas: 1039144.369 units remaining) + - location: 304 (remaining gas: 1039142.904 units remaining) [ (Some { PACK }) ] - - location: 309 (remaining gas: 1039144.369 units remaining) + - location: 309 (remaining gas: 1039142.904 units remaining) [ { PACK } ] - - location: 309 (remaining gas: 1039144.359 units remaining) + - location: 309 (remaining gas: 1039142.889 units remaining) [ { PACK } ] - - location: 315 (remaining gas: 1039143.782 units remaining) + - location: 315 (remaining gas: 1039142.292 units remaining) [ 0x050200000002030c ] - - location: 301 (remaining gas: 1039143.762 units remaining) + - location: 301 (remaining gas: 1039142.267 units remaining) [ 0x050200000002030c 0x050200000002030c ] - - location: 318 (remaining gas: 1039143.727 units remaining) + - location: 318 (remaining gas: 1039142.232 units remaining) [ 0 ] - - location: 319 (remaining gas: 1039143.717 units remaining) + - location: 319 (remaining gas: 1039142.222 units remaining) [ True ] - - location: 320 (remaining gas: 1039143.717 units remaining) + - location: 320 (remaining gas: 1039142.222 units remaining) [ ] - - location: 320 (remaining gas: 1039143.707 units remaining) + - location: 320 (remaining gas: 1039142.207 units remaining) [ ] - - location: 326 (remaining gas: 1039143.697 units remaining) + - location: 326 (remaining gas: 1039142.197 units remaining) [ Unit ] - - location: 327 (remaining gas: 1039143.687 units remaining) + - location: 327 (remaining gas: 1039142.187 units remaining) [ {} Unit ] - - location: 329 (remaining gas: 1039143.677 units remaining) + - location: 329 (remaining gas: 1039142.177 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 8ea0b4f5baa5..30b9a497c641 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" @@ -85,7 +85,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 31 (remaining gas: 1039507.360 units remaining) + - location: 31 (remaining gas: 1039507.355 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit @@ -97,7 +97,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 34 (remaining gas: 1039506.379 units remaining) + - location: 34 (remaining gas: 1039506.354 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit @@ -109,7 +109,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 35 (remaining gas: 1039506.379 units remaining) + - location: 35 (remaining gas: 1039506.354 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -120,7 +120,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 37 (remaining gas: 1039505.398 units remaining) + - location: 37 (remaining gas: 1039505.353 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -131,7 +131,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 38 (remaining gas: 1039184.254 units remaining) + - location: 38 (remaining gas: 1039184.194 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: 1039184.254 units remaining) + - location: 41 (remaining gas: 1039184.194 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -153,7 +153,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 41 (remaining gas: 1039184.244 units remaining) + - location: 41 (remaining gas: 1039184.179 units remaining) [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -164,7 +164,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 47 (remaining gas: 1039183.263 units remaining) + - location: 47 (remaining gas: 1039183.178 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -175,7 +175,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 35 (remaining gas: 1039183.243 units remaining) + - location: 35 (remaining gas: 1039183.153 units remaining) [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f (Pair Unit @@ -187,7 +187,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 50 (remaining gas: 1039183.208 units remaining) + - location: 50 (remaining gas: 1039183.118 units remaining) [ 0 (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -198,7 +198,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 51 (remaining gas: 1039183.198 units remaining) + - location: 51 (remaining gas: 1039183.108 units remaining) [ True (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -209,7 +209,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 52 (remaining gas: 1039183.198 units remaining) + - location: 52 (remaining gas: 1039183.108 units remaining) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -219,7 +219,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 52 (remaining gas: 1039183.188 units remaining) + - location: 52 (remaining gas: 1039183.093 units remaining) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -229,7 +229,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 58 (remaining gas: 1039183.178 units remaining) + - location: 58 (remaining gas: 1039183.083 units remaining) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -248,7 +248,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 59 (remaining gas: 1039183.168 units remaining) + - location: 59 (remaining gas: 1039183.073 units remaining) [ Unit (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -259,7 +259,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 60 (remaining gas: 1039183.168 units remaining) + - location: 60 (remaining gas: 1039183.073 units remaining) [ (Pair Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -269,7 +269,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 62 (remaining gas: 1039183.158 units remaining) + - location: 62 (remaining gas: 1039183.063 units remaining) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -279,7 +279,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 60 (remaining gas: 1039183.138 units remaining) + - location: 60 (remaining gas: 1039183.038 units remaining) [ Unit Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -290,7 +290,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 63 (remaining gas: 1039182.942 units remaining) + - location: 63 (remaining gas: 1039182.822 units remaining) [ 0x05030b Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -301,7 +301,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 64 (remaining gas: 1039182.942 units remaining) + - location: 64 (remaining gas: 1039182.822 units remaining) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -311,7 +311,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 66 (remaining gas: 1039182.746 units remaining) + - location: 66 (remaining gas: 1039182.606 units remaining) [ 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -321,7 +321,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 67 (remaining gas: 1039182.326 units remaining) + - location: 67 (remaining gas: 1039182.185 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: 1039182.326 units remaining) + - location: 70 (remaining gas: 1039182.185 units remaining) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -341,7 +341,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 70 (remaining gas: 1039182.316 units remaining) + - location: 70 (remaining gas: 1039182.170 units remaining) [ Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -351,7 +351,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 76 (remaining gas: 1039182.120 units remaining) + - location: 76 (remaining gas: 1039181.954 units remaining) [ 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -361,7 +361,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 64 (remaining gas: 1039182.100 units remaining) + - location: 64 (remaining gas: 1039181.929 units remaining) [ 0x05030b 0x05030b (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" @@ -372,7 +372,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 79 (remaining gas: 1039182.065 units remaining) + - location: 79 (remaining gas: 1039181.894 units remaining) [ 0 (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -382,7 +382,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 80 (remaining gas: 1039182.055 units remaining) + - location: 80 (remaining gas: 1039181.884 units remaining) [ True (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -392,7 +392,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 81 (remaining gas: 1039182.055 units remaining) + - location: 81 (remaining gas: 1039181.884 units remaining) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None {} @@ -401,7 +401,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 81 (remaining gas: 1039182.045 units remaining) + - location: 81 (remaining gas: 1039181.869 units remaining) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None {} @@ -410,7 +410,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 87 (remaining gas: 1039182.035 units remaining) + - location: 87 (remaining gas: 1039181.859 units remaining) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None {} @@ -427,7 +427,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 88 (remaining gas: 1039182.025 units remaining) + - location: 88 (remaining gas: 1039181.849 units remaining) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None @@ -437,7 +437,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 89 (remaining gas: 1039182.025 units remaining) + - location: 89 (remaining gas: 1039181.849 units remaining) [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" None {} @@ -446,7 +446,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 91 (remaining gas: 1039182.015 units remaining) + - location: 91 (remaining gas: 1039181.839 units remaining) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None {} @@ -455,7 +455,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 89 (remaining gas: 1039181.995 units remaining) + - location: 89 (remaining gas: 1039181.814 units remaining) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None @@ -465,7 +465,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 92 (remaining gas: 1039181.114 units remaining) + - location: 92 (remaining gas: 1039180.913 units remaining) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None @@ -475,7 +475,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 93 (remaining gas: 1039181.114 units remaining) + - location: 93 (remaining gas: 1039180.913 units remaining) [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None {} @@ -484,7 +484,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 95 (remaining gas: 1039180.233 units remaining) + - location: 95 (remaining gas: 1039180.012 units remaining) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair None {} @@ -493,7 +493,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 96 (remaining gas: 1039178.430 units remaining) + - location: 96 (remaining gas: 1039178.182 units remaining) [ (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe") (Pair None {} @@ -502,7 +502,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 99 (remaining gas: 1039178.430 units remaining) + - location: 99 (remaining gas: 1039178.182 units remaining) [ "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe" (Pair None {} @@ -511,7 +511,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 99 (remaining gas: 1039178.420 units remaining) + - location: 99 (remaining gas: 1039178.167 units remaining) [ "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe" (Pair None {} @@ -520,7 +520,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 105 (remaining gas: 1039177.539 units remaining) + - location: 105 (remaining gas: 1039177.266 units remaining) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair None {} @@ -529,7 +529,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 93 (remaining gas: 1039177.519 units remaining) + - location: 93 (remaining gas: 1039177.241 units remaining) [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 (Pair None @@ -539,7 +539,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 108 (remaining gas: 1039177.483 units remaining) + - location: 108 (remaining gas: 1039177.205 units remaining) [ 0 (Pair None {} @@ -548,7 +548,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 109 (remaining gas: 1039177.473 units remaining) + - location: 109 (remaining gas: 1039177.195 units remaining) [ True (Pair None {} @@ -557,7 +557,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 110 (remaining gas: 1039177.473 units remaining) + - location: 110 (remaining gas: 1039177.195 units remaining) [ (Pair None {} {} @@ -565,7 +565,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 110 (remaining gas: 1039177.463 units remaining) + - location: 110 (remaining gas: 1039177.180 units remaining) [ (Pair None {} {} @@ -573,7 +573,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 116 (remaining gas: 1039177.453 units remaining) + - location: 116 (remaining gas: 1039177.170 units remaining) [ (Pair None {} {} @@ -588,7 +588,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 117 (remaining gas: 1039177.443 units remaining) + - location: 117 (remaining gas: 1039177.160 units remaining) [ None (Pair None {} @@ -597,7 +597,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 118 (remaining gas: 1039177.443 units remaining) + - location: 118 (remaining gas: 1039177.160 units remaining) [ (Pair None {} {} @@ -605,7 +605,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 120 (remaining gas: 1039177.433 units remaining) + - location: 120 (remaining gas: 1039177.150 units remaining) [ None (Pair {} {} @@ -613,7 +613,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 118 (remaining gas: 1039177.413 units remaining) + - location: 118 (remaining gas: 1039177.125 units remaining) [ None None (Pair {} @@ -622,7 +622,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 121 (remaining gas: 1039177.217 units remaining) + - location: 121 (remaining gas: 1039176.909 units remaining) [ 0x050306 None (Pair {} @@ -631,7 +631,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 122 (remaining gas: 1039177.217 units remaining) + - location: 122 (remaining gas: 1039176.909 units remaining) [ None (Pair {} {} @@ -639,7 +639,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 124 (remaining gas: 1039177.021 units remaining) + - location: 124 (remaining gas: 1039176.693 units remaining) [ 0x050306 (Pair {} {} @@ -647,7 +647,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 125 (remaining gas: 1039176.601 units remaining) + - location: 125 (remaining gas: 1039176.272 units remaining) [ (Some None) (Pair {} {} @@ -655,7 +655,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 129 (remaining gas: 1039176.601 units remaining) + - location: 129 (remaining gas: 1039176.272 units remaining) [ None (Pair {} {} @@ -663,7 +663,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 129 (remaining gas: 1039176.591 units remaining) + - location: 129 (remaining gas: 1039176.257 units remaining) [ None (Pair {} {} @@ -671,7 +671,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 135 (remaining gas: 1039176.395 units remaining) + - location: 135 (remaining gas: 1039176.041 units remaining) [ 0x050306 (Pair {} {} @@ -679,7 +679,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 122 (remaining gas: 1039176.375 units remaining) + - location: 122 (remaining gas: 1039176.016 units remaining) [ 0x050306 0x050306 (Pair {} @@ -688,7 +688,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 138 (remaining gas: 1039176.340 units remaining) + - location: 138 (remaining gas: 1039175.981 units remaining) [ 0 (Pair {} {} @@ -696,7 +696,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 139 (remaining gas: 1039176.330 units remaining) + - location: 139 (remaining gas: 1039175.971 units remaining) [ True (Pair {} {} @@ -704,21 +704,21 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 140 (remaining gas: 1039176.330 units remaining) + - location: 140 (remaining gas: 1039175.971 units remaining) [ (Pair {} {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 140 (remaining gas: 1039176.320 units remaining) + - location: 140 (remaining gas: 1039175.956 units remaining) [ (Pair {} {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 146 (remaining gas: 1039176.310 units remaining) + - location: 146 (remaining gas: 1039175.946 units remaining) [ (Pair {} {} (Pair 40 -10) @@ -731,7 +731,7 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 147 (remaining gas: 1039176.300 units remaining) + - location: 147 (remaining gas: 1039175.936 units remaining) [ {} (Pair {} {} @@ -739,294 +739,294 @@ trace (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 148 (remaining gas: 1039176.300 units remaining) + - location: 148 (remaining gas: 1039175.936 units remaining) [ (Pair {} {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 150 (remaining gas: 1039176.290 units remaining) + - location: 150 (remaining gas: 1039175.926 units remaining) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 148 (remaining gas: 1039176.270 units remaining) + - location: 148 (remaining gas: 1039175.901 units remaining) [ {} {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 151 (remaining gas: 1039176.074 units remaining) + - location: 151 (remaining gas: 1039175.685 units remaining) [ 0x050200000000 {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 152 (remaining gas: 1039176.074 units remaining) + - location: 152 (remaining gas: 1039175.685 units remaining) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 154 (remaining gas: 1039175.878 units remaining) + - location: 154 (remaining gas: 1039175.469 units remaining) [ 0x050200000000 (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 155 (remaining gas: 1039175.398 units remaining) + - location: 155 (remaining gas: 1039174.986 units remaining) [ (Some {}) (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 159 (remaining gas: 1039175.398 units remaining) + - location: 159 (remaining gas: 1039174.986 units remaining) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 159 (remaining gas: 1039175.388 units remaining) + - location: 159 (remaining gas: 1039174.971 units remaining) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 165 (remaining gas: 1039175.192 units remaining) + - location: 165 (remaining gas: 1039174.755 units remaining) [ 0x050200000000 (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 152 (remaining gas: 1039175.172 units remaining) + - location: 152 (remaining gas: 1039174.730 units remaining) [ 0x050200000000 0x050200000000 (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 168 (remaining gas: 1039175.137 units remaining) + - location: 168 (remaining gas: 1039174.695 units remaining) [ 0 (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 169 (remaining gas: 1039175.127 units remaining) + - location: 169 (remaining gas: 1039174.685 units remaining) [ True (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 170 (remaining gas: 1039175.127 units remaining) + - location: 170 (remaining gas: 1039174.685 units remaining) [ (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 170 (remaining gas: 1039175.117 units remaining) + - location: 170 (remaining gas: 1039174.670 units remaining) [ (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 176 (remaining gas: 1039175.107 units remaining) + - location: 176 (remaining gas: 1039174.660 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: 1039175.097 units remaining) + - location: 177 (remaining gas: 1039174.650 units remaining) [ {} (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 178 (remaining gas: 1039175.097 units remaining) + - location: 178 (remaining gas: 1039174.650 units remaining) [ (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 180 (remaining gas: 1039175.087 units remaining) + - location: 180 (remaining gas: 1039174.640 units remaining) [ {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 178 (remaining gas: 1039175.067 units remaining) + - location: 178 (remaining gas: 1039174.615 units remaining) [ {} {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 181 (remaining gas: 1039174.871 units remaining) + - location: 181 (remaining gas: 1039174.399 units remaining) [ 0x050200000000 {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 182 (remaining gas: 1039174.871 units remaining) + - location: 182 (remaining gas: 1039174.399 units remaining) [ {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 184 (remaining gas: 1039174.675 units remaining) + - location: 184 (remaining gas: 1039174.183 units remaining) [ 0x050200000000 (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 185 (remaining gas: 1039174.195 units remaining) + - location: 185 (remaining gas: 1039173.700 units remaining) [ (Some {}) (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 189 (remaining gas: 1039174.195 units remaining) + - location: 189 (remaining gas: 1039173.700 units remaining) [ {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 189 (remaining gas: 1039174.185 units remaining) + - location: 189 (remaining gas: 1039173.685 units remaining) [ {} (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 195 (remaining gas: 1039173.989 units remaining) + - location: 195 (remaining gas: 1039173.469 units remaining) [ 0x050200000000 (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 182 (remaining gas: 1039173.969 units remaining) + - location: 182 (remaining gas: 1039173.444 units remaining) [ 0x050200000000 0x050200000000 (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 198 (remaining gas: 1039173.934 units remaining) + - location: 198 (remaining gas: 1039173.409 units remaining) [ 0 (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 199 (remaining gas: 1039173.924 units remaining) + - location: 199 (remaining gas: 1039173.399 units remaining) [ True (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 200 (remaining gas: 1039173.924 units remaining) + - location: 200 (remaining gas: 1039173.399 units remaining) [ (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 200 (remaining gas: 1039173.914 units remaining) + - location: 200 (remaining gas: 1039173.384 units remaining) [ (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 206 (remaining gas: 1039173.904 units remaining) + - location: 206 (remaining gas: 1039173.374 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: 1039173.894 units remaining) + - location: 207 (remaining gas: 1039173.364 units remaining) [ (Pair 40 -10) (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 208 (remaining gas: 1039173.894 units remaining) + - location: 208 (remaining gas: 1039173.364 units remaining) [ (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 210 (remaining gas: 1039173.884 units remaining) + - location: 210 (remaining gas: 1039173.354 units remaining) [ (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 208 (remaining gas: 1039173.864 units remaining) + - location: 208 (remaining gas: 1039173.329 units remaining) [ (Pair 40 -10) (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 211 (remaining gas: 1039173.226 units remaining) + - location: 211 (remaining gas: 1039172.631 units remaining) [ 0x0507070028004a (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 212 (remaining gas: 1039173.226 units remaining) + - location: 212 (remaining gas: 1039172.631 units remaining) [ (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 214 (remaining gas: 1039172.588 units remaining) + - location: 214 (remaining gas: 1039171.933 units remaining) [ 0x0507070028004a (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 215 (remaining gas: 1039171.888 units remaining) + - location: 215 (remaining gas: 1039171.230 units remaining) [ (Some (Pair 40 -10)) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 220 (remaining gas: 1039171.888 units remaining) + - location: 220 (remaining gas: 1039171.230 units remaining) [ (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 220 (remaining gas: 1039171.878 units remaining) + - location: 220 (remaining gas: 1039171.215 units remaining) [ (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 226 (remaining gas: 1039171.240 units remaining) + - location: 226 (remaining gas: 1039170.517 units remaining) [ 0x0507070028004a (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 212 (remaining gas: 1039171.220 units remaining) + - location: 212 (remaining gas: 1039170.492 units remaining) [ 0x0507070028004a 0x0507070028004a (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 229 (remaining gas: 1039171.185 units remaining) + - location: 229 (remaining gas: 1039170.457 units remaining) [ 0 (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 230 (remaining gas: 1039171.175 units remaining) + - location: 230 (remaining gas: 1039170.447 units remaining) [ True (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 231 (remaining gas: 1039171.175 units remaining) + - location: 231 (remaining gas: 1039170.447 units remaining) [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 231 (remaining gas: 1039171.165 units remaining) + - location: 231 (remaining gas: 1039170.432 units remaining) [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 237 (remaining gas: 1039171.155 units remaining) + - location: 237 (remaining gas: 1039170.422 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: 1039171.145 units remaining) + - location: 238 (remaining gas: 1039170.412 units remaining) [ (Right "2019-09-09T08:35:33Z") (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 239 (remaining gas: 1039171.145 units remaining) + - location: 239 (remaining gas: 1039170.412 units remaining) [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 241 (remaining gas: 1039171.135 units remaining) + - location: 241 (remaining gas: 1039170.402 units remaining) [ (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 239 (remaining gas: 1039171.115 units remaining) + - location: 239 (remaining gas: 1039170.377 units remaining) [ (Right "2019-09-09T08:35:33Z") (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 242 (remaining gas: 1039170.623 units remaining) + - location: 242 (remaining gas: 1039169.845 units remaining) [ 0x0505080095bbb0d70b (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 243 (remaining gas: 1039170.623 units remaining) + - location: 243 (remaining gas: 1039169.845 units remaining) [ (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 245 (remaining gas: 1039170.131 units remaining) + - location: 245 (remaining gas: 1039169.313 units remaining) [ 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 246 (remaining gas: 1039169.490 units remaining) + - location: 246 (remaining gas: 1039168.669 units remaining) [ (Some (Right "2019-09-09T08:35:33Z")) (Pair {} { DUP ; DROP ; PACK }) ] - - location: 251 (remaining gas: 1039169.490 units remaining) + - location: 251 (remaining gas: 1039168.669 units remaining) [ (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 251 (remaining gas: 1039169.480 units remaining) + - location: 251 (remaining gas: 1039168.654 units remaining) [ (Right "2019-09-09T08:35:33Z") (Pair {} { DUP ; DROP ; PACK }) ] - - location: 257 (remaining gas: 1039168.988 units remaining) + - location: 257 (remaining gas: 1039168.122 units remaining) [ 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 243 (remaining gas: 1039168.968 units remaining) + - location: 243 (remaining gas: 1039168.097 units remaining) [ 0x0505080095bbb0d70b 0x0505080095bbb0d70b (Pair {} { DUP ; DROP ; PACK }) ] - - location: 260 (remaining gas: 1039168.933 units remaining) + - location: 260 (remaining gas: 1039168.062 units remaining) [ 0 (Pair {} { DUP ; DROP ; PACK }) ] - - location: 261 (remaining gas: 1039168.923 units remaining) + - location: 261 (remaining gas: 1039168.052 units remaining) [ True (Pair {} { DUP ; DROP ; PACK }) ] - - location: 262 (remaining gas: 1039168.923 units remaining) + - location: 262 (remaining gas: 1039168.052 units remaining) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 262 (remaining gas: 1039168.913 units remaining) + - location: 262 (remaining gas: 1039168.037 units remaining) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 268 (remaining gas: 1039168.903 units remaining) + - location: 268 (remaining gas: 1039168.027 units remaining) [ (Pair {} { DUP ; DROP ; PACK }) (Pair {} { DUP ; DROP ; PACK }) ] - - location: 269 (remaining gas: 1039168.893 units remaining) + - location: 269 (remaining gas: 1039168.017 units remaining) [ {} (Pair {} { DUP ; DROP ; PACK }) ] - - location: 270 (remaining gas: 1039168.893 units remaining) + - location: 270 (remaining gas: 1039168.017 units remaining) [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 272 (remaining gas: 1039168.883 units remaining) + - location: 272 (remaining gas: 1039168.007 units remaining) [ {} { DUP ; DROP ; PACK } ] - - location: 270 (remaining gas: 1039168.863 units remaining) + - location: 270 (remaining gas: 1039167.982 units remaining) [ {} {} { DUP ; DROP ; PACK } ] - - location: 273 (remaining gas: 1039168.667 units remaining) + - location: 273 (remaining gas: 1039167.766 units remaining) [ 0x050200000000 {} { DUP ; DROP ; PACK } ] - - location: 274 (remaining gas: 1039168.667 units remaining) + - location: 274 (remaining gas: 1039167.766 units remaining) [ {} { DUP ; DROP ; PACK } ] - - location: 276 (remaining gas: 1039168.471 units remaining) + - location: 276 (remaining gas: 1039167.550 units remaining) [ 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 277 (remaining gas: 1039167.991 units remaining) + - location: 277 (remaining gas: 1039167.067 units remaining) [ (Some {}) { DUP ; DROP ; PACK } ] - - location: 282 (remaining gas: 1039167.991 units remaining) + - location: 282 (remaining gas: 1039167.067 units remaining) [ {} { DUP ; DROP ; PACK } ] - - location: 282 (remaining gas: 1039167.981 units remaining) + - location: 282 (remaining gas: 1039167.052 units remaining) [ {} { DUP ; DROP ; PACK } ] - - location: 288 (remaining gas: 1039167.785 units remaining) + - location: 288 (remaining gas: 1039166.836 units remaining) [ 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 274 (remaining gas: 1039167.765 units remaining) + - location: 274 (remaining gas: 1039166.811 units remaining) [ 0x050200000000 0x050200000000 { DUP ; DROP ; PACK } ] - - location: 291 (remaining gas: 1039167.730 units remaining) + - location: 291 (remaining gas: 1039166.776 units remaining) [ 0 { DUP ; DROP ; PACK } ] - - location: 292 (remaining gas: 1039167.720 units remaining) + - location: 292 (remaining gas: 1039166.766 units remaining) [ True { DUP ; DROP ; PACK } ] - - location: 293 (remaining gas: 1039167.720 units remaining) + - location: 293 (remaining gas: 1039166.766 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 293 (remaining gas: 1039167.710 units remaining) + - location: 293 (remaining gas: 1039166.751 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 299 (remaining gas: 1039167.700 units remaining) + - location: 299 (remaining gas: 1039166.741 units remaining) [ { DUP ; DROP ; PACK } { DUP ; DROP ; PACK } ] - - location: 300 (remaining gas: 1039166.591 units remaining) + - location: 300 (remaining gas: 1039165.612 units remaining) [ 0x05020000000603210320030c { DUP ; DROP ; PACK } ] - - location: 301 (remaining gas: 1039166.591 units remaining) + - location: 301 (remaining gas: 1039165.612 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 303 (remaining gas: 1039165.482 units remaining) + - location: 303 (remaining gas: 1039164.483 units remaining) [ 0x05020000000603210320030c ] - - location: 304 (remaining gas: 1039163.401 units remaining) + - location: 304 (remaining gas: 1039162.397 units remaining) [ (Some { DUP ; DROP ; PACK }) ] - - location: 309 (remaining gas: 1039163.401 units remaining) + - location: 309 (remaining gas: 1039162.397 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 309 (remaining gas: 1039163.391 units remaining) + - location: 309 (remaining gas: 1039162.382 units remaining) [ { DUP ; DROP ; PACK } ] - - location: 315 (remaining gas: 1039162.282 units remaining) + - location: 315 (remaining gas: 1039161.253 units remaining) [ 0x05020000000603210320030c ] - - location: 301 (remaining gas: 1039162.262 units remaining) + - location: 301 (remaining gas: 1039161.228 units remaining) [ 0x05020000000603210320030c 0x05020000000603210320030c ] - - location: 318 (remaining gas: 1039162.227 units remaining) + - location: 318 (remaining gas: 1039161.193 units remaining) [ 0 ] - - location: 319 (remaining gas: 1039162.217 units remaining) + - location: 319 (remaining gas: 1039161.183 units remaining) [ True ] - - location: 320 (remaining gas: 1039162.217 units remaining) + - location: 320 (remaining gas: 1039161.183 units remaining) [ ] - - location: 320 (remaining gas: 1039162.207 units remaining) + - location: 320 (remaining gas: 1039161.168 units remaining) [ ] - - location: 326 (remaining gas: 1039162.197 units remaining) + - location: 326 (remaining gas: 1039161.158 units remaining) [ Unit ] - - location: 327 (remaining gas: 1039162.187 units remaining) + - location: 327 (remaining gas: 1039161.148 units remaining) [ {} Unit ] - - location: 329 (remaining gas: 1039162.177 units remaining) + - location: 329 (remaining gas: 1039161.138 units remaining) [ (Pair {} Unit) ] 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 5982340cf2c5..2a5a9c0d865d 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 @@ -22,26 +22,26 @@ trace - location: 17 (remaining gas: 1039990.949 units remaining) [ 14 { UNPAIR ; ADD } ] - - location: 19 (remaining gas: 1039990.568 units remaining) + - location: 19 (remaining gas: 1039990.548 units remaining) [ { PUSH nat 14 ; PAIR ; { UNPAIR ; ADD } } ] - - location: 17 (remaining gas: 1039990.548 units remaining) + - location: 17 (remaining gas: 1039990.523 units remaining) [ 38 { PUSH nat 14 ; PAIR ; { UNPAIR ; ADD } } ] - - location: 12 (remaining gas: 1039990.538 units remaining) + - location: 12 (remaining gas: 1039990.513 units remaining) [ 14 38 ] - - location: 12 (remaining gas: 1039990.528 units remaining) + - location: 12 (remaining gas: 1039990.503 units remaining) [ (Pair 14 38) ] - - location: 13 (remaining gas: 1039990.518 units remaining) + - location: 13 (remaining gas: 1039990.493 units remaining) [ 14 38 ] - - location: 14 (remaining gas: 1039990.483 units remaining) + - location: 14 (remaining gas: 1039990.458 units remaining) [ 52 ] - - location: 20 (remaining gas: 1039990.463 units remaining) + - location: 20 (remaining gas: 1039990.433 units remaining) [ 52 ] - - location: 21 (remaining gas: 1039990.453 units remaining) + - location: 21 (remaining gas: 1039990.423 units remaining) [ {} 52 ] - - location: 23 (remaining gas: 1039990.443 units remaining) + - location: 23 (remaining gas: 1039990.413 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 34c260ef4003..00b0d4a1f6b8 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 @@ -20,40 +20,40 @@ trace [ 4 { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } { 0 ; 1 ; 2 ; 3 } ] - - location: 24 (remaining gas: 1039982.580 units remaining) + - location: 24 (remaining gas: 1039982.560 units remaining) [ { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } { 0 ; 1 ; 2 ; 3 } ] - - location: 25 (remaining gas: 1039982.570 units remaining) + - location: 25 (remaining gas: 1039982.550 units remaining) [ 3 { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } { 0 ; 1 ; 2 ; 3 } ] - - location: 28 (remaining gas: 1039982.189 units remaining) + - location: 28 (remaining gas: 1039982.149 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } { 0 ; 1 ; 2 ; 3 } ] - - location: 29 (remaining gas: 1039982.179 units remaining) + - location: 29 (remaining gas: 1039982.139 units remaining) [ { 0 ; 1 ; 2 ; 3 } { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (remaining gas: 1039982.179 units remaining) + - location: 30 (remaining gas: 1039982.139 units remaining) [ 0 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039982.179 units remaining) + - location: 32 (remaining gas: 1039982.139 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (remaining gas: 1039982.169 units remaining) + - location: 34 (remaining gas: 1039982.129 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: 1039982.149 units remaining) + - location: 32 (remaining gas: 1039982.104 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: 1039982.139 units remaining) + - location: 16 (remaining gas: 1039982.094 units remaining) [ 3 0 ] - - location: 16 (remaining gas: 1039982.129 units remaining) + - location: 16 (remaining gas: 1039982.084 units remaining) [ (Pair 3 0) ] - - location: 16 (remaining gas: 1039982.119 units remaining) + - location: 16 (remaining gas: 1039982.074 units remaining) [ 4 (Pair 3 0) ] - - location: 16 (remaining gas: 1039982.109 units remaining) + - location: 16 (remaining gas: 1039982.064 units remaining) [ (Pair 4 3 0) ] - - location: 17 (remaining gas: 1039982.099 units remaining) + - location: 17 (remaining gas: 1039982.054 units remaining) [ 4 (Pair 3 0) ] - - location: 18 (remaining gas: 1039982.099 units remaining) + - location: 18 (remaining gas: 1039982.054 units remaining) [ (Pair 3 0) ] - - location: 20 (remaining gas: 1039982.089 units remaining) + - location: 20 (remaining gas: 1039982.044 units remaining) [ 3 0 ] - - location: 18 (remaining gas: 1039982.069 units remaining) + - location: 18 (remaining gas: 1039982.019 units remaining) [ 4 3 0 ] - - location: 21 (remaining gas: 1039982.034 units remaining) + - location: 21 (remaining gas: 1039981.984 units remaining) [ 7 0 ] - - location: 22 (remaining gas: 1039981.978 units remaining) + - location: 22 (remaining gas: 1039981.928 units remaining) [ 0 ] - - location: 35 (remaining gas: 1039981.958 units remaining) + - location: 35 (remaining gas: 1039981.903 units remaining) [ 0 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (remaining gas: 1039981.948 units remaining) + - location: 30 (remaining gas: 1039981.888 units remaining) [ 1 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039981.948 units remaining) + - location: 32 (remaining gas: 1039981.888 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (remaining gas: 1039981.938 units remaining) + - location: 34 (remaining gas: 1039981.878 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: 1039981.918 units remaining) + - location: 32 (remaining gas: 1039981.853 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: 1039981.908 units remaining) + - location: 16 (remaining gas: 1039981.843 units remaining) [ 3 1 ] - - location: 16 (remaining gas: 1039981.898 units remaining) + - location: 16 (remaining gas: 1039981.833 units remaining) [ (Pair 3 1) ] - - location: 16 (remaining gas: 1039981.888 units remaining) + - location: 16 (remaining gas: 1039981.823 units remaining) [ 4 (Pair 3 1) ] - - location: 16 (remaining gas: 1039981.878 units remaining) + - location: 16 (remaining gas: 1039981.813 units remaining) [ (Pair 4 3 1) ] - - location: 17 (remaining gas: 1039981.868 units remaining) + - location: 17 (remaining gas: 1039981.803 units remaining) [ 4 (Pair 3 1) ] - - location: 18 (remaining gas: 1039981.868 units remaining) + - location: 18 (remaining gas: 1039981.803 units remaining) [ (Pair 3 1) ] - - location: 20 (remaining gas: 1039981.858 units remaining) + - location: 20 (remaining gas: 1039981.793 units remaining) [ 3 1 ] - - location: 18 (remaining gas: 1039981.838 units remaining) + - location: 18 (remaining gas: 1039981.768 units remaining) [ 4 3 1 ] - - location: 21 (remaining gas: 1039981.803 units remaining) + - location: 21 (remaining gas: 1039981.733 units remaining) [ 7 1 ] - - location: 22 (remaining gas: 1039981.744 units remaining) + - location: 22 (remaining gas: 1039981.674 units remaining) [ 7 ] - - location: 35 (remaining gas: 1039981.724 units remaining) + - location: 35 (remaining gas: 1039981.649 units remaining) [ 7 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (remaining gas: 1039981.714 units remaining) + - location: 30 (remaining gas: 1039981.634 units remaining) [ 2 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039981.714 units remaining) + - location: 32 (remaining gas: 1039981.634 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (remaining gas: 1039981.704 units remaining) + - location: 34 (remaining gas: 1039981.624 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: 1039981.684 units remaining) + - location: 32 (remaining gas: 1039981.599 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: 1039981.674 units remaining) + - location: 16 (remaining gas: 1039981.589 units remaining) [ 3 2 ] - - location: 16 (remaining gas: 1039981.664 units remaining) + - location: 16 (remaining gas: 1039981.579 units remaining) [ (Pair 3 2) ] - - location: 16 (remaining gas: 1039981.654 units remaining) + - location: 16 (remaining gas: 1039981.569 units remaining) [ 4 (Pair 3 2) ] - - location: 16 (remaining gas: 1039981.644 units remaining) + - location: 16 (remaining gas: 1039981.559 units remaining) [ (Pair 4 3 2) ] - - location: 17 (remaining gas: 1039981.634 units remaining) + - location: 17 (remaining gas: 1039981.549 units remaining) [ 4 (Pair 3 2) ] - - location: 18 (remaining gas: 1039981.634 units remaining) + - location: 18 (remaining gas: 1039981.549 units remaining) [ (Pair 3 2) ] - - location: 20 (remaining gas: 1039981.624 units remaining) + - location: 20 (remaining gas: 1039981.539 units remaining) [ 3 2 ] - - location: 18 (remaining gas: 1039981.604 units remaining) + - location: 18 (remaining gas: 1039981.514 units remaining) [ 4 3 2 ] - - location: 21 (remaining gas: 1039981.569 units remaining) + - location: 21 (remaining gas: 1039981.479 units remaining) [ 7 2 ] - - location: 22 (remaining gas: 1039981.510 units remaining) + - location: 22 (remaining gas: 1039981.420 units remaining) [ 14 ] - - location: 35 (remaining gas: 1039981.490 units remaining) + - location: 35 (remaining gas: 1039981.395 units remaining) [ 14 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (remaining gas: 1039981.480 units remaining) + - location: 30 (remaining gas: 1039981.380 units remaining) [ 3 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (remaining gas: 1039981.480 units remaining) + - location: 32 (remaining gas: 1039981.380 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (remaining gas: 1039981.470 units remaining) + - location: 34 (remaining gas: 1039981.370 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: 1039981.450 units remaining) + - location: 32 (remaining gas: 1039981.345 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: 1039981.440 units remaining) + - location: 16 (remaining gas: 1039981.335 units remaining) [ 3 3 ] - - location: 16 (remaining gas: 1039981.430 units remaining) + - location: 16 (remaining gas: 1039981.325 units remaining) [ (Pair 3 3) ] - - location: 16 (remaining gas: 1039981.420 units remaining) + - location: 16 (remaining gas: 1039981.315 units remaining) [ 4 (Pair 3 3) ] - - location: 16 (remaining gas: 1039981.410 units remaining) + - location: 16 (remaining gas: 1039981.305 units remaining) [ (Pair 4 3 3) ] - - location: 17 (remaining gas: 1039981.400 units remaining) + - location: 17 (remaining gas: 1039981.295 units remaining) [ 4 (Pair 3 3) ] - - location: 18 (remaining gas: 1039981.400 units remaining) + - location: 18 (remaining gas: 1039981.295 units remaining) [ (Pair 3 3) ] - - location: 20 (remaining gas: 1039981.390 units remaining) + - location: 20 (remaining gas: 1039981.285 units remaining) [ 3 3 ] - - location: 18 (remaining gas: 1039981.370 units remaining) + - location: 18 (remaining gas: 1039981.260 units remaining) [ 4 3 3 ] - - location: 21 (remaining gas: 1039981.335 units remaining) + - location: 21 (remaining gas: 1039981.225 units remaining) [ 7 3 ] - - location: 22 (remaining gas: 1039981.276 units remaining) + - location: 22 (remaining gas: 1039981.166 units remaining) [ 21 ] - - location: 35 (remaining gas: 1039981.256 units remaining) + - location: 35 (remaining gas: 1039981.141 units remaining) [ 21 { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (remaining gas: 1039981.246 units remaining) + - location: 30 (remaining gas: 1039981.126 units remaining) [ { 0 ; 7 ; 14 ; 21 } { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 36 (remaining gas: 1039981.246 units remaining) + - location: 36 (remaining gas: 1039981.126 units remaining) [ { PUSH int 3 ; PAIR ; { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 38 (remaining gas: 1039981.236 units remaining) + - location: 38 (remaining gas: 1039981.116 units remaining) [ ] - - location: 36 (remaining gas: 1039981.216 units remaining) + - location: 36 (remaining gas: 1039981.091 units remaining) [ { 0 ; 7 ; 14 ; 21 } ] - - location: 39 (remaining gas: 1039981.206 units remaining) + - location: 39 (remaining gas: 1039981.081 units remaining) [ {} { 0 ; 7 ; 14 ; 21 } ] - - location: 41 (remaining gas: 1039981.196 units remaining) + - location: 41 (remaining gas: 1039981.071 units remaining) [ (Pair {} { 0 ; 7 ; 14 ; 21 }) ] 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 e5e11e22dc3f..cd6c770f9a0d 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" @@ -22,21 +22,21 @@ trace {} ] - location: 15 (remaining gas: 1039992.632 units remaining) [ { "c" } ] - - location: 13 (remaining gas: 1039992.622 units remaining) + - location: 13 (remaining gas: 1039992.617 units remaining) [ "b" { "c" } ] - - location: 15 (remaining gas: 1039992.612 units remaining) + - location: 15 (remaining gas: 1039992.607 units remaining) [ { "b" ; "c" } ] - - location: 13 (remaining gas: 1039992.602 units remaining) + - location: 13 (remaining gas: 1039992.592 units remaining) [ "a" { "b" ; "c" } ] - - location: 15 (remaining gas: 1039992.592 units remaining) + - location: 15 (remaining gas: 1039992.582 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 13 (remaining gas: 1039992.582 units remaining) + - location: 13 (remaining gas: 1039992.567 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 16 (remaining gas: 1039992.572 units remaining) + - location: 16 (remaining gas: 1039992.557 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039992.562 units remaining) + - location: 18 (remaining gas: 1039992.547 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-{\"\"}-{ \"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 6fcb7c9b56dc..3008e4930c92 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" @@ -37,95 +37,95 @@ trace {} ] - location: 23 (remaining gas: 1039985.782 units remaining) [ { "c" } ] - - location: 21 (remaining gas: 1039985.762 units remaining) + - location: 21 (remaining gas: 1039985.757 units remaining) [ { "b" ; "a" } { "c" } ] - - location: 24 (remaining gas: 1039985.752 units remaining) + - location: 24 (remaining gas: 1039985.747 units remaining) [ True { "b" ; "a" } { "c" } ] - - location: 18 (remaining gas: 1039985.742 units remaining) + - location: 18 (remaining gas: 1039985.732 units remaining) [ True { "b" ; "a" } { "c" } ] - - location: 33 (remaining gas: 1039985.732 units remaining) + - location: 33 (remaining gas: 1039985.717 units remaining) [ { "b" ; "a" } { "c" } ] - - location: 18 (remaining gas: 1039985.732 units remaining) + - location: 18 (remaining gas: 1039985.717 units remaining) [ "b" { "a" } { "c" } ] - - location: 20 (remaining gas: 1039985.722 units remaining) + - location: 20 (remaining gas: 1039985.707 units remaining) [ { "a" } "b" { "c" } ] - - location: 21 (remaining gas: 1039985.722 units remaining) + - location: 21 (remaining gas: 1039985.707 units remaining) [ "b" { "c" } ] - - location: 23 (remaining gas: 1039985.712 units remaining) + - location: 23 (remaining gas: 1039985.697 units remaining) [ { "b" ; "c" } ] - - location: 21 (remaining gas: 1039985.692 units remaining) + - location: 21 (remaining gas: 1039985.672 units remaining) [ { "a" } { "b" ; "c" } ] - - location: 24 (remaining gas: 1039985.682 units remaining) + - location: 24 (remaining gas: 1039985.662 units remaining) [ True { "a" } { "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.672 units remaining) + - location: 18 (remaining gas: 1039985.647 units remaining) [ True { "a" } { "b" ; "c" } ] - - location: 33 (remaining gas: 1039985.662 units remaining) + - location: 33 (remaining gas: 1039985.632 units remaining) [ { "a" } { "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.662 units remaining) + - location: 18 (remaining gas: 1039985.632 units remaining) [ "a" {} { "b" ; "c" } ] - - location: 20 (remaining gas: 1039985.652 units remaining) + - location: 20 (remaining gas: 1039985.622 units remaining) [ {} "a" { "b" ; "c" } ] - - location: 21 (remaining gas: 1039985.652 units remaining) + - location: 21 (remaining gas: 1039985.622 units remaining) [ "a" { "b" ; "c" } ] - - location: 23 (remaining gas: 1039985.642 units remaining) + - location: 23 (remaining gas: 1039985.612 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 21 (remaining gas: 1039985.622 units remaining) + - location: 21 (remaining gas: 1039985.587 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 24 (remaining gas: 1039985.612 units remaining) + - location: 24 (remaining gas: 1039985.577 units remaining) [ True {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.602 units remaining) + - location: 18 (remaining gas: 1039985.562 units remaining) [ True {} { "a" ; "b" ; "c" } ] - - location: 33 (remaining gas: 1039985.592 units remaining) + - location: 33 (remaining gas: 1039985.547 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.592 units remaining) + - location: 18 (remaining gas: 1039985.547 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 28 (remaining gas: 1039985.582 units remaining) + - location: 28 (remaining gas: 1039985.537 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 30 (remaining gas: 1039985.572 units remaining) + - location: 30 (remaining gas: 1039985.527 units remaining) [ False {} { "a" ; "b" ; "c" } ] - - location: 18 (remaining gas: 1039985.562 units remaining) + - location: 18 (remaining gas: 1039985.512 units remaining) [ False {} { "a" ; "b" ; "c" } ] - - location: 33 (remaining gas: 1039985.552 units remaining) + - location: 33 (remaining gas: 1039985.497 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 33 (remaining gas: 1039985.542 units remaining) + - location: 33 (remaining gas: 1039985.487 units remaining) [ { "a" ; "b" ; "c" } ] - - location: 34 (remaining gas: 1039985.532 units remaining) + - location: 34 (remaining gas: 1039985.477 units remaining) [ {} { "a" ; "b" ; "c" } ] - - location: 36 (remaining gas: 1039985.522 units remaining) + - location: 36 (remaining gas: 1039985.467 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 a3dd27fd66e0..caeab38894b7 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" @@ -33,18 +33,18 @@ trace [ False {} {} ] - - location: 18 (remaining gas: 1039986.144 units remaining) + - location: 18 (remaining gas: 1039986.139 units remaining) [ False {} {} ] - - location: 33 (remaining gas: 1039986.134 units remaining) + - location: 33 (remaining gas: 1039986.124 units remaining) [ {} {} ] - - location: 33 (remaining gas: 1039986.124 units remaining) + - location: 33 (remaining gas: 1039986.114 units remaining) [ {} ] - - location: 34 (remaining gas: 1039986.114 units remaining) + - location: 34 (remaining gas: 1039986.104 units remaining) [ {} {} ] - - location: 36 (remaining gas: 1039986.104 units remaining) + - location: 36 (remaining gas: 1039986.094 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 d58f91c0eb3d..90fc736a79f2 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 @@ -11,11 +11,11 @@ trace [ (Pair Unit {}) ] - location: 8 (remaining gas: 1039995.632 units remaining) [ ] - - location: 9 (remaining gas: 1039995.622 units remaining) + - location: 9 (remaining gas: 1039995.332 units remaining) [ {} ] - - location: 11 (remaining gas: 1039995.612 units remaining) + - location: 11 (remaining gas: 1039995.322 units remaining) [ {} {} ] - - location: 13 (remaining gas: 1039995.602 units remaining) + - location: 13 (remaining gas: 1039995.312 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 9c3aba291187..dbd11c0f62e8 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 @@ -20,27 +20,27 @@ trace [ ] - location: 13 (remaining gas: 1039986.224 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 15 (remaining gas: 1039986.204 units remaining) + - location: 15 (remaining gas: 1039986.199 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 16 (remaining gas: 1039986.194 units remaining) + - location: 16 (remaining gas: 1039986.189 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 17 (remaining gas: 1039986.184 units remaining) + - location: 17 (remaining gas: 1039986.179 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 20 (remaining gas: 1039986.148 units remaining) + - location: 20 (remaining gas: 1039986.143 units remaining) [ 0 ] - - location: 21 (remaining gas: 1039986.138 units remaining) + - location: 21 (remaining gas: 1039986.133 units remaining) [ True ] - - location: 22 (remaining gas: 1039986.138 units remaining) + - location: 22 (remaining gas: 1039986.133 units remaining) [ ] - - location: 22 (remaining gas: 1039986.128 units remaining) + - location: 22 (remaining gas: 1039986.118 units remaining) [ ] - - location: 28 (remaining gas: 1039986.118 units remaining) + - location: 28 (remaining gas: 1039986.108 units remaining) [ Unit ] - - location: 29 (remaining gas: 1039986.108 units remaining) + - location: 29 (remaining gas: 1039986.098 units remaining) [ {} Unit ] - - location: 31 (remaining gas: 1039986.098 units remaining) + - location: 31 (remaining gas: 1039986.088 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 ae56017e1474..8341296ac0d4 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 @@ -21,27 +21,27 @@ trace [ ] - location: 18 (remaining gas: 1039984.425 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 19 (remaining gas: 1039983.939 units remaining) + - location: 19 (remaining gas: 1039983.919 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 20 (remaining gas: 1039983.929 units remaining) + - location: 20 (remaining gas: 1039983.909 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 21 (remaining gas: 1039983.443 units remaining) + - location: 21 (remaining gas: 1039983.403 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 24 (remaining gas: 1039983.408 units remaining) + - location: 24 (remaining gas: 1039983.368 units remaining) [ 0 ] - - location: 25 (remaining gas: 1039983.398 units remaining) + - location: 25 (remaining gas: 1039983.358 units remaining) [ True ] - - location: 26 (remaining gas: 1039983.398 units remaining) + - location: 26 (remaining gas: 1039983.358 units remaining) [ ] - - location: 26 (remaining gas: 1039983.388 units remaining) + - location: 26 (remaining gas: 1039983.343 units remaining) [ ] - - location: 32 (remaining gas: 1039983.378 units remaining) + - location: 32 (remaining gas: 1039983.333 units remaining) [ Unit ] - - location: 33 (remaining gas: 1039983.368 units remaining) + - location: 33 (remaining gas: 1039983.323 units remaining) [ {} Unit ] - - location: 35 (remaining gas: 1039983.358 units remaining) + - location: 35 (remaining gas: 1039983.313 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 d5bacd535fd5..abe2cac12ade 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 @@ -13,81 +13,81 @@ trace [ ] - location: 14 (remaining gas: 1039959.856 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 15 (remaining gas: 1039959.360 units remaining) + - location: 15 (remaining gas: 1039959.340 units remaining) [ 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 16 (remaining gas: 1039959.350 units remaining) + - location: 16 (remaining gas: 1039959.330 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 17 (remaining gas: 1039958.864 units remaining) + - location: 17 (remaining gas: 1039958.824 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 18 (remaining gas: 1039958.854 units remaining) + - location: 18 (remaining gas: 1039958.814 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 19 (remaining gas: 1039958.854 units remaining) + - location: 19 (remaining gas: 1039958.814 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 21 (remaining gas: 1039958.844 units remaining) + - location: 21 (remaining gas: 1039958.804 units remaining) [ 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 19 (remaining gas: 1039958.824 units remaining) + - location: 19 (remaining gas: 1039958.779 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 24 (remaining gas: 1039958.789 units remaining) + - location: 24 (remaining gas: 1039958.744 units remaining) [ -1 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 25 (remaining gas: 1039958.779 units remaining) + - location: 25 (remaining gas: 1039958.734 units remaining) [ True 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 26 (remaining gas: 1039958.779 units remaining) + - location: 26 (remaining gas: 1039958.734 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 26 (remaining gas: 1039958.769 units remaining) + - location: 26 (remaining gas: 1039958.719 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 32 (remaining gas: 1039958.759 units remaining) + - location: 32 (remaining gas: 1039958.709 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 33 (remaining gas: 1039958.273 units remaining) + - location: 33 (remaining gas: 1039958.203 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 36 (remaining gas: 1039958.238 units remaining) + - location: 36 (remaining gas: 1039958.168 units remaining) [ 0 ] - - location: 37 (remaining gas: 1039958.228 units remaining) + - location: 37 (remaining gas: 1039958.158 units remaining) [ True ] - - location: 38 (remaining gas: 1039958.228 units remaining) + - location: 38 (remaining gas: 1039958.158 units remaining) [ ] - - location: 38 (remaining gas: 1039958.218 units remaining) + - location: 38 (remaining gas: 1039958.143 units remaining) [ ] - - location: 44 (remaining gas: 1039958.208 units remaining) + - location: 44 (remaining gas: 1039958.133 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 48 (remaining gas: 1039958.198 units remaining) + - location: 48 (remaining gas: 1039958.123 units remaining) [ ] - - location: 49 (remaining gas: 1039958.188 units remaining) + - location: 49 (remaining gas: 1039958.113 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%B" ] - - location: 53 (remaining gas: 1039958.178 units remaining) + - location: 53 (remaining gas: 1039958.103 units remaining) [ ] - - location: 54 (remaining gas: 1039958.168 units remaining) + - location: 54 (remaining gas: 1039958.093 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%maybe_C" ] - - location: 60 (remaining gas: 1039958.158 units remaining) + - location: 60 (remaining gas: 1039958.083 units remaining) [ ] - - location: 61 (remaining gas: 1039958.148 units remaining) + - location: 61 (remaining gas: 1039958.073 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%Z" ] - - location: 65 (remaining gas: 1039958.138 units remaining) + - location: 65 (remaining gas: 1039958.063 units remaining) [ ] - - location: 66 (remaining gas: 1039958.128 units remaining) + - location: 66 (remaining gas: 1039958.053 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 76 (remaining gas: 1039958.118 units remaining) + - location: 76 (remaining gas: 1039958.043 units remaining) [ ] - - location: 77 (remaining gas: 1039958.108 units remaining) + - location: 77 (remaining gas: 1039958.033 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 87 (remaining gas: 1039958.098 units remaining) + - location: 87 (remaining gas: 1039958.023 units remaining) [ ] - - location: 88 (remaining gas: 1039958.088 units remaining) + - location: 88 (remaining gas: 1039958.013 units remaining) [ Unit ] - - location: 89 (remaining gas: 1039958.078 units remaining) + - location: 89 (remaining gas: 1039958.003 units remaining) [ {} Unit ] - - location: 91 (remaining gas: 1039958.068 units remaining) + - location: 91 (remaining gas: 1039957.993 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 4b2a9c58b5d0..81dcb9cf6f9b 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" @@ -19,31 +19,31 @@ trace [ (Pair "" "hello" 0) ] - location: 13 (remaining gas: 1039989.041 units remaining) [ "" ] - - location: 11 (remaining gas: 1039989.021 units remaining) + - location: 11 (remaining gas: 1039989.016 units remaining) [ (Pair "hello" 0) "" ] - - location: 15 (remaining gas: 1039989.011 units remaining) + - location: 15 (remaining gas: 1039989.006 units remaining) [ (Pair "hello" 0) (Pair "hello" 0) "" ] - - location: 16 (remaining gas: 1039989.001 units remaining) + - location: 16 (remaining gas: 1039988.996 units remaining) [ "hello" (Pair "hello" 0) "" ] - - location: 17 (remaining gas: 1039988.991 units remaining) + - location: 17 (remaining gas: 1039988.986 units remaining) [ (Pair "hello" 0) "" ] - - location: 18 (remaining gas: 1039988.981 units remaining) + - location: 18 (remaining gas: 1039988.976 units remaining) [ 0 "" ] - - location: 19 (remaining gas: 1039988.971 units remaining) + - location: 19 (remaining gas: 1039988.966 units remaining) [ "" 0 ] - - location: 20 (remaining gas: 1039988.961 units remaining) + - location: 20 (remaining gas: 1039988.956 units remaining) [ (Pair "" 0) ] - - location: 21 (remaining gas: 1039988.951 units remaining) + - location: 21 (remaining gas: 1039988.946 units remaining) [ {} (Pair "" 0) ] - - location: 23 (remaining gas: 1039988.941 units remaining) + - location: 23 (remaining gas: 1039988.936 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 46f23622d08f..9fc155303fc8 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" @@ -19,31 +19,31 @@ trace [ (Pair "abc" "hello" 0) ] - location: 13 (remaining gas: 1039989.011 units remaining) [ "abc" ] - - location: 11 (remaining gas: 1039988.991 units remaining) + - location: 11 (remaining gas: 1039988.986 units remaining) [ (Pair "hello" 0) "abc" ] - - location: 15 (remaining gas: 1039988.981 units remaining) + - location: 15 (remaining gas: 1039988.976 units remaining) [ (Pair "hello" 0) (Pair "hello" 0) "abc" ] - - location: 16 (remaining gas: 1039988.971 units remaining) + - location: 16 (remaining gas: 1039988.966 units remaining) [ "hello" (Pair "hello" 0) "abc" ] - - location: 17 (remaining gas: 1039988.961 units remaining) + - location: 17 (remaining gas: 1039988.956 units remaining) [ (Pair "hello" 0) "abc" ] - - location: 18 (remaining gas: 1039988.951 units remaining) + - location: 18 (remaining gas: 1039988.946 units remaining) [ 0 "abc" ] - - location: 19 (remaining gas: 1039988.941 units remaining) + - location: 19 (remaining gas: 1039988.936 units remaining) [ "abc" 0 ] - - location: 20 (remaining gas: 1039988.931 units remaining) + - location: 20 (remaining gas: 1039988.926 units remaining) [ (Pair "abc" 0) ] - - location: 21 (remaining gas: 1039988.921 units remaining) + - location: 21 (remaining gas: 1039988.916 units remaining) [ {} (Pair "abc" 0) ] - - location: 23 (remaining gas: 1039988.911 units remaining) + - location: 23 (remaining gas: 1039988.906 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 194c1cb8eeda..3063945c5afb 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" @@ -19,31 +19,31 @@ trace [ (Pair "world" "hello" 0) ] - location: 13 (remaining gas: 1039988.991 units remaining) [ "world" ] - - location: 11 (remaining gas: 1039988.971 units remaining) + - location: 11 (remaining gas: 1039988.966 units remaining) [ (Pair "hello" 0) "world" ] - - location: 15 (remaining gas: 1039988.961 units remaining) + - location: 15 (remaining gas: 1039988.956 units remaining) [ (Pair "hello" 0) (Pair "hello" 0) "world" ] - - location: 16 (remaining gas: 1039988.951 units remaining) + - location: 16 (remaining gas: 1039988.946 units remaining) [ "hello" (Pair "hello" 0) "world" ] - - location: 17 (remaining gas: 1039988.941 units remaining) + - location: 17 (remaining gas: 1039988.936 units remaining) [ (Pair "hello" 0) "world" ] - - location: 18 (remaining gas: 1039988.931 units remaining) + - location: 18 (remaining gas: 1039988.926 units remaining) [ 0 "world" ] - - location: 19 (remaining gas: 1039988.921 units remaining) + - location: 19 (remaining gas: 1039988.916 units remaining) [ "world" 0 ] - - location: 20 (remaining gas: 1039988.911 units remaining) + - location: 20 (remaining gas: 1039988.906 units remaining) [ (Pair "world" 0) ] - - location: 21 (remaining gas: 1039988.901 units remaining) + - location: 21 (remaining gas: 1039988.896 units remaining) [ {} (Pair "world" 0) ] - - location: 23 (remaining gas: 1039988.891 units remaining) + - location: 23 (remaining gas: 1039988.886 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 ae91ab2cf876..5cdd1f2ca042 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" @@ -19,28 +19,28 @@ trace [ (Pair 1 "hello" 0) ] - location: 13 (remaining gas: 1039989.613 units remaining) [ 1 ] - - location: 11 (remaining gas: 1039989.593 units remaining) + - location: 11 (remaining gas: 1039989.588 units remaining) [ (Pair "hello" 0) 1 ] - - location: 15 (remaining gas: 1039989.583 units remaining) + - location: 15 (remaining gas: 1039989.578 units remaining) [ (Pair "hello" 0) (Pair "hello" 0) 1 ] - - location: 16 (remaining gas: 1039989.573 units remaining) + - location: 16 (remaining gas: 1039989.568 units remaining) [ 0 (Pair "hello" 0) 1 ] - - location: 17 (remaining gas: 1039989.563 units remaining) + - location: 17 (remaining gas: 1039989.558 units remaining) [ (Pair "hello" 0) 1 ] - - location: 18 (remaining gas: 1039989.553 units remaining) + - location: 18 (remaining gas: 1039989.548 units remaining) [ "hello" 1 ] - - location: 19 (remaining gas: 1039989.543 units remaining) + - location: 19 (remaining gas: 1039989.538 units remaining) [ (Pair "hello" 1) ] - - location: 20 (remaining gas: 1039989.533 units remaining) + - location: 20 (remaining gas: 1039989.528 units remaining) [ {} (Pair "hello" 1) ] - - location: 22 (remaining gas: 1039989.523 units remaining) + - location: 22 (remaining gas: 1039989.518 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 d0f09469a802..221776a24550 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" @@ -19,28 +19,28 @@ trace [ (Pair 3 "hello" 500) ] - location: 13 (remaining gas: 1039989.613 units remaining) [ 3 ] - - location: 11 (remaining gas: 1039989.593 units remaining) + - location: 11 (remaining gas: 1039989.588 units remaining) [ (Pair "hello" 500) 3 ] - - location: 15 (remaining gas: 1039989.583 units remaining) + - location: 15 (remaining gas: 1039989.578 units remaining) [ (Pair "hello" 500) (Pair "hello" 500) 3 ] - - location: 16 (remaining gas: 1039989.573 units remaining) + - location: 16 (remaining gas: 1039989.568 units remaining) [ 500 (Pair "hello" 500) 3 ] - - location: 17 (remaining gas: 1039989.563 units remaining) + - location: 17 (remaining gas: 1039989.558 units remaining) [ (Pair "hello" 500) 3 ] - - location: 18 (remaining gas: 1039989.553 units remaining) + - location: 18 (remaining gas: 1039989.548 units remaining) [ "hello" 3 ] - - location: 19 (remaining gas: 1039989.543 units remaining) + - location: 19 (remaining gas: 1039989.538 units remaining) [ (Pair "hello" 3) ] - - location: 20 (remaining gas: 1039989.533 units remaining) + - location: 20 (remaining gas: 1039989.528 units remaining) [ {} (Pair "hello" 3) ] - - location: 22 (remaining gas: 1039989.523 units remaining) + - location: 22 (remaining gas: 1039989.518 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 a5d0362a8d3a..984b88ab068a 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" @@ -19,28 +19,28 @@ trace [ (Pair 100 "hello" 7) ] - location: 13 (remaining gas: 1039989.613 units remaining) [ 100 ] - - location: 11 (remaining gas: 1039989.593 units remaining) + - location: 11 (remaining gas: 1039989.588 units remaining) [ (Pair "hello" 7) 100 ] - - location: 15 (remaining gas: 1039989.583 units remaining) + - location: 15 (remaining gas: 1039989.578 units remaining) [ (Pair "hello" 7) (Pair "hello" 7) 100 ] - - location: 16 (remaining gas: 1039989.573 units remaining) + - location: 16 (remaining gas: 1039989.568 units remaining) [ 7 (Pair "hello" 7) 100 ] - - location: 17 (remaining gas: 1039989.563 units remaining) + - location: 17 (remaining gas: 1039989.558 units remaining) [ (Pair "hello" 7) 100 ] - - location: 18 (remaining gas: 1039989.553 units remaining) + - location: 18 (remaining gas: 1039989.548 units remaining) [ "hello" 100 ] - - location: 19 (remaining gas: 1039989.543 units remaining) + - location: 19 (remaining gas: 1039989.538 units remaining) [ (Pair "hello" 100) ] - - location: 20 (remaining gas: 1039989.533 units remaining) + - location: 20 (remaining gas: 1039989.528 units remaining) [ {} (Pair "hello" 100) ] - - location: 22 (remaining gas: 1039989.523 units remaining) + - location: 22 (remaining gas: 1039989.518 units remaining) [ (Pair {} "hello" 100) ] 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 795ee8df05cf..b06b6fe5dbc3 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 @@ -22,26 +22,26 @@ trace 0 ] - location: 15 (remaining gas: 1039992.208 units remaining) [ -100 ] - - location: 13 (remaining gas: 1039992.198 units remaining) + - location: 13 (remaining gas: 1039992.193 units remaining) [ 1 -100 ] - - location: 15 (remaining gas: 1039992.163 units remaining) + - location: 15 (remaining gas: 1039992.158 units remaining) [ -99 ] - - location: 13 (remaining gas: 1039992.153 units remaining) + - location: 13 (remaining gas: 1039992.143 units remaining) [ 2 -99 ] - - location: 15 (remaining gas: 1039992.118 units remaining) + - location: 15 (remaining gas: 1039992.108 units remaining) [ -97 ] - - location: 13 (remaining gas: 1039992.108 units remaining) + - location: 13 (remaining gas: 1039992.093 units remaining) [ 3 -97 ] - - location: 15 (remaining gas: 1039992.073 units remaining) + - location: 15 (remaining gas: 1039992.058 units remaining) [ -94 ] - - location: 13 (remaining gas: 1039992.063 units remaining) + - location: 13 (remaining gas: 1039992.043 units remaining) [ -94 ] - - location: 16 (remaining gas: 1039992.053 units remaining) + - location: 16 (remaining gas: 1039992.033 units remaining) [ {} -94 ] - - location: 18 (remaining gas: 1039992.043 units remaining) + - location: 18 (remaining gas: 1039992.023 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 4951aec026ba..1f433251d4e5 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 @@ -22,11 +22,11 @@ trace 0 ] - location: 15 (remaining gas: 1039993.003 units remaining) [ 1 ] - - location: 13 (remaining gas: 1039992.993 units remaining) + - location: 13 (remaining gas: 1039992.988 units remaining) [ 1 ] - - location: 16 (remaining gas: 1039992.983 units remaining) + - location: 16 (remaining gas: 1039992.978 units remaining) [ {} 1 ] - - location: 18 (remaining gas: 1039992.973 units remaining) + - location: 18 (remaining gas: 1039992.968 units remaining) [ (Pair {} 1) ] 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 3b2808b71eaa..a2be93bf95d0 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" @@ -29,33 +29,33 @@ trace - location: 18 (remaining gas: 1039985.593 units remaining) [ { "Hello" ; "World" } (Pair "" { "Hello" ; "World" } None) ] - - location: 14 (remaining gas: 1039985.573 units remaining) + - location: 14 (remaining gas: 1039985.568 units remaining) [ "" { "Hello" ; "World" } (Pair "" { "Hello" ; "World" } None) ] - - location: 19 (remaining gas: 1039985.458 units remaining) + - location: 19 (remaining gas: 1039985.453 units remaining) [ False (Pair "" { "Hello" ; "World" } None) ] - - location: 20 (remaining gas: 1039985.448 units remaining) + - location: 20 (remaining gas: 1039985.443 units remaining) [ (Some False) (Pair "" { "Hello" ; "World" } None) ] - - location: 21 (remaining gas: 1039985.448 units remaining) + - location: 21 (remaining gas: 1039985.443 units remaining) [ (Pair "" { "Hello" ; "World" } None) ] - - location: 24 (remaining gas: 1039985.438 units remaining) + - location: 24 (remaining gas: 1039985.433 units remaining) [ (Pair { "Hello" ; "World" } None) ] - - location: 25 (remaining gas: 1039985.428 units remaining) + - location: 25 (remaining gas: 1039985.423 units remaining) [ { "Hello" ; "World" } ] - - location: 21 (remaining gas: 1039985.408 units remaining) + - location: 21 (remaining gas: 1039985.398 units remaining) [ (Some False) { "Hello" ; "World" } ] - - location: 26 (remaining gas: 1039985.398 units remaining) + - location: 26 (remaining gas: 1039985.388 units remaining) [ { "Hello" ; "World" } (Some False) ] - - location: 27 (remaining gas: 1039985.388 units remaining) + - location: 27 (remaining gas: 1039985.378 units remaining) [ (Pair { "Hello" ; "World" } (Some False)) ] - - location: 28 (remaining gas: 1039985.378 units remaining) + - location: 28 (remaining gas: 1039985.368 units remaining) [ {} (Pair { "Hello" ; "World" } (Some False)) ] - - location: 30 (remaining gas: 1039985.368 units remaining) + - location: 30 (remaining gas: 1039985.358 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 98b5ee3bdab5..0b61a9f87844 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" @@ -29,33 +29,33 @@ trace - location: 18 (remaining gas: 1039985.958 units remaining) [ { "Hi" } (Pair "Hi" { "Hi" } None) ] - - location: 14 (remaining gas: 1039985.938 units remaining) + - location: 14 (remaining gas: 1039985.933 units remaining) [ "Hi" { "Hi" } (Pair "Hi" { "Hi" } None) ] - - location: 19 (remaining gas: 1039985.819 units remaining) + - location: 19 (remaining gas: 1039985.814 units remaining) [ True (Pair "Hi" { "Hi" } None) ] - - location: 20 (remaining gas: 1039985.809 units remaining) + - location: 20 (remaining gas: 1039985.804 units remaining) [ (Some True) (Pair "Hi" { "Hi" } None) ] - - location: 21 (remaining gas: 1039985.809 units remaining) + - location: 21 (remaining gas: 1039985.804 units remaining) [ (Pair "Hi" { "Hi" } None) ] - - location: 24 (remaining gas: 1039985.799 units remaining) + - location: 24 (remaining gas: 1039985.794 units remaining) [ (Pair { "Hi" } None) ] - - location: 25 (remaining gas: 1039985.789 units remaining) + - location: 25 (remaining gas: 1039985.784 units remaining) [ { "Hi" } ] - - location: 21 (remaining gas: 1039985.769 units remaining) + - location: 21 (remaining gas: 1039985.759 units remaining) [ (Some True) { "Hi" } ] - - location: 26 (remaining gas: 1039985.759 units remaining) + - location: 26 (remaining gas: 1039985.749 units remaining) [ { "Hi" } (Some True) ] - - location: 27 (remaining gas: 1039985.749 units remaining) + - location: 27 (remaining gas: 1039985.739 units remaining) [ (Pair { "Hi" } (Some True)) ] - - location: 28 (remaining gas: 1039985.739 units remaining) + - location: 28 (remaining gas: 1039985.729 units remaining) [ {} (Pair { "Hi" } (Some True)) ] - - location: 30 (remaining gas: 1039985.729 units remaining) + - location: 30 (remaining gas: 1039985.719 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 649d1080e19c..724ebaff4e0f 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" @@ -29,33 +29,33 @@ trace - location: 18 (remaining gas: 1039986.226 units remaining) [ {} (Pair "Hi" {} None) ] - - location: 14 (remaining gas: 1039986.206 units remaining) + - location: 14 (remaining gas: 1039986.201 units remaining) [ "Hi" {} (Pair "Hi" {} None) ] - - location: 19 (remaining gas: 1039986.089 units remaining) + - location: 19 (remaining gas: 1039986.084 units remaining) [ False (Pair "Hi" {} None) ] - - location: 20 (remaining gas: 1039986.079 units remaining) + - location: 20 (remaining gas: 1039986.074 units remaining) [ (Some False) (Pair "Hi" {} None) ] - - location: 21 (remaining gas: 1039986.079 units remaining) + - location: 21 (remaining gas: 1039986.074 units remaining) [ (Pair "Hi" {} None) ] - - location: 24 (remaining gas: 1039986.069 units remaining) + - location: 24 (remaining gas: 1039986.064 units remaining) [ (Pair {} None) ] - - location: 25 (remaining gas: 1039986.059 units remaining) + - location: 25 (remaining gas: 1039986.054 units remaining) [ {} ] - - location: 21 (remaining gas: 1039986.039 units remaining) + - location: 21 (remaining gas: 1039986.029 units remaining) [ (Some False) {} ] - - location: 26 (remaining gas: 1039986.029 units remaining) + - location: 26 (remaining gas: 1039986.019 units remaining) [ {} (Some False) ] - - location: 27 (remaining gas: 1039986.019 units remaining) + - location: 27 (remaining gas: 1039986.009 units remaining) [ (Pair {} (Some False)) ] - - location: 28 (remaining gas: 1039986.009 units remaining) + - location: 28 (remaining gas: 1039985.999 units remaining) [ {} (Pair {} (Some False)) ] - - location: 30 (remaining gas: 1039985.999 units remaining) + - location: 30 (remaining gas: 1039985.989 units remaining) [ (Pair {} {} (Some False)) ] 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 9db7974e7876..080c79ead283 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 @@ -18,13 +18,13 @@ trace 0 ] - location: 18 (remaining gas: 1039991.169 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039991.159 units remaining) + - location: 15 (remaining gas: 1039991.154 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039991.149 units remaining) + - location: 22 (remaining gas: 1039991.144 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.139 units remaining) + - location: 23 (remaining gas: 1039991.134 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.129 units remaining) + - location: 25 (remaining gas: 1039991.124 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 03d0ce2c6b20..eadda0dcf7e2 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 @@ -18,13 +18,13 @@ trace 1 ] - location: 18 (remaining gas: 1039991.169 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039991.159 units remaining) + - location: 15 (remaining gas: 1039991.154 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039991.149 units remaining) + - location: 22 (remaining gas: 1039991.144 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.139 units remaining) + - location: 23 (remaining gas: 1039991.134 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.129 units remaining) + - location: 25 (remaining gas: 1039991.124 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 f8bcf94745aa..7bd6c0a39772 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 @@ -18,13 +18,13 @@ trace 2 ] - location: 18 (remaining gas: 1039991.169 units remaining) [ 4 ] - - location: 15 (remaining gas: 1039991.159 units remaining) + - location: 15 (remaining gas: 1039991.154 units remaining) [ 4 ] - - location: 22 (remaining gas: 1039991.149 units remaining) + - location: 22 (remaining gas: 1039991.144 units remaining) [ (Some 4) ] - - location: 23 (remaining gas: 1039991.139 units remaining) + - location: 23 (remaining gas: 1039991.134 units remaining) [ {} (Some 4) ] - - location: 25 (remaining gas: 1039991.129 units remaining) + - location: 25 (remaining gas: 1039991.124 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 433ef0926d87..64376597a43f 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 @@ -18,13 +18,13 @@ trace 2 ] - location: 18 (remaining gas: 1039991.169 units remaining) [ 60 ] - - location: 15 (remaining gas: 1039991.159 units remaining) + - location: 15 (remaining gas: 1039991.154 units remaining) [ 60 ] - - location: 22 (remaining gas: 1039991.149 units remaining) + - location: 22 (remaining gas: 1039991.144 units remaining) [ (Some 60) ] - - location: 23 (remaining gas: 1039991.139 units remaining) + - location: 23 (remaining gas: 1039991.134 units remaining) [ {} (Some 60) ] - - location: 25 (remaining gas: 1039991.129 units remaining) + - location: 25 (remaining gas: 1039991.124 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 4b40703a9cf9..906dfa5dddad 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 @@ -18,13 +18,13 @@ trace 1 ] - location: 18 (remaining gas: 1039991.169 units remaining) [ 16 ] - - location: 15 (remaining gas: 1039991.159 units remaining) + - location: 15 (remaining gas: 1039991.154 units remaining) [ 16 ] - - location: 22 (remaining gas: 1039991.149 units remaining) + - location: 22 (remaining gas: 1039991.144 units remaining) [ (Some 16) ] - - location: 23 (remaining gas: 1039991.139 units remaining) + - location: 23 (remaining gas: 1039991.134 units remaining) [ {} (Some 16) ] - - location: 25 (remaining gas: 1039991.129 units remaining) + - location: 25 (remaining gas: 1039991.124 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 133cbb7b17bd..b44e50ba85ba 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 @@ -18,13 +18,13 @@ trace 0 ] - location: 21 (remaining gas: 1039991.169 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039991.159 units remaining) + - location: 15 (remaining gas: 1039991.154 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039991.149 units remaining) + - location: 22 (remaining gas: 1039991.144 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.139 units remaining) + - location: 23 (remaining gas: 1039991.134 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.129 units remaining) + - location: 25 (remaining gas: 1039991.124 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 0b0dbdb11eec..ea8ab4dbcb30 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 @@ -18,13 +18,13 @@ trace 1 ] - location: 21 (remaining gas: 1039991.169 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039991.159 units remaining) + - location: 15 (remaining gas: 1039991.154 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039991.149 units remaining) + - location: 22 (remaining gas: 1039991.144 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.139 units remaining) + - location: 23 (remaining gas: 1039991.134 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.129 units remaining) + - location: 25 (remaining gas: 1039991.124 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 7cfa79b6396b..08e7548d0753 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 @@ -18,13 +18,13 @@ trace 2 ] - location: 21 (remaining gas: 1039991.169 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039991.159 units remaining) + - location: 15 (remaining gas: 1039991.154 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039991.149 units remaining) + - location: 22 (remaining gas: 1039991.144 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039991.139 units remaining) + - location: 23 (remaining gas: 1039991.134 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039991.129 units remaining) + - location: 25 (remaining gas: 1039991.124 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 62e585c178c2..ea508c106e31 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 @@ -18,13 +18,13 @@ trace 2 ] - location: 21 (remaining gas: 1039991.169 units remaining) [ 3 ] - - location: 15 (remaining gas: 1039991.159 units remaining) + - location: 15 (remaining gas: 1039991.154 units remaining) [ 3 ] - - location: 22 (remaining gas: 1039991.149 units remaining) + - location: 22 (remaining gas: 1039991.144 units remaining) [ (Some 3) ] - - location: 23 (remaining gas: 1039991.139 units remaining) + - location: 23 (remaining gas: 1039991.134 units remaining) [ {} (Some 3) ] - - location: 25 (remaining gas: 1039991.129 units remaining) + - location: 25 (remaining gas: 1039991.124 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 69e01f848f3b..f6145a099794 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 @@ -18,13 +18,13 @@ trace 1 ] - location: 21 (remaining gas: 1039991.169 units remaining) [ 4 ] - - location: 15 (remaining gas: 1039991.159 units remaining) + - location: 15 (remaining gas: 1039991.154 units remaining) [ 4 ] - - location: 22 (remaining gas: 1039991.149 units remaining) + - location: 22 (remaining gas: 1039991.144 units remaining) [ (Some 4) ] - - location: 23 (remaining gas: 1039991.139 units remaining) + - location: 23 (remaining gas: 1039991.134 units remaining) [ {} (Some 4) ] - - location: 25 (remaining gas: 1039991.129 units remaining) + - location: 25 (remaining gas: 1039991.124 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 6b5f0f31927a..3c72a7e3dd83 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 @@ -21,11 +21,11 @@ trace [ ] - location: 16 (remaining gas: 1039990.762 units remaining) [ None ] - - location: 13 (remaining gas: 1039990.752 units remaining) + - location: 13 (remaining gas: 1039990.747 units remaining) [ None ] - - location: 22 (remaining gas: 1039990.742 units remaining) + - location: 22 (remaining gas: 1039990.737 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039990.732 units remaining) + - location: 24 (remaining gas: 1039990.727 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 865f9223c97b..b63512533c8a 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" @@ -25,13 +25,13 @@ trace [ 0 0 "Foo" ] - - location: 21 (remaining gas: 1039990.593 units remaining) + - location: 21 (remaining gas: 1039990.592 units remaining) [ (Some "") ] - - location: 13 (remaining gas: 1039990.583 units remaining) + - location: 13 (remaining gas: 1039990.577 units remaining) [ (Some "") ] - - location: 22 (remaining gas: 1039990.573 units remaining) + - location: 22 (remaining gas: 1039990.567 units remaining) [ {} (Some "") ] - - location: 24 (remaining gas: 1039990.563 units remaining) + - location: 24 (remaining gas: 1039990.557 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 2d7ece3e11de..672f15aef35a 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" @@ -25,13 +25,13 @@ trace [ 0 10 "Foo" ] - - location: 21 (remaining gas: 1039990.593 units remaining) + - location: 21 (remaining gas: 1039990.592 units remaining) [ None ] - - location: 13 (remaining gas: 1039990.583 units remaining) + - location: 13 (remaining gas: 1039990.577 units remaining) [ None ] - - location: 22 (remaining gas: 1039990.573 units remaining) + - location: 22 (remaining gas: 1039990.567 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039990.563 units remaining) + - location: 24 (remaining gas: 1039990.557 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 5786af3552f1..5a2e907c5863 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" @@ -25,13 +25,13 @@ trace [ 0 2 "Foo" ] - - location: 21 (remaining gas: 1039990.593 units remaining) + - location: 21 (remaining gas: 1039990.592 units remaining) [ (Some "Fo") ] - - location: 13 (remaining gas: 1039990.583 units remaining) + - location: 13 (remaining gas: 1039990.577 units remaining) [ (Some "Fo") ] - - location: 22 (remaining gas: 1039990.573 units remaining) + - location: 22 (remaining gas: 1039990.567 units remaining) [ {} (Some "Fo") ] - - location: 24 (remaining gas: 1039990.563 units remaining) + - location: 24 (remaining gas: 1039990.557 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 ccfca9ccdc82..e4c6be99dc70 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" @@ -25,13 +25,13 @@ trace [ 1 1 "Foo" ] - - location: 21 (remaining gas: 1039990.593 units remaining) + - location: 21 (remaining gas: 1039990.592 units remaining) [ (Some "o") ] - - location: 13 (remaining gas: 1039990.583 units remaining) + - location: 13 (remaining gas: 1039990.577 units remaining) [ (Some "o") ] - - location: 22 (remaining gas: 1039990.573 units remaining) + - location: 22 (remaining gas: 1039990.567 units remaining) [ {} (Some "o") ] - - location: 24 (remaining gas: 1039990.563 units remaining) + - location: 24 (remaining gas: 1039990.557 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 d65a7d665380..9459d60ba4df 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" @@ -25,13 +25,13 @@ trace [ 1 3 "Foo" ] - - location: 21 (remaining gas: 1039990.593 units remaining) + - location: 21 (remaining gas: 1039990.592 units remaining) [ None ] - - location: 13 (remaining gas: 1039990.583 units remaining) + - location: 13 (remaining gas: 1039990.577 units remaining) [ None ] - - location: 22 (remaining gas: 1039990.573 units remaining) + - location: 22 (remaining gas: 1039990.567 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039990.563 units remaining) + - location: 24 (remaining gas: 1039990.557 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 59c07afc1e79..22a01a7b63ad 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" @@ -25,13 +25,13 @@ trace [ 10 5 "Foo" ] - - location: 21 (remaining gas: 1039990.593 units remaining) + - location: 21 (remaining gas: 1039990.592 units remaining) [ None ] - - location: 13 (remaining gas: 1039990.583 units remaining) + - location: 13 (remaining gas: 1039990.577 units remaining) [ None ] - - location: 22 (remaining gas: 1039990.573 units remaining) + - location: 22 (remaining gas: 1039990.567 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039990.563 units remaining) + - location: 24 (remaining gas: 1039990.557 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 88f9f6096c29..af0260f1beeb 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" @@ -26,13 +26,13 @@ trace [ 1 10000 "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" ] - - location: 21 (remaining gas: 1039930.248 units remaining) + - location: 21 (remaining gas: 1039927.623 units remaining) [ None ] - - location: 13 (remaining gas: 1039930.238 units remaining) + - location: 13 (remaining gas: 1039927.608 units remaining) [ None ] - - location: 22 (remaining gas: 1039930.228 units remaining) + - location: 22 (remaining gas: 1039927.598 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039930.218 units remaining) + - location: 24 (remaining gas: 1039927.588 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 e36e0d05491e..44a725ffeac6 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 @@ -21,11 +21,11 @@ trace [ ] - location: 16 (remaining gas: 1039990.762 units remaining) [ None ] - - location: 13 (remaining gas: 1039990.752 units remaining) + - location: 13 (remaining gas: 1039990.747 units remaining) [ None ] - - location: 22 (remaining gas: 1039990.742 units remaining) + - location: 22 (remaining gas: 1039990.737 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039990.732 units remaining) + - location: 24 (remaining gas: 1039990.727 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 cdc11ea1ea1b..6d215b8c591b 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 @@ -25,13 +25,13 @@ trace [ 0 0 0xaabbcc ] - - location: 21 (remaining gas: 1039990.637 units remaining) + - location: 21 (remaining gas: 1039990.636 units remaining) [ (Some 0x) ] - - location: 13 (remaining gas: 1039990.627 units remaining) + - location: 13 (remaining gas: 1039990.621 units remaining) [ (Some 0x) ] - - location: 22 (remaining gas: 1039990.617 units remaining) + - location: 22 (remaining gas: 1039990.611 units remaining) [ {} (Some 0x) ] - - location: 24 (remaining gas: 1039990.607 units remaining) + - location: 24 (remaining gas: 1039990.601 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 b8bfad0e40b9..0c83446bdb08 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 @@ -25,13 +25,13 @@ trace [ 0 1 0xaabbcc ] - - location: 21 (remaining gas: 1039990.637 units remaining) + - location: 21 (remaining gas: 1039990.636 units remaining) [ (Some 0xaa) ] - - location: 13 (remaining gas: 1039990.627 units remaining) + - location: 13 (remaining gas: 1039990.621 units remaining) [ (Some 0xaa) ] - - location: 22 (remaining gas: 1039990.617 units remaining) + - location: 22 (remaining gas: 1039990.611 units remaining) [ {} (Some 0xaa) ] - - location: 24 (remaining gas: 1039990.607 units remaining) + - location: 24 (remaining gas: 1039990.601 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 8bea82e95189..528dc27eeb96 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 @@ -25,13 +25,13 @@ trace [ 1 1 0xaabbcc ] - - location: 21 (remaining gas: 1039990.637 units remaining) + - location: 21 (remaining gas: 1039990.636 units remaining) [ (Some 0xbb) ] - - location: 13 (remaining gas: 1039990.627 units remaining) + - location: 13 (remaining gas: 1039990.621 units remaining) [ (Some 0xbb) ] - - location: 22 (remaining gas: 1039990.617 units remaining) + - location: 22 (remaining gas: 1039990.611 units remaining) [ {} (Some 0xbb) ] - - location: 24 (remaining gas: 1039990.607 units remaining) + - location: 24 (remaining gas: 1039990.601 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 8214c0fa1945..93ab94abc39e 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 @@ -25,13 +25,13 @@ trace [ 1 1 0xaabbcc ] - - location: 21 (remaining gas: 1039990.637 units remaining) + - location: 21 (remaining gas: 1039990.636 units remaining) [ (Some 0xbb) ] - - location: 13 (remaining gas: 1039990.627 units remaining) + - location: 13 (remaining gas: 1039990.621 units remaining) [ (Some 0xbb) ] - - location: 22 (remaining gas: 1039990.617 units remaining) + - location: 22 (remaining gas: 1039990.611 units remaining) [ {} (Some 0xbb) ] - - location: 24 (remaining gas: 1039990.607 units remaining) + - location: 24 (remaining gas: 1039990.601 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 fa2a12755fd5..6c09813d3a8d 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 @@ -25,13 +25,13 @@ trace [ 1 2 0xaabbcc ] - - location: 21 (remaining gas: 1039990.637 units remaining) + - location: 21 (remaining gas: 1039990.636 units remaining) [ (Some 0xbbcc) ] - - location: 13 (remaining gas: 1039990.627 units remaining) + - location: 13 (remaining gas: 1039990.621 units remaining) [ (Some 0xbbcc) ] - - location: 22 (remaining gas: 1039990.617 units remaining) + - location: 22 (remaining gas: 1039990.611 units remaining) [ {} (Some 0xbbcc) ] - - location: 24 (remaining gas: 1039990.607 units remaining) + - location: 24 (remaining gas: 1039990.601 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 2e5442a39ea3..32a53d01e037 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 @@ -25,13 +25,13 @@ trace [ 1 3 0xaabbcc ] - - location: 21 (remaining gas: 1039990.637 units remaining) + - location: 21 (remaining gas: 1039990.636 units remaining) [ None ] - - location: 13 (remaining gas: 1039990.627 units remaining) + - location: 13 (remaining gas: 1039990.621 units remaining) [ None ] - - location: 22 (remaining gas: 1039990.617 units remaining) + - location: 22 (remaining gas: 1039990.611 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039990.607 units remaining) + - location: 24 (remaining gas: 1039990.601 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 cee682f36c3b..e41a6dcbc5e7 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 @@ -26,13 +26,13 @@ trace [ 1 10000 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc ] - - location: 21 (remaining gas: 1039990.262 units remaining) + - location: 21 (remaining gas: 1039987.637 units remaining) [ None ] - - location: 13 (remaining gas: 1039990.252 units remaining) + - location: 13 (remaining gas: 1039987.622 units remaining) [ None ] - - location: 22 (remaining gas: 1039990.242 units remaining) + - location: 22 (remaining gas: 1039987.612 units remaining) [ {} None ] - - location: 24 (remaining gas: 1039990.232 units remaining) + - location: 24 (remaining gas: 1039987.602 units remaining) [ (Pair {} None) ] 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 67d0b063c94a..3da131e33e8e 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" @@ -21,14 +21,14 @@ trace [ (Pair "1970-01-01T00:01:40Z" -100) ] - location: 14 (remaining gas: 1039992.523 units remaining) [ -100 ] - - location: 12 (remaining gas: 1039992.503 units remaining) + - location: 12 (remaining gas: 1039992.498 units remaining) [ "1970-01-01T00:01:40Z" -100 ] - - location: 15 (remaining gas: 1039992.468 units remaining) + - location: 15 (remaining gas: 1039992.463 units remaining) [ "1970-01-01T00:03:20Z" ] - - location: 16 (remaining gas: 1039992.458 units remaining) + - location: 16 (remaining gas: 1039992.453 units remaining) [ {} "1970-01-01T00:03:20Z" ] - - location: 18 (remaining gas: 1039992.448 units remaining) + - location: 18 (remaining gas: 1039992.443 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 dcec2117010e..edd7cbf124e2 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" @@ -21,14 +21,14 @@ trace [ (Pair "1970-01-01T00:01:40Z" 100) ] - location: 14 (remaining gas: 1039992.523 units remaining) [ 100 ] - - location: 12 (remaining gas: 1039992.503 units remaining) + - location: 12 (remaining gas: 1039992.498 units remaining) [ "1970-01-01T00:01:40Z" 100 ] - - location: 15 (remaining gas: 1039992.468 units remaining) + - location: 15 (remaining gas: 1039992.463 units remaining) [ "1970-01-01T00:00:00Z" ] - - location: 16 (remaining gas: 1039992.458 units remaining) + - location: 16 (remaining gas: 1039992.453 units remaining) [ {} "1970-01-01T00:00:00Z" ] - - location: 18 (remaining gas: 1039992.448 units remaining) + - location: 18 (remaining gas: 1039992.443 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 86f92c517381..5a60f031a985 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 @@ -21,14 +21,14 @@ trace [ (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - location: 14 (remaining gas: 1039992.523 units remaining) [ 2000000000000000000 ] - - location: 12 (remaining gas: 1039992.503 units remaining) + - location: 12 (remaining gas: 1039992.498 units remaining) [ "1970-01-01T00:01:40Z" 2000000000000000000 ] - - location: 15 (remaining gas: 1039992.468 units remaining) + - location: 15 (remaining gas: 1039992.459 units remaining) [ -1999999999999999900 ] - - location: 16 (remaining gas: 1039992.458 units remaining) + - location: 16 (remaining gas: 1039992.449 units remaining) [ {} -1999999999999999900 ] - - location: 18 (remaining gas: 1039992.448 units remaining) + - location: 18 (remaining gas: 1039992.439 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 34f277ac4117..0e6a37739eeb 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 @@ -28,44 +28,44 @@ trace - location: 18 (remaining gas: 1039982.955 units remaining) [ 1000000 (Pair 2000000 1000000) ] - - location: 16 (remaining gas: 1039982.935 units remaining) + - location: 16 (remaining gas: 1039982.930 units remaining) [ 2000000 1000000 (Pair 2000000 1000000) ] - - location: 19 (remaining gas: 1039982.915 units remaining) + - location: 19 (remaining gas: 1039982.910 units remaining) [ 3000000 (Pair 2000000 1000000) ] - - location: 20 (remaining gas: 1039982.915 units remaining) + - location: 20 (remaining gas: 1039982.910 units remaining) [ (Pair 2000000 1000000) ] - - location: 22 (remaining gas: 1039982.905 units remaining) + - location: 22 (remaining gas: 1039982.900 units remaining) [ (Pair 2000000 1000000) (Pair 2000000 1000000) ] - - location: 23 (remaining gas: 1039982.895 units remaining) + - location: 23 (remaining gas: 1039982.890 units remaining) [ 2000000 (Pair 2000000 1000000) ] - - location: 24 (remaining gas: 1039982.895 units remaining) + - location: 24 (remaining gas: 1039982.890 units remaining) [ (Pair 2000000 1000000) ] - - location: 26 (remaining gas: 1039982.885 units remaining) + - location: 26 (remaining gas: 1039982.880 units remaining) [ 1000000 ] - - location: 24 (remaining gas: 1039982.865 units remaining) + - location: 24 (remaining gas: 1039982.855 units remaining) [ 2000000 1000000 ] - - location: 27 (remaining gas: 1039982.850 units remaining) + - location: 27 (remaining gas: 1039982.840 units remaining) [ (Some 1000000) ] - - location: 29 (remaining gas: 1039982.850 units remaining) - [ 1000000 ] - location: 29 (remaining gas: 1039982.840 units remaining) [ 1000000 ] - - location: 20 (remaining gas: 1039982.820 units remaining) + - location: 29 (remaining gas: 1039982.825 units remaining) + [ 1000000 ] + - location: 20 (remaining gas: 1039982.800 units remaining) [ 3000000 1000000 ] - - location: 35 (remaining gas: 1039982.810 units remaining) + - location: 35 (remaining gas: 1039982.790 units remaining) [ (Pair 3000000 1000000) ] - - location: 36 (remaining gas: 1039982.800 units remaining) + - location: 36 (remaining gas: 1039982.780 units remaining) [ (Some (Pair 3000000 1000000)) ] - - location: 37 (remaining gas: 1039982.790 units remaining) + - location: 37 (remaining gas: 1039982.770 units remaining) [ {} (Some (Pair 3000000 1000000)) ] - - location: 39 (remaining gas: 1039982.780 units remaining) + - location: 39 (remaining gas: 1039982.760 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 12400407a76c..cdd376a92288 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 @@ -28,44 +28,44 @@ trace - location: 18 (remaining gas: 1039982.955 units remaining) [ 1010000 (Pair 2310000 1010000) ] - - location: 16 (remaining gas: 1039982.935 units remaining) + - location: 16 (remaining gas: 1039982.930 units remaining) [ 2310000 1010000 (Pair 2310000 1010000) ] - - location: 19 (remaining gas: 1039982.915 units remaining) + - location: 19 (remaining gas: 1039982.910 units remaining) [ 3320000 (Pair 2310000 1010000) ] - - location: 20 (remaining gas: 1039982.915 units remaining) + - location: 20 (remaining gas: 1039982.910 units remaining) [ (Pair 2310000 1010000) ] - - location: 22 (remaining gas: 1039982.905 units remaining) + - location: 22 (remaining gas: 1039982.900 units remaining) [ (Pair 2310000 1010000) (Pair 2310000 1010000) ] - - location: 23 (remaining gas: 1039982.895 units remaining) + - location: 23 (remaining gas: 1039982.890 units remaining) [ 2310000 (Pair 2310000 1010000) ] - - location: 24 (remaining gas: 1039982.895 units remaining) + - location: 24 (remaining gas: 1039982.890 units remaining) [ (Pair 2310000 1010000) ] - - location: 26 (remaining gas: 1039982.885 units remaining) + - location: 26 (remaining gas: 1039982.880 units remaining) [ 1010000 ] - - location: 24 (remaining gas: 1039982.865 units remaining) + - location: 24 (remaining gas: 1039982.855 units remaining) [ 2310000 1010000 ] - - location: 27 (remaining gas: 1039982.850 units remaining) + - location: 27 (remaining gas: 1039982.840 units remaining) [ (Some 1300000) ] - - location: 29 (remaining gas: 1039982.850 units remaining) - [ 1300000 ] - location: 29 (remaining gas: 1039982.840 units remaining) [ 1300000 ] - - location: 20 (remaining gas: 1039982.820 units remaining) + - location: 29 (remaining gas: 1039982.825 units remaining) + [ 1300000 ] + - location: 20 (remaining gas: 1039982.800 units remaining) [ 3320000 1300000 ] - - location: 35 (remaining gas: 1039982.810 units remaining) + - location: 35 (remaining gas: 1039982.790 units remaining) [ (Pair 3320000 1300000) ] - - location: 36 (remaining gas: 1039982.800 units remaining) + - location: 36 (remaining gas: 1039982.780 units remaining) [ (Some (Pair 3320000 1300000)) ] - - location: 37 (remaining gas: 1039982.790 units remaining) + - location: 37 (remaining gas: 1039982.770 units remaining) [ {} (Some (Pair 3320000 1300000)) ] - - location: 39 (remaining gas: 1039982.780 units remaining) + - location: 39 (remaining gas: 1039982.760 units remaining) [ (Pair {} (Some (Pair 3320000 1300000))) ] 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 fe34347160db..1f48f17da168 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" @@ -13,20 +13,20 @@ trace [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" ] - location: 10 (remaining gas: 1039667.038 units remaining) [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 11 (remaining gas: 1039446.492 units remaining) + - location: 11 (remaining gas: 1039446.382 units remaining) [ 4000000000000 ] - - location: 12 (remaining gas: 1039446.492 units remaining) + - location: 12 (remaining gas: 1039446.382 units remaining) [ ] - - location: 14 (remaining gas: 1039236.106 units remaining) + - location: 14 (remaining gas: 1039235.916 units remaining) [ 20000000000000 ] - - location: 12 (remaining gas: 1039236.086 units remaining) + - location: 12 (remaining gas: 1039235.891 units remaining) [ 4000000000000 20000000000000 ] - - location: 15 (remaining gas: 1039236.076 units remaining) + - location: 15 (remaining gas: 1039235.881 units remaining) [ (Pair 4000000000000 20000000000000) ] - - location: 16 (remaining gas: 1039236.066 units remaining) + - location: 16 (remaining gas: 1039235.871 units remaining) [ {} (Pair 4000000000000 20000000000000) ] - - location: 18 (remaining gas: 1039236.056 units remaining) + - location: 18 (remaining gas: 1039235.861 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 f686dccb85e4..3e0a2632e014 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 @@ -20,13 +20,13 @@ trace [ False ] - location: 21 (remaining gas: 1039988.929 units remaining) [ (Left False) ] - - location: 17 (remaining gas: 1039988.919 units remaining) + - location: 17 (remaining gas: 1039988.914 units remaining) [ (Left False) ] - - location: 28 (remaining gas: 1039988.909 units remaining) + - location: 28 (remaining gas: 1039988.904 units remaining) [ (Some (Left False)) ] - - location: 29 (remaining gas: 1039988.899 units remaining) + - location: 29 (remaining gas: 1039988.894 units remaining) [ {} (Some (Left False)) ] - - location: 31 (remaining gas: 1039988.889 units remaining) + - location: 31 (remaining gas: 1039988.884 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 b219d12e2609..c95bbc1a4418 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 @@ -20,13 +20,13 @@ trace [ True ] - location: 21 (remaining gas: 1039988.929 units remaining) [ (Left True) ] - - location: 17 (remaining gas: 1039988.919 units remaining) + - location: 17 (remaining gas: 1039988.914 units remaining) [ (Left True) ] - - location: 28 (remaining gas: 1039988.909 units remaining) + - location: 28 (remaining gas: 1039988.904 units remaining) [ (Some (Left True)) ] - - location: 29 (remaining gas: 1039988.899 units remaining) + - location: 29 (remaining gas: 1039988.894 units remaining) [ {} (Some (Left True)) ] - - location: 31 (remaining gas: 1039988.889 units remaining) + - location: 31 (remaining gas: 1039988.884 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 b58fe3328706..a9cd32c74b2a 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 @@ -20,13 +20,13 @@ trace [ True ] - location: 21 (remaining gas: 1039988.929 units remaining) [ (Left True) ] - - location: 17 (remaining gas: 1039988.919 units remaining) + - location: 17 (remaining gas: 1039988.914 units remaining) [ (Left True) ] - - location: 28 (remaining gas: 1039988.909 units remaining) + - location: 28 (remaining gas: 1039988.904 units remaining) [ (Some (Left True)) ] - - location: 29 (remaining gas: 1039988.899 units remaining) + - location: 29 (remaining gas: 1039988.894 units remaining) [ {} (Some (Left True)) ] - - location: 31 (remaining gas: 1039988.889 units remaining) + - location: 31 (remaining gas: 1039988.884 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 4457f68eda0d..3f401dee92bd 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 @@ -20,13 +20,13 @@ trace [ False ] - location: 21 (remaining gas: 1039988.929 units remaining) [ (Left False) ] - - location: 17 (remaining gas: 1039988.919 units remaining) + - location: 17 (remaining gas: 1039988.914 units remaining) [ (Left False) ] - - location: 28 (remaining gas: 1039988.909 units remaining) + - location: 28 (remaining gas: 1039988.904 units remaining) [ (Some (Left False)) ] - - location: 29 (remaining gas: 1039988.899 units remaining) + - location: 29 (remaining gas: 1039988.894 units remaining) [ {} (Some (Left False)) ] - - location: 31 (remaining gas: 1039988.889 units remaining) + - location: 31 (remaining gas: 1039988.884 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 e4d3746412fd..fbf68a96e0c3 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 @@ -20,13 +20,13 @@ trace [ 0 ] - location: 26 (remaining gas: 1039988.909 units remaining) [ (Right 0) ] - - location: 17 (remaining gas: 1039988.899 units remaining) + - location: 17 (remaining gas: 1039988.894 units remaining) [ (Right 0) ] - - location: 28 (remaining gas: 1039988.889 units remaining) + - location: 28 (remaining gas: 1039988.884 units remaining) [ (Some (Right 0)) ] - - location: 29 (remaining gas: 1039988.879 units remaining) + - location: 29 (remaining gas: 1039988.874 units remaining) [ {} (Some (Right 0)) ] - - location: 31 (remaining gas: 1039988.869 units remaining) + - location: 31 (remaining gas: 1039988.864 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 23cefee7d25a..9039add34345 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 @@ -20,13 +20,13 @@ trace [ 1 ] - location: 26 (remaining gas: 1039988.909 units remaining) [ (Right 1) ] - - location: 17 (remaining gas: 1039988.899 units remaining) + - location: 17 (remaining gas: 1039988.894 units remaining) [ (Right 1) ] - - location: 28 (remaining gas: 1039988.889 units remaining) + - location: 28 (remaining gas: 1039988.884 units remaining) [ (Some (Right 1)) ] - - location: 29 (remaining gas: 1039988.879 units remaining) + - location: 29 (remaining gas: 1039988.874 units remaining) [ {} (Some (Right 1)) ] - - location: 31 (remaining gas: 1039988.869 units remaining) + - location: 31 (remaining gas: 1039988.864 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 5a9cca55b525..c24b24b30837 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 @@ -20,13 +20,13 @@ trace [ 1 ] - location: 26 (remaining gas: 1039988.909 units remaining) [ (Right 1) ] - - location: 17 (remaining gas: 1039988.899 units remaining) + - location: 17 (remaining gas: 1039988.894 units remaining) [ (Right 1) ] - - location: 28 (remaining gas: 1039988.889 units remaining) + - location: 28 (remaining gas: 1039988.884 units remaining) [ (Some (Right 1)) ] - - location: 29 (remaining gas: 1039988.879 units remaining) + - location: 29 (remaining gas: 1039988.874 units remaining) [ {} (Some (Right 1)) ] - - location: 31 (remaining gas: 1039988.869 units remaining) + - location: 31 (remaining gas: 1039988.864 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 fdfd17924a05..baa561e7e1fd 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 @@ -20,13 +20,13 @@ trace [ 0 ] - location: 26 (remaining gas: 1039988.909 units remaining) [ (Right 0) ] - - location: 17 (remaining gas: 1039988.899 units remaining) + - location: 17 (remaining gas: 1039988.894 units remaining) [ (Right 0) ] - - location: 28 (remaining gas: 1039988.889 units remaining) + - location: 28 (remaining gas: 1039988.884 units remaining) [ (Some (Right 0)) ] - - location: 29 (remaining gas: 1039988.879 units remaining) + - location: 29 (remaining gas: 1039988.874 units remaining) [ {} (Some (Right 0)) ] - - location: 31 (remaining gas: 1039988.869 units remaining) + - location: 31 (remaining gas: 1039988.864 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 4bc4b71a99f8..961c9c011ad0 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 @@ -20,13 +20,13 @@ trace [ 63 ] - location: 26 (remaining gas: 1039988.909 units remaining) [ (Right 63) ] - - location: 17 (remaining gas: 1039988.899 units remaining) + - location: 17 (remaining gas: 1039988.894 units remaining) [ (Right 63) ] - - location: 28 (remaining gas: 1039988.889 units remaining) + - location: 28 (remaining gas: 1039988.884 units remaining) [ (Some (Right 63)) ] - - location: 29 (remaining gas: 1039988.879 units remaining) + - location: 29 (remaining gas: 1039988.874 units remaining) [ {} (Some (Right 63)) ] - - location: 31 (remaining gas: 1039988.869 units remaining) + - location: 31 (remaining gas: 1039988.864 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 7d36eedff836..56f7ca0a8959 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 @@ -20,13 +20,13 @@ trace [ 21 ] - location: 26 (remaining gas: 1039988.909 units remaining) [ (Right 21) ] - - location: 17 (remaining gas: 1039988.899 units remaining) + - location: 17 (remaining gas: 1039988.894 units remaining) [ (Right 21) ] - - location: 28 (remaining gas: 1039988.889 units remaining) + - location: 28 (remaining gas: 1039988.884 units remaining) [ (Some (Right 21)) ] - - location: 29 (remaining gas: 1039988.879 units remaining) + - location: 29 (remaining gas: 1039988.874 units remaining) [ {} (Some (Right 21)) ] - - location: 31 (remaining gas: 1039988.869 units remaining) + - location: 31 (remaining gas: 1039988.864 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 eccbd782e401..7db1308a067b 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.862 units remaining +Gas remaining: 1039997.762 units remaining storage 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc emitted operations 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 0b81df4bc594..4f6fb982a3d1 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 @@ -22,38 +22,38 @@ trace - location: 19 (remaining gas: 1039980.201 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 17 (remaining gas: 1039980.181 units remaining) + - location: 17 (remaining gas: 1039980.176 units remaining) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 20 (remaining gas: 1039977.614 units remaining) + - location: 20 (remaining gas: 1039977.369 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 23 (remaining gas: 1039977.579 units remaining) + - location: 23 (remaining gas: 1039977.334 units remaining) [ 0 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 24 (remaining gas: 1039977.569 units remaining) + - location: 24 (remaining gas: 1039977.324 units remaining) [ True 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 25 (remaining gas: 1039977.569 units remaining) + - location: 25 (remaining gas: 1039977.324 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 25 (remaining gas: 1039977.559 units remaining) + - location: 25 (remaining gas: 1039977.309 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 31 (remaining gas: 1039974.821 units remaining) + - location: 31 (remaining gas: 1039974.556 units remaining) [ (Some (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 })) ] - - location: 40 (remaining gas: 1039974.821 units remaining) + - location: 40 (remaining gas: 1039974.556 units remaining) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) ] - - location: 40 (remaining gas: 1039974.811 units remaining) + - location: 40 (remaining gas: 1039974.541 units remaining) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) ] - - location: 46 (remaining gas: 1039974.801 units remaining) + - location: 46 (remaining gas: 1039974.531 units remaining) [ ] - - location: 47 (remaining gas: 1039974.791 units remaining) + - location: 47 (remaining gas: 1039974.521 units remaining) [ Unit ] - - location: 48 (remaining gas: 1039974.781 units remaining) + - location: 48 (remaining gas: 1039974.511 units remaining) [ {} Unit ] - - location: 50 (remaining gas: 1039974.771 units remaining) + - location: 50 (remaining gas: 1039974.501 units remaining) [ (Pair {} Unit) ] Runtime error in contract [CONTRACT_HASH]: @@ -83,23 +83,23 @@ trace - location: 19 (remaining gas: 1039980.201 units remaining) [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 17 (remaining gas: 1039980.181 units remaining) + - location: 17 (remaining gas: 1039980.176 units remaining) [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 20 (remaining gas: 1039977.614 units remaining) + - location: 20 (remaining gas: 1039977.369 units remaining) [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 23 (remaining gas: 1039977.579 units remaining) + - location: 23 (remaining gas: 1039977.334 units remaining) [ -1 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 24 (remaining gas: 1039977.569 units remaining) + - location: 24 (remaining gas: 1039977.324 units remaining) [ False 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 25 (remaining gas: 1039977.569 units remaining) + - location: 25 (remaining gas: 1039977.324 units remaining) [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 29 (remaining gas: 1039977.559 units remaining) + - location: 29 (remaining gas: 1039977.314 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 7f3c747ed8d6..ab3f6bec8c0a 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: 8554.522 units (will add 100 for safety) +Estimated gas: 8555.847 units (will add 100 for safety) Estimated storage: 147 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.001221 Expected counter: [EXPECTED_COUNTER] - Gas limit: 8655 + Gas limit: 8656 Storage limit: 167 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.001221 @@ -34,7 +34,7 @@ This sequence of operations was run: 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4635 bytes Paid storage size diff: 6 bytes - Consumed gas: 2277.720 + Consumed gas: 2278.202 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0015 storage fees ........................... +ꜩ0.0015 @@ -58,7 +58,7 @@ This sequence of operations was run: Set map(0)[0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600] to 21598 Storage size: 2264 bytes Paid storage size diff: 69 bytes - Consumed gas: 3063.531 + Consumed gas: 3064.106 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01725 storage fees ........................... +ꜩ0.01725 @@ -75,7 +75,7 @@ This sequence of operations was run: Set map(2)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 2159730 Storage size: 2050 bytes Paid storage size diff: 72 bytes - Consumed gas: 3213.271 + Consumed gas: 3213.539 Balance updates: [CONTRACT_HASH] ... -ꜩ0.018 storage fees ........................... +ꜩ0.018 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 423b2a3f4493..4685943f7f6a 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: 1679.196 units (will add 100 for safety) +Estimated gas: 1679.581 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]' @@ -33,7 +33,7 @@ This sequence of operations was run: 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c)] to 1000 Storage size: 2118 bytes Paid storage size diff: 68 bytes - Consumed gas: 1679.196 + Consumed gas: 1679.581 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 5dbe4cb73767..336d7ef62d21 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: 3041.856 units (will add 100 for safety) +Estimated gas: 3042.409 units (will add 100 for safety) Estimated storage: no bytes added 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.000672 Expected counter: [EXPECTED_COUNTER] - Gas limit: 3142 + Gas limit: 3143 Storage limit: 0 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000672 @@ -36,6 +36,6 @@ This sequence of operations was run: Set map(2)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 2158730 Set map(2)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 1000 Storage size: 2118 bytes - Consumed gas: 3041.856 + Consumed gas: 3042.409 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 df4ddf64a681..ee0ec150aea3 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: 1679.318 units (will add 100 for safety) +Estimated gas: 1679.703 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]' @@ -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: 1679.318 + Consumed gas: 1679.703 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 b0667422606e..12f49d1611da 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: 1679.318 units (will add 100 for safety) +Estimated gas: 1679.703 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]' @@ -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: 1679.318 + Consumed gas: 1679.703 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 84c73b1370e1..4dcd671062ca 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: 1679.318 units (will add 100 for safety) +Estimated gas: 1679.703 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]' @@ -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: 1679.318 + Consumed gas: 1679.703 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 3cd071192da3..b01376cb9d1b 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: 3217.245 units (will add 100 for safety) +Estimated gas: 3217.516 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]' @@ -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: 3217.718 + Consumed gas: 3217.989 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 f99ab4e6780f..af08c5189a54 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: 7519.664 units (will add 100 for safety) +Estimated gas: 7520.791 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.001114 + Fee to the baker: ꜩ0.001115 Expected counter: [EXPECTED_COUNTER] - Gas limit: 7620 + Gas limit: 7621 Storage limit: 87 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.001114 - payload fees(the block proposer) ....... +ꜩ0.001114 + [CONTRACT_HASH] ... -ꜩ0.001115 + payload fees(the block proposer) ....... +ꜩ0.001115 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01e927f00ef734dfc85919635e9afc9166c83ef9fc00 ; 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4635 bytes - Consumed gas: 2279.284 + Consumed gas: 2279.807 Internal operations: Internal Transaction: Amount: ꜩ0 @@ -47,7 +47,7 @@ This sequence of operations was run: Updated big_maps: Unset map(2)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] Storage size: 2050 bytes - Consumed gas: 1873.225 + Consumed gas: 1873.473 Internal Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -63,7 +63,7 @@ This sequence of operations was run: Set map(0)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 10 Storage size: 2331 bytes Paid storage size diff: 67 bytes - Consumed gas: 2367.155 + Consumed gas: 2367.511 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01675 storage fees ........................... +ꜩ0.01675 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 8e094a4aa335..ce5ba280c25f 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: 8554.522 units (will add 100 for safety) +Estimated gas: 8555.847 units (will add 100 for safety) Estimated storage: 147 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.001221 Expected counter: [EXPECTED_COUNTER] - Gas limit: 8655 + Gas limit: 8656 Storage limit: 167 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.001221 @@ -34,7 +34,7 @@ This sequence of operations was run: 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4635 bytes Paid storage size diff: 6 bytes - Consumed gas: 2277.720 + Consumed gas: 2278.202 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0015 storage fees ........................... +ꜩ0.0015 @@ -58,7 +58,7 @@ This sequence of operations was run: Set map(0)[0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600] to 21598 Storage size: 2264 bytes Paid storage size diff: 69 bytes - Consumed gas: 3063.531 + Consumed gas: 3064.106 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01725 storage fees ........................... +ꜩ0.01725 @@ -75,7 +75,7 @@ This sequence of operations was run: Set map(2)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 2159730 Storage size: 2050 bytes Paid storage size diff: 72 bytes - Consumed gas: 3213.271 + Consumed gas: 3213.539 Balance updates: [CONTRACT_HASH] ... -ꜩ0.018 storage fees ........................... +ꜩ0.018 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 f148e9b9c862..5b14df1e304f 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: 5114.781 units (will add 100 for safety) +Estimated gas: 5115.557 units (will add 100 for safety) Estimated storage: 327 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.000869 Expected counter: [EXPECTED_COUNTER] - Gas limit: 5215 + Gas limit: 5216 Storage limit: 347 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000869 @@ -34,7 +34,7 @@ This sequence of operations was run: 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4636 bytes Paid storage size diff: 1 bytes - Consumed gas: 1747.593 + Consumed gas: 1748.012 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 10788 Storage size: 2333 bytes Paid storage size diff: 69 bytes - Consumed gas: 2367.188 + Consumed gas: 2367.545 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01725 storage fees ........................... +ꜩ0.01725 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 395d953b04f6..63ddb58681c3 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: 1679.318 units (will add 100 for safety) +Estimated gas: 1679.703 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]' @@ -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: 1679.318 + Consumed gas: 1679.703 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 011f150a5174..6dae4187301a 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: 1679.318 units (will add 100 for safety) +Estimated gas: 1679.703 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]' @@ -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: 1679.318 + Consumed gas: 1679.703 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 8792872f8b92..41d4d7dd8f52 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: 1679.318 units (will add 100 for safety) +Estimated gas: 1679.703 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]' @@ -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: 1679.318 + Consumed gas: 1679.703 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 ce4a662da1e0..5897b18f5a38 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: 3217.245 units (will add 100 for safety) +Estimated gas: 3217.516 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]' @@ -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: 3217.718 + Consumed gas: 3217.989 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 576432b656bf..30a12468fca9 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: 7011.589 units (will add 100 for safety) +Estimated gas: 7012.582 units (will add 100 for safety) Estimated storage: no bytes added 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.001057 Expected counter: [EXPECTED_COUNTER] - Gas limit: 7112 + Gas limit: 7113 Storage limit: 0 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.001057 @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01e927f00ef734dfc85919635e9afc9166c83ef9fc00 ; 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4636 bytes - Consumed gas: 1748.220 + Consumed gas: 1748.660 Internal operations: Internal Transaction: Amount: ꜩ0 @@ -51,7 +51,7 @@ This sequence of operations was run: Unset map(0)[0x0000dac9f52543da1aed0bc1d6b46bf7c10db7014cd6] Set map(0)[0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600] to 10910 Storage size: 2333 bytes - Consumed gas: 3263.369 + Consumed gas: 3263.922 Internal Transaction: Amount: ꜩ164.584923 From: [CONTRACT_HASH] 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 f88bf06ad21f..55f822feb9b8 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: 2375.859 units (will add 100 for safety) +Estimated gas: 2376.215 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]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.000605 Expected counter: [EXPECTED_COUNTER] - Gas limit: 2476 + Gas limit: 2477 Storage limit: 88 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.000605 @@ -35,7 +35,7 @@ This sequence of operations was run: Set map(0)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 10688 Storage size: 2401 bytes Paid storage size diff: 68 bytes - Consumed gas: 2375.859 + Consumed gas: 2376.215 Balance updates: [CONTRACT_HASH] ... -ꜩ0.017 storage fees ........................... +ꜩ0.017 -- GitLab From 17e6868b1487bceff9357936de600532117f15f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Cauderlier?= Date: Wed, 5 Oct 2022 22:41:03 +0200 Subject: [PATCH 4/4] Update tezt regression traces --- .../Alpha- Create contract.out | 10 +- ...lpha- hash data ... of type ... (good).out | 132 +++++++++--------- .../Alpha- Self address transfer.out | 14 +- .../Alpha- Ticket updates in receipt.out | 10 +- .../Alpha- Create and remove tickets.out | 20 +-- .../Alpha- Send tickets in bigmap.out | 22 +-- .../expected/views.ml/Alpha- Run views.out | 20 +-- 7 files changed, 114 insertions(+), 114 deletions(-) diff --git a/tezt/tests/expected/create_contract.ml/Alpha- Create contract.out b/tezt/tests/expected/create_contract.ml/Alpha- Create contract.out index ea35f843f31a..209b5e58e0d0 100644 --- a/tezt/tests/expected/create_contract.ml/Alpha- Create contract.out +++ b/tezt/tests/expected/create_contract.ml/Alpha- Create contract.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract originate_contract.tz transferring 200 from bootstrap1 running file:./tezt/tests/contracts/proto_alpha/originate_contract.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 1428.637 units (will add 100 for safety) +Estimated gas: 1428.677 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 '[OPERATION_HASH]' @@ -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.637 + Consumed gas: 1428.677 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.02325 storage fees ........................... +ꜩ0.02325 @@ -55,7 +55,7 @@ Contract memorized as originate_contract.tz. ./octez-client --mode mockup --wait none transfer 1 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --arg Unit Node is bootstrapped. -Estimated gas: 3525.357 units (will add 100 for safety) +Estimated gas: 3525.462 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 '[OPERATION_HASH]' @@ -80,7 +80,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 93 bytes - Consumed gas: 2120.735 + Consumed gas: 2120.820 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ1 [CONTRACT_HASH] ... +ꜩ1 @@ -97,7 +97,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 38 bytes Paid storage size diff: 38 bytes - Consumed gas: 1405.267 + Consumed gas: 1405.287 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0095 storage fees ........................... +ꜩ0.0095 diff --git a/tezt/tests/expected/hash_data.ml/Alpha- hash data ... of type ... (good).out b/tezt/tests/expected/hash_data.ml/Alpha- hash data ... of type ... (good).out index f82f31bfc19a..9c36c5df31e3 100644 --- a/tezt/tests/expected/hash_data.ml/Alpha- hash data ... of type ... (good).out +++ b/tezt/tests/expected/hash_data.ml/Alpha- hash data ... of type ... (good).out @@ -6,7 +6,7 @@ Raw Script-expression-ID-Hash: 0x6216452f655bf0e4ba4f86c58a7bface77c01dc88e9db83 Ledger Blake2b hash: 7bteidcLhhSczK6rV7WZQMFW1S7jEApuMPPEUvZDk2B8 Raw Sha256 hash: 0x19392ac75f657ecb477bf79085a4490f1be98a31c03434b40d38e089cf345e33 Raw Sha512 hash: 0x94afe9bdf473c06f33fb1c59854e1c15b13d76eeef4b2c4d27605f9be3f3113d13fc0b979870fff2604bf816510522abdee8622535917fc112813fabb5d38a9a -Gas remaining: 1039999.244 units remaining +Gas remaining: 1039999.224 units remaining ./octez-client --mode mockup hash data -9223372036854775808 of type int Raw packed data: 0x0500c0808080808080808002 @@ -15,7 +15,7 @@ Raw Script-expression-ID-Hash: 0xc8adbddf5949c1d4d104c1b7d658baa7a4c5813c1ae7cbe Ledger Blake2b hash: EWNCTfpNyM4iYvGgWPNoCxkFbGYnNzM61zTAUkc2gh4E Raw Sha256 hash: 0x6ff401ab35f93209f6c1c8c4d7c36adfd58dba53bca644ecd9107edb30e184cd Raw Sha512 hash: 0x9ae07221db7b28fdd73a89744a7d7b94fbe44a150cf752a864aa554adf9ac849a73cfdf0bc682c2b830b4dcaec5ac4de71a19eb1fbc58ded3d7a793f96cc4afa -Gas remaining: 1039999.444 units remaining +Gas remaining: 1039999.424 units remaining ./octez-client --mode mockup hash data -4611686018427387904 of type int Raw packed data: 0x0500c0808080808080808001 @@ -24,7 +24,7 @@ Raw Script-expression-ID-Hash: 0x0e4f763b32f9f61a670de9049e17b51051a7eb39110a2fc Ledger Blake2b hash: xrz5vpBWhFXPadfA7xjRBmhCRahN5UzoQE73iBMnkbi Raw Sha256 hash: 0x99f3e8cb5de4405979d25b07b08d7e0c040c185f9e1ba22f4165f23f959b5765 Raw Sha512 hash: 0x21f8c0bdb48495f65e9933b9a66ab86e5f980acd2e1c247c17c1f707474682e8f88fbd0ff6ad7eece958bb80c1963a2cc30ebd81708de4bb79f86878468c651e -Gas remaining: 1039999.444 units remaining +Gas remaining: 1039999.424 units remaining ./octez-client --mode mockup hash data -1 of type int Raw packed data: 0x050041 @@ -33,7 +33,7 @@ Raw Script-expression-ID-Hash: 0x4935af0cbcc38e08fae2742399a95eaa2a8aa3c4504971b Ledger Blake2b hash: 5vnEvsKtB8ojf9DuVntudWnfy6yRLfY4Duwx2j6a36dp Raw Sha256 hash: 0x5db11f873d99e0d9c25e52c9137676326f8a03f18c6c802fecbcd4a5543c28f7 Raw Sha512 hash: 0x45256a6d4fe9afc4eda42131ad62e28b5903c43243afdbc69709e8bb9a7cf49a0c117c26d58849f41757beae1052d00d78deb10bd62728a7c04afb32afb637e2 -Gas remaining: 1039999.619 units remaining +Gas remaining: 1039999.599 units remaining ./octez-client --mode mockup hash data 1 of type int Raw packed data: 0x050001 @@ -42,7 +42,7 @@ Raw Script-expression-ID-Hash: 0x438c52065d4605460b12d1b9446876a1c922b416103a20d Ledger Blake2b hash: 5YgR7rjfSbSbzGEYhhBG9ENRHhdVSUu2TJ6RyNLawjiv Raw Sha256 hash: 0x57072915640d052f4e2843e1498b10c4f71b62df565525d33c4a66a724e3e20a Raw Sha512 hash: 0x112e6b61a60ecf001d501f39284ff8a575d818f2f79295b90b24f045d165a490c19cac2add9149dbdd23a8f2cf956dbee0efe17449111e6326e97ab21532f445 -Gas remaining: 1039999.619 units remaining +Gas remaining: 1039999.599 units remaining ./octez-client --mode mockup hash data 2 of type int Raw packed data: 0x050002 @@ -51,7 +51,7 @@ Raw Script-expression-ID-Hash: 0x5d2525095b5382da2c9c295a739a189382cfaa2ebfa54e3 Ledger Blake2b hash: 7GbmUchPX2Y61XEnLc2xfFHA8bAqQ8Qj8o1xEkU4g3VR Raw Sha256 hash: 0x0a8efab5eba4157330b3113690508ee944e684a3c6949c00d64fcab2d565e5a6 Raw Sha512 hash: 0x4747a1aba769d89519dddbee3a1fb9d79555831b9044508efee0bd4f1837bd78dfeb585bf1e150d3c7f8dc79e815c4c3f7e4c7ef477e77bdc84dc4f5fb0598c5 -Gas remaining: 1039999.619 units remaining +Gas remaining: 1039999.599 units remaining ./octez-client --mode mockup hash data 4611686018427387903 of type int Raw packed data: 0x0500bfffffffffffffff7f @@ -60,7 +60,7 @@ Raw Script-expression-ID-Hash: 0x33a06c095748ee4505cba0c1b7ef8d7666ff5cff1ebf865 Ledger Blake2b hash: 4UXfu1ECmNSrir6LkbB1wkcptuVFk1Supjch6Si4PfkT Raw Sha256 hash: 0x563ee067653bda5b3609ef10c5fba6f76392642b950dca8ab70e85343caa6c41 Raw Sha512 hash: 0x40691c0bb573951c3c48c13db7acf03cbb3c5164197555c98ff5a4858acbb2957e2daf0178bedcfd7e5cbd2cf045d693d822cb218b417e10ed517da1f34fe8c5 -Gas remaining: 1039999.444 units remaining +Gas remaining: 1039999.424 units remaining ./octez-client --mode mockup hash data 9223372036854775807 of type int Raw packed data: 0x0500bfffffffffffffffff01 @@ -69,7 +69,7 @@ Raw Script-expression-ID-Hash: 0xab242636b94a88d317af40fe4928ede501f51249840fa44 Ledger Blake2b hash: CX4gqnkyYpudVKQVtwkvq2JbfjzPPZsgQG547UGxcKg6 Raw Sha256 hash: 0x15d152f6eeb5baf6bf2630719997223fe2c1bedf2730656a755b36f841cc8606 Raw Sha512 hash: 0x63af709255528779eeb42613bc0385b3564aa4882a7b8a3f9387850a907e7cee3f2a8a22b881f1222400dae352b1363b7ffb4ff7528995f8b8384932be5af625 -Gas remaining: 1039999.444 units remaining +Gas remaining: 1039999.424 units remaining ./octez-client --mode mockup hash data 92233720368547758079223372036854775807 of type int Raw packed data: 0x0500bfffbfe1eebeeeb8eaffffbf9e91c191c79502 @@ -78,7 +78,7 @@ Raw Script-expression-ID-Hash: 0x5ed0b316a2ab47e3698fa3b046ebefc2e775ad37426a088 Ledger Blake2b hash: 7P7u7hLd2MNuGyXfWD6bzYdXhBxfGn8LPmcMRgzEYath Raw Sha256 hash: 0xeb749cd1d6d7184d6d0d6f0aae0cf379082bc340f468e2b89a9beb3190f59a91 Raw Sha512 hash: 0xb8bec79fbca40add468205be6c6ec631f3977fadcf843ef65ca288dd6b8f18ddaa822608163d825ca00e4d348bb3c79abacc0b1555d45ac9c235fd38234dbe31 -Gas remaining: 1039999.244 units remaining +Gas remaining: 1039999.224 units remaining ./octez-client --mode mockup hash data False of type bool Raw packed data: 0x050303 @@ -87,7 +87,7 @@ Raw Script-expression-ID-Hash: 0xe0978ddc9329cbd84d25fd15a161a7d2e7e555da91e2a33 Ledger Blake2b hash: G7iMrYNckCFRujDLFgtj3cDMCnfeSQ2cmhnDtkh9REc4 Raw Sha256 hash: 0x35ef99f7718e7d1f065bae635780f41c0cd201e9ffb3390ba6ef428c2815fa66 Raw Sha512 hash: 0x2c9ca967bf47f6cc76861693379b7397f65e6a1b6e633df28cf02be0b0d18319ae783b4c199fd61115e000a15a5ba8a292a3b1468c2cfe2b3e3a9fa08d419698 -Gas remaining: 1039999.644 units remaining +Gas remaining: 1039999.624 units remaining ./octez-client --mode mockup hash data True of type bool Raw packed data: 0x05030a @@ -96,7 +96,7 @@ Raw Script-expression-ID-Hash: 0xf2a04e59c51d374e01df59a69495e400c6548415d628cf2 Ledger Blake2b hash: HL7SRbwe6n7r92rqsPQqN1hu1kd8uJhECY6Z5PJTwSRp Raw Sha256 hash: 0xfb2a0db46fe82f0aeb2824b2f0840cc1437bf7bdf836d5164351e0cfe5b0f330 Raw Sha512 hash: 0xcd0d052ce182cb449207cbb0781be4c9eb3f48c631fe210a03996f6a287e528d8a94817758102a647820007d18cb8e94f0f8bb829ca571287d390b47ab6ae389 -Gas remaining: 1039999.644 units remaining +Gas remaining: 1039999.624 units remaining ./octez-client --mode mockup hash data '{}' of type 'list(bool)' Raw packed data: 0x050200000000 @@ -105,7 +105,7 @@ Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047 Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039999.584 units remaining +Gas remaining: 1039999.564 units remaining ./octez-client --mode mockup hash data '{}' of type 'list(int)' Raw packed data: 0x050200000000 @@ -114,7 +114,7 @@ Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047 Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039999.584 units remaining +Gas remaining: 1039999.564 units remaining ./octez-client --mode mockup hash data '{}' of type 'list(unit)' Raw packed data: 0x050200000000 @@ -123,7 +123,7 @@ Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047 Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039999.584 units remaining +Gas remaining: 1039999.564 units remaining ./octez-client --mode mockup hash data '{True; False}' of type 'list(bool)' Raw packed data: 0x050200000004030a0303 @@ -132,7 +132,7 @@ Raw Script-expression-ID-Hash: 0xd98b8c66ef2fb29d4d2ad21a667a753e0dd7044571e7093 Ledger Blake2b hash: FeCtVSz9QEDR78yiR1aQwQaFMaoGES8VjX2HQCjZAfz3 Raw Sha256 hash: 0xc939a10e1f26f0fddb7d00e26595b383bcd8d5fad6cc5427e8b0385a323d2a78 Raw Sha512 hash: 0x98e4f14ef8e5ad0fa7520f07459fec0d5eb2f5759f0beebd5fa63beb950f6afa0d51c2573402d09684308677bae667ae8323fc2a32b5358be3155f56b73e263f -Gas remaining: 1039998.992 units remaining +Gas remaining: 1039998.932 units remaining ./octez-client --mode mockup hash data '{True; True}' of type 'list(bool)' Raw packed data: 0x050200000004030a030a @@ -141,7 +141,7 @@ Raw Script-expression-ID-Hash: 0x7872a58d23f32f0e045de43738dc925bcab9c84c4ea5e7d Ledger Blake2b hash: 97BKSDXQr12DzEiMg2HiFoA2Aq9QnzDpmVatc2nrr5xB Raw Sha256 hash: 0x709190aaed8bda9abbca553974949a4a81dcdb927ebbc89aa7aef53bee218ff4 Raw Sha512 hash: 0x7e67d91c4bb7a7c56e66ca752878e07ec45d61c6ff413b210384be67e946ca63cb1f852137d29494a7e232e2439092270e3b7abd834bcf2b18d192729794dbf7 -Gas remaining: 1039998.992 units remaining +Gas remaining: 1039998.932 units remaining ./octez-client --mode mockup hash data '{-1; 0}' of type 'list(int)' Raw packed data: 0x05020000000400410000 @@ -150,7 +150,7 @@ Raw Script-expression-ID-Hash: 0x71bf94bc4515cc0afc439e3714423dfa3ef180fa8ff2c67 Ledger Blake2b hash: 8f2WHzqFH7YhWa1rrFtHehTMxTUFJg49iwSNokpdZLSR Raw Sha256 hash: 0x28e46755a35977ff466f50cb4224bf71541ca519ca1a3f900e1d2cd7da4537b3 Raw Sha512 hash: 0x0f79f40cb2c56e753120d405b1bb5bb843ac34fc2b362b4f8f684913318ecbf3d99e4be5fc6f8ed16ee11fef6f4c412ecfc8c6efbab1684585b0ceb8a6bad3b1 -Gas remaining: 1039998.967 units remaining +Gas remaining: 1039998.907 units remaining ./octez-client --mode mockup hash data '"[CONTRACT_HASH]"' of type address Raw packed data: 0x050a0000001601d1a37c088a1221b636bb5fccb35e05181038ba7c00 @@ -159,7 +159,7 @@ Raw Script-expression-ID-Hash: 0x698c356a1846c517db5b16f7a8ff507c3eb4aaa46c316a6 Ledger Blake2b hash: 871oxBK1GsehvbFAwL4bBF4w22oBKfxom746gk7wnr8d Raw Sha256 hash: 0xa5f6f6520cfa43309e72f6745efcbebc1edd1486ab219421e349c8000ddfe485 Raw Sha512 hash: 0x4618bdd8850b8707c52bbf7f64526f8d83e59ccb3f2f1067ca33b5c470c709be21dc9242db15d5428af7b13dfb77353ab39d9367e2a6a12986e95aaf2d4285a7 -Gas remaining: 1039996.054 units remaining +Gas remaining: 1039996.034 units remaining ./octez-client --mode mockup hash data '"[CONTRACT_HASH]%entrypoint"' of type address Raw packed data: 0x050a00000020011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600656e747279706f696e74 @@ -168,7 +168,7 @@ Raw Script-expression-ID-Hash: 0x31241f23ec93014cd7b7cfe1e0a21517bfd0f08b38e348d Ledger Blake2b hash: 4JpvZAMQiWdgASBEyfLJB45oCrsFocB5ApSNa99DbRPZ Raw Sha256 hash: 0xf1c661a1663f788977e3508c6fe3c85346a34101d76b1d47783839ed2d756303 Raw Sha512 hash: 0x781bd064edc01ff80b436682932dd2f0550a6dbf26be32ac434c6386235f4b4c5bb4610b9fad23374d606dcf853a7e16fcce4e3c20fd796e116adb587cdddcbd -Gas remaining: 1039995.954 units remaining +Gas remaining: 1039995.934 units remaining ./octez-client --mode mockup hash data '"[PUBLIC_KEY_HASH]"' of type address Raw packed data: 0x050a00000016000002298c03ed7d454a101eb7022bc95f7e5f41ac78 @@ -177,7 +177,7 @@ Raw Script-expression-ID-Hash: 0x644beb3894b35023de5b76a4c054a32eb7a818b2a83a1b0 Ledger Blake2b hash: 7kWuwaa65KxeAcBTC9U9TvSn4d7eo4hzmTReXrFU6QA1 Raw Sha256 hash: 0x690cf3688186dafd5f78765b514f62ebf98804ed4732d3e9504d1e5d10f62c64 Raw Sha512 hash: 0x9fe6e4a006013a541dde89aeef0db58a39c1b6d06f12554c8d01dc67dff183602d4e5d4a04ac37088d8e7e7836d08f044b279bc70a752b3ad3f1ed0131a9ea03 -Gas remaining: 1039996.054 units remaining +Gas remaining: 1039996.034 units remaining ./octez-client --mode mockup hash data '"[PUBLIC_KEY_HASH]"' of type address Raw packed data: 0x050a000000160001e5c6d1f726796e98b2bad2a819a36f742b2fe25b @@ -186,7 +186,7 @@ Raw Script-expression-ID-Hash: 0x102dff270630ac032e24ae0a62b478930f56f4f5a27c9c3 Ledger Blake2b hash: 26ACmTEYpcjnxbUcXQZxYQgWbig1zpHXpmjKecLqMJEH Raw Sha256 hash: 0xc7016dde1b3b0a15dbfc476de05480386d8781f996769b0113bcf8d3a0f73502 Raw Sha512 hash: 0x8446a69748c9e209bbd9e2d7ec652b3edd1516905b2ef11008993c27d239a237b3372c26854b8a1d393aa504478de76560a9fdd96fef24faff8483851814c6c7 -Gas remaining: 1039996.054 units remaining +Gas remaining: 1039996.034 units remaining ./octez-client --mode mockup hash data '"[PUBLIC_KEY_HASH]"' of type address Raw packed data: 0x050a0000001600026c9b3ad59e0f8bdc2bd2011675825f9f547131da @@ -195,7 +195,7 @@ Raw Script-expression-ID-Hash: 0x85e36142a913e3c8d6fb5a77aaad753b01ebe40096bf460 Ledger Blake2b hash: A1eKYfrX11WNdtxr3QeEzEpY95epaJtJhmeTQEhw3BTg Raw Sha256 hash: 0x1520063584bffabc0cc4d64d1d9f35c205ee403789653fef4465fad7da23a484 Raw Sha512 hash: 0xe8fa1be3ab9fc177a731fdea29e3242831ccea70db15fa5f0dd8f592794261c9e49b51311e0b5387a81472c77edd87cba3afa6207e36ef0bce7f30b0c03bacb0 -Gas remaining: 1039996.054 units remaining +Gas remaining: 1039996.034 units remaining ./octez-client --mode mockup hash data 0 of type bls12_381_fr Raw packed data: 0x050a000000200000000000000000000000000000000000000000000000000000000000000000 @@ -204,7 +204,7 @@ Raw Script-expression-ID-Hash: 0xe68feee8b6ba14292b006b585748c4bd4757955f04320ef Ledger Blake2b hash: GX24pFg5TqeFyCjH3dpXHP3tWZs8ZMm4MVo61DQnXRzo Raw Sha256 hash: 0xc928f798bdcab5fc59c9c06f348c2b1dd1d846ef8d2694ff3359a7fa98e5aaf1 Raw Sha512 hash: 0x56d50c63bacfbac2102091e99071b824150d2c61cbfba9b65a9bad467f1e364a3e1286b0c5de1e7084c7dd3d27a29c19ecbac42d4f5d7797c003b75063f688b4 -Gas remaining: 1039999.124 units remaining +Gas remaining: 1039999.104 units remaining ./octez-client --mode mockup hash data 1 of type bls12_381_fr Raw packed data: 0x050a000000200100000000000000000000000000000000000000000000000000000000000000 @@ -213,7 +213,7 @@ Raw Script-expression-ID-Hash: 0x152ad70bf1a27b6885d3085953411591cbeccd289c0c9fa Ledger Blake2b hash: 2RdT5REqvvzsKNsc2wkGeVcve9j8srXqAqbz6ZPECHi3 Raw Sha256 hash: 0x251c21e3c764b0993d4e49a7939ebc0192c9af7f6fbb5073f1035ea17a2cbe22 Raw Sha512 hash: 0x31a063e0701b89ff1a19364d44c39c7ba28fbeb20b95e5a12be432fcc419666fcf030ed6349e3bca6f7446989b5cb9fb3b4425c4eff01ca1993efca695db199b -Gas remaining: 1039999.124 units remaining +Gas remaining: 1039999.104 units remaining ./octez-client --mode mockup hash data 0x01 of type bls12_381_fr Raw packed data: 0x050a000000200100000000000000000000000000000000000000000000000000000000000000 @@ -222,7 +222,7 @@ Raw Script-expression-ID-Hash: 0x152ad70bf1a27b6885d3085953411591cbeccd289c0c9fa Ledger Blake2b hash: 2RdT5REqvvzsKNsc2wkGeVcve9j8srXqAqbz6ZPECHi3 Raw Sha256 hash: 0x251c21e3c764b0993d4e49a7939ebc0192c9af7f6fbb5073f1035ea17a2cbe22 Raw Sha512 hash: 0x31a063e0701b89ff1a19364d44c39c7ba28fbeb20b95e5a12be432fcc419666fcf030ed6349e3bca6f7446989b5cb9fb3b4425c4eff01ca1993efca695db199b -Gas remaining: 1039999.124 units remaining +Gas remaining: 1039999.104 units remaining ./octez-client --mode mockup hash data 0x0001 of type bls12_381_fr Raw packed data: 0x050a000000200001000000000000000000000000000000000000000000000000000000000000 @@ -231,7 +231,7 @@ Raw Script-expression-ID-Hash: 0x1b460a4d53d8b7029da22adfcaa257555be45259e348069 Ledger Blake2b hash: 2qTxCogJudjrxMBHHvtNsurx1dc1P9Gx1JPUbBaJXDre Raw Sha256 hash: 0xe7038c6478963c7e52c61c9590b774280cfacf0547adc4943a26a608bdb0f277 Raw Sha512 hash: 0x70e7340161a29e3dc08258b154fc797e2ea407ed35dcaf7782e0ad693906c75d15fd68887f2b03375f5c869c9912c390d020b47aee1ca6d20c5ac714c45b678e -Gas remaining: 1039999.124 units remaining +Gas remaining: 1039999.104 units remaining ./octez-client --mode mockup hash data 0x0572cbea904d67468808c8eb50a9450c9721db309128012543902d0ac358a62ae28f75bb8f1c7c42c39a8c5529bf0f4e166a9d8cabc673a322fda673779d8e3822ba3ecb8670e461f73bb9021d5fd76a4c56d9d4cd16bd1bba86881979749d28 of type bls12_381_g1 Raw packed data: 0x050a000000600572cbea904d67468808c8eb50a9450c9721db309128012543902d0ac358a62ae28f75bb8f1c7c42c39a8c5529bf0f4e166a9d8cabc673a322fda673779d8e3822ba3ecb8670e461f73bb9021d5fd76a4c56d9d4cd16bd1bba86881979749d28 @@ -240,7 +240,7 @@ Raw Script-expression-ID-Hash: 0xab8f542bd84f792908f266964e5329c1532fd6e932de8c3 Ledger Blake2b hash: CYhUfj7xreN4aQ1vV8YWApwu8o1Yuhuv9JrHKdFivGuN Raw Sha256 hash: 0xeb0effa0878f7c1dfba8a579b282f45ae24715eebc01929bad29dcd9ab44d4da Raw Sha512 hash: 0x918f9b3b2b615817b4108beca643225a11796825fb00a9126c950f59afbf95364b11ac468150e6fd458b01d1ad3d77ccb0c08a2849e9262e66058014c41cd487 -Gas remaining: 1039940.884 units remaining +Gas remaining: 1039940.864 units remaining ./octez-client --mode mockup hash data 0x0a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899 of type bls12_381_g2 Raw packed data: 0x050a000000c00a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899 @@ -249,7 +249,7 @@ Raw Script-expression-ID-Hash: 0xc0d91f9ad81185f09853efcfc5951eca5c19f9b983808d8 Ledger Blake2b hash: DyoJaUpE63MSnYEmW1pBQCK4DjLCURe2My2snWkmyC9S Raw Sha256 hash: 0xa160577bd9510066d5aa8043d4ce365f03a4f5057516d951c380a521c04fddd8 Raw Sha512 hash: 0xb0ce4a3348adff71470fc470d700b28fd991a91d4013cc6d89bd34a2f1c05f9d0be5cfe64f6b5d79fdbc27eb3e84be520e4e2d864d6b6649722b22061bbfbd7b -Gas remaining: 1039924.824 units remaining +Gas remaining: 1039924.804 units remaining ./octez-client --mode mockup hash data 0x of type bytes Raw packed data: 0x050a00000000 @@ -258,7 +258,7 @@ Raw Script-expression-ID-Hash: 0x468397e139c257d8cd242c3e9a9a821f987eaab1e2e5098 Ledger Blake2b hash: 5kFvPvb5eUSrt99ekYQYag1Yfz5AsvsUTzVQFHeNPoW3 Raw Sha256 hash: 0x59b7ebd426a428d05b6f1d634e56708f7711bd6d0495578281115368c1635e2d Raw Sha512 hash: 0xb3dd201d5209fd911e193f3490154db2335205f472f0a7730e28182c5a3f07fa997f266226b12efb1bb39e8bc39d7a54d9c69fb575664bfb0be3bdd0550f7d65 -Gas remaining: 1039999.644 units remaining +Gas remaining: 1039999.624 units remaining ./octez-client --mode mockup hash data 0xABCDEF42 of type bytes Raw packed data: 0x050a00000004abcdef42 @@ -267,7 +267,7 @@ Raw Script-expression-ID-Hash: 0x0b9a15faff1a1effa06a876cb86e81c9df2ca55fa8adfc4 Ledger Blake2b hash: nHm2FU2b9wwdwJVPrUS4tYmBbrsTrhsqY1U4moGsFNG Raw Sha256 hash: 0x616628cdbcd057574ae41c224271249cd8b1cca683b206d58c088922cb9f9222 Raw Sha512 hash: 0xc93e6e937d63f506af719edccc50d15d0faf7b213e5f572dd3ac73271815816ebdf738fc6345464af7a2ce7fbace473a03ae38157dea3fb4cc34a6c3b17b7dbc -Gas remaining: 1039999.604 units remaining +Gas remaining: 1039999.584 units remaining ./octez-client --mode mockup hash data 0x7a06a770 of type chain_id Raw packed data: 0x050a000000047a06a770 @@ -276,7 +276,7 @@ Raw Script-expression-ID-Hash: 0x82820dedcd30b1b2c3253042b252e0b385dd365eaffdac0 Ledger Blake2b hash: 9nT2FHdDkNKBJZie1VRm6WookGzwzZ57FYetGbjvgam7 Raw Sha256 hash: 0x092220899acefcdc4870e3c2d6ce436cf3e7a27855ebca4d3b24da62bc294a5c Raw Sha512 hash: 0x99d8d47bed4a102b519062df6f04a65ce5ab7f98fadd3fdf7cdc6c21c652d9a59e8116781683c08b2094bb4fd99f516b690978d0a1f105aa05443a3e7e087697 -Gas remaining: 1039999.504 units remaining +Gas remaining: 1039999.484 units remaining ./octez-client --mode mockup hash data '"NetXynUjJNZm7wi"' of type chain_id Raw packed data: 0x050a00000004f3d48554 @@ -285,7 +285,7 @@ Raw Script-expression-ID-Hash: 0x01d7b61758f39c12865684f612da8f479d3755efaa0af26 Ledger Blake2b hash: 8CBfWC4xY9SgFvQidL2r53pwquTtGhW8UJGcgu5wcYa Raw Sha256 hash: 0xf6a25e29f615b4f5edb309db8229c4e607828111795f6ac68a30684bd04bcda5 Raw Sha512 hash: 0x09ef7ad4129366f7c7e3beae66514b91728428b1b6b62454876fd7b07621bffa068de15dbc4cf3b550682481663df2a64435f65ed231787feeec183221dd4c6b -Gas remaining: 1039997.954 units remaining +Gas remaining: 1039997.934 units remaining ./octez-client --mode mockup hash data '"[PUBLIC_KEY]"' of type key Raw packed data: 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f @@ -294,7 +294,7 @@ Raw Script-expression-ID-Hash: 0x0a6e0f781438d15aea8aeb41e8f00ea25bacc3d1efedfc6 Ledger Blake2b hash: hiR4yro9kA38FKWeB8Ps8hzNyeqSoskUNGePRJQi4Uy Raw Sha256 hash: 0x30467dc415ef58a775a6aa618f515d856287ad20b56477a16c0cfdf0f2a2ed3c Raw Sha512 hash: 0x1b3f5993512659e0164d186381de64bd6a4c678cefd7ca756ec087769208fc62b4563df31cd4680707e3c43a5a8c7a4579ad5c34ae471a5731ebcbe0db2255ec -Gas remaining: 1039673.859 units remaining +Gas remaining: 1039673.839 units remaining ./octez-client --mode mockup hash data '"[PUBLIC_KEY]"' of type key Raw packed data: 0x050a000000210057b0e07666fe26167f92bffe667dc2ba2214a404f4fe5d1bb8ce01baef5663a5 @@ -303,7 +303,7 @@ Raw Script-expression-ID-Hash: 0x67aaee572e9d4e0673e66273b43e2300393ee44eb959843 Ledger Blake2b hash: 7ygAaVU28qwNcCvg5stUKDPUikjnoMtDJM6FbNnrEmeT Raw Sha256 hash: 0x13830142ebb330c5f0177637a05894338307e1179b67c45d90eb2e98151175a9 Raw Sha512 hash: 0x075b346f72fb69759345eff13f52ad51b9c5c138fc6155742c309910412e2efc9a33615a8d4a3e6724c15de7960807cd7e83185d24ab5c096f766916ac035982 -Gas remaining: 1039673.859 units remaining +Gas remaining: 1039673.839 units remaining ./octez-client --mode mockup hash data '"[PUBLIC_KEY_HASH]"' of type key_hash Raw packed data: 0x050a000000150002298c03ed7d454a101eb7022bc95f7e5f41ac78 @@ -312,7 +312,7 @@ Raw Script-expression-ID-Hash: 0x4cba54c206c1ccfd72a4a5492b21ae41f1faa6a7a7cce3f Ledger Blake2b hash: 6AWn5TRUkgYJe4fjjZrovKq81K9bNDNNgcS7xiTszkbC Raw Sha256 hash: 0x4156dbe479999c7df14d90ae46e304304534cc38795d73ecc76d60c78724f2a1 Raw Sha512 hash: 0xffb476c7d1ae269c82ea4d09a1513a8d915a8b50acb759c351228edc5e623e6f7390f2bd856625476ba14bb17b4dac07572fc40341e9eedf44e372a40550d798 -Gas remaining: 1039996.064 units remaining +Gas remaining: 1039996.044 units remaining ./octez-client --mode mockup hash data '"[PUBLIC_KEY_HASH]"' of type key_hash Raw packed data: 0x050a000000150080dfbed18097a4cb62dea643ebc5346600b5204d @@ -321,7 +321,7 @@ Raw Script-expression-ID-Hash: 0x5ee69f25f750a193690ec32802a7a33b9572c7856791471 Ledger Blake2b hash: 7PTHd1XgawoAQDjiktNjDyPC5tsse21LnNFufiRifYbc Raw Sha256 hash: 0x6f54374213823a79f912fb52cb57793466b4a39267dfbdcfdc918eeef296499f Raw Sha512 hash: 0x2cb036951cd1725c7863f5c04f6f81a879bd0a533b1422a60a2a38d0c8243b10a0a879766e2a04c3cd47c532e417089839c3cf621621060f00bc5c79bda058bb -Gas remaining: 1039996.064 units remaining +Gas remaining: 1039996.044 units remaining ./octez-client --mode mockup hash data '{ }' of type 'lambda unit unit' Raw packed data: 0x050200000000 @@ -330,7 +330,7 @@ Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047 Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039999.129 units remaining +Gas remaining: 1039999.109 units remaining ./octez-client --mode mockup hash data '{ PUSH nat 1; ADD }' of type 'lambda nat nat' Raw packed data: 0x0502000000080743036200010312 @@ -339,7 +339,7 @@ Raw Script-expression-ID-Hash: 0x42a0dcc26c782dcc094ba725e4bcc4f8710c72203a895b5 Ledger Blake2b hash: 5V6BBTaoBmSdwu8pv5xNMNBwm1mQGdPJ8e8N3s22Gcwp Raw Sha256 hash: 0x113616e40fd9fcf4cb73a9cf9c57fc0ab1853fa4432b9ca975b472d0173bc007 Raw Sha512 hash: 0x2256250f59e3c1c708eae9aa4d6f7d2dafdf82cb12b872db8320048c0dab3e225e96e846e284382fcfc832b83f0bf3ee3945fc6936357b2c29d96f29ba90315a -Gas remaining: 1039997.245 units remaining +Gas remaining: 1039997.205 units remaining ./octez-client --mode mockup hash data '{}' of type 'list unit' Raw packed data: 0x050200000000 @@ -348,7 +348,7 @@ Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047 Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039999.584 units remaining +Gas remaining: 1039999.564 units remaining ./octez-client --mode mockup hash data '{ 0 ; 10 }' of type 'list nat' Raw packed data: 0x0502000000040000000a @@ -357,7 +357,7 @@ Raw Script-expression-ID-Hash: 0x48c32738e9d3772486ca8e0d150d6b94cebcd2421e3e811 Ledger Blake2b hash: 5u2x2XQZVxYHKm1LpjamMs894nT2CnvMKTQmeZsrtPH7 Raw Sha256 hash: 0xaf9e7cce96fb6243ab05cd630f260862264dfe7eccda6fa24050a7cb9043134d Raw Sha512 hash: 0xc699a04538d2cc260b183e65a02b1ea9fdeeca4c3bc253ae8e70d9824b7e79ebae34f6da3dd5eb3ceb29e9d18dc5e6f36d630b13be50adf566e9badb810f3349 -Gas remaining: 1039998.967 units remaining +Gas remaining: 1039998.907 units remaining ./octez-client --mode mockup hash data '{ Some 10 ; None }' of type 'list (option int)' Raw packed data: 0x0502000000060509000a0306 @@ -366,7 +366,7 @@ Raw Script-expression-ID-Hash: 0xd363a18306b7fc740debf0d1a981b5c4e5a3b7914eb04b9 Ledger Blake2b hash: FEB92G5KaAbrFnAp7UjD1AR9daiKQinjcvrAi3sRYG3S Raw Sha256 hash: 0xa24baf1b39078a1811069da825039c4e6e8ab2de34d58f29baab4ffa9323fdfd Raw Sha512 hash: 0xb92f1245587939c4ade1554874192d1bbd83f9d34a044e778fca611a6eac5f1a91a259b5fb0682495c1735a0f50e7da5fbdc4e4029e66ed64ecdc7a832a36e7c -Gas remaining: 1039998.611 units remaining +Gas remaining: 1039998.531 units remaining ./octez-client --mode mockup hash data '{}' of type 'map nat unit' Raw packed data: 0x050200000000 @@ -375,7 +375,7 @@ Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047 Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039999.524 units remaining +Gas remaining: 1039999.504 units remaining ./octez-client --mode mockup hash data '{ Elt 0 0xCB ; Elt 1 0xAB }' of type 'map nat bytes' Raw packed data: 0x050200000014070400000a00000001cb070400010a00000001ab @@ -384,7 +384,7 @@ Raw Script-expression-ID-Hash: 0xac6995309e75f33132a6819b36c2ae787684be3c23e7cf2 Ledger Blake2b hash: Cc2W7aPZgPoiuVfuxR8j6gjxgpuZDBJGjSaRQemzTnFM Raw Sha256 hash: 0x732bb539d52c41e6cc09d6116b1b3d25257b27dfd7adc7a09e03d345c09e0594 Raw Sha512 hash: 0x0d565633ca0b3c3751aee0fe54d9be744bea79b1a714d97227397dfe79b5058d6385bc86dcdabbb280c5fc2fb56fc073550ac63d947df2787a5927a1342c343b -Gas remaining: 1039997.798 units remaining +Gas remaining: 1039997.698 units remaining ./octez-client --mode mockup hash data 0 of type mutez Raw packed data: 0x050000 @@ -393,7 +393,7 @@ Raw Script-expression-ID-Hash: 0x053f610929e2b6ea458c54dfd8b29716d379c13f5c8fd82 Ledger Blake2b hash: MV6HviXsJnEwxPKHLSUxEvxZVZr14cYYiQth4DFa2NN Raw Sha256 hash: 0x69c492e24afa52c556de5ea70e1b5d7da3f0bc7a5a7fd1d413444c1a42a7e9b3 Raw Sha512 hash: 0x6fb0c536a65271998988dffee83efeb370514fcfecd339ebda1f97bde876ea5ecde4a2e8e93b22071849f5625639936ebc55b71c3b4118254f5bff444e515a85 -Gas remaining: 1039999.644 units remaining +Gas remaining: 1039999.624 units remaining ./octez-client --mode mockup hash data 1 of type mutez Raw packed data: 0x050001 @@ -402,7 +402,7 @@ Raw Script-expression-ID-Hash: 0x438c52065d4605460b12d1b9446876a1c922b416103a20d Ledger Blake2b hash: 5YgR7rjfSbSbzGEYhhBG9ENRHhdVSUu2TJ6RyNLawjiv Raw Sha256 hash: 0x57072915640d052f4e2843e1498b10c4f71b62df565525d33c4a66a724e3e20a Raw Sha512 hash: 0x112e6b61a60ecf001d501f39284ff8a575d818f2f79295b90b24f045d165a490c19cac2add9149dbdd23a8f2cf956dbee0efe17449111e6326e97ab21532f445 -Gas remaining: 1039999.619 units remaining +Gas remaining: 1039999.599 units remaining ./octez-client --mode mockup hash data 99999 of type mutez Raw packed data: 0x05009f9a0c @@ -411,7 +411,7 @@ Raw Script-expression-ID-Hash: 0x752bc02931fa202b4f7c174c0cea1254e6a007bc42f53d0 Ledger Blake2b hash: 8tPPr8hLWFsY27xsdiM85nrPUoCXxEPR3PTWyma5JTyH Raw Sha256 hash: 0xd794d67b0648f7a498c96eb5b8b8ab14d15c45dd13ae8168b4a3741e7b4cc701 Raw Sha512 hash: 0xed76e4309dcbd480e19bb3e942adaada5ead9eeec944c0f90798c978cccee14b80d2a1b8f0f2346ca54b56d1662b02c6b0b58a2caa1a7187d5281e70ccd43ce6 -Gas remaining: 1039999.569 units remaining +Gas remaining: 1039999.549 units remaining ./octez-client --mode mockup hash data 0 of type nat Raw packed data: 0x050000 @@ -420,7 +420,7 @@ Raw Script-expression-ID-Hash: 0x053f610929e2b6ea458c54dfd8b29716d379c13f5c8fd82 Ledger Blake2b hash: MV6HviXsJnEwxPKHLSUxEvxZVZr14cYYiQth4DFa2NN Raw Sha256 hash: 0x69c492e24afa52c556de5ea70e1b5d7da3f0bc7a5a7fd1d413444c1a42a7e9b3 Raw Sha512 hash: 0x6fb0c536a65271998988dffee83efeb370514fcfecd339ebda1f97bde876ea5ecde4a2e8e93b22071849f5625639936ebc55b71c3b4118254f5bff444e515a85 -Gas remaining: 1039999.644 units remaining +Gas remaining: 1039999.624 units remaining ./octez-client --mode mockup hash data 1 of type nat Raw packed data: 0x050001 @@ -429,7 +429,7 @@ Raw Script-expression-ID-Hash: 0x438c52065d4605460b12d1b9446876a1c922b416103a20d Ledger Blake2b hash: 5YgR7rjfSbSbzGEYhhBG9ENRHhdVSUu2TJ6RyNLawjiv Raw Sha256 hash: 0x57072915640d052f4e2843e1498b10c4f71b62df565525d33c4a66a724e3e20a Raw Sha512 hash: 0x112e6b61a60ecf001d501f39284ff8a575d818f2f79295b90b24f045d165a490c19cac2add9149dbdd23a8f2cf956dbee0efe17449111e6326e97ab21532f445 -Gas remaining: 1039999.619 units remaining +Gas remaining: 1039999.599 units remaining ./octez-client --mode mockup hash data 99999 of type nat Raw packed data: 0x05009f9a0c @@ -438,7 +438,7 @@ Raw Script-expression-ID-Hash: 0x752bc02931fa202b4f7c174c0cea1254e6a007bc42f53d0 Ledger Blake2b hash: 8tPPr8hLWFsY27xsdiM85nrPUoCXxEPR3PTWyma5JTyH Raw Sha256 hash: 0xd794d67b0648f7a498c96eb5b8b8ab14d15c45dd13ae8168b4a3741e7b4cc701 Raw Sha512 hash: 0xed76e4309dcbd480e19bb3e942adaada5ead9eeec944c0f90798c978cccee14b80d2a1b8f0f2346ca54b56d1662b02c6b0b58a2caa1a7187d5281e70ccd43ce6 -Gas remaining: 1039999.569 units remaining +Gas remaining: 1039999.549 units remaining ./octez-client --mode mockup hash data None of type 'option unit' Raw packed data: 0x050306 @@ -447,7 +447,7 @@ Raw Script-expression-ID-Hash: 0x22809fd952c3478272e90aa2f8e59260e81bfa5c3532984 Ledger Blake2b hash: 3KgcqHyPuSS1yTH3UyqenupZv8z2dDJjXmuDNUoZa8ew Raw Sha256 hash: 0xe61760f1647df1aa8f3f64cf8a93fecddf536ed4867d4111cbedab7652f8267f Raw Sha512 hash: 0x4a3457a98c4f863fb53dfa90af26aa46becda18150cda8e2d3d1de2a1f6536b7c5bc7c99f0216610650e90653d69badca147cd88e3d6f472b5be617c076980e0 -Gas remaining: 1039999.584 units remaining +Gas remaining: 1039999.564 units remaining ./octez-client --mode mockup hash data 'Some "foo"' of type 'option string' Raw packed data: 0x0505090100000003666f6f @@ -456,7 +456,7 @@ Raw Script-expression-ID-Hash: 0x83592457741d2dbb22af78846b3040e92614170c2e48501 Ledger Blake2b hash: 9qjFGa2NhRMBbutDccsFotBEpNeCuK4mJu95q3hiJZ3U Raw Sha256 hash: 0xcd56882646da9e0c3309537fb762087316b9bd0c754e7c858b30445e5a4df6a0 Raw Sha512 hash: 0xb7c841f6c2ab26702ce4b2a72b0f70e63c561ed97bc77df78c2f763e492eb8c86ecf755b60aa1246cc1ba95b0de2d1a3afa3de408325b3b2c764efcb24d1a9e5 -Gas remaining: 1039999.214 units remaining +Gas remaining: 1039999.174 units remaining ./octez-client --mode mockup hash data '(Left True)' of type 'or bool string' Raw packed data: 0x050505030a @@ -465,7 +465,7 @@ Raw Script-expression-ID-Hash: 0x97c11ba899e5d0cb4772b7932f1669b4ab29113b0f17c88 Ledger Blake2b hash: BDPMBz4ejDv6jv7uARzSz4Uv5LbixRHZJ2K7vfXGhzhT Raw Sha256 hash: 0x07b7ad9ed53b16bf17d52aa7eb3ae77fba8671f6f979eccc92ecf9e6702f7b1f Raw Sha512 hash: 0xb2de8eb67db0b449a7b5b844e6c7d1cb8ca874003a1e43b802bf273474e621deaefe7cdfb27c2bd2c78326e2e0506f1ecae038be143cf5b4b4d7e918b6ebc72e -Gas remaining: 1039999.228 units remaining +Gas remaining: 1039999.188 units remaining ./octez-client --mode mockup hash data '(Right "foo")' of type 'or bool string' Raw packed data: 0x0505080100000003666f6f @@ -474,7 +474,7 @@ Raw Script-expression-ID-Hash: 0xdf2193b9a689f10ac5c8a48c577f3e2a94221bd9ac884b5 Ledger Blake2b hash: G21cWq5PkGo84UkfufjDCMXWsSQA3PEDBLKYPt1qtvan Raw Sha256 hash: 0x2477b0dad8808245eacf22a51ef1f6b9bcb59b8f4d4b3a979132fa74dd129abf Raw Sha512 hash: 0x64d21e4c66c2c1da70cda80a9609a28e8571734e42a63927753c2027f5c168086fd9925ddaee1544b254fbf63b055bc5ee4e9a987f457b58be04abbdfd29ac57 -Gas remaining: 1039999.154 units remaining +Gas remaining: 1039999.114 units remaining ./octez-client --mode mockup hash data '(Pair 0 True)' of type 'pair int bool' Raw packed data: 0x0507070000030a @@ -483,7 +483,7 @@ Raw Script-expression-ID-Hash: 0x8e99fc570ca12731c2a09203fb84b25f93264a234dc1dc6 Ledger Blake2b hash: Abf5a9UGQ2gcU7V918Pcss2DaTVaqdkBrDYUi55p4Bfh Raw Sha256 hash: 0x754da3f12fe6c0317d39bc71ff0489d763047648833d3403cdb348c93f9c2678 Raw Sha512 hash: 0xfc2f3d753f8749bec06d6cccadd8263d69ca4121af57d0fce69b62bdb82173d3403b28cd69eb551827c7b80384d77e48b42be7399f06e310762a80ebcdfb5e1b -Gas remaining: 1039998.932 units remaining +Gas remaining: 1039998.872 units remaining ./octez-client --mode mockup hash data '(Pair 0 (Pair True 0x))' of type 'pair int bool bytes' Raw packed data: 0x05070700000707030a0a00000000 @@ -492,7 +492,7 @@ Raw Script-expression-ID-Hash: 0x6729d37ba0b7c4f8746e53816067fec805fbbd37253d81c Ledger Blake2b hash: 7whz5UYUjV52kQv1B1QUoYk1pMwRay1gEsB8XwP5ce5Q Raw Sha256 hash: 0x2ee3aa1d789b740d21b535384a8ec28c7c375484576f070a0ea03f0ada7917fd Raw Sha512 hash: 0x83faf6a6c5c205a86087d77460f54a582f285918f45847376b7a722520f69acf23d6a9f09cce2646fcd279f33241ab345e2e17613f0babd1ebc5979713bff784 -Gas remaining: 1039998.220 units remaining +Gas remaining: 1039998.120 units remaining ./octez-client --mode mockup hash data '(Pair 0 True 0x)' of type 'pair int bool bytes' Raw packed data: 0x05070700000707030a0a00000000 @@ -501,7 +501,7 @@ Raw Script-expression-ID-Hash: 0x6729d37ba0b7c4f8746e53816067fec805fbbd37253d81c Ledger Blake2b hash: 7whz5UYUjV52kQv1B1QUoYk1pMwRay1gEsB8XwP5ce5Q Raw Sha256 hash: 0x2ee3aa1d789b740d21b535384a8ec28c7c375484576f070a0ea03f0ada7917fd Raw Sha512 hash: 0x83faf6a6c5c205a86087d77460f54a582f285918f45847376b7a722520f69acf23d6a9f09cce2646fcd279f33241ab345e2e17613f0babd1ebc5979713bff784 -Gas remaining: 1039998.220 units remaining +Gas remaining: 1039998.120 units remaining ./octez-client --mode mockup hash data '{0; True; 0x}' of type 'pair int bool bytes' Raw packed data: 0x05070700000707030a0a00000000 @@ -510,7 +510,7 @@ Raw Script-expression-ID-Hash: 0x6729d37ba0b7c4f8746e53816067fec805fbbd37253d81c Ledger Blake2b hash: 7whz5UYUjV52kQv1B1QUoYk1pMwRay1gEsB8XwP5ce5Q Raw Sha256 hash: 0x2ee3aa1d789b740d21b535384a8ec28c7c375484576f070a0ea03f0ada7917fd Raw Sha512 hash: 0x83faf6a6c5c205a86087d77460f54a582f285918f45847376b7a722520f69acf23d6a9f09cce2646fcd279f33241ab345e2e17613f0babd1ebc5979713bff784 -Gas remaining: 1039998.220 units remaining +Gas remaining: 1039998.120 units remaining ./octez-client --mode mockup hash data '{}' of type 'set bool' Raw packed data: 0x050200000000 @@ -519,7 +519,7 @@ Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047 Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039999.584 units remaining +Gas remaining: 1039999.564 units remaining ./octez-client --mode mockup hash data '{ 0 ; 3 ; 4 }' of type 'set nat' Raw packed data: 0x050200000006000000030004 @@ -528,7 +528,7 @@ Raw Script-expression-ID-Hash: 0x7b470c4d4cd099659964e7ae56f49599a16e5c4ddbe0389 Ledger Blake2b hash: 9JDyxjR1Pex14hzrrVN6wUuVdug418EbGy9PytyWi36E Raw Sha256 hash: 0x79b8b0a86bb4e9939b552d8bfc98c50b991ae227235a3d39381349817ebdda9f Raw Sha512 hash: 0x34de860c30437423f988cff5ed945981ed4b82dc8a9153f1fbb387e3a05d502d494aa3fb627698a2d7d3b769715e24f844274d0a86bbddff3d955d97ba39d410 -Gas remaining: 1039998.186 units remaining +Gas remaining: 1039998.106 units remaining ./octez-client --mode mockup hash data '"ABC\n123"' of type string Raw packed data: 0x0501000000074142430a313233 @@ -537,7 +537,7 @@ Raw Script-expression-ID-Hash: 0x53804fa1fb0854914ed6562bc7dde5d9c2307bbf5ac70e7 Ledger Blake2b hash: 6cxKSKRL7E2Bpg1ZPZkWT7hXgLKyHJxLc5NA2Q2H1jqX Raw Sha256 hash: 0x3ebab0c348173626afcb9c982d06ee1189fb1a6359eecd33b30af851aacdcc0f Raw Sha512 hash: 0x086fccde9f22aba378cd47833d9613f6d1cfd3f15fb6a8dde0eb57e1da651de8ef69886a7a4ebbadf50155910d1fbcc9048e0d9acb196be04adf519476d52307 -Gas remaining: 1039999.490 units remaining +Gas remaining: 1039999.470 units remaining ./octez-client --mode mockup hash data '"edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7"' of type signature Raw packed data: 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 @@ -546,7 +546,7 @@ Raw Script-expression-ID-Hash: 0x00fc144dd18ae1a2d0c6247aa7dad67b2f8bec1b2698443 Ledger Blake2b hash: 14qwXuZ6GDwjvb9GEyurnLg9ZABtnQUAVuDXuGtFAYhp Raw Sha256 hash: 0xf432ec1cf86bc818d9dff9f69870eaedbbfaee429f2619500757f3ce1d7bc1a9 Raw Sha512 hash: 0xd7f46bdf12090e235e59f0a61af1ca90f64f6022bd5df479a62f16fd829c6cec431dc081ee16f0c103eec70be968d3f70ec9f584f8948d31c804a87ddc82b1b3 -Gas remaining: 1039992.559 units remaining +Gas remaining: 1039992.539 units remaining ./octez-client --mode mockup hash data '"spsig1PPUFZucuAQybs5wsqsNQ68QNgFaBnVKMFaoZZfi1BtNnuCAWnmL9wVy5HfHkR6AeodjVGxpBVVSYcJKyMURn6K1yknYLm"' of type signature Raw packed data: 0x050a00000040865b0ceaa2decd64fea1b7e0e97d6ae8035125d821ebe99d7d5c8a559f36fdd43388a570e475011f6d2bbef184ece9bafbf0ac12157f7257988e9575ae2cbca9 @@ -555,7 +555,7 @@ Raw Script-expression-ID-Hash: 0x9db673f2907fafceb934a674351b57e76ba2bf9b3ee2f6e Ledger Blake2b hash: BceNWVXjPX5jc4D1kauy4Evh21C8q53aQRJFMzEpLXWx Raw Sha256 hash: 0x42fe71aa3f9fa7d868a2a8aee492b2a559fba87f8c15403ffe753fc0effffd17 Raw Sha512 hash: 0xc9a9d704af153d9a2d046bd428f817c9db9ec5d52881ac31e28ed1faca821d34b797bee5171855d6f35ecefed7db2800a20639fc1f877672d03b456af7cf296e -Gas remaining: 1039992.559 units remaining +Gas remaining: 1039992.539 units remaining ./octez-client --mode mockup hash data '"foo"' of type string Raw packed data: 0x050100000003666f6f @@ -564,7 +564,7 @@ Raw Script-expression-ID-Hash: 0x7b754bee2b13dd9f9486e6f933e27afc2c31765a8414fc9 Ledger Blake2b hash: 9JvtJaNHvYP5bpF7tjbbtpr8o7Jtptz445dZ8pemDnvH Raw Sha256 hash: 0xe9341dd81166c9253032c8296ae443fbe0d6878502c31cdc431407c4f46dd094 Raw Sha512 hash: 0x8bf21486ea4a0789bf772b75b3cd8f9edace809f79c38146dbbe2d447edf99f9fcc7c53f511063fe9de21b22baa01710ef6a300546fcc6529812128488e91309 -Gas remaining: 1039999.570 units remaining +Gas remaining: 1039999.550 units remaining ./octez-client --mode mockup hash data '"[TIMESTAMP]"' of type timestamp Raw packed data: 0x0500a7e8e4d80b @@ -573,7 +573,7 @@ Raw Script-expression-ID-Hash: 0x73bb27e87ad251d54484fc93a59fac977e3e1af83dfaaa3 Ledger Blake2b hash: 8nmQbgYU3gU2uTXAoJ77miKgQicBLCYYWtnoLzvF5k7Q Raw Sha256 hash: 0x883ec8d70eeb0beb91bb34dbb5a9a49ffdbe79fd99d8a5fe2b5b508381597bce Raw Sha512 hash: 0x2b7e8c38c164c6fd93d454fc2ac07122c45616cc616e2789bfb77cc023ef005cf97c8fb8e7c38565d52d0a5fd941a5be0e26e0fd323261069445b89f7ba6086a -Gas remaining: 1039999.436 units remaining +Gas remaining: 1039999.416 units remaining ./octez-client --mode mockup hash data 1571659294 of type timestamp Raw packed data: 0x05009ef8ecda0b @@ -582,7 +582,7 @@ Raw Script-expression-ID-Hash: 0xf5ea5a2add84cb09fcf97c1d6e931a177dc6b47c27859d0 Ledger Blake2b hash: HYx9bgNpSXhVfVKjoToFJ55LGxpZ8NGNwnfZJdGkYJSP Raw Sha256 hash: 0xa4e6a8748a04d460e75e1420baa3f4e9d53c758f076a0a5e3730941eade9c72f Raw Sha512 hash: 0x69c9ac176f1c5da7b15e859224d9877da0ecb9ecb84e0fa580405c46f13cc8ea11365502298f45354dc21ddeccd7ad3772c8d11091870536f156a6fc94aad89a -Gas remaining: 1039999.544 units remaining +Gas remaining: 1039999.524 units remaining ./octez-client --mode mockup hash data Unit of type unit Raw packed data: 0x05030b @@ -591,4 +591,4 @@ Raw Script-expression-ID-Hash: 0x8b456a4530fb6d0fea9a0dcd0e9d6ff6b30d13b05d05cb4 Ledger Blake2b hash: ANf4YSkDc71Uy14uWg3wL8u49LUAHdVVnVHbSwNKyEJo Raw Sha256 hash: 0x5f6d1c5a35306dc8be3a54058774f9cb8f1bc71a6a743a253aad0bfe3a43feef Raw Sha512 hash: 0xe89c39b714a041046cf421532526b466a8ad29a89a4f027954e4dbdc61b4557f54721ba9e12bf4b901d511037d39481379394e7f86a571bba60f2414e2a56b4c -Gas remaining: 1039999.644 units remaining +Gas remaining: 1039999.624 units remaining diff --git a/tezt/tests/expected/self_address_transfer.ml/Alpha- Self address transfer.out b/tezt/tests/expected/self_address_transfer.ml/Alpha- Self address transfer.out index 8fc3516adc37..4fb824805e83 100644 --- a/tezt/tests/expected/self_address_transfer.ml/Alpha- Self address transfer.out +++ b/tezt/tests/expected/self_address_transfer.ml/Alpha- Self address transfer.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract self_address_sender.tz transferring 0 from bootstrap1 running file:./tezt/tests/contracts/proto_alpha/self_address_sender.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 1422.092 units (will add 100 for safety) +Estimated gas: 1422.112 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 '[OPERATION_HASH]' @@ -39,7 +39,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 82 bytes Paid storage size diff: 82 bytes - Consumed gas: 1422.092 + Consumed gas: 1422.112 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0205 storage fees ........................... +ꜩ0.0205 @@ -51,7 +51,7 @@ Contract memorized as self_address_sender.tz. ./octez-client --mode mockup --wait none originate contract self_address_receiver.tz transferring 0 from bootstrap1 running file:./tezt/tests/contracts/proto_alpha/self_address_receiver.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 1422.501 units (will add 100 for safety) +Estimated gas: 1422.521 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 '[OPERATION_HASH]' @@ -89,7 +89,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 83 bytes Paid storage size diff: 83 bytes - Consumed gas: 1422.501 + Consumed gas: 1422.521 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.02075 storage fees ........................... +ꜩ0.02075 @@ -101,7 +101,7 @@ Contract memorized as self_address_receiver.tz. ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 4691.490 units (will add 100 for safety) +Estimated gas: 4691.615 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -127,7 +127,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 82 bytes - Consumed gas: 2575.690 + Consumed gas: 2575.775 Internal operations: Internal Transaction: Amount: ꜩ0 @@ -137,5 +137,5 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 83 bytes - Consumed gas: 2117.047 + Consumed gas: 2117.087 diff --git a/tezt/tests/expected/ticket_updates_in_receipt.ml/Alpha- Ticket updates in receipt.out b/tezt/tests/expected/ticket_updates_in_receipt.ml/Alpha- Ticket updates in receipt.out index a0f9c2daf19a..9891a1ba0246 100644 --- a/tezt/tests/expected/ticket_updates_in_receipt.ml/Alpha- Ticket updates in receipt.out +++ b/tezt/tests/expected/ticket_updates_in_receipt.ml/Alpha- Ticket updates in receipt.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --arg '(Pair "[CONTRACT_HASH]" "[CONTRACT_HASH]")' Node is bootstrapped. -Estimated gas: 10526.216 units (will add 100 for safety) +Estimated gas: 10528.581 units (will add 100 for safety) Estimated storage: 475 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.001401 Expected counter: 1 - Gas limit: 10627 + Gas limit: 10629 Storage limit: 495 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.001401 @@ -31,7 +31,7 @@ This sequence of operations was run: Pair 0x012337a0bac2cdba3aa8fcb8ae8dc02e417301533700 (Pair "green" 1) } Storage size: 525 bytes Paid storage size diff: 325 bytes - Consumed gas: 4020.450 + Consumed gas: 4021.720 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.08125 storage fees ........................... +ꜩ0.08125 @@ -59,7 +59,7 @@ This sequence of operations was run: (Some (Pair 0x012337a0bac2cdba3aa8fcb8ae8dc02e417301533700 (Pair "blue" 1))) Storage size: 169 bytes Paid storage size diff: 108 bytes - Consumed gas: 3717.583 + Consumed gas: 3718.328 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.027 storage fees ........................... +ꜩ0.027 @@ -79,7 +79,7 @@ This sequence of operations was run: (Some (Pair 0x012337a0bac2cdba3aa8fcb8ae8dc02e417301533700 (Pair "blue" 1))) Storage size: 88 bytes Paid storage size diff: 42 bytes - Consumed gas: 2789.430 + Consumed gas: 2789.780 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0105 storage fees ........................... +ꜩ0.0105 diff --git a/tezt/tests/expected/tickets.ml/Alpha- Create and remove tickets.out b/tezt/tests/expected/tickets.ml/Alpha- Create and remove tickets.out index d29f9f11c38a..7c5f994836c0 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Create and remove tickets.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Create and remove tickets.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract add_clear_tickets.tz transferring 200 from bootstrap1 running file:./tezt/tests/contracts/proto_alpha/add_clear_tickets.tz --init '{}' --burn-cap 1 Node is bootstrapped. -Estimated gas: 1437.760 units (will add 100 for safety) +Estimated gas: 1437.780 units (will add 100 for safety) Estimated storage: 398 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -44,7 +44,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 141 bytes Paid storage size diff: 141 bytes - Consumed gas: 1437.760 + Consumed gas: 1437.780 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.03525 storage fees ........................... +ꜩ0.03525 @@ -58,7 +58,7 @@ Contract memorized as add_clear_tickets.tz. ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint add --arg 'Pair 1 "A"' Node is bootstrapped. -Estimated gas: 2582.458 units (will add 100 for safety) +Estimated gas: 2582.758 units (will add 100 for safety) Estimated storage: 105 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -87,7 +87,7 @@ This sequence of operations was run: { Pair 0x0135c48b18c573e6d98d89ef9192f152c92c3ef39a00 (Pair "A" 1) } Storage size: 180 bytes Paid storage size diff: 105 bytes - Consumed gas: 2583.103 + Consumed gas: 2583.403 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.02625 storage fees ........................... +ꜩ0.02625 @@ -101,7 +101,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint clear --arg Unit Node is bootstrapped. -Estimated gas: 2772.454 units (will add 100 for safety) +Estimated gas: 2772.629 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -127,7 +127,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: {} Storage size: 141 bytes - Consumed gas: 2773.099 + Consumed gas: 2773.274 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -138,7 +138,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint add --arg 'Pair 1 "B"' Node is bootstrapped. -Estimated gas: 2582.458 units (will add 100 for safety) +Estimated gas: 2582.758 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -166,7 +166,7 @@ This sequence of operations was run: Updated storage: { Pair 0x0135c48b18c573e6d98d89ef9192f152c92c3ef39a00 (Pair "B" 1) } Storage size: 180 bytes - Consumed gas: 2583.103 + Consumed gas: 2583.403 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -177,7 +177,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint add --arg 'Pair 1 "C"' Node is bootstrapped. -Estimated gas: 3264.087 units (will add 100 for safety) +Estimated gas: 3264.687 units (will add 100 for safety) Estimated storage: 105 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -207,7 +207,7 @@ This sequence of operations was run: Pair 0x0135c48b18c573e6d98d89ef9192f152c92c3ef39a00 (Pair "B" 1) } Storage size: 219 bytes Paid storage size diff: 105 bytes - Consumed gas: 3264.732 + Consumed gas: 3265.332 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.02625 storage fees ........................... +ꜩ0.02625 diff --git a/tezt/tests/expected/tickets.ml/Alpha- Send tickets in bigmap.out b/tezt/tests/expected/tickets.ml/Alpha- Send tickets in bigmap.out index 40f0aeb6cd30..889c5e34e426 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Send tickets in bigmap.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Send tickets in bigmap.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract receive_tickets_in_big_map.tz transferring 200 from bootstrap1 running file:./tezt/tests/contracts/proto_alpha/receive_tickets_in_big_map.tz --init '{}' --burn-cap 1 Node is bootstrapped. -Estimated gas: 1413.293 units (will add 100 for safety) +Estimated gas: 1413.313 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 '[OPERATION_HASH]' @@ -35,7 +35,7 @@ This sequence of operations was run: Updated big_maps: New map(4) of type (big_map int (ticket string)) Paid storage size diff: 83 bytes - Consumed gas: 1413.293 + Consumed gas: 1413.313 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.02075 storage fees ........................... +ꜩ0.02075 @@ -49,7 +49,7 @@ Contract memorized as receive_tickets_in_big_map.tz. ./octez-client --mode mockup --wait none originate contract send_tickets_in_big_map.tz transferring 200 from bootstrap1 running file:./tezt/tests/contracts/proto_alpha/send_tickets_in_big_map.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 1497.127 units (will add 100 for safety) +Estimated gas: 1497.307 units (will add 100 for safety) Estimated storage: 577 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -123,7 +123,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 320 bytes Paid storage size diff: 320 bytes - Consumed gas: 1497.127 + Consumed gas: 1497.307 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.08 storage fees ........................... +ꜩ0.08 @@ -137,7 +137,7 @@ Contract memorized as send_tickets_in_big_map.tz. ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 30 --storage-limit 1000000 --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 100518.776 units (will add 100 for safety) +Estimated gas: 100554.831 units (will add 100 for safety) Estimated storage: 10767 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -148,13 +148,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: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.010358 + Fee to the baker: ꜩ0.010362 Expected counter: 1 - Gas limit: 100619 + Gas limit: 100655 Storage limit: 10787 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.010358 - payload fees(the block proposer) ....... +ꜩ0.010358 + [PUBLIC_KEY_HASH] ... -ꜩ0.010362 + payload fees(the block proposer) ....... +ꜩ0.010362 Transaction: Amount: ꜩ0 From: [PUBLIC_KEY_HASH] @@ -266,7 +266,7 @@ This sequence of operations was run: Set temp(1)[40] to (Pair 0x01e09c4d537373c6c8ca48684433c792ceb69c9dd200 (Pair "BLUE" 1)) Storage size: 320 bytes Paid storage size diff: 67 bytes - Consumed gas: 50712.463 + Consumed gas: 50736.408 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.01675 storage fees ........................... +ꜩ0.01675 @@ -283,7 +283,7 @@ This sequence of operations was run: Copy temp(1) to map(5) Storage size: 10783 bytes Paid storage size diff: 10700 bytes - Consumed gas: 49807.345 + Consumed gas: 49819.455 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ2.675 storage fees ........................... +ꜩ2.675 diff --git a/tezt/tests/expected/views.ml/Alpha- Run views.out b/tezt/tests/expected/views.ml/Alpha- Run views.out index 112c5f8200ea..23f5e391928f 100644 --- a/tezt/tests/expected/views.ml/Alpha- Run views.out +++ b/tezt/tests/expected/views.ml/Alpha- Run views.out @@ -13,7 +13,7 @@ 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: 1430.716 units (will add 100 for safety) +Estimated gas: 1430.736 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 'ooRkfUHnsTEfQ8SKpGCSop6iptg4dosoRybUNnZ2DD1Zw4RSAFJ' @@ -50,7 +50,7 @@ This sequence of operations was run: KT1PgzSR3Q6vij3daRpdNfQyffBmYK4BkwW7 Storage size: 152 bytes Paid storage size diff: 152 bytes - Consumed gas: 1430.716 + Consumed gas: 1430.736 Balance updates: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.038 storage fees ........................... +ꜩ0.038 @@ -88,7 +88,7 @@ code { } ' --init None --burn-cap 1 Node is bootstrapped. -Estimated gas: 1454.180 units (will add 100 for safety) +Estimated gas: 1454.220 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 'oojctTDMYh47PEbLRq7feuBf77DG8PcPD137Uqi6cCo9My6Wgva' @@ -133,7 +133,7 @@ This sequence of operations was run: KT1BEZadf1sAZ3jjoBJzEgBLhNXpv7WZHDc3 Storage size: 208 bytes Paid storage size diff: 208 bytes - Consumed gas: 1454.180 + Consumed gas: 1454.220 Balance updates: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.052 storage fees ........................... +ꜩ0.052 @@ -145,7 +145,7 @@ Contract memorized as check_caller. ./octez-client --mode mockup --base-dir '' --wait none transfer 1 from bootstrap1 to KT1BEZadf1sAZ3jjoBJzEgBLhNXpv7WZHDc3 --burn-cap 1 --arg '"KT1PgzSR3Q6vij3daRpdNfQyffBmYK4BkwW7"' Node is bootstrapped. -Estimated gas: 4413.444 units (will add 100 for safety) +Estimated gas: 4413.514 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is 'opJoacsqxhcszPfYAgwpBGKqMfoyjZmu9CqBmmiiQtLQB5emLRa' @@ -171,7 +171,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: None Storage size: 208 bytes - Consumed gas: 4414.089 + Consumed gas: 4414.159 Balance updates: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ1 KT1BEZadf1sAZ3jjoBJzEgBLhNXpv7WZHDc3 ... +ꜩ1 @@ -179,7 +179,7 @@ This sequence of operations was run: ./octez-client --mode mockup --base-dir '' --wait none transfer 1 from bootstrap1 to KT1PgzSR3Q6vij3daRpdNfQyffBmYK4BkwW7 --burn-cap 1 Node is bootstrapped. -Estimated gas: 2117.191 units (will add 100 for safety) +Estimated gas: 2117.241 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 'onmjSitNnrxA6xCd4u2Ti6Kzyx8HJJoeYW6gs7rk5wdCZkgY2jE' @@ -205,7 +205,7 @@ This sequence of operations was run: Updated storage: { 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 } Storage size: 179 bytes Paid storage size diff: 27 bytes - Consumed gas: 2117.879 + Consumed gas: 2117.929 Balance updates: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.00675 storage fees ........................... +ꜩ0.00675 @@ -215,7 +215,7 @@ This sequence of operations was run: ./octez-client --mode mockup --base-dir '' --wait none transfer 1 from bootstrap1 to KT1BEZadf1sAZ3jjoBJzEgBLhNXpv7WZHDc3 --burn-cap 1 --arg '"KT1PgzSR3Q6vij3daRpdNfQyffBmYK4BkwW7"' Node is bootstrapped. -Estimated gas: 4417.021 units (will add 100 for safety) +Estimated gas: 4417.116 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 'oof17dNHXXM2Wc6Nv7iM6utwj7NPQPi1oSPdpFWu5PtafGYCAn9' @@ -242,7 +242,7 @@ This sequence of operations was run: Updated storage: (Some 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78) Storage size: 235 bytes Paid storage size diff: 27 bytes - Consumed gas: 4417.666 + Consumed gas: 4417.761 Balance updates: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.00675 storage fees ........................... +ꜩ0.00675 -- GitLab