From 126fca1ec89b929b0cd73022ff0d444beea82685 Mon Sep 17 00:00:00 2001 From: Lean stage0 autoupdater <> Date: Wed, 19 Nov 2025 19:40:23 +0000 Subject: [PATCH] chore: update stage0 --- stage0/src/runtime/object.cpp | 6 +- stage0/src/stdlib_flags.h | 1 - stage0/stdlib/Init/Data/String/Basic.c | 8 +- stage0/stdlib/Init/Data/String/Extra.c | 55 +- stage0/stdlib/Init/System/IO.c | 8 - stage0/stdlib/Init/System/Uri.c | 1 - stage0/stdlib/Lake/Build/Job/Monad.c | 6 - stage0/stdlib/Lake/Build/Job/Register.c | 1 - stage0/stdlib/Lake/Build/Module.c | 1 + stage0/stdlib/Lake/Config/LeanLib.c | 2 + stage0/stdlib/Lake/Config/Module.c | 2 + stage0/stdlib/Lake/DSL/Meta.c | 1 - stage0/stdlib/Lake/Util/Log.c | 1 - stage0/stdlib/Lake/Util/Version.c | 63 +- stage0/stdlib/Lean/Compiler/ExternAttr.c | 20 +- stage0/stdlib/Lean/Compiler/IR/EmitC.c | 4 + stage0/stdlib/Lean/Compiler/IR/EmitLLVM.c | 6 + stage0/stdlib/Lean/Compiler/InitAttr.c | 5 + stage0/stdlib/Lean/Compiler/ModPkgExt.c | 1 + stage0/stdlib/Lean/Compiler/NameMangling.c | 167 +- stage0/stdlib/Lean/CoreM.c | 1 - stage0/stdlib/Lean/Data/EditDistance.c | 78 +- stage0/stdlib/Lean/Data/Json/Parser.c | 168 +- stage0/stdlib/Lean/Data/Json/Stream.c | 4 - stage0/stdlib/Lean/Data/JsonRpc.c | 78 +- stage0/stdlib/Lean/Data/Xml/Parser.c | 380 +- stage0/stdlib/Lean/DocString/Extension.c | 3 + stage0/stdlib/Lean/DocString/Links.c | 23 +- stage0/stdlib/Lean/DocString/Markdown.c | 76 +- stage0/stdlib/Lean/DocString/Parser.c | 49 +- stage0/stdlib/Lean/Elab/BuiltinEvalCommand.c | 1 - stage0/stdlib/Lean/Elab/Command.c | 1 - stage0/stdlib/Lean/Elab/DocString.c | 2 + stage0/stdlib/Lean/Elab/DocString/Builtin.c | 42 +- stage0/stdlib/Lean/Elab/Tactic/Do/VCGen.c | 20772 +++++--- stage0/stdlib/Lean/Environment.c | 2 +- stage0/stdlib/Lean/ErrorExplanation.c | 52 +- stage0/stdlib/Lean/Language/Lean.c | 1 - stage0/stdlib/Lean/Meta/Basic.c | 1 - stage0/stdlib/Lean/Meta/Match/MatchEqs.c | 14352 +++--- stage0/stdlib/Lean/Meta/Match/MatchEqsExt.c | 246 +- .../Lean/Meta/Match/MatcherApp/Transform.c | 25370 +++++---- stage0/stdlib/Lean/Meta/Match/MatcherInfo.c | 2921 +- stage0/stdlib/Lean/Meta/SizeOf.c | 2097 +- stage0/stdlib/Lean/Meta/Tactic/FunInd.c | 42436 ++++++++++------ stage0/stdlib/Lean/Meta/Tactic/Split.c | 504 +- .../Lean/Server/FileWorker/ExampleHover.c | 46 +- .../Lean/Server/FileWorker/RequestHandling.c | 12 +- stage0/stdlib/Lean/Server/Test/Runner.c | 32 +- stage0/stdlib/Std/Internal/Parsec/String.c | 59 +- stage0/stdlib/Std/Time/Format/Basic.c | 170 +- 51 files changed, 70857 insertions(+), 39481 deletions(-) diff --git a/stage0/src/runtime/object.cpp b/stage0/src/runtime/object.cpp index 980725a908..bee8738d62 100644 --- a/stage0/src/runtime/object.cpp +++ b/stage0/src/runtime/object.cpp @@ -1952,8 +1952,10 @@ extern "C" LEAN_EXPORT obj_res lean_decode_lossy_utf8(b_obj_arg a) { return lean_mk_string_from_bytes(reinterpret_cast(lean_sarray_cptr(a)), lean_sarray_size(a)); } -extern "C" LEAN_EXPORT obj_res lean_string_from_utf8_unchecked(b_obj_arg a) { - return lean_mk_string_from_bytes_unchecked(reinterpret_cast(lean_sarray_cptr(a)), lean_sarray_size(a)); +extern "C" LEAN_EXPORT obj_res lean_string_from_utf8_unchecked(obj_arg a) { + obj_res ret = lean_mk_string_from_bytes_unchecked(reinterpret_cast(lean_sarray_cptr(a)), lean_sarray_size(a)); + lean_dec(a); + return ret; } extern "C" LEAN_EXPORT uint8 lean_string_validate_utf8(b_obj_arg a) { diff --git a/stage0/src/stdlib_flags.h b/stage0/src/stdlib_flags.h index ad491b0de1..79a0e58edd 100644 --- a/stage0/src/stdlib_flags.h +++ b/stage0/src/stdlib_flags.h @@ -1,4 +1,3 @@ -// update me! #include "util/options.h" namespace lean { diff --git a/stage0/stdlib/Init/Data/String/Basic.c b/stage0/stdlib/Init/Data/String/Basic.c index bc69f4af0c..71360ce496 100644 --- a/stage0/stdlib/Init/Data/String/Basic.c +++ b/stage0/stdlib/Init/Data/String/Basic.c @@ -1331,6 +1331,7 @@ _start: { uint8_t x_2; lean_object* x_3; x_2 = lean_string_validate_utf8(x_1); +lean_dec_ref(x_1); x_3 = lean_box(x_2); return x_3; } @@ -1463,6 +1464,7 @@ _start: { uint8_t x_2; lean_object* x_3; x_2 = l_instDecidableIsValidUTF8(x_1); +lean_dec_ref(x_1); x_3 = lean_box(x_2); return x_3; } @@ -1471,7 +1473,6 @@ LEAN_EXPORT lean_object* l_String_fromUTF8_x3f(lean_object* x_1) { _start: { uint8_t x_2; -lean_inc_ref(x_1); x_2 = lean_string_validate_utf8(x_1); if (x_2 == 0) { @@ -1539,7 +1540,6 @@ LEAN_EXPORT lean_object* l_String_fromUTF8_x21(lean_object* x_1) { _start: { uint8_t x_2; -lean_inc_ref(x_1); x_2 = lean_string_validate_utf8(x_1); if (x_2 == 0) { @@ -3286,6 +3286,8 @@ _start: { lean_object* x_4; x_4 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); +lean_dec_ref(x_1); return x_4; } } @@ -3294,6 +3296,8 @@ _start: { lean_object* x_4; x_4 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); +lean_dec_ref(x_1); return x_4; } } diff --git a/stage0/stdlib/Init/Data/String/Extra.c b/stage0/stdlib/Init/Data/String/Extra.c index 5b6e660712..02441781e7 100644 --- a/stage0/stdlib/Init/Data/String/Extra.c +++ b/stage0/stdlib/Init/Data/String/Extra.c @@ -19,6 +19,7 @@ LEAN_EXPORT lean_object* l___private_Init_Data_String_Extra_0__String_removeNumL uint8_t lean_byte_array_fget(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_String_toNat_x21(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces_consumeSpaces_match__1_splitter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces___boxed(lean_object*, lean_object*); uint32_t lean_uint8_to_uint32(uint8_t); LEAN_EXPORT lean_object* l___private_Init_Data_String_Extra_0__String_findLeadingSpacesSize_findNextLine(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_String_removeLeadingSpaces(lean_object*); @@ -47,6 +48,7 @@ LEAN_EXPORT lean_object* l_String_utf8DecodeChar_x3f___boxed(lean_object*, lean_ LEAN_EXPORT uint8_t l_String_Slice_find_x3f___at___00__private_Init_Data_String_Extra_0__String_findLeadingSpacesSize_spec__0___redArg___lam__0(uint32_t); LEAN_EXPORT lean_object* l_String_Slice_find_x3f___at___00__private_Init_Data_String_Extra_0__String_findLeadingSpacesSize_spec__0(lean_object*, lean_object*); uint8_t l_String_anyAux___at___00String_toNat_x3f_spec__1(uint8_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces_consumeSpaces___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces_consumeSpaces_match__1_splitter___redArg(lean_object*, lean_object*, lean_object*); uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_String_Slice_find_x3f___at___00__private_Init_Data_String_Extra_0__String_findLeadingSpacesSize_spec__0___redArg___lam__0___boxed(lean_object*); @@ -83,6 +85,7 @@ LEAN_EXPORT lean_object* l_String_utf8DecodeChar_x3f(lean_object*, lean_object*) uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___00String_toNat_x21_spec__0(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces_saveLine___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_byte_array_size(lean_object*); uint8_t lean_uint8_dec_eq(uint8_t, uint8_t); LEAN_EXPORT lean_object* l_panic___at___00String_toNat_x21_spec__0(lean_object* x_1) { @@ -555,6 +558,7 @@ _start: { uint8_t x_2; lean_object* x_3; x_2 = l_String_validateUTF8(x_1); +lean_dec_ref(x_1); x_3 = lean_box(x_2); return x_3; } @@ -595,8 +599,8 @@ x_10 = lean_uint32_dec_eq(x_7, x_9); if (x_10 == 0) { lean_object* x_11; uint8_t x_12; -lean_inc_ref(x_1); x_11 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); x_12 = lean_nat_dec_le(x_3, x_4); if (x_12 == 0) { @@ -617,8 +621,8 @@ else { lean_object* x_15; lean_object* x_16; lean_dec(x_3); -lean_inc_ref(x_1); x_15 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); x_16 = l___private_Init_Data_String_Extra_0__String_findLeadingSpacesSize_findNextLine(x_1, x_15, x_4); return x_16; } @@ -626,8 +630,8 @@ return x_16; else { lean_object* x_17; lean_object* x_18; lean_object* x_19; -lean_inc_ref(x_1); x_17 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_add(x_3, x_18); lean_dec(x_3); @@ -641,7 +645,6 @@ else { lean_dec(x_3); lean_dec(x_2); -lean_dec_ref(x_1); lean_inc(x_4); return x_4; } @@ -663,16 +666,16 @@ x_8 = lean_uint32_dec_eq(x_6, x_7); if (x_8 == 0) { lean_object* x_9; -lean_inc_ref(x_1); x_9 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); x_2 = x_9; goto _start; } else { lean_object* x_11; lean_object* x_12; lean_object* x_13; -lean_inc_ref(x_1); x_11 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); x_12 = lean_unsigned_to_nat(0u); x_13 = l___private_Init_Data_String_Extra_0__String_findLeadingSpacesSize_consumeSpaces(x_1, x_11, x_12, x_3); return x_13; @@ -681,7 +684,6 @@ return x_13; else { lean_dec(x_2); -lean_dec_ref(x_1); lean_inc(x_3); return x_3; } @@ -693,6 +695,7 @@ _start: lean_object* x_5; x_5 = l___private_Init_Data_String_Extra_0__String_findLeadingSpacesSize_consumeSpaces(x_1, x_2, x_3, x_4); lean_dec(x_4); +lean_dec_ref(x_1); return x_5; } } @@ -702,6 +705,7 @@ _start: lean_object* x_4; x_4 = l___private_Init_Data_String_Extra_0__String_findLeadingSpacesSize_findNextLine(x_1, x_2, x_3); lean_dec(x_3); +lean_dec_ref(x_1); return x_4; } } @@ -926,6 +930,7 @@ lean_dec_ref(x_6); x_8 = lean_string_length(x_1); x_9 = l___private_Init_Data_String_Extra_0__String_findLeadingSpacesSize_consumeSpaces(x_1, x_7, x_3, x_8); lean_dec(x_8); +lean_dec_ref(x_1); return x_9; } } @@ -1035,8 +1040,8 @@ return x_14; else { lean_object* x_15; -lean_inc_ref(x_3); x_15 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_2 = x_12; x_4 = x_15; goto _start; @@ -1046,7 +1051,6 @@ goto _start; else { lean_dec(x_4); -lean_dec_ref(x_3); lean_dec(x_2); lean_dec(x_1); return x_5; @@ -1070,8 +1074,8 @@ x_9 = lean_uint32_dec_eq(x_7, x_8); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; -lean_inc_ref(x_2); x_10 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); x_11 = lean_string_push(x_4, x_7); x_3 = x_10; x_4 = x_11; @@ -1080,8 +1084,8 @@ goto _start; else { lean_object* x_13; lean_object* x_14; lean_object* x_15; -lean_inc_ref(x_2); x_13 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); x_14 = lean_string_push(x_4, x_8); lean_inc(x_1); x_15 = l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces_consumeSpaces(x_1, x_1, x_2, x_13, x_14); @@ -1091,12 +1095,29 @@ return x_15; else { lean_dec(x_3); -lean_dec_ref(x_2); lean_dec(x_1); return x_4; } } } +LEAN_EXPORT lean_object* l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces_consumeSpaces___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces_consumeSpaces(x_1, x_2, x_3, x_4, x_5); +lean_dec_ref(x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces_saveLine___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces_saveLine(x_1, x_2, x_3, x_4); +lean_dec_ref(x_2); +return x_5; +} +} LEAN_EXPORT lean_object* l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces_consumeSpaces_match__1_splitter___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -1167,6 +1188,15 @@ x_5 = l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces_consum return x_5; } } +LEAN_EXPORT lean_object* l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces(x_1, x_2); +lean_dec_ref(x_2); +return x_3; +} +} LEAN_EXPORT lean_object* l_String_removeLeadingSpaces(lean_object* x_1) { _start: { @@ -1179,6 +1209,7 @@ if (x_4 == 0) { lean_object* x_5; x_5 = l___private_Init_Data_String_Extra_0__String_removeNumLeadingSpaces(x_2, x_1); +lean_dec_ref(x_1); return x_5; } else diff --git a/stage0/stdlib/Init/System/IO.c b/stage0/stdlib/Init/System/IO.c index 11c784c3d9..deb84aa16f 100644 --- a/stage0/stdlib/Init/System/IO.c +++ b/stage0/stdlib/Init/System/IO.c @@ -6026,7 +6026,6 @@ if (x_4 == 0) { lean_object* x_5; uint8_t x_6; x_5 = lean_ctor_get(x_3, 0); -lean_inc(x_5); x_6 = lean_string_validate_utf8(x_5); if (x_6 == 0) { @@ -6051,7 +6050,6 @@ lean_object* x_9; uint8_t x_10; x_9 = lean_ctor_get(x_3, 0); lean_inc(x_9); lean_dec(x_3); -lean_inc(x_9); x_10 = lean_string_validate_utf8(x_9); if (x_10 == 0) { @@ -8980,7 +8978,6 @@ if (x_4 == 0) { lean_object* x_5; uint8_t x_6; x_5 = lean_ctor_get(x_3, 0); -lean_inc(x_5); x_6 = lean_string_validate_utf8(x_5); if (x_6 == 0) { @@ -9010,7 +9007,6 @@ lean_object* x_13; uint8_t x_14; x_13 = lean_ctor_get(x_3, 0); lean_inc(x_13); lean_dec(x_3); -lean_inc(x_13); x_14 = lean_string_validate_utf8(x_13); if (x_14 == 0) { @@ -11924,7 +11920,6 @@ x_9 = lean_st_ref_set(x_1, x_8); x_10 = l_ByteArray_extract(x_4, x_5, x_7); lean_dec(x_7); lean_dec_ref(x_4); -lean_inc_ref(x_10); x_11 = lean_string_validate_utf8(x_10); if (x_11 == 0) { @@ -12207,7 +12202,6 @@ if (x_4 == 0) { lean_object* x_5; uint8_t x_6; x_5 = lean_ctor_get(x_3, 0); -lean_inc(x_5); x_6 = lean_string_validate_utf8(x_5); if (x_6 == 0) { @@ -12232,7 +12226,6 @@ lean_object* x_9; uint8_t x_10; x_9 = lean_ctor_get(x_3, 0); lean_inc(x_9); lean_dec(x_3); -lean_inc(x_9); x_10 = lean_string_validate_utf8(x_9); if (x_10 == 0) { @@ -12582,7 +12575,6 @@ lean_object* x_4; lean_object* x_8; uint8_t x_9; x_8 = lean_ctor_get(x_3, 0); lean_inc_ref(x_8); lean_dec_ref(x_3); -lean_inc_ref(x_8); x_9 = lean_string_validate_utf8(x_8); if (x_9 == 0) { diff --git a/stage0/stdlib/Init/System/Uri.c b/stage0/stdlib/Init/System/Uri.c index 8a8bca3db3..07783e4104 100644 --- a/stage0/stdlib/Init/System/Uri.c +++ b/stage0/stdlib/Init/System/Uri.c @@ -668,7 +668,6 @@ lean_dec(x_3); x_7 = lean_ctor_get(x_6, 0); lean_inc(x_7); lean_dec_ref(x_6); -lean_inc(x_7); x_8 = lean_string_validate_utf8(x_7); if (x_8 == 0) { diff --git a/stage0/stdlib/Lake/Build/Job/Monad.c b/stage0/stdlib/Lake/Build/Job/Monad.c index 5a479c9e0b..4c68651371 100644 --- a/stage0/stdlib/Lake/Build/Job/Monad.c +++ b/stage0/stdlib/Lake/Build/Job/Monad.c @@ -3482,7 +3482,6 @@ x_40 = lean_ctor_get(x_35, 2); x_41 = lean_ctor_get(x_36, 0); lean_inc_ref(x_41); lean_dec_ref(x_36); -lean_inc_ref(x_41); x_73 = lean_string_validate_utf8(x_41); if (x_73 == 0) { @@ -3746,7 +3745,6 @@ x_35 = lean_ctor_get(x_30, 2); x_61 = lean_ctor_get(x_31, 0); lean_inc_ref(x_61); lean_dec_ref(x_31); -lean_inc_ref(x_61); x_62 = lean_string_validate_utf8(x_61); if (x_62 == 0) { @@ -4338,7 +4336,6 @@ x_41 = lean_ctor_get(x_36, 2); x_67 = lean_ctor_get(x_37, 0); lean_inc_ref(x_67); lean_dec_ref(x_37); -lean_inc_ref(x_67); x_68 = lean_string_validate_utf8(x_67); if (x_68 == 0) { @@ -4521,7 +4518,6 @@ x_99 = lean_ctor_get(x_94, 2); x_114 = lean_ctor_get(x_95, 0); lean_inc_ref(x_114); lean_dec_ref(x_95); -lean_inc_ref(x_114); x_115 = lean_string_validate_utf8(x_114); if (x_115 == 0) { @@ -5038,7 +5034,6 @@ x_46 = lean_ctor_get(x_41, 2); x_47 = lean_ctor_get(x_42, 0); lean_inc_ref(x_47); lean_dec_ref(x_42); -lean_inc_ref(x_47); x_79 = lean_string_validate_utf8(x_47); if (x_79 == 0) { @@ -5232,7 +5227,6 @@ x_105 = lean_ctor_get(x_100, 2); x_106 = lean_ctor_get(x_101, 0); lean_inc_ref(x_106); lean_dec_ref(x_101); -lean_inc_ref(x_106); x_125 = lean_string_validate_utf8(x_106); if (x_125 == 0) { diff --git a/stage0/stdlib/Lake/Build/Job/Register.c b/stage0/stdlib/Lake/Build/Job/Register.c index 992af589ce..3b1390670b 100644 --- a/stage0/stdlib/Lake/Build/Job/Register.c +++ b/stage0/stdlib/Lake/Build/Job/Register.c @@ -905,7 +905,6 @@ lean_dec(x_12); x_73 = lean_ctor_get(x_72, 0); lean_inc_ref(x_73); lean_dec_ref(x_72); -lean_inc_ref(x_73); x_90 = lean_string_validate_utf8(x_73); if (x_90 == 0) { diff --git a/stage0/stdlib/Lake/Build/Module.c b/stage0/stdlib/Lake/Build/Module.c index e1fc774fa9..2906e7d130 100644 --- a/stage0/stdlib/Lake/Build/Module.c +++ b/stage0/stdlib/Lake/Build/Module.c @@ -32793,6 +32793,7 @@ x_38 = lean_ctor_get(x_7, 8); x_39 = lean_ctor_get(x_7, 9); x_40 = l_Lake_Package_id_x3f(x_4); x_41 = l_Lean_mkModuleInitializationStem(x_5, x_40); +lean_dec(x_40); x_42 = l_System_FilePath_normalize(x_34); x_43 = l_Lake_joinRelative(x_27, x_42); x_44 = l_System_FilePath_normalize(x_35); diff --git a/stage0/stdlib/Lake/Config/LeanLib.c b/stage0/stdlib/Lake/Config/LeanLib.c index 541aaa988b..6e483255e2 100644 --- a/stage0/stdlib/Lake/Config/LeanLib.c +++ b/stage0/stdlib/Lake/Config/LeanLib.c @@ -642,6 +642,7 @@ lean_dec_ref(x_10); lean_inc_ref(x_8); x_19 = l_Lake_Package_id_x3f(x_8); x_20 = l_Lean_mkModuleInitializationStem(x_9, x_19); +lean_dec(x_19); x_12 = x_20; goto block_15; } @@ -821,6 +822,7 @@ x_10 = lean_array_fget(x_4, x_9); lean_dec_ref(x_4); x_11 = l_Lake_Package_id_x3f(x_3); x_12 = l_Lean_mkModuleInitializationStem(x_10, x_11); +lean_dec(x_11); x_13 = lean_string_dec_eq(x_8, x_12); lean_dec_ref(x_12); lean_dec_ref(x_8); diff --git a/stage0/stdlib/Lake/Config/Module.c b/stage0/stdlib/Lake/Config/Module.c index 21c8adeda6..5e64399eaf 100644 --- a/stage0/stdlib/Lake/Config/Module.c +++ b/stage0/stdlib/Lake/Config/Module.c @@ -2670,6 +2670,7 @@ lean_inc_ref(x_4); lean_dec_ref(x_2); x_5 = l_Lake_Package_id_x3f(x_4); x_6 = l_Lean_mkModuleInitializationStem(x_3, x_5); +lean_dec(x_5); return x_6; } } @@ -2712,6 +2713,7 @@ x_11 = l_System_FilePath_normalize(x_8); x_12 = l_Lake_joinRelative(x_10, x_11); x_13 = l_Lake_Package_id_x3f(x_3); x_14 = l_Lean_mkModuleInitializationStem(x_5, x_13); +lean_dec(x_13); x_15 = l_Lake_Module_dynlibFile___closed__0; x_16 = lean_string_append(x_14, x_15); x_17 = l_Lake_Module_dynlibFile___closed__1; diff --git a/stage0/stdlib/Lake/DSL/Meta.c b/stage0/stdlib/Lake/DSL/Meta.c index a6888675f5..621ca02dc8 100644 --- a/stage0/stdlib/Lake/DSL/Meta.c +++ b/stage0/stdlib/Lake/DSL/Meta.c @@ -2507,7 +2507,6 @@ lean_dec(x_18); x_26 = lean_ctor_get(x_25, 0); lean_inc_ref(x_26); lean_dec_ref(x_25); -lean_inc_ref(x_26); x_27 = lean_string_validate_utf8(x_26); if (x_27 == 0) { diff --git a/stage0/stdlib/Lake/Util/Log.c b/stage0/stdlib/Lake/Util/Log.c index 397009cbb0..60e174d1d4 100644 --- a/stage0/stdlib/Lake/Util/Log.c +++ b/stage0/stdlib/Lake/Util/Log.c @@ -7749,7 +7749,6 @@ lean_object* x_8; lean_object* x_24; uint8_t x_25; x_24 = lean_ctor_get(x_7, 0); lean_inc_ref(x_24); lean_dec_ref(x_7); -lean_inc_ref(x_24); x_25 = lean_string_validate_utf8(x_24); if (x_25 == 0) { diff --git a/stage0/stdlib/Lake/Util/Version.c b/stage0/stdlib/Lake/Util/Version.c index bfbbf38689..cc0eae6407 100644 --- a/stage0/stdlib/Lake/Util/Version.c +++ b/stage0/stdlib/Lake/Util/Version.c @@ -94,6 +94,7 @@ LEAN_EXPORT lean_object* l___private_Lake_Util_Version_0__Lake_ComparatorOp_pars uint8_t l_Lake_instDecidableEqDate_decEq(lean_object*, lean_object*); static lean_object* l___private_Lake_Util_Version_0__Lake_ComparatorOp_parseM___closed__1; LEAN_EXPORT lean_object* l_Lake_instOrdSemVerCore; +LEAN_EXPORT lean_object* l___private_Lake_Util_Version_0__Lake_parseSpecialDescr_x3f_nextUntilWhitespace___boxed(lean_object*, lean_object*); static lean_object* l___private_Lake_Util_Version_0__Lake_SemVerCore_parseM___closed__5; LEAN_EXPORT lean_object* l_Lake_VerComparator_instInhabited; uint8_t lean_usize_dec_eq(size_t, size_t); @@ -246,6 +247,7 @@ LEAN_EXPORT lean_object* l___private_Lake_Util_Version_0__Lake_VerComponent_none LEAN_EXPORT uint8_t l_Lake_ToolchainVer_decLt(lean_object*, lean_object*); static lean_object* l_Lake_instReprSemVerCore_repr___redArg___closed__0; static lean_object* l_Lake_ToolchainVer_ofString___closed__4; +LEAN_EXPORT lean_object* l___private_Lake_Util_Version_0__Lake_parseSpecialDescr___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_instInhabitedSemVerCore; static lean_object* l_Lake_VerComparator_parse___closed__0; lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); @@ -447,6 +449,7 @@ static lean_object* l_Lake_instReprStdVer_repr___redArg___closed__3; static lean_object* l_Lake_instReprSemVerCore_repr___redArg___closed__9; lean_object* lean_string_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lake_Util_Version_0__Lake_runVerParse___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lake_Util_Version_0__Lake_parseSpecialDescr_x3f___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_SemVerCore_instMax; LEAN_EXPORT lean_object* l_Lake_ComparatorOp_noConfusion___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_ToolchainVer_decLe___boxed(lean_object*, lean_object*); @@ -548,8 +551,8 @@ lean_ctor_set(x_36, 0, x_1); lean_ctor_set(x_36, 1, x_3); lean_ctor_set(x_36, 2, x_4); x_37 = lean_array_push(x_2, x_36); -lean_inc_ref(x_1); x_38 = lean_string_utf8_next_fast(x_1, x_4); +lean_dec(x_4); lean_inc(x_38); x_2 = x_37; x_3 = x_38; @@ -657,8 +660,8 @@ return x_42; block_7: { lean_object* x_5; -lean_inc_ref(x_1); x_5 = lean_string_utf8_next_fast(x_1, x_4); +lean_dec(x_4); x_4 = x_5; goto _start; } @@ -1173,14 +1176,12 @@ goto block_6; } else { -lean_dec_ref(x_1); return x_2; } } } else { -lean_dec_ref(x_1); return x_2; } block_6: @@ -1188,19 +1189,27 @@ block_6: if (x_3 == 0) { lean_object* x_4; -lean_inc_ref(x_1); x_4 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); x_2 = x_4; goto _start; } else { -lean_dec_ref(x_1); return x_2; } } } } +LEAN_EXPORT lean_object* l___private_Lake_Util_Version_0__Lake_parseSpecialDescr_x3f_nextUntilWhitespace___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l___private_Lake_Util_Version_0__Lake_parseSpecialDescr_x3f_nextUntilWhitespace(x_1, x_2); +lean_dec_ref(x_1); +return x_3; +} +} LEAN_EXPORT lean_object* l___private_Lake_Util_Version_0__Lake_parseSpecialDescr_x3f(lean_object* x_1, lean_object* x_2) { _start: { @@ -1217,7 +1226,6 @@ x_7 = lean_uint32_dec_eq(x_5, x_6); if (x_7 == 0) { lean_object* x_8; lean_object* x_9; -lean_dec_ref(x_1); x_8 = lean_box(0); x_9 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_9, 0, x_8); @@ -1227,14 +1235,12 @@ return x_9; else { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -lean_inc_ref(x_1); x_10 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); lean_inc(x_10); -lean_inc_ref(x_1); x_11 = l___private_Lake_Util_Version_0__Lake_parseSpecialDescr_x3f_nextUntilWhitespace(x_1, x_10); x_12 = lean_string_utf8_extract(x_1, x_10, x_11); lean_dec(x_10); -lean_dec_ref(x_1); x_13 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_13, 0, x_12); x_14 = lean_alloc_ctor(0, 2, 0); @@ -1246,7 +1252,6 @@ return x_14; else { lean_object* x_15; lean_object* x_16; -lean_dec_ref(x_1); x_15 = lean_box(0); x_16 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_16, 0, x_15); @@ -1255,6 +1260,15 @@ return x_16; } } } +LEAN_EXPORT lean_object* l___private_Lake_Util_Version_0__Lake_parseSpecialDescr_x3f___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l___private_Lake_Util_Version_0__Lake_parseSpecialDescr_x3f(x_1, x_2); +lean_dec_ref(x_1); +return x_3; +} +} static lean_object* _init_l___private_Lake_Util_Version_0__Lake_parseSpecialDescr___closed__0() { _start: { @@ -1371,6 +1385,15 @@ return x_25; } } } +LEAN_EXPORT lean_object* l___private_Lake_Util_Version_0__Lake_parseSpecialDescr___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l___private_Lake_Util_Version_0__Lake_parseSpecialDescr(x_1, x_2); +lean_dec_ref(x_1); +return x_3; +} +} static lean_object* _init_l___private_Lake_Util_Version_0__Lake_runVerParse___redArg___closed__0() { _start: { @@ -3160,6 +3183,7 @@ x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec_ref(x_3); x_6 = l___private_Lake_Util_Version_0__Lake_parseSpecialDescr(x_1, x_5); +lean_dec_ref(x_1); if (lean_obj_tag(x_6) == 0) { uint8_t x_7; @@ -6780,6 +6804,7 @@ x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec_ref(x_6); x_9 = l___private_Lake_Util_Version_0__Lake_parseSpecialDescr_x3f(x_1, x_8); +lean_dec_ref(x_1); x_10 = lean_ctor_get(x_9, 0); lean_inc(x_10); if (lean_obj_tag(x_10) == 1) @@ -8309,6 +8334,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; x_8 = lean_ctor_get(x_6, 0); x_9 = lean_ctor_get(x_6, 1); x_10 = l___private_Lake_Util_Version_0__Lake_parseSpecialDescr(x_1, x_9); +lean_dec_ref(x_1); if (lean_obj_tag(x_10) == 0) { uint8_t x_11; @@ -9126,6 +9152,7 @@ lean_inc(x_254); lean_inc(x_253); lean_dec(x_6); x_255 = l___private_Lake_Util_Version_0__Lake_parseSpecialDescr(x_1, x_254); +lean_dec_ref(x_1); if (lean_obj_tag(x_255) == 0) { lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; uint8_t x_261; @@ -9634,6 +9661,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; x_8 = lean_ctor_get(x_6, 0); x_9 = lean_ctor_get(x_6, 1); x_10 = l___private_Lake_Util_Version_0__Lake_parseSpecialDescr(x_1, x_9); +lean_dec_ref(x_1); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -10299,6 +10327,7 @@ lean_inc(x_191); lean_inc(x_190); lean_dec(x_6); x_192 = l___private_Lake_Util_Version_0__Lake_parseSpecialDescr(x_1, x_191); +lean_dec_ref(x_1); if (lean_obj_tag(x_192) == 0) { lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; @@ -11807,8 +11836,8 @@ return x_38; else { lean_object* x_39; uint8_t x_40; -lean_inc_ref(x_1); x_39 = lean_string_utf8_next_fast(x_1, x_5); +lean_dec(x_5); x_40 = lean_nat_dec_eq(x_39, x_12); lean_dec(x_12); if (x_40 == 0) @@ -11840,8 +11869,8 @@ if (x_47 == 0) lean_object* x_48; lean_object* x_49; lean_object* x_50; x_48 = lean_array_push(x_3, x_4); x_49 = l___private_Lake_Util_Version_0__Lake_VerRange_parseM_go___closed__2; -lean_inc_ref(x_1); x_50 = lean_string_utf8_next_fast(x_1, x_39); +lean_dec(x_39); x_2 = x_24; x_3 = x_48; x_4 = x_49; @@ -11882,8 +11911,8 @@ lean_dec(x_12); if (x_2 == 0) { lean_object* x_56; -lean_inc_ref(x_1); x_56 = lean_string_utf8_next_fast(x_1, x_5); +lean_dec(x_5); x_2 = x_24; x_5 = x_56; goto _start; @@ -11980,8 +12009,8 @@ else { lean_object* x_80; lean_object* x_81; lean_dec(x_12); -lean_inc_ref(x_1); x_80 = lean_string_utf8_next_fast(x_1, x_5); +lean_dec(x_5); lean_inc_ref(x_1); x_81 = l___private_Lake_Util_Version_0__Lake_VerRange_parseM_parseTilde(x_1, x_4, x_80); if (lean_obj_tag(x_81) == 0) @@ -12027,8 +12056,8 @@ else { lean_object* x_89; lean_object* x_90; lean_dec(x_12); -lean_inc_ref(x_1); x_89 = lean_string_utf8_next_fast(x_1, x_5); +lean_dec(x_5); lean_inc_ref(x_1); x_90 = l___private_Lake_Util_Version_0__Lake_VerRange_parseM_parseCaret(x_1, x_4, x_89); if (lean_obj_tag(x_90) == 0) @@ -12183,8 +12212,8 @@ return x_7; block_11: { lean_object* x_9; -lean_inc_ref(x_1); x_9 = lean_string_utf8_next_fast(x_1, x_5); +lean_dec(x_5); x_5 = x_9; goto _start; } diff --git a/stage0/stdlib/Lean/Compiler/ExternAttr.c b/stage0/stdlib/Lean/Compiler/ExternAttr.c index 84a1474f24..e84dd2c35a 100644 --- a/stage0/stdlib/Lean/Compiler/ExternAttr.c +++ b/stage0/stdlib/Lean/Compiler/ExternAttr.c @@ -167,6 +167,7 @@ lean_object* l_List_getD___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkSimpleFnCall___closed__2; LEAN_EXPORT lean_object* l_Lean_ExternEntry_ctorIdx___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_instHashableExternEntry; +LEAN_EXPORT lean_object* l___private_Lean_Compiler_ExternAttr_0__Lean_parseOptNum___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_initFn___lam__2_00___x40_Lean_Compiler_ExternAttr_4197872175____hygCtx___hyg_2____boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_ExternEntry_ctorIdx(lean_object* x_1) { _start: @@ -1569,7 +1570,6 @@ x_6 = lean_nat_dec_eq(x_1, x_5); if (x_6 == 1) { lean_object* x_7; -lean_dec_ref(x_2); lean_dec(x_1); x_7 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_7, 0, x_3); @@ -1610,7 +1610,6 @@ if (x_13 == 0) { lean_object* x_14; lean_dec(x_11); -lean_dec_ref(x_2); x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_3); lean_ctor_set(x_14, 1, x_4); @@ -1619,8 +1618,8 @@ return x_14; else { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -lean_inc_ref(x_2); x_15 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); x_16 = lean_unsigned_to_nat(10u); x_17 = lean_nat_mul(x_4, x_16); lean_dec(x_4); @@ -1641,7 +1640,6 @@ goto _start; else { lean_object* x_28; -lean_dec_ref(x_2); lean_dec(x_1); x_28 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_28, 0, x_3); @@ -1651,6 +1649,15 @@ return x_28; } } } +LEAN_EXPORT lean_object* l___private_Lean_Compiler_ExternAttr_0__Lean_parseOptNum___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Compiler_ExternAttr_0__Lean_parseOptNum(x_1, x_2, x_3, x_4); +lean_dec_ref(x_2); +return x_5; +} +} static lean_object* _init_l_Lean_expandExternPatternAux___closed__0() { _start: { @@ -1696,11 +1703,10 @@ else if (x_9 == 0) { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -lean_inc_ref(x_3); x_19 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); lean_inc_ref(x_3); x_20 = l_String_ValidPos_remainingBytes(x_3, x_19); -lean_inc_ref(x_3); x_21 = l___private_Lean_Compiler_ExternAttr_0__Lean_parseOptNum(x_20, x_3, x_19, x_6); x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); @@ -1726,8 +1732,8 @@ goto block_16; block_16: { lean_object* x_13; lean_object* x_14; -lean_inc_ref(x_3); x_13 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_14 = lean_string_push(x_5, x_12); x_2 = x_11; x_4 = x_13; diff --git a/stage0/stdlib/Lean/Compiler/IR/EmitC.c b/stage0/stdlib/Lean/Compiler/IR/EmitC.c index 8a417e64ce..2cd735392c 100644 --- a/stage0/stdlib/Lean/Compiler/IR/EmitC.c +++ b/stage0/stdlib/Lean/Compiler/IR/EmitC.c @@ -805,6 +805,7 @@ x_9 = lean_box(0); x_10 = l_Lean_PersistentEnvExtension_getState___redArg(x_8, x_5, x_3, x_7, x_9); lean_dec(x_7); x_11 = l_Lean_mkModuleInitializationFunctionName(x_4, x_10); +lean_dec(x_10); x_12 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_12, 0, x_11); lean_ctor_set(x_12, 1, x_2); @@ -3334,6 +3335,7 @@ x_94 = l_Lean_PersistentEnvExtension_getState___redArg(x_92, x_85, x_83, x_87, x lean_dec(x_87); lean_inc(x_84); x_95 = l_Lean_mkModuleInitializationFunctionName(x_84, x_94); +lean_dec(x_94); x_96 = l_Lean_IR_EmitC_emitMainFn___closed__18; x_97 = lean_string_append(x_96, x_95); lean_dec_ref(x_95); @@ -13761,6 +13763,7 @@ x_13 = lean_array_uset(x_4, x_3, x_12); x_14 = l_Lean_Environment_getModulePackageByIdx_x3f(x_1, x_11); lean_dec(x_11); x_15 = l_Lean_mkModuleInitializationFunctionName(x_9, x_14); +lean_dec(x_14); x_16 = l___private_Init_Data_Nat_Control_0__Nat_forM_loop___at___00Lean_IR_EmitC_emitDeclAux_spec__0___redArg___closed__0; x_17 = lean_string_append(x_16, x_15); x_18 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_EmitC_emitInitFn_spec__0___redArg___closed__0; @@ -14089,6 +14092,7 @@ x_16 = l_Lean_PersistentEnvExtension_getState___redArg(x_14, x_11, x_3, x_13, x_ lean_dec(x_13); lean_inc(x_4); x_17 = l_Lean_mkModuleInitializationFunctionName(x_4, x_16); +lean_dec(x_16); x_18 = l_Lean_IR_EmitC_emitInitFn___closed__0; x_19 = l_Lean_IR_EmitC_emitInitFn___closed__1; x_20 = lean_string_append(x_19, x_17); diff --git a/stage0/stdlib/Lean/Compiler/IR/EmitLLVM.c b/stage0/stdlib/Lean/Compiler/IR/EmitLLVM.c index b81c9f63e1..10ddc628f0 100644 --- a/stage0/stdlib/Lean/Compiler/IR/EmitLLVM.c +++ b/stage0/stdlib/Lean/Compiler/IR/EmitLLVM.c @@ -39463,6 +39463,7 @@ x_13 = lean_unbox_usize(x_6); lean_dec(x_6); x_14 = l_Lean_IR_EmitLLVM_callModInitFn___redArg(x_10, x_11, x_3, x_4, x_12, x_13, x_7, x_8); lean_dec_ref(x_8); +lean_dec(x_4); return x_14; } } @@ -39481,6 +39482,7 @@ lean_dec(x_6); x_15 = l_Lean_IR_EmitLLVM_callModInitFn(x_11, x_12, x_3, x_4, x_13, x_14, x_7, x_8, x_9); lean_dec_ref(x_9); lean_dec(x_8); +lean_dec(x_4); return x_15; } } @@ -39629,6 +39631,7 @@ x_34 = lean_string_append(x_32, x_33); x_35 = lean_unbox_usize(x_26); lean_dec(x_26); x_36 = l_Lean_IR_EmitLLVM_callModInitFn___redArg(x_1, x_3, x_28, x_31, x_22, x_35, x_34, x_11); +lean_dec(x_31); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); lean_dec_ref(x_36); @@ -39734,6 +39737,7 @@ x_64 = lean_string_append(x_62, x_63); x_65 = lean_unbox_usize(x_56); lean_dec(x_56); x_66 = l_Lean_IR_EmitLLVM_callModInitFn___redArg(x_1, x_3, x_58, x_61, x_22, x_65, x_64, x_11); +lean_dec(x_61); x_67 = lean_ctor_get(x_66, 0); lean_inc(x_67); lean_dec_ref(x_66); @@ -40010,6 +40014,7 @@ x_28 = l_Lean_PersistentEnvExtension_getState___redArg(x_26, x_23, x_9, x_25, x_ lean_dec(x_25); lean_inc(x_12); x_29 = l_Lean_mkModuleInitializationFunctionName(x_12, x_28); +lean_dec(x_28); x_30 = l_Lean_IR_LLVM_getOrAddFunction(x_1, x_2, x_29, x_22); lean_dec_ref(x_29); x_31 = l_Lean_IR_EmitLLVM_emitFnDeclAux___closed__0; @@ -43208,6 +43213,7 @@ lean_dec(x_89); x_103 = lean_unbox_usize(x_83); lean_dec(x_83); x_104 = l_Lean_IR_EmitLLVM_callModInitFn___redArg(x_1, x_3, x_86, x_98, x_102, x_103, x_101, x_77); +lean_dec(x_98); x_105 = lean_ctor_get(x_104, 0); lean_inc(x_105); lean_dec_ref(x_104); diff --git a/stage0/stdlib/Lean/Compiler/InitAttr.c b/stage0/stdlib/Lean/Compiler/InitAttr.c index 3658e5031d..92dfe67523 100644 --- a/stage0/stdlib/Lean/Compiler/InitAttr.c +++ b/stage0/stdlib/Lean/Compiler/InitAttr.c @@ -524,6 +524,7 @@ _start: { lean_object* x_4; x_4 = l___private_Lean_Compiler_InitAttr_0__Lean_runModInit(x_1, x_2); +lean_dec(x_2); return x_4; } } @@ -4639,6 +4640,7 @@ x_21 = lean_array_uget(x_5, x_7); x_22 = l_Lean_Environment_getModulePackageByIdx_x3f(x_1, x_20); lean_inc(x_21); x_23 = l_Lean_mkModuleInitializationFunctionName(x_21, x_22); +lean_dec(x_22); x_24 = lean_run_mod_init_core(x_23); lean_dec_ref(x_23); if (lean_obj_tag(x_24) == 0) @@ -4800,6 +4802,7 @@ x_62 = lean_array_uget(x_5, x_7); x_63 = l_Lean_Environment_getModulePackageByIdx_x3f(x_1, x_61); lean_inc(x_62); x_64 = l_Lean_mkModuleInitializationFunctionName(x_62, x_63); +lean_dec(x_63); x_65 = lean_run_mod_init_core(x_64); lean_dec_ref(x_64); if (lean_obj_tag(x_65) == 0) @@ -5001,6 +5004,7 @@ x_21 = lean_array_uget(x_5, x_7); x_22 = l_Lean_Environment_getModulePackageByIdx_x3f(x_1, x_20); lean_inc(x_21); x_23 = l_Lean_mkModuleInitializationFunctionName(x_21, x_22); +lean_dec(x_22); x_24 = lean_run_mod_init_core(x_23); lean_dec_ref(x_23); if (lean_obj_tag(x_24) == 0) @@ -5162,6 +5166,7 @@ x_62 = lean_array_uget(x_5, x_7); x_63 = l_Lean_Environment_getModulePackageByIdx_x3f(x_1, x_61); lean_inc(x_62); x_64 = l_Lean_mkModuleInitializationFunctionName(x_62, x_63); +lean_dec(x_63); x_65 = lean_run_mod_init_core(x_64); lean_dec_ref(x_64); if (lean_obj_tag(x_65) == 0) diff --git a/stage0/stdlib/Lean/Compiler/ModPkgExt.c b/stage0/stdlib/Lean/Compiler/ModPkgExt.c index cc0454e1ae..8234970d98 100644 --- a/stage0/stdlib/Lean/Compiler/ModPkgExt.c +++ b/stage0/stdlib/Lean/Compiler/ModPkgExt.c @@ -883,6 +883,7 @@ block_6: { lean_object* x_4; lean_object* x_5; x_4 = l_Lean_mkPackageSymbolPrefix(x_3); +lean_dec(x_3); x_5 = l_Lean_Name_mangle(x_2, x_4); return x_5; } diff --git a/stage0/stdlib/Lean/Compiler/NameMangling.c b/stage0/stdlib/Lean/Compiler/NameMangling.c index 6bd6de0010..fbfe953884 100644 --- a/stage0/stdlib/Lean/Compiler/NameMangling.c +++ b/stage0/stdlib/Lean/Compiler/NameMangling.c @@ -13,6 +13,7 @@ #ifdef __cplusplus extern "C" { #endif +LEAN_EXPORT lean_object* l_Lean_mkModuleInitializationFunctionName___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_fromHex_x3f___boxed(lean_object*); lean_object* lean_uint32_to_nat(uint32_t); LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_parseLowerHex_x3f_match__1_splitter(lean_object*, lean_object*, lean_object*, lean_object*); @@ -50,8 +51,10 @@ LEAN_EXPORT uint8_t l___private_Lean_Compiler_NameMangling_0__Lean_checkDisambig static lean_object* l___private_Lean_Compiler_NameMangling_0__String_mangleAux___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_checkLowerHex___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_parseLowerHex_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_String_mangle___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_match__6_splitter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkModuleInitializationStem___boxed(lean_object*, lean_object*); static lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_mangleAux___closed__2; static lean_object* l___private_Lean_Compiler_NameMangling_0__String_mangleAux___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_checkDisambiguation___boxed(lean_object*, lean_object*); @@ -60,9 +63,11 @@ lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_match__4_splitter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Compiler_NameMangling_0__Lean_needDisambiguation(lean_object*, lean_object*); static lean_object* l_Lean_mkPackageSymbolPrefix___closed__0; +LEAN_EXPORT lean_object* l_String_mangle___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_match__1_splitter___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_match__1_splitter(lean_object*, lean_object*, uint32_t, lean_object*, lean_object*, lean_object*); uint32_t lean_uint32_sub(uint32_t, uint32_t); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_decodeNum___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_mangleAux(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_match__1_splitter___redArg(uint32_t, lean_object*, lean_object*, lean_object*); @@ -77,11 +82,13 @@ static lean_object* l_Lean_mkPackageSymbolPrefix___closed__1; lean_object* lean_nat_shiftl(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_match__6_splitter___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_match__4_splitter(lean_object*, lean_object*, uint32_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_fromHex_x3f(uint32_t); lean_object* lean_string_utf8_next_fast(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_demangle_x3f(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Name_demangle___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__String_pushHex_match__1_splitter(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_uint32_dec_lt(uint32_t, uint32_t); LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_match__4_splitter___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -97,8 +104,12 @@ lean_object* lean_string_append(lean_object*, lean_object*); static lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_mangleAux___closed__0; LEAN_EXPORT lean_object* l_Lean_Name_demangle(lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_mangle(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__String_mangleAux___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_nameStart___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__String_pushHex(lean_object*, uint32_t, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Name_demangle_x3f___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkPackageSymbolPrefix___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_match__4_splitter___redArg(uint32_t, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_lor(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_String_mangle(lean_object*); @@ -240,8 +251,8 @@ if (x_5 == 0) { uint32_t x_6; lean_object* x_7; uint8_t x_11; uint8_t x_38; uint8_t x_44; uint32_t x_50; uint8_t x_51; x_6 = lean_string_utf8_get_fast(x_1, x_2); -lean_inc_ref(x_1); x_7 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); x_50 = 65; x_51 = lean_uint32_dec_le(x_50, x_6); if (x_51 == 0) @@ -391,11 +402,19 @@ goto block_10; else { lean_dec(x_2); -lean_dec_ref(x_1); return x_3; } } } +LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__String_mangleAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Lean_Compiler_NameMangling_0__String_mangleAux(x_1, x_2, x_3); +lean_dec_ref(x_1); +return x_4; +} +} static lean_object* _init_l_String_mangle___closed__0() { _start: { @@ -414,6 +433,15 @@ x_4 = l___private_Lean_Compiler_NameMangling_0__String_mangleAux(x_1, x_2, x_3); return x_4; } } +LEAN_EXPORT lean_object* l_String_mangle___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_String_mangle(x_1); +lean_dec_ref(x_1); +return x_2; +} +} LEAN_EXPORT uint8_t l___private_Lean_Compiler_NameMangling_0__Lean_checkLowerHex(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -423,7 +451,6 @@ x_5 = lean_nat_dec_eq(x_1, x_4); if (x_5 == 1) { lean_dec(x_3); -lean_dec_ref(x_2); lean_dec(x_1); return x_5; } @@ -458,8 +485,8 @@ goto block_21; block_12: { lean_object* x_10; -lean_inc_ref(x_2); x_10 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); x_1 = x_9; x_3 = x_10; goto _start; @@ -470,7 +497,6 @@ if (x_13 == 0) { lean_dec(x_9); lean_dec(x_3); -lean_dec_ref(x_2); return x_13; } else @@ -508,7 +534,6 @@ goto block_12; else { lean_dec(x_3); -lean_dec_ref(x_2); lean_dec(x_1); return x_5; } @@ -520,6 +545,7 @@ _start: { uint8_t x_4; lean_object* x_5; x_4 = l___private_Lean_Compiler_NameMangling_0__Lean_checkLowerHex(x_1, x_2, x_3); +lean_dec_ref(x_2); x_5 = lean_box(x_4); return x_5; } @@ -615,7 +641,6 @@ x_6 = lean_nat_dec_eq(x_1, x_5); if (x_6 == 1) { lean_object* x_7; lean_object* x_8; -lean_dec_ref(x_2); lean_dec(x_1); x_7 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_7, 0, x_3); @@ -640,7 +665,6 @@ if (lean_obj_tag(x_12) == 0) lean_object* x_13; lean_dec(x_4); lean_dec(x_3); -lean_dec_ref(x_2); lean_dec(x_1); x_13 = lean_box(0); return x_13; @@ -654,8 +678,8 @@ lean_dec_ref(x_12); x_15 = lean_unsigned_to_nat(1u); x_16 = lean_nat_sub(x_1, x_15); lean_dec(x_1); -lean_inc_ref(x_2); x_17 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); x_18 = lean_unsigned_to_nat(4u); x_19 = lean_nat_shiftl(x_4, x_18); lean_dec(x_4); @@ -673,7 +697,6 @@ else lean_object* x_22; lean_dec(x_4); lean_dec(x_3); -lean_dec_ref(x_2); lean_dec(x_1); x_22 = lean_box(0); return x_22; @@ -681,6 +704,15 @@ return x_22; } } } +LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_parseLowerHex_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Compiler_NameMangling_0__Lean_parseLowerHex_x3f(x_1, x_2, x_3, x_4); +lean_dec_ref(x_2); +return x_5; +} +} LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__String_pushHex_match__1_splitter___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -795,7 +827,6 @@ if (x_13 == 0) { uint32_t x_14; uint8_t x_15; lean_dec(x_2); -lean_dec_ref(x_1); x_14 = 48; x_15 = lean_uint32_dec_le(x_14, x_5); if (x_15 == 0) @@ -814,8 +845,8 @@ else { lean_object* x_18; lean_object* x_19; uint8_t x_20; x_18 = lean_unsigned_to_nat(8u); -lean_inc_ref(x_1); x_19 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); x_20 = l___private_Lean_Compiler_NameMangling_0__Lean_checkLowerHex(x_18, x_1, x_19); return x_20; } @@ -824,8 +855,8 @@ else { lean_object* x_21; lean_object* x_22; uint8_t x_23; x_21 = lean_unsigned_to_nat(4u); -lean_inc_ref(x_1); x_22 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); x_23 = l___private_Lean_Compiler_NameMangling_0__Lean_checkLowerHex(x_21, x_1, x_22); return x_23; } @@ -834,8 +865,8 @@ else { lean_object* x_24; lean_object* x_25; uint8_t x_26; x_24 = lean_unsigned_to_nat(2u); -lean_inc_ref(x_1); x_25 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); x_26 = l___private_Lean_Compiler_NameMangling_0__Lean_checkLowerHex(x_24, x_1, x_25); return x_26; } @@ -843,8 +874,8 @@ return x_26; else { lean_object* x_27; -lean_inc_ref(x_1); x_27 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); x_2 = x_27; goto _start; } @@ -852,7 +883,6 @@ goto _start; else { lean_dec(x_2); -lean_dec_ref(x_1); return x_4; } } @@ -862,6 +892,7 @@ _start: { uint8_t x_3; lean_object* x_4; x_3 = l___private_Lean_Compiler_NameMangling_0__Lean_checkDisambiguation(x_1, x_2); +lean_dec_ref(x_1); x_4 = lean_box(x_3); return x_4; } @@ -900,7 +931,6 @@ goto block_5; } else { -lean_dec_ref(x_2); return x_16; } } @@ -928,6 +958,7 @@ _start: { uint8_t x_3; lean_object* x_4; x_3 = l___private_Lean_Compiler_NameMangling_0__Lean_needDisambiguation(x_1, x_2); +lean_dec_ref(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; @@ -976,11 +1007,11 @@ x_4 = lean_ctor_get(x_1, 1); lean_inc_ref(x_4); lean_dec_ref(x_1); x_5 = l_String_mangle(x_4); +lean_dec_ref(x_4); if (lean_obj_tag(x_3) == 0) { lean_object* x_6; uint8_t x_7; x_6 = lean_unsigned_to_nat(0u); -lean_inc_ref(x_5); x_7 = l___private_Lean_Compiler_NameMangling_0__Lean_checkDisambiguation(x_5, x_6); if (x_7 == 0) { @@ -1000,7 +1031,6 @@ else lean_object* x_10; lean_object* x_11; uint8_t x_15; lean_inc(x_3); x_10 = l___private_Lean_Compiler_NameMangling_0__Lean_Name_mangleAux(x_3); -lean_inc_ref(x_5); x_15 = l___private_Lean_Compiler_NameMangling_0__Lean_needDisambiguation(x_3, x_5); lean_dec(x_3); if (x_15 == 0) @@ -1087,8 +1117,6 @@ else { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; x_5 = lean_ctor_get(x_2, 0); -lean_inc(x_5); -lean_dec_ref(x_2); x_6 = l_String_mangle(x_5); x_7 = l___private_Lean_Compiler_NameMangling_0__Lean_Name_mangleAux___closed__1; x_8 = lean_string_append(x_6, x_7); @@ -1097,6 +1125,15 @@ return x_9; } } } +LEAN_EXPORT lean_object* l_Lean_mkModuleInitializationStem___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_mkModuleInitializationStem(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} static lean_object* _init_l_Lean_mkModuleInitializationFunctionName___closed__0() { _start: { @@ -1116,6 +1153,15 @@ lean_dec_ref(x_4); return x_5; } } +LEAN_EXPORT lean_object* l_Lean_mkModuleInitializationFunctionName___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_mkModuleInitializationFunctionName(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} static lean_object* _init_l_Lean_mkPackageSymbolPrefix___closed__0() { _start: { @@ -1145,8 +1191,6 @@ else { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; x_3 = lean_ctor_get(x_1, 0); -lean_inc(x_3); -lean_dec_ref(x_1); x_4 = l_Lean_mkPackageSymbolPrefix___closed__1; x_5 = l_String_mangle(x_3); x_6 = lean_string_append(x_4, x_5); @@ -1157,6 +1201,15 @@ return x_8; } } } +LEAN_EXPORT lean_object* l_Lean_mkPackageSymbolPrefix___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_mkPackageSymbolPrefix(x_1); +lean_dec(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_decodeNum(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -1167,8 +1220,8 @@ if (x_6 == 0) { uint32_t x_7; lean_object* x_8; uint8_t x_9; uint32_t x_22; uint8_t x_23; x_7 = lean_string_utf8_get_fast(x_1, x_2); -lean_inc_ref(x_1); x_8 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); x_22 = 48; x_23 = lean_uint32_dec_le(x_22, x_7); if (x_23 == 0) @@ -1195,15 +1248,15 @@ lean_dec(x_5); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; -lean_inc_ref(x_1); x_12 = lean_string_utf8_next_fast(x_1, x_8); +lean_dec(x_8); x_13 = l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_nameStart(x_1, x_12, x_10); +lean_dec(x_12); return x_13; } else { lean_dec(x_8); -lean_dec_ref(x_1); return x_10; } } @@ -1231,7 +1284,6 @@ else lean_object* x_26; lean_dec(x_5); lean_dec(x_2); -lean_dec_ref(x_1); x_26 = l_Lean_Name_num___override(x_3, x_4); return x_26; } @@ -1247,7 +1299,6 @@ if (x_5 == 0) { uint32_t x_6; lean_object* x_7; uint8_t x_13; uint8_t x_22; uint32_t x_36; uint8_t x_37; x_6 = lean_string_utf8_get_fast(x_1, x_2); -lean_inc_ref(x_1); x_7 = lean_string_utf8_next_fast(x_1, x_2); x_36 = 48; x_37 = lean_uint32_dec_le(x_36, x_6); @@ -1292,8 +1343,8 @@ goto block_12; else { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -lean_inc_ref(x_1); x_17 = lean_string_utf8_next_fast(x_1, x_7); +lean_dec(x_7); x_18 = l_String_mangle___closed__0; x_19 = lean_unsigned_to_nat(0u); x_20 = l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux(x_1, x_17, x_3, x_18, x_19); @@ -1359,8 +1410,6 @@ goto block_21; else { lean_dec(x_4); -lean_dec(x_2); -lean_dec_ref(x_1); return x_3; } } @@ -1399,8 +1448,8 @@ if (x_7 == 0) { uint32_t x_8; lean_object* x_9; lean_object* x_10; uint32_t x_16; uint8_t x_17; x_8 = lean_string_utf8_get_fast(x_1, x_2); -lean_inc_ref(x_1); x_9 = lean_string_utf8_next_fast(x_1, x_2); +lean_dec(x_2); x_16 = 95; x_17 = lean_uint32_dec_eq(x_8, x_16); if (x_17 == 0) @@ -1474,7 +1523,6 @@ else lean_object* x_31; lean_object* x_32; x_31 = lean_unsigned_to_nat(8u); lean_inc(x_9); -lean_inc_ref(x_1); x_32 = l___private_Lean_Compiler_NameMangling_0__Lean_parseLowerHex_x3f(x_31, x_1, x_9, x_20); if (lean_obj_tag(x_32) == 1) { @@ -1521,7 +1569,6 @@ else lean_object* x_45; lean_object* x_46; x_45 = lean_unsigned_to_nat(4u); lean_inc(x_9); -lean_inc_ref(x_1); x_46 = l___private_Lean_Compiler_NameMangling_0__Lean_parseLowerHex_x3f(x_45, x_1, x_9, x_20); if (lean_obj_tag(x_46) == 1) { @@ -1575,8 +1622,8 @@ goto block_15; else { lean_object* x_62; lean_object* x_63; -lean_inc_ref(x_1); x_62 = lean_string_utf8_next_fast(x_1, x_9); +lean_dec(x_9); x_63 = l_String_mangle___closed__0; x_2 = x_62; x_3 = x_57; @@ -1602,7 +1649,6 @@ else { lean_object* x_69; lean_inc(x_9); -lean_inc_ref(x_1); x_69 = l___private_Lean_Compiler_NameMangling_0__Lean_parseLowerHex_x3f(x_18, x_1, x_9, x_20); if (lean_obj_tag(x_69) == 1) { @@ -1698,7 +1744,6 @@ else uint32_t x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_dec(x_6); lean_dec(x_2); -lean_dec_ref(x_1); x_100 = 95; x_101 = lean_unsigned_to_nat(1u); x_102 = lean_nat_shiftr(x_5, x_101); @@ -1709,6 +1754,25 @@ return x_104; } } } +LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_decodeNum___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_decodeNum(x_1, x_2, x_3, x_4); +lean_dec_ref(x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_nameStart___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_nameStart(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_4; +} +} LEAN_EXPORT lean_object* l___private_Init_Data_Nat_Basic_0__Nat_repeatTR_loop___at___00__private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -1719,6 +1783,15 @@ x_5 = l___private_Init_Data_Nat_Basic_0__Nat_repeatTR_loop___at___00__private_Le return x_5; } } +LEAN_EXPORT lean_object* l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux(x_1, x_2, x_3, x_4, x_5); +lean_dec_ref(x_1); +return x_6; +} +} static lean_object* _init_l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_match__6_splitter___redArg___boxed__const__1() { _start: { @@ -1969,16 +2042,23 @@ x_4 = l___private_Lean_Compiler_NameMangling_0__Lean_Name_demangleAux_nameStart( return x_4; } } +LEAN_EXPORT lean_object* l_Lean_Name_demangle___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Name_demangle(x_1); +lean_dec_ref(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l_Lean_Name_demangle_x3f(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; -lean_inc_ref(x_1); x_2 = l_Lean_Name_demangle(x_1); lean_inc(x_2); x_3 = l___private_Lean_Compiler_NameMangling_0__Lean_Name_mangleAux(x_2); x_4 = lean_string_dec_eq(x_3, x_1); -lean_dec_ref(x_1); lean_dec_ref(x_3); if (x_4 == 0) { @@ -1996,6 +2076,15 @@ return x_6; } } } +LEAN_EXPORT lean_object* l_Lean_Name_demangle_x3f___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Name_demangle_x3f(x_1); +lean_dec_ref(x_1); +return x_2; +} +} lean_object* initialize_Lean_Setup(uint8_t builtin); lean_object* initialize_Init_Data_String_Termination(uint8_t builtin); static bool _G_initialized = false; diff --git a/stage0/stdlib/Lean/CoreM.c b/stage0/stdlib/Lean/CoreM.c index 731c516ac6..d2d8242934 100644 --- a/stage0/stdlib/Lean/CoreM.c +++ b/stage0/stdlib/Lean/CoreM.c @@ -18633,7 +18633,6 @@ lean_dec(x_14); x_22 = lean_ctor_get(x_21, 0); lean_inc_ref(x_22); lean_dec_ref(x_21); -lean_inc_ref(x_22); x_23 = lean_string_validate_utf8(x_22); if (x_23 == 0) { diff --git a/stage0/stdlib/Lean/Data/EditDistance.c b/stage0/stdlib/Lean/Data/EditDistance.c index 3926de6660..032c4b4746 100644 --- a/stage0/stdlib/Lean/Data/EditDistance.c +++ b/stage0/stdlib/Lean/Data/EditDistance.c @@ -148,8 +148,8 @@ block_24: { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_array_fset(x_12, x_17, x_18); -lean_inc_ref(x_1); x_20 = lean_string_utf8_next_fast(x_1, x_9); +lean_dec(x_9); if (lean_is_scalar(x_13)) { x_21 = lean_alloc_ctor(0, 2, 0); } else { @@ -207,7 +207,6 @@ goto block_28; else { lean_object* x_42; lean_object* x_43; -lean_dec_ref(x_1); if (lean_is_scalar(x_13)) { x_42 = lean_alloc_ctor(0, 2, 0); } else { @@ -332,7 +331,6 @@ x_26 = lean_nat_mod(x_4, x_5); lean_ctor_set(x_12, 1, x_24); lean_ctor_set(x_12, 0, x_26); lean_ctor_set(x_11, 0, x_25); -lean_inc_ref(x_6); x_27 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_EditDistance_levenshtein_spec__1(x_6, x_5, x_3, x_19, x_16, x_1, x_11); x_28 = lean_ctor_get(x_27, 1); lean_inc(x_28); @@ -354,16 +352,14 @@ if (lean_is_exclusive(x_28)) { lean_dec_ref(x_28); x_31 = lean_box(0); } -lean_inc_ref(x_1); x_32 = lean_string_utf8_next_fast(x_1, x_16); +lean_dec(x_16); x_39 = lean_array_get_size(x_30); x_40 = lean_nat_dec_lt(x_25, x_39); if (x_40 == 0) { lean_dec(x_39); -lean_dec_ref(x_6); lean_dec(x_2); -lean_dec_ref(x_1); goto block_38; } else @@ -371,9 +367,7 @@ else if (x_40 == 0) { lean_dec(x_39); -lean_dec_ref(x_6); lean_dec(x_2); -lean_dec_ref(x_1); goto block_38; } else @@ -385,9 +379,7 @@ lean_dec(x_39); x_43 = l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Lean_EditDistance_levenshtein_spec__2(x_7, x_30, x_41, x_42); if (x_43 == 0) { -lean_dec_ref(x_6); lean_dec(x_2); -lean_dec_ref(x_1); goto block_38; } else @@ -455,8 +447,6 @@ return x_37; else { lean_object* x_49; lean_object* x_50; -lean_dec_ref(x_6); -lean_dec_ref(x_1); if (lean_is_scalar(x_14)) { x_49 = lean_alloc_ctor(0, 2, 0); } else { @@ -499,7 +489,6 @@ lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_56); lean_ctor_set(x_11, 1, x_59); lean_ctor_set(x_11, 0, x_57); -lean_inc_ref(x_6); x_60 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_EditDistance_levenshtein_spec__1(x_6, x_5, x_3, x_51, x_16, x_1, x_11); x_61 = lean_ctor_get(x_60, 1); lean_inc(x_61); @@ -521,16 +510,14 @@ if (lean_is_exclusive(x_61)) { lean_dec_ref(x_61); x_64 = lean_box(0); } -lean_inc_ref(x_1); x_65 = lean_string_utf8_next_fast(x_1, x_16); +lean_dec(x_16); x_72 = lean_array_get_size(x_63); x_73 = lean_nat_dec_lt(x_57, x_72); if (x_73 == 0) { lean_dec(x_72); -lean_dec_ref(x_6); lean_dec(x_2); -lean_dec_ref(x_1); goto block_71; } else @@ -538,9 +525,7 @@ else if (x_73 == 0) { lean_dec(x_72); -lean_dec_ref(x_6); lean_dec(x_2); -lean_dec_ref(x_1); goto block_71; } else @@ -552,9 +537,7 @@ lean_dec(x_72); x_76 = l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Lean_EditDistance_levenshtein_spec__2(x_7, x_63, x_74, x_75); if (x_76 == 0) { -lean_dec_ref(x_6); lean_dec(x_2); -lean_dec_ref(x_1); goto block_71; } else @@ -622,8 +605,6 @@ return x_70; else { lean_object* x_82; lean_object* x_83; lean_object* x_84; -lean_dec_ref(x_6); -lean_dec_ref(x_1); x_82 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_82, 0, x_51); lean_ctor_set(x_82, 1, x_52); @@ -686,7 +667,6 @@ lean_ctor_set(x_95, 1, x_92); x_96 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_96, 0, x_93); lean_ctor_set(x_96, 1, x_95); -lean_inc_ref(x_6); x_97 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_EditDistance_levenshtein_spec__1(x_6, x_5, x_3, x_86, x_85, x_1, x_96); x_98 = lean_ctor_get(x_97, 1); lean_inc(x_98); @@ -708,16 +688,14 @@ if (lean_is_exclusive(x_98)) { lean_dec_ref(x_98); x_101 = lean_box(0); } -lean_inc_ref(x_1); x_102 = lean_string_utf8_next_fast(x_1, x_85); +lean_dec(x_85); x_109 = lean_array_get_size(x_100); x_110 = lean_nat_dec_lt(x_93, x_109); if (x_110 == 0) { lean_dec(x_109); -lean_dec_ref(x_6); lean_dec(x_2); -lean_dec_ref(x_1); goto block_108; } else @@ -725,9 +703,7 @@ else if (x_110 == 0) { lean_dec(x_109); -lean_dec_ref(x_6); lean_dec(x_2); -lean_dec_ref(x_1); goto block_108; } else @@ -739,9 +715,7 @@ lean_dec(x_109); x_113 = l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Lean_EditDistance_levenshtein_spec__2(x_7, x_100, x_111, x_112); if (x_113 == 0) { -lean_dec_ref(x_6); lean_dec(x_2); -lean_dec_ref(x_1); goto block_108; } else @@ -809,8 +783,6 @@ return x_107; else { lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; -lean_dec_ref(x_6); -lean_dec_ref(x_1); if (lean_is_scalar(x_88)) { x_119 = lean_alloc_ctor(0, 2, 0); } else { @@ -896,7 +868,6 @@ x_26 = lean_nat_mod(x_6, x_2); lean_ctor_set(x_12, 1, x_24); lean_ctor_set(x_12, 0, x_26); lean_ctor_set(x_11, 0, x_25); -lean_inc_ref(x_1); x_27 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_EditDistance_levenshtein_spec__1(x_1, x_2, x_3, x_19, x_16, x_4, x_11); x_28 = lean_ctor_get(x_27, 1); lean_inc(x_28); @@ -918,16 +889,14 @@ if (lean_is_exclusive(x_28)) { lean_dec_ref(x_28); x_31 = lean_box(0); } -lean_inc_ref(x_4); x_32 = lean_string_utf8_next_fast(x_4, x_16); +lean_dec(x_16); x_39 = lean_array_get_size(x_30); x_40 = lean_nat_dec_lt(x_25, x_39); if (x_40 == 0) { lean_dec(x_39); lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); goto block_38; } else @@ -936,8 +905,6 @@ if (x_40 == 0) { lean_dec(x_39); lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); goto block_38; } else @@ -950,8 +917,6 @@ x_43 = l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Lean_E if (x_43 == 0) { lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); goto block_38; } else @@ -1019,8 +984,6 @@ return x_37; else { lean_object* x_49; lean_object* x_50; -lean_dec_ref(x_4); -lean_dec_ref(x_1); if (lean_is_scalar(x_14)) { x_49 = lean_alloc_ctor(0, 2, 0); } else { @@ -1063,7 +1026,6 @@ lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_56); lean_ctor_set(x_11, 1, x_59); lean_ctor_set(x_11, 0, x_57); -lean_inc_ref(x_1); x_60 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_EditDistance_levenshtein_spec__1(x_1, x_2, x_3, x_51, x_16, x_4, x_11); x_61 = lean_ctor_get(x_60, 1); lean_inc(x_61); @@ -1085,16 +1047,14 @@ if (lean_is_exclusive(x_61)) { lean_dec_ref(x_61); x_64 = lean_box(0); } -lean_inc_ref(x_4); x_65 = lean_string_utf8_next_fast(x_4, x_16); +lean_dec(x_16); x_72 = lean_array_get_size(x_63); x_73 = lean_nat_dec_lt(x_57, x_72); if (x_73 == 0) { lean_dec(x_72); lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); goto block_71; } else @@ -1103,8 +1063,6 @@ if (x_73 == 0) { lean_dec(x_72); lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); goto block_71; } else @@ -1117,8 +1075,6 @@ x_76 = l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Lean_E if (x_76 == 0) { lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); goto block_71; } else @@ -1186,8 +1142,6 @@ return x_70; else { lean_object* x_82; lean_object* x_83; lean_object* x_84; -lean_dec_ref(x_4); -lean_dec_ref(x_1); x_82 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_82, 0, x_51); lean_ctor_set(x_82, 1, x_52); @@ -1250,7 +1204,6 @@ lean_ctor_set(x_95, 1, x_92); x_96 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_96, 0, x_93); lean_ctor_set(x_96, 1, x_95); -lean_inc_ref(x_1); x_97 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_EditDistance_levenshtein_spec__1(x_1, x_2, x_3, x_86, x_85, x_4, x_96); x_98 = lean_ctor_get(x_97, 1); lean_inc(x_98); @@ -1272,16 +1225,14 @@ if (lean_is_exclusive(x_98)) { lean_dec_ref(x_98); x_101 = lean_box(0); } -lean_inc_ref(x_4); x_102 = lean_string_utf8_next_fast(x_4, x_85); +lean_dec(x_85); x_109 = lean_array_get_size(x_100); x_110 = lean_nat_dec_lt(x_93, x_109); if (x_110 == 0) { lean_dec(x_109); lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); goto block_108; } else @@ -1290,8 +1241,6 @@ if (x_110 == 0) { lean_dec(x_109); lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); goto block_108; } else @@ -1304,8 +1253,6 @@ x_113 = l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Lean_ if (x_113 == 0) { lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); goto block_108; } else @@ -1373,8 +1320,6 @@ return x_107; else { lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; -lean_dec_ref(x_4); -lean_dec_ref(x_1); if (lean_is_scalar(x_88)) { x_119 = lean_alloc_ctor(0, 2, 0); } else { @@ -1501,8 +1446,6 @@ else { lean_object* x_30; lean_dec(x_5); -lean_dec_ref(x_2); -lean_dec_ref(x_1); x_30 = lean_box(0); return x_30; } @@ -1557,6 +1500,7 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); +lean_dec_ref(x_1); return x_8; } } @@ -1581,9 +1525,11 @@ _start: lean_object* x_9; x_9 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_EditDistance_levenshtein_spec__3_spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); +lean_dec_ref(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); +lean_dec_ref(x_1); return x_9; } } @@ -1594,8 +1540,10 @@ lean_object* x_9; x_9 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_EditDistance_levenshtein_spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_6); +lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); +lean_dec_ref(x_1); return x_9; } } @@ -1605,6 +1553,8 @@ _start: lean_object* x_4; x_4 = l_Lean_EditDistance_levenshtein(x_1, x_2, x_3); lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); return x_4; } } diff --git a/stage0/stdlib/Lean/Data/Json/Parser.c b/stage0/stdlib/Lean/Data/Json/Parser.c index 6746c514c6..ead2e8a88a 100644 --- a/stage0/stdlib/Lean/Data/Json/Parser.c +++ b/stage0/stdlib/Lean/Data/Json/Parser.c @@ -184,8 +184,8 @@ lean_dec(x_7); x_8 = lean_ctor_get(x_1, 0); lean_dec(x_8); x_9 = lean_string_utf8_get_fast(x_2, x_3); -lean_inc(x_2); x_10 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); lean_ctor_set(x_1, 1, x_10); x_35 = 48; x_46 = lean_uint32_dec_le(x_35, x_9); @@ -305,8 +305,8 @@ else uint32_t x_49; lean_object* x_50; lean_object* x_51; uint32_t x_52; uint8_t x_53; uint32_t x_63; uint8_t x_64; uint32_t x_76; uint8_t x_77; uint8_t x_87; lean_dec(x_1); x_49 = lean_string_utf8_get_fast(x_2, x_3); -lean_inc(x_2); x_50 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); x_51 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_51, 0, x_2); lean_ctor_set(x_51, 1, x_50); @@ -475,8 +475,8 @@ lean_dec(x_12); x_13 = lean_ctor_get(x_2, 0); lean_dec(x_13); x_14 = lean_string_utf8_get_fast(x_7, x_8); -lean_inc(x_7); x_15 = lean_string_utf8_next_fast(x_7, x_8); +lean_dec(x_8); lean_inc(x_15); lean_inc(x_7); lean_ctor_set(x_2, 1, x_15); @@ -503,8 +503,8 @@ if (x_20 == 0) uint32_t x_21; lean_object* x_22; lean_object* x_23; uint32_t x_24; uint8_t x_25; lean_dec_ref(x_2); x_21 = lean_string_utf8_get_fast(x_7, x_15); -lean_inc(x_7); x_22 = lean_string_utf8_next_fast(x_7, x_15); +lean_dec(x_15); lean_inc(x_22); lean_inc(x_7); x_23 = lean_alloc_ctor(0, 2, 0); @@ -534,8 +534,8 @@ if (x_28 == 0) uint32_t x_29; lean_object* x_30; lean_object* x_31; uint32_t x_122; uint8_t x_123; lean_dec_ref(x_23); x_29 = lean_string_utf8_get_fast(x_7, x_22); -lean_inc(x_7); x_30 = lean_string_utf8_next_fast(x_7, x_22); +lean_dec(x_22); x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_7); lean_ctor_set(x_31, 1, x_30); @@ -874,8 +874,8 @@ else uint32_t x_132; lean_object* x_133; lean_object* x_134; uint32_t x_135; uint8_t x_136; lean_dec(x_2); x_132 = lean_string_utf8_get_fast(x_7, x_8); -lean_inc(x_7); x_133 = lean_string_utf8_next_fast(x_7, x_8); +lean_dec(x_8); lean_inc(x_133); lean_inc(x_7); x_134 = lean_alloc_ctor(0, 2, 0); @@ -904,8 +904,8 @@ if (x_139 == 0) uint32_t x_140; lean_object* x_141; lean_object* x_142; uint32_t x_143; uint8_t x_144; lean_dec_ref(x_134); x_140 = lean_string_utf8_get_fast(x_7, x_133); -lean_inc(x_7); x_141 = lean_string_utf8_next_fast(x_7, x_133); +lean_dec(x_133); lean_inc(x_141); lean_inc(x_7); x_142 = lean_alloc_ctor(0, 2, 0); @@ -935,8 +935,8 @@ if (x_147 == 0) uint32_t x_148; lean_object* x_149; lean_object* x_150; uint32_t x_208; uint8_t x_209; lean_dec_ref(x_142); x_148 = lean_string_utf8_get_fast(x_7, x_141); -lean_inc(x_7); x_149 = lean_string_utf8_next_fast(x_7, x_141); +lean_dec(x_141); x_150 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_150, 0, x_7); lean_ctor_set(x_150, 1, x_149); @@ -1360,8 +1360,8 @@ lean_dec(x_7); x_8 = lean_ctor_get(x_1, 0); lean_dec(x_8); x_9 = lean_string_utf8_get_fast(x_2, x_3); -lean_inc(x_2); x_10 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); lean_ctor_set(x_1, 1, x_10); x_11 = 92; x_12 = lean_uint32_dec_eq(x_9, x_11); @@ -1991,8 +1991,8 @@ else uint32_t x_165; lean_object* x_166; lean_object* x_167; uint32_t x_168; uint8_t x_169; lean_dec(x_1); x_165 = lean_string_utf8_get_fast(x_2, x_3); -lean_inc(x_2); x_166 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); x_167 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_167, 0, x_2); lean_ctor_set(x_167, 1, x_166); @@ -2503,8 +2503,8 @@ x_12 = lean_uint32_dec_eq(x_10, x_11); if (x_12 == 0) { lean_object* x_13; uint8_t x_14; uint32_t x_20; uint8_t x_21; -lean_inc(x_3); x_13 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); lean_ctor_set(x_2, 1, x_13); x_20 = 92; x_21 = lean_uint32_dec_eq(x_10, x_20); @@ -2594,8 +2594,8 @@ goto _start; else { lean_object* x_36; lean_object* x_37; -lean_inc(x_3); x_36 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); lean_ctor_set(x_2, 1, x_36); x_37 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_37, 0, x_2); @@ -2613,8 +2613,8 @@ x_40 = lean_uint32_dec_eq(x_38, x_39); if (x_40 == 0) { lean_object* x_41; lean_object* x_42; uint8_t x_43; uint32_t x_49; uint8_t x_50; -lean_inc(x_3); x_41 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_42 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_42, 0, x_3); lean_ctor_set(x_42, 1, x_41); @@ -2709,8 +2709,8 @@ goto _start; else { lean_object* x_65; lean_object* x_66; lean_object* x_67; -lean_inc(x_3); x_65 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_66 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_66, 0, x_3); lean_ctor_set(x_66, 1, x_65); @@ -2793,8 +2793,8 @@ x_12 = lean_ctor_get(x_2, 1); lean_dec(x_12); x_13 = lean_ctor_get(x_2, 0); lean_dec(x_13); -lean_inc(x_3); x_14 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); lean_ctor_set(x_2, 1, x_14); x_15 = lean_unsigned_to_nat(10u); x_16 = lean_nat_mul(x_15, x_1); @@ -2811,8 +2811,8 @@ else { lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint32_t x_25; lean_object* x_26; lean_object* x_27; lean_dec(x_2); -lean_inc(x_3); x_21 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_22 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_22, 0, x_3); lean_ctor_set(x_22, 1, x_21); @@ -2895,8 +2895,8 @@ x_14 = lean_ctor_get(x_3, 1); lean_dec(x_14); x_15 = lean_ctor_get(x_3, 0); lean_dec(x_15); -lean_inc(x_4); x_16 = lean_string_utf8_next_fast(x_4, x_5); +lean_dec(x_5); lean_ctor_set(x_3, 1, x_16); x_17 = lean_unsigned_to_nat(10u); x_18 = lean_nat_mul(x_17, x_1); @@ -2917,8 +2917,8 @@ else { lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint32_t x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_dec(x_3); -lean_inc(x_4); x_25 = lean_string_utf8_next_fast(x_4, x_5); +lean_dec(x_5); x_26 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_26, 0, x_4); lean_ctor_set(x_26, 1, x_25); @@ -3366,8 +3366,8 @@ x_12 = lean_ctor_get(x_1, 1); lean_dec(x_12); x_13 = lean_ctor_get(x_1, 0); lean_dec(x_13); -lean_inc(x_2); x_14 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); lean_ctor_set(x_1, 1, x_14); x_15 = l_Lean_Json_Parser_numSign___closed__1; x_16 = lean_alloc_ctor(0, 2, 0); @@ -3379,8 +3379,8 @@ else { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_dec(x_1); -lean_inc(x_2); x_17 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); x_18 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_18, 0, x_2); lean_ctor_set(x_18, 1, x_17); @@ -3450,8 +3450,8 @@ x_20 = lean_ctor_get(x_1, 1); lean_dec(x_20); x_21 = lean_ctor_get(x_1, 0); lean_dec(x_21); -lean_inc(x_8); x_22 = lean_string_utf8_next_fast(x_8, x_9); +lean_dec(x_9); lean_ctor_set(x_1, 1, x_22); x_23 = lean_unsigned_to_nat(0u); x_24 = lean_alloc_ctor(0, 2, 0); @@ -3463,8 +3463,8 @@ else { lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_dec(x_1); -lean_inc(x_8); x_25 = lean_string_utf8_next_fast(x_8, x_9); +lean_dec(x_9); x_26 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_26, 0, x_8); lean_ctor_set(x_26, 1, x_25); @@ -3572,8 +3572,8 @@ x_131 = lean_ctor_get(x_1, 1); lean_dec(x_131); x_132 = lean_ctor_get(x_1, 0); lean_dec(x_132); -lean_inc(x_122); x_133 = lean_string_utf8_next_fast(x_122, x_123); +lean_dec(x_123); lean_inc(x_133); lean_inc(x_122); lean_ctor_set(x_1, 1, x_133); @@ -3588,8 +3588,8 @@ else { lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_dec(x_1); -lean_inc(x_122); x_135 = lean_string_utf8_next_fast(x_122, x_123); +lean_dec(x_123); lean_inc(x_135); lean_inc(x_122); x_136 = lean_alloc_ctor(0, 2, 0); @@ -3833,8 +3833,8 @@ else { lean_object* x_78; lean_object* x_79; uint8_t x_80; lean_dec_ref(x_65); -lean_inc(x_66); x_78 = lean_string_utf8_next_fast(x_66, x_67); +lean_dec(x_67); lean_inc(x_78); lean_inc(x_66); x_79 = lean_alloc_ctor(0, 2, 0); @@ -3985,8 +3985,8 @@ else { lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_dec_ref(x_103); -lean_inc(x_104); x_116 = lean_string_utf8_next_fast(x_104, x_105); +lean_dec(x_105); lean_inc(x_116); lean_inc(x_104); x_117 = lean_alloc_ctor(0, 2, 0); @@ -4271,8 +4271,8 @@ x_60 = lean_ctor_get(x_2, 1); lean_dec(x_60); x_61 = lean_ctor_get(x_2, 0); lean_dec(x_61); -lean_inc(x_55); x_62 = lean_string_utf8_next_fast(x_55, x_56); +lean_dec(x_56); lean_inc(x_62); lean_inc(x_55); lean_ctor_set(x_2, 1, x_62); @@ -4300,8 +4300,8 @@ else { lean_object* x_69; lean_object* x_70; lean_dec_ref(x_2); -lean_inc(x_55); x_69 = lean_string_utf8_next_fast(x_55, x_62); +lean_dec(x_62); lean_inc(x_69); lean_inc(x_55); x_70 = lean_alloc_ctor(0, 2, 0); @@ -4317,8 +4317,8 @@ else { lean_object* x_71; lean_object* x_72; uint8_t x_73; lean_dec_ref(x_2); -lean_inc(x_55); x_71 = lean_string_utf8_next_fast(x_55, x_62); +lean_dec(x_62); lean_inc(x_71); lean_inc(x_55); x_72 = lean_alloc_ctor(0, 2, 0); @@ -4389,8 +4389,8 @@ else { lean_object* x_81; lean_object* x_82; uint8_t x_83; lean_dec(x_2); -lean_inc(x_55); x_81 = lean_string_utf8_next_fast(x_55, x_56); +lean_dec(x_56); lean_inc(x_81); lean_inc(x_55); x_82 = lean_alloc_ctor(0, 2, 0); @@ -4420,8 +4420,8 @@ else { lean_object* x_89; lean_object* x_90; lean_dec_ref(x_82); -lean_inc(x_55); x_89 = lean_string_utf8_next_fast(x_55, x_81); +lean_dec(x_81); lean_inc(x_89); lean_inc(x_55); x_90 = lean_alloc_ctor(0, 2, 0); @@ -4437,8 +4437,8 @@ else { lean_object* x_91; lean_object* x_92; uint8_t x_93; lean_dec_ref(x_82); -lean_inc(x_55); x_91 = lean_string_utf8_next_fast(x_55, x_81); +lean_dec(x_81); lean_inc(x_91); lean_inc(x_55); x_92 = lean_alloc_ctor(0, 2, 0); @@ -4566,8 +4566,8 @@ x_236 = lean_ctor_get(x_1, 1); lean_dec(x_236); x_237 = lean_ctor_get(x_1, 0); lean_dec(x_237); -lean_inc(x_227); x_238 = lean_string_utf8_next_fast(x_227, x_228); +lean_dec(x_228); lean_inc(x_238); lean_inc(x_227); lean_ctor_set(x_1, 1, x_238); @@ -4582,8 +4582,8 @@ else { lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_dec(x_1); -lean_inc(x_227); x_240 = lean_string_utf8_next_fast(x_227, x_228); +lean_dec(x_228); lean_inc(x_240); lean_inc(x_227); x_241 = lean_alloc_ctor(0, 2, 0); @@ -4791,8 +4791,8 @@ if (x_62 == 0) { lean_object* x_63; lean_object* x_64; uint8_t x_65; lean_dec_ref(x_58); -lean_inc(x_59); x_63 = lean_string_utf8_next_fast(x_59, x_60); +lean_dec(x_60); lean_inc(x_63); lean_inc(x_59); x_64 = lean_alloc_ctor(0, 2, 0); @@ -4823,8 +4823,8 @@ else { lean_object* x_71; lean_object* x_72; lean_dec_ref(x_64); -lean_inc(x_59); x_71 = lean_string_utf8_next_fast(x_59, x_63); +lean_dec(x_63); lean_inc(x_71); lean_inc(x_59); x_72 = lean_alloc_ctor(0, 2, 0); @@ -4841,8 +4841,8 @@ else { lean_object* x_73; lean_object* x_74; uint8_t x_75; lean_dec_ref(x_64); -lean_inc(x_59); x_73 = lean_string_utf8_next_fast(x_59, x_63); +lean_dec(x_63); lean_inc(x_73); lean_inc(x_59); x_74 = lean_alloc_ctor(0, 2, 0); @@ -5239,8 +5239,8 @@ else { lean_object* x_183; lean_object* x_184; uint8_t x_185; lean_dec_ref(x_170); -lean_inc(x_171); x_183 = lean_string_utf8_next_fast(x_171, x_172); +lean_dec(x_172); lean_inc(x_183); lean_inc(x_171); x_184 = lean_alloc_ctor(0, 2, 0); @@ -5396,8 +5396,8 @@ else { lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_dec_ref(x_208); -lean_inc(x_209); x_221 = lean_string_utf8_next_fast(x_209, x_210); +lean_dec(x_210); lean_inc(x_221); lean_inc(x_209); x_222 = lean_alloc_ctor(0, 2, 0); @@ -5479,8 +5479,8 @@ x_13 = lean_ctor_get(x_5, 0); lean_dec(x_13); x_14 = lean_array_push(x_1, x_6); x_15 = lean_string_utf8_get_fast(x_7, x_8); -lean_inc(x_7); x_16 = lean_string_utf8_next_fast(x_7, x_8); +lean_dec(x_8); x_17 = 93; x_18 = lean_uint32_dec_eq(x_15, x_17); if (x_18 == 0) @@ -5502,7 +5502,6 @@ else { lean_object* x_22; lean_free_object(x_3); -lean_inc(x_7); x_22 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_7, x_16); lean_ctor_set(x_5, 1, x_22); x_1 = x_14; @@ -5513,7 +5512,6 @@ goto _start; else { lean_object* x_24; -lean_inc(x_7); x_24 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_7, x_16); lean_ctor_set(x_5, 1, x_24); lean_ctor_set(x_3, 1, x_14); @@ -5526,8 +5524,8 @@ lean_object* x_25; uint32_t x_26; lean_object* x_27; uint32_t x_28; uint8_t x_29 lean_dec(x_5); x_25 = lean_array_push(x_1, x_6); x_26 = lean_string_utf8_get_fast(x_7, x_8); -lean_inc(x_7); x_27 = lean_string_utf8_next_fast(x_7, x_8); +lean_dec(x_8); x_28 = 93; x_29 = lean_uint32_dec_eq(x_26, x_28); if (x_29 == 0) @@ -5552,7 +5550,6 @@ else { lean_object* x_34; lean_object* x_35; lean_free_object(x_3); -lean_inc(x_7); x_34 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_7, x_27); x_35 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_35, 0, x_7); @@ -5565,7 +5562,6 @@ goto _start; else { lean_object* x_37; lean_object* x_38; -lean_inc(x_7); x_37 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_7, x_27); x_38 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_38, 0, x_7); @@ -5615,8 +5611,8 @@ if (lean_is_exclusive(x_40)) { } x_47 = lean_array_push(x_1, x_41); x_48 = lean_string_utf8_get_fast(x_42, x_43); -lean_inc(x_42); x_49 = lean_string_utf8_next_fast(x_42, x_43); +lean_dec(x_43); x_50 = 93; x_51 = lean_uint32_dec_eq(x_48, x_50); if (x_51 == 0) @@ -5644,7 +5640,6 @@ return x_56; else { lean_object* x_57; lean_object* x_58; -lean_inc(x_42); x_57 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_42, x_49); if (lean_is_scalar(x_46)) { x_58 = lean_alloc_ctor(0, 2, 0); @@ -5661,7 +5656,6 @@ goto _start; else { lean_object* x_60; lean_object* x_61; lean_object* x_62; -lean_inc(x_42); x_60 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_42, x_49); if (lean_is_scalar(x_46)) { x_61 = lean_alloc_ctor(0, 2, 0); @@ -5884,7 +5878,6 @@ if (x_63 == 0) lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; x_64 = lean_ctor_get(x_61, 0); x_65 = lean_ctor_get(x_61, 1); -lean_inc(x_64); x_66 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_64, x_65); lean_ctor_set(x_61, 1, x_66); x_67 = lean_box(0); @@ -5899,7 +5892,6 @@ x_69 = lean_ctor_get(x_61, 1); lean_inc(x_69); lean_inc(x_68); lean_dec(x_61); -lean_inc(x_68); x_70 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_68, x_69); x_71 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_71, 0, x_68); @@ -5928,7 +5920,6 @@ if (lean_is_exclusive(x_73)) { lean_dec_ref(x_73); x_76 = lean_box(0); } -lean_inc(x_74); x_77 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_74, x_75); if (lean_is_scalar(x_76)) { x_78 = lean_alloc_ctor(0, 2, 0); @@ -5989,7 +5980,6 @@ if (x_90 == 0) lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; x_91 = lean_ctor_get(x_88, 0); x_92 = lean_ctor_get(x_88, 1); -lean_inc(x_91); x_93 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_91, x_92); lean_ctor_set(x_88, 1, x_93); x_94 = lean_alloc_ctor(1, 0, 1); @@ -6005,7 +5995,6 @@ x_96 = lean_ctor_get(x_88, 1); lean_inc(x_96); lean_inc(x_95); lean_dec(x_88); -lean_inc(x_95); x_97 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_95, x_96); x_98 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_98, 0, x_95); @@ -6035,7 +6024,6 @@ if (lean_is_exclusive(x_100)) { lean_dec_ref(x_100); x_103 = lean_box(0); } -lean_inc(x_101); x_104 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_101, x_102); if (lean_is_scalar(x_103)) { x_105 = lean_alloc_ctor(0, 2, 0); @@ -6097,7 +6085,6 @@ if (x_117 == 0) lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; x_118 = lean_ctor_get(x_115, 0); x_119 = lean_ctor_get(x_115, 1); -lean_inc(x_118); x_120 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_118, x_119); lean_ctor_set(x_115, 1, x_120); x_121 = lean_alloc_ctor(1, 0, 1); @@ -6113,7 +6100,6 @@ x_123 = lean_ctor_get(x_115, 1); lean_inc(x_123); lean_inc(x_122); lean_dec(x_115); -lean_inc(x_122); x_124 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_122, x_123); x_125 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_125, 0, x_122); @@ -6143,7 +6129,6 @@ if (lean_is_exclusive(x_127)) { lean_dec_ref(x_127); x_130 = lean_box(0); } -lean_inc(x_128); x_131 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_128, x_129); if (lean_is_scalar(x_130)) { x_132 = lean_alloc_ctor(0, 2, 0); @@ -6197,8 +6182,8 @@ x_140 = lean_ctor_get(x_1, 1); lean_dec(x_140); x_141 = lean_ctor_get(x_1, 0); lean_dec(x_141); -lean_inc(x_35); x_142 = lean_string_utf8_next_fast(x_35, x_36); +lean_dec(x_36); lean_ctor_set(x_1, 1, x_142); x_143 = l_Lean_Json_Parser_finishSurrogatePair___closed__0; x_144 = l_Lean_Json_Parser_strCore(x_143, x_1); @@ -6217,7 +6202,6 @@ lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; x_148 = lean_ctor_get(x_144, 1); x_149 = lean_ctor_get(x_146, 0); x_150 = lean_ctor_get(x_146, 1); -lean_inc(x_149); x_151 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_149, x_150); lean_ctor_set(x_146, 1, x_151); x_152 = lean_alloc_ctor(3, 1, 0); @@ -6234,7 +6218,6 @@ x_155 = lean_ctor_get(x_146, 1); lean_inc(x_155); lean_inc(x_154); lean_dec(x_146); -lean_inc(x_154); x_156 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_154, x_155); x_157 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_157, 0, x_154); @@ -6266,7 +6249,6 @@ if (lean_is_exclusive(x_159)) { lean_dec_ref(x_159); x_163 = lean_box(0); } -lean_inc(x_161); x_164 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_161, x_162); if (lean_is_scalar(x_163)) { x_165 = lean_alloc_ctor(0, 2, 0); @@ -6310,8 +6292,8 @@ else { lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_dec(x_1); -lean_inc(x_35); x_172 = lean_string_utf8_next_fast(x_35, x_36); +lean_dec(x_36); x_173 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_173, 0, x_35); lean_ctor_set(x_173, 1, x_172); @@ -6344,7 +6326,6 @@ if (lean_is_exclusive(x_176)) { lean_dec_ref(x_176); x_181 = lean_box(0); } -lean_inc(x_179); x_182 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_179, x_180); if (lean_is_scalar(x_181)) { x_183 = lean_alloc_ctor(0, 2, 0); @@ -6404,9 +6385,8 @@ x_191 = lean_ctor_get(x_1, 1); lean_dec(x_191); x_192 = lean_ctor_get(x_1, 0); lean_dec(x_192); -lean_inc(x_35); x_193 = lean_string_utf8_next_fast(x_35, x_36); -lean_inc(x_35); +lean_dec(x_36); x_194 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_35, x_193); lean_inc(x_194); lean_inc(x_35); @@ -6505,9 +6485,8 @@ else { lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_dec_ref(x_1); -lean_inc(x_35); x_214 = lean_string_utf8_next_fast(x_35, x_194); -lean_inc(x_35); +lean_dec(x_194); x_215 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_35, x_214); x_216 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_216, 0, x_35); @@ -6525,9 +6504,8 @@ else { lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; uint8_t x_247; lean_dec(x_1); -lean_inc(x_35); x_221 = lean_string_utf8_next_fast(x_35, x_36); -lean_inc(x_35); +lean_dec(x_36); x_222 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_35, x_221); lean_inc(x_222); lean_inc(x_35); @@ -6627,9 +6605,8 @@ else { lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_dec_ref(x_223); -lean_inc(x_35); x_241 = lean_string_utf8_next_fast(x_35, x_222); -lean_inc(x_35); +lean_dec(x_222); x_242 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_35, x_241); x_243 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_243, 0, x_35); @@ -6658,9 +6635,8 @@ x_249 = lean_ctor_get(x_1, 1); lean_dec(x_249); x_250 = lean_ctor_get(x_1, 0); lean_dec(x_250); -lean_inc(x_35); x_251 = lean_string_utf8_next_fast(x_35, x_36); -lean_inc(x_35); +lean_dec(x_36); x_252 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_35, x_251); lean_inc(x_252); lean_inc(x_35); @@ -6744,9 +6720,8 @@ else { lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_dec_ref(x_1); -lean_inc(x_35); x_273 = lean_string_utf8_next_fast(x_35, x_252); -lean_inc(x_35); +lean_dec(x_252); x_274 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_35, x_273); x_275 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_275, 0, x_35); @@ -6779,9 +6754,8 @@ else { lean_object* x_278; lean_object* x_279; lean_object* x_280; uint8_t x_284; lean_dec(x_1); -lean_inc(x_35); x_278 = lean_string_utf8_next_fast(x_35, x_36); -lean_inc(x_35); +lean_dec(x_36); x_279 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_35, x_278); lean_inc(x_279); lean_inc(x_35); @@ -6866,9 +6840,8 @@ else { lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_dec_ref(x_280); -lean_inc(x_35); x_299 = lean_string_utf8_next_fast(x_35, x_279); -lean_inc(x_35); +lean_dec(x_279); x_300 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_35, x_299); x_301 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_301, 0, x_35); @@ -6928,7 +6901,6 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_obj x_6 = lean_ctor_get(x_2, 1); x_7 = lean_ctor_get(x_4, 0); x_8 = lean_ctor_get(x_4, 1); -lean_inc(x_7); x_9 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_7, x_8); lean_ctor_set(x_4, 1, x_9); x_10 = lean_alloc_ctor(2, 1, 0); @@ -6945,7 +6917,6 @@ x_13 = lean_ctor_get(x_4, 1); lean_inc(x_13); lean_inc(x_12); lean_dec(x_4); -lean_inc(x_12); x_14 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_12, x_13); x_15 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_15, 0, x_12); @@ -6977,7 +6948,6 @@ if (lean_is_exclusive(x_17)) { lean_dec_ref(x_17); x_21 = lean_box(0); } -lean_inc(x_19); x_22 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_19, x_20); if (lean_is_scalar(x_21)) { x_23 = lean_alloc_ctor(0, 2, 0); @@ -8535,8 +8505,8 @@ x_13 = lean_ctor_get(x_2, 1); lean_dec(x_13); x_14 = lean_ctor_get(x_2, 0); lean_dec(x_14); -lean_inc(x_3); x_15 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); lean_ctor_set(x_2, 1, x_15); x_16 = l_Lean_Json_Parser_finishSurrogatePair___closed__0; x_17 = l_Lean_Json_Parser_strCore(x_16, x_2); @@ -8561,7 +8531,6 @@ if (x_21 == 0) lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_28; uint8_t x_29; x_22 = lean_ctor_get(x_18, 0); x_23 = lean_ctor_get(x_18, 1); -lean_inc(x_22); x_24 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_22, x_23); lean_inc(x_24); lean_inc(x_22); @@ -8603,9 +8572,8 @@ else { lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_dec_ref(x_18); -lean_inc(x_22); x_35 = lean_string_utf8_next_fast(x_22, x_24); -lean_inc(x_22); +lean_dec(x_24); x_36 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_22, x_35); x_37 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_37, 0, x_22); @@ -8655,8 +8623,8 @@ lean_dec(x_50); x_51 = lean_ctor_get(x_39, 0); lean_dec(x_51); x_52 = lean_string_utf8_get_fast(x_45, x_46); -lean_inc(x_45); x_53 = lean_string_utf8_next_fast(x_45, x_46); +lean_dec(x_46); x_54 = 125; x_55 = lean_uint32_dec_eq(x_52, x_54); if (x_55 == 0) @@ -8680,7 +8648,6 @@ return x_59; else { lean_object* x_60; lean_object* x_61; -lean_inc(x_45); x_60 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_45, x_53); lean_ctor_set(x_39, 1, x_60); x_61 = l_Std_DTreeMap_Internal_Impl_insert_x21___at___00Lean_Json_Parser_objectCore_spec__0___redArg(x_19, x_40, x_1); @@ -8692,7 +8659,6 @@ goto _start; else { lean_object* x_63; lean_object* x_64; lean_object* x_65; -lean_inc(x_45); x_63 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_45, x_53); lean_ctor_set(x_39, 1, x_63); x_64 = l_Std_DTreeMap_Internal_Impl_insert_x21___at___00Lean_Json_Parser_objectCore_spec__0___redArg(x_19, x_40, x_1); @@ -8707,8 +8673,8 @@ else uint32_t x_66; lean_object* x_67; uint32_t x_68; uint8_t x_69; lean_dec(x_39); x_66 = lean_string_utf8_get_fast(x_45, x_46); -lean_inc(x_45); x_67 = lean_string_utf8_next_fast(x_45, x_46); +lean_dec(x_46); x_68 = 125; x_69 = lean_uint32_dec_eq(x_66, x_68); if (x_69 == 0) @@ -8734,7 +8700,6 @@ return x_74; else { lean_object* x_75; lean_object* x_76; lean_object* x_77; -lean_inc(x_45); x_75 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_45, x_67); x_76 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_76, 0, x_45); @@ -8748,7 +8713,6 @@ goto _start; else { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -lean_inc(x_45); x_79 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_45, x_67); x_80 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_80, 0, x_45); @@ -8842,7 +8806,6 @@ x_88 = lean_ctor_get(x_18, 1); lean_inc(x_88); lean_inc(x_87); lean_dec(x_18); -lean_inc(x_87); x_89 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_87, x_88); lean_inc(x_89); lean_inc(x_87); @@ -8886,9 +8849,8 @@ else { lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_dec_ref(x_90); -lean_inc(x_87); x_101 = lean_string_utf8_next_fast(x_87, x_89); -lean_inc(x_87); +lean_dec(x_89); x_102 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_87, x_101); x_103 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_103, 0, x_87); @@ -8938,8 +8900,8 @@ if (lean_is_exclusive(x_105)) { x_115 = lean_box(0); } x_116 = lean_string_utf8_get_fast(x_111, x_112); -lean_inc(x_111); x_117 = lean_string_utf8_next_fast(x_111, x_112); +lean_dec(x_112); x_118 = 125; x_119 = lean_uint32_dec_eq(x_116, x_118); if (x_119 == 0) @@ -8969,7 +8931,6 @@ return x_124; else { lean_object* x_125; lean_object* x_126; lean_object* x_127; -lean_inc(x_111); x_125 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_111, x_117); if (lean_is_scalar(x_115)) { x_126 = lean_alloc_ctor(0, 2, 0); @@ -8987,7 +8948,6 @@ goto _start; else { lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; -lean_inc(x_111); x_129 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_111, x_117); if (lean_is_scalar(x_115)) { x_130 = lean_alloc_ctor(0, 2, 0); @@ -9107,8 +9067,8 @@ else { lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_dec(x_2); -lean_inc(x_3); x_141 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_142 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_142, 0, x_3); lean_ctor_set(x_142, 1, x_141); @@ -9141,7 +9101,6 @@ if (lean_is_exclusive(x_145)) { lean_dec_ref(x_145); x_150 = lean_box(0); } -lean_inc(x_148); x_151 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_148, x_149); lean_inc(x_151); lean_inc(x_148); @@ -9189,9 +9148,8 @@ else { lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_dec_ref(x_152); -lean_inc(x_148); x_163 = lean_string_utf8_next_fast(x_148, x_151); -lean_inc(x_148); +lean_dec(x_151); x_164 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_148, x_163); x_165 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_165, 0, x_148); @@ -9241,8 +9199,8 @@ if (lean_is_exclusive(x_167)) { x_177 = lean_box(0); } x_178 = lean_string_utf8_get_fast(x_173, x_174); -lean_inc(x_173); x_179 = lean_string_utf8_next_fast(x_173, x_174); +lean_dec(x_174); x_180 = 125; x_181 = lean_uint32_dec_eq(x_178, x_180); if (x_181 == 0) @@ -9272,7 +9230,6 @@ return x_186; else { lean_object* x_187; lean_object* x_188; lean_object* x_189; -lean_inc(x_173); x_187 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_173, x_179); if (lean_is_scalar(x_177)) { x_188 = lean_alloc_ctor(0, 2, 0); @@ -9290,7 +9247,6 @@ goto _start; else { lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; -lean_inc(x_173); x_191 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_173, x_179); if (lean_is_scalar(x_177)) { x_192 = lean_alloc_ctor(0, 2, 0); @@ -9449,7 +9405,6 @@ if (x_2 == 0) lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_3 = lean_ctor_get(x_1, 0); x_4 = lean_ctor_get(x_1, 1); -lean_inc(x_3); x_5 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_3, x_4); lean_ctor_set(x_1, 1, x_5); x_6 = l_Lean_Json_Parser_anyCore(x_1); @@ -9509,7 +9464,6 @@ x_19 = lean_ctor_get(x_1, 1); lean_inc(x_19); lean_inc(x_18); lean_dec(x_1); -lean_inc(x_18); x_20 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_18, x_19); x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_18); diff --git a/stage0/stdlib/Lean/Data/Json/Stream.c b/stage0/stdlib/Lean/Data/Json/Stream.c index ecd547251f..e560e02491 100644 --- a/stage0/stdlib/Lean/Data/Json/Stream.c +++ b/stage0/stdlib/Lean/Data/Json/Stream.c @@ -66,7 +66,6 @@ if (x_8 == 0) { lean_object* x_9; uint8_t x_10; x_9 = lean_ctor_get(x_7, 0); -lean_inc(x_9); x_10 = lean_string_validate_utf8(x_9); if (x_10 == 0) { @@ -91,7 +90,6 @@ lean_object* x_13; uint8_t x_14; x_13 = lean_ctor_get(x_7, 0); lean_inc(x_13); lean_dec(x_7); -lean_inc(x_13); x_14 = lean_string_validate_utf8(x_13); if (x_14 == 0) { @@ -218,7 +216,6 @@ if (x_8 == 0) { lean_object* x_9; uint8_t x_10; x_9 = lean_ctor_get(x_7, 0); -lean_inc(x_9); x_10 = lean_string_validate_utf8(x_9); if (x_10 == 0) { @@ -245,7 +242,6 @@ lean_object* x_15; uint8_t x_16; x_15 = lean_ctor_get(x_7, 0); lean_inc(x_15); lean_dec(x_7); -lean_inc(x_15); x_16 = lean_string_validate_utf8(x_15); if (x_16 == 0) { diff --git a/stage0/stdlib/Lean/Data/JsonRpc.c b/stage0/stdlib/Lean/Data/JsonRpc.c index 63d1104f06..29d034ed24 100644 --- a/stage0/stdlib/Lean/Data/JsonRpc.c +++ b/stage0/stdlib/Lean/Data/JsonRpc.c @@ -6387,8 +6387,8 @@ x_12 = lean_ctor_get(x_1, 1); lean_dec(x_12); x_13 = lean_ctor_get(x_1, 0); lean_dec(x_13); -lean_inc(x_2); x_14 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); lean_ctor_set(x_1, 1, x_14); x_15 = l_Lean_JsonRpc_instInhabitedRequestID_default___closed__0; x_16 = l_Lean_Json_Parser_strCore(x_15, x_1); @@ -6398,8 +6398,8 @@ else { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_dec(x_1); -lean_inc(x_2); x_17 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); x_18 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_18, 0, x_2); lean_ctor_set(x_18, 1, x_17); @@ -7288,8 +7288,8 @@ x_25 = lean_ctor_get(x_2, 1); lean_dec(x_25); x_26 = lean_ctor_get(x_2, 0); lean_dec(x_26); -lean_inc(x_20); x_27 = lean_string_utf8_next_fast(x_20, x_21); +lean_dec(x_21); lean_ctor_set(x_2, 1, x_27); x_28 = l___private_Lean_Data_JsonRpc_0__Lean_JsonRpc_messageMetaDataParser_parseStr(x_2); if (lean_obj_tag(x_28) == 0) @@ -7325,8 +7325,8 @@ x_37 = lean_ctor_get(x_29, 1); lean_dec(x_37); x_38 = lean_ctor_get(x_29, 0); lean_dec(x_38); -lean_inc(x_32); x_39 = lean_string_utf8_next_fast(x_32, x_33); +lean_dec(x_33); lean_ctor_set(x_29, 1, x_39); x_56 = l_Lean_JsonRpc_instToJsonMessage___lam__0___closed__4; x_57 = lean_string_dec_eq(x_30, x_56); @@ -7706,8 +7706,8 @@ x_117 = lean_ctor_get(x_109, 1); lean_dec(x_117); x_118 = lean_ctor_get(x_109, 0); lean_dec(x_118); -lean_inc(x_111); x_119 = lean_string_utf8_next_fast(x_111, x_112); +lean_dec(x_112); lean_ctor_set(x_109, 1, x_119); x_120 = l___private_Lean_Data_JsonRpc_0__Lean_JsonRpc_messageMetaDataParser_parseStr(x_109); if (lean_obj_tag(x_120) == 0) @@ -7827,8 +7827,8 @@ else { lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_dec(x_109); -lean_inc(x_111); x_140 = lean_string_utf8_next_fast(x_111, x_112); +lean_dec(x_112); x_141 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_141, 0, x_111); lean_ctor_set(x_141, 1, x_140); @@ -7989,8 +7989,8 @@ x_174 = lean_ctor_get(x_163, 1); lean_dec(x_174); x_175 = lean_ctor_get(x_163, 0); lean_dec(x_175); -lean_inc(x_169); x_176 = lean_string_utf8_next_fast(x_169, x_170); +lean_dec(x_170); lean_ctor_set(x_163, 1, x_176); x_177 = l___private_Lean_Data_JsonRpc_0__Lean_JsonRpc_messageMetaDataParser_parseStr(x_163); if (lean_obj_tag(x_177) == 0) @@ -8022,8 +8022,8 @@ x_186 = lean_ctor_get(x_179, 1); lean_dec(x_186); x_187 = lean_ctor_get(x_179, 0); lean_dec(x_187); -lean_inc(x_181); x_188 = lean_string_utf8_next_fast(x_181, x_182); +lean_dec(x_182); lean_ctor_set(x_179, 1, x_188); x_189 = l___private_Lean_Data_JsonRpc_0__Lean_JsonRpc_messageMetaDataParser_parseStr(x_179); if (lean_obj_tag(x_189) == 0) @@ -8054,8 +8054,8 @@ x_198 = lean_ctor_get(x_191, 1); lean_dec(x_198); x_199 = lean_ctor_get(x_191, 0); lean_dec(x_199); -lean_inc(x_193); x_200 = lean_string_utf8_next_fast(x_193, x_194); +lean_dec(x_194); lean_ctor_set(x_191, 1, x_200); x_201 = l___private_Lean_Data_JsonRpc_0__Lean_JsonRpc_messageMetaDataParser_parseStr(x_191); if (lean_obj_tag(x_201) == 0) @@ -8133,8 +8133,8 @@ x_219 = lean_ctor_get(x_202, 1); lean_dec(x_219); x_220 = lean_ctor_get(x_202, 0); lean_dec(x_220); -lean_inc(x_214); x_221 = lean_string_utf8_next_fast(x_214, x_215); +lean_dec(x_215); lean_ctor_set(x_202, 1, x_221); x_222 = l___private_Lean_Data_JsonRpc_0__Lean_JsonRpc_messageMetaDataParser_parseStr(x_202); if (lean_obj_tag(x_222) == 0) @@ -8196,8 +8196,8 @@ else { lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_dec(x_202); -lean_inc(x_214); x_234 = lean_string_utf8_next_fast(x_214, x_215); +lean_dec(x_215); x_235 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_235, 0, x_214); lean_ctor_set(x_235, 1, x_234); @@ -8307,8 +8307,8 @@ else { lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_dec(x_191); -lean_inc(x_193); x_250 = lean_string_utf8_next_fast(x_193, x_194); +lean_dec(x_194); x_251 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_251, 0, x_193); lean_ctor_set(x_251, 1, x_250); @@ -8388,8 +8388,8 @@ if (lean_is_exclusive(x_253)) { lean_dec_ref(x_253); x_269 = lean_box(0); } -lean_inc(x_265); x_270 = lean_string_utf8_next_fast(x_265, x_266); +lean_dec(x_266); if (lean_is_scalar(x_269)) { x_271 = lean_alloc_ctor(0, 2, 0); } else { @@ -8535,8 +8535,8 @@ if (lean_is_exclusive(x_287)) { lean_dec_ref(x_287); x_292 = lean_box(0); } -lean_inc(x_288); x_293 = lean_string_utf8_next_fast(x_288, x_289); +lean_dec(x_289); if (lean_is_scalar(x_292)) { x_294 = lean_alloc_ctor(0, 2, 0); } else { @@ -8620,8 +8620,8 @@ if (lean_is_exclusive(x_296)) { lean_dec_ref(x_296); x_314 = lean_box(0); } -lean_inc(x_310); x_315 = lean_string_utf8_next_fast(x_310, x_311); +lean_dec(x_311); if (lean_is_scalar(x_314)) { x_316 = lean_alloc_ctor(0, 2, 0); } else { @@ -8771,8 +8771,8 @@ else { lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_dec(x_179); -lean_inc(x_181); x_337 = lean_string_utf8_next_fast(x_181, x_182); +lean_dec(x_182); x_338 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_338, 0, x_181); lean_ctor_set(x_338, 1, x_337); @@ -8808,8 +8808,8 @@ if (lean_is_exclusive(x_340)) { lean_dec_ref(x_340); x_346 = lean_box(0); } -lean_inc(x_342); x_347 = lean_string_utf8_next_fast(x_342, x_343); +lean_dec(x_343); if (lean_is_scalar(x_346)) { x_348 = lean_alloc_ctor(0, 2, 0); } else { @@ -8903,8 +8903,8 @@ if (lean_is_exclusive(x_350)) { lean_dec_ref(x_350); x_368 = lean_box(0); } -lean_inc(x_364); x_369 = lean_string_utf8_next_fast(x_364, x_365); +lean_dec(x_365); if (lean_is_scalar(x_368)) { x_370 = lean_alloc_ctor(0, 2, 0); } else { @@ -9092,8 +9092,8 @@ if (lean_is_exclusive(x_392)) { lean_dec_ref(x_392); x_397 = lean_box(0); } -lean_inc(x_393); x_398 = lean_string_utf8_next_fast(x_393, x_394); +lean_dec(x_394); if (lean_is_scalar(x_397)) { x_399 = lean_alloc_ctor(0, 2, 0); } else { @@ -9133,8 +9133,8 @@ if (lean_is_exclusive(x_401)) { lean_dec_ref(x_401); x_407 = lean_box(0); } -lean_inc(x_403); x_408 = lean_string_utf8_next_fast(x_403, x_404); +lean_dec(x_404); if (lean_is_scalar(x_407)) { x_409 = lean_alloc_ctor(0, 2, 0); } else { @@ -9228,8 +9228,8 @@ if (lean_is_exclusive(x_411)) { lean_dec_ref(x_411); x_429 = lean_box(0); } -lean_inc(x_425); x_430 = lean_string_utf8_next_fast(x_425, x_426); +lean_dec(x_426); if (lean_is_scalar(x_429)) { x_431 = lean_alloc_ctor(0, 2, 0); } else { @@ -9422,8 +9422,8 @@ else { lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_dec(x_163); -lean_inc(x_169); x_458 = lean_string_utf8_next_fast(x_169, x_170); +lean_dec(x_170); x_459 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_459, 0, x_169); lean_ctor_set(x_459, 1, x_458); @@ -9460,8 +9460,8 @@ if (lean_is_exclusive(x_461)) { lean_dec_ref(x_461); x_467 = lean_box(0); } -lean_inc(x_463); x_468 = lean_string_utf8_next_fast(x_463, x_464); +lean_dec(x_464); if (lean_is_scalar(x_467)) { x_469 = lean_alloc_ctor(0, 2, 0); } else { @@ -9501,8 +9501,8 @@ if (lean_is_exclusive(x_471)) { lean_dec_ref(x_471); x_477 = lean_box(0); } -lean_inc(x_473); x_478 = lean_string_utf8_next_fast(x_473, x_474); +lean_dec(x_474); if (lean_is_scalar(x_477)) { x_479 = lean_alloc_ctor(0, 2, 0); } else { @@ -9596,8 +9596,8 @@ if (lean_is_exclusive(x_481)) { lean_dec_ref(x_481); x_499 = lean_box(0); } -lean_inc(x_495); x_500 = lean_string_utf8_next_fast(x_495, x_496); +lean_dec(x_496); if (lean_is_scalar(x_499)) { x_501 = lean_alloc_ctor(0, 2, 0); } else { @@ -9885,8 +9885,8 @@ else { lean_object* x_532; lean_object* x_533; lean_object* x_534; uint8_t x_535; lean_object* x_536; lean_object* x_537; lean_object* x_544; lean_object* x_550; uint8_t x_551; lean_dec(x_29); -lean_inc(x_32); x_532 = lean_string_utf8_next_fast(x_32, x_33); +lean_dec(x_33); x_533 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_533, 0, x_32); lean_ctor_set(x_533, 1, x_532); @@ -10259,8 +10259,8 @@ if (lean_is_exclusive(x_601)) { lean_dec_ref(x_601); x_608 = lean_box(0); } -lean_inc(x_603); x_609 = lean_string_utf8_next_fast(x_603, x_604); +lean_dec(x_604); if (lean_is_scalar(x_608)) { x_610 = lean_alloc_ctor(0, 2, 0); } else { @@ -10426,8 +10426,8 @@ if (lean_is_exclusive(x_632)) { lean_dec_ref(x_632); x_642 = lean_box(0); } -lean_inc(x_638); x_643 = lean_string_utf8_next_fast(x_638, x_639); +lean_dec(x_639); if (lean_is_scalar(x_642)) { x_644 = lean_alloc_ctor(0, 2, 0); } else { @@ -10468,8 +10468,8 @@ if (lean_is_exclusive(x_646)) { lean_dec_ref(x_646); x_652 = lean_box(0); } -lean_inc(x_648); x_653 = lean_string_utf8_next_fast(x_648, x_649); +lean_dec(x_649); if (lean_is_scalar(x_652)) { x_654 = lean_alloc_ctor(0, 2, 0); } else { @@ -10509,8 +10509,8 @@ if (lean_is_exclusive(x_656)) { lean_dec_ref(x_656); x_662 = lean_box(0); } -lean_inc(x_658); x_663 = lean_string_utf8_next_fast(x_658, x_659); +lean_dec(x_659); if (lean_is_scalar(x_662)) { x_664 = lean_alloc_ctor(0, 2, 0); } else { @@ -10604,8 +10604,8 @@ if (lean_is_exclusive(x_666)) { lean_dec_ref(x_666); x_684 = lean_box(0); } -lean_inc(x_680); x_685 = lean_string_utf8_next_fast(x_680, x_681); +lean_dec(x_681); if (lean_is_scalar(x_684)) { x_686 = lean_alloc_ctor(0, 2, 0); } else { @@ -10936,8 +10936,8 @@ else { lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_dec(x_2); -lean_inc(x_20); x_723 = lean_string_utf8_next_fast(x_20, x_21); +lean_dec(x_21); x_724 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_724, 0, x_20); lean_ctor_set(x_724, 1, x_723); @@ -10975,8 +10975,8 @@ if (lean_is_exclusive(x_726)) { lean_dec_ref(x_726); x_733 = lean_box(0); } -lean_inc(x_729); x_734 = lean_string_utf8_next_fast(x_729, x_730); +lean_dec(x_730); if (lean_is_scalar(x_733)) { x_735 = lean_alloc_ctor(0, 2, 0); } else { @@ -11353,8 +11353,8 @@ if (lean_is_exclusive(x_803)) { lean_dec_ref(x_803); x_810 = lean_box(0); } -lean_inc(x_805); x_811 = lean_string_utf8_next_fast(x_805, x_806); +lean_dec(x_806); if (lean_is_scalar(x_810)) { x_812 = lean_alloc_ctor(0, 2, 0); } else { @@ -11520,8 +11520,8 @@ if (lean_is_exclusive(x_834)) { lean_dec_ref(x_834); x_844 = lean_box(0); } -lean_inc(x_840); x_845 = lean_string_utf8_next_fast(x_840, x_841); +lean_dec(x_841); if (lean_is_scalar(x_844)) { x_846 = lean_alloc_ctor(0, 2, 0); } else { @@ -11562,8 +11562,8 @@ if (lean_is_exclusive(x_848)) { lean_dec_ref(x_848); x_854 = lean_box(0); } -lean_inc(x_850); x_855 = lean_string_utf8_next_fast(x_850, x_851); +lean_dec(x_851); if (lean_is_scalar(x_854)) { x_856 = lean_alloc_ctor(0, 2, 0); } else { @@ -11603,8 +11603,8 @@ if (lean_is_exclusive(x_858)) { lean_dec_ref(x_858); x_864 = lean_box(0); } -lean_inc(x_860); x_865 = lean_string_utf8_next_fast(x_860, x_861); +lean_dec(x_861); if (lean_is_scalar(x_864)) { x_866 = lean_alloc_ctor(0, 2, 0); } else { @@ -11698,8 +11698,8 @@ if (lean_is_exclusive(x_868)) { lean_dec_ref(x_868); x_886 = lean_box(0); } -lean_inc(x_882); x_887 = lean_string_utf8_next_fast(x_882, x_883); +lean_dec(x_883); if (lean_is_scalar(x_886)) { x_888 = lean_alloc_ctor(0, 2, 0); } else { @@ -12041,8 +12041,8 @@ return x_926; block_19: { lean_object* x_5; lean_object* x_6; lean_object* x_7; -lean_inc(x_3); x_5 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_6 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_6, 0, x_3); lean_ctor_set(x_6, 1, x_5); diff --git a/stage0/stdlib/Lean/Data/Xml/Parser.c b/stage0/stdlib/Lean/Data/Xml/Parser.c index 7b7f75a539..0e8edafd63 100644 --- a/stage0/stdlib/Lean/Data/Xml/Parser.c +++ b/stage0/stdlib/Lean/Data/Xml/Parser.c @@ -667,8 +667,8 @@ x_52 = lean_ctor_get(x_13, 1); lean_dec(x_52); x_53 = lean_ctor_get(x_13, 0); lean_dec(x_53); -lean_inc(x_18); x_54 = lean_string_utf8_next_fast(x_18, x_19); +lean_dec(x_19); lean_ctor_set(x_13, 1, x_54); x_2 = x_13; goto block_5; @@ -677,8 +677,8 @@ else { lean_object* x_55; lean_object* x_56; lean_dec(x_13); -lean_inc(x_18); x_55 = lean_string_utf8_next_fast(x_18, x_19); +lean_dec(x_19); x_56 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_56, 0, x_18); lean_ctor_set(x_56, 1, x_55); @@ -770,8 +770,8 @@ else lean_object* x_36; lean_object* x_37; lean_dec_ref(x_21); lean_dec(x_15); -lean_inc(x_22); x_36 = lean_string_utf8_next_fast(x_22, x_23); +lean_dec(x_23); if (lean_is_scalar(x_17)) { x_37 = lean_alloc_ctor(0, 2, 0); } else { @@ -954,8 +954,6 @@ x_67 = lean_ctor_get(x_2, 1); lean_dec(x_67); x_68 = lean_ctor_get(x_2, 0); lean_dec(x_68); -lean_inc(x_12); -lean_inc(x_11); x_69 = lean_string_utf8_next_fast(x_11, x_12); lean_ctor_set(x_2, 1, x_69); lean_inc_ref(x_1); @@ -1023,8 +1021,8 @@ x_86 = lean_ctor_get(x_71, 1); lean_dec(x_86); x_87 = lean_ctor_get(x_71, 0); lean_dec(x_87); -lean_inc(x_74); x_88 = lean_string_utf8_next_fast(x_74, x_75); +lean_dec(x_75); lean_ctor_set(x_71, 1, x_88); x_89 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_89, 0, x_71); @@ -1035,8 +1033,8 @@ else { lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_dec(x_71); -lean_inc(x_74); x_90 = lean_string_utf8_next_fast(x_74, x_75); +lean_dec(x_75); x_91 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_91, 0, x_74); lean_ctor_set(x_91, 1, x_90); @@ -1093,8 +1091,6 @@ else { lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_dec(x_2); -lean_inc(x_12); -lean_inc(x_11); x_96 = lean_string_utf8_next_fast(x_11, x_12); x_97 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_97, 0, x_11); @@ -1164,8 +1160,8 @@ if (lean_is_exclusive(x_99)) { lean_dec_ref(x_99); x_113 = lean_box(0); } -lean_inc(x_102); x_114 = lean_string_utf8_next_fast(x_102, x_103); +lean_dec(x_103); if (lean_is_scalar(x_113)) { x_115 = lean_alloc_ctor(0, 2, 0); } else { @@ -1308,8 +1304,8 @@ else { lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_dec_ref(x_14); -lean_inc(x_15); x_25 = lean_string_utf8_next_fast(x_15, x_16); +lean_dec(x_16); x_26 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_26, 0, x_15); lean_ctor_set(x_26, 1, x_25); @@ -1364,8 +1360,8 @@ x_39 = lean_ctor_get(x_29, 1); lean_dec(x_39); x_40 = lean_ctor_get(x_29, 0); lean_dec(x_40); -lean_inc(x_31); x_41 = lean_string_utf8_next_fast(x_31, x_32); +lean_dec(x_32); lean_ctor_set(x_29, 1, x_41); return x_27; } @@ -1373,8 +1369,8 @@ else { lean_object* x_42; lean_object* x_43; lean_dec(x_29); -lean_inc(x_31); x_42 = lean_string_utf8_next_fast(x_31, x_32); +lean_dec(x_32); x_43 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_43, 0, x_31); lean_ctor_set(x_43, 1, x_42); @@ -1441,8 +1437,8 @@ if (lean_is_exclusive(x_44)) { lean_dec_ref(x_44); x_54 = lean_box(0); } -lean_inc(x_46); x_55 = lean_string_utf8_next_fast(x_46, x_47); +lean_dec(x_47); if (lean_is_scalar(x_54)) { x_56 = lean_alloc_ctor(0, 2, 0); } else { @@ -1572,8 +1568,6 @@ if (x_37 == 0) { uint32_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_56; uint8_t x_57; x_38 = lean_string_utf8_get_fast(x_2, x_3); -lean_inc(x_3); -lean_inc(x_2); x_39 = lean_string_utf8_next_fast(x_2, x_3); lean_inc(x_2); x_40 = lean_alloc_ctor(0, 2, 0); @@ -1771,8 +1765,8 @@ x_24 = lean_ctor_get(x_1, 1); lean_dec(x_24); x_25 = lean_ctor_get(x_1, 0); lean_dec(x_25); -lean_inc(x_2); x_26 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); lean_ctor_set(x_1, 1, x_26); x_27 = l_Lean_Xml_Parser_Char___boxed__const__1; x_28 = lean_alloc_ctor(0, 2, 0); @@ -1784,8 +1778,8 @@ else { lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_dec(x_1); -lean_inc(x_2); x_29 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); x_30 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_30, 0, x_2); lean_ctor_set(x_30, 1, x_29); @@ -1862,8 +1856,8 @@ x_67 = lean_ctor_get(x_3, 1); lean_dec(x_67); x_68 = lean_ctor_get(x_3, 0); lean_dec(x_68); -lean_inc(x_9); x_69 = lean_string_utf8_next_fast(x_9, x_10); +lean_dec(x_10); lean_ctor_set(x_3, 1, x_69); x_4 = x_3; x_5 = x_1; @@ -1873,8 +1867,8 @@ else { lean_object* x_70; lean_object* x_71; lean_dec(x_3); -lean_inc(x_9); x_70 = lean_string_utf8_next_fast(x_9, x_10); +lean_dec(x_10); x_71 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_71, 0, x_9); lean_ctor_set(x_71, 1, x_70); @@ -2059,8 +2053,8 @@ x_48 = lean_ctor_get(x_37, 1); lean_dec(x_48); x_49 = lean_ctor_get(x_37, 0); lean_dec(x_49); -lean_inc(x_38); x_50 = lean_string_utf8_next_fast(x_38, x_39); +lean_dec(x_39); lean_ctor_set(x_37, 1, x_50); x_4 = x_37; x_5 = x_43; @@ -2070,8 +2064,8 @@ else { lean_object* x_51; lean_object* x_52; lean_dec(x_37); -lean_inc(x_38); x_51 = lean_string_utf8_next_fast(x_38, x_39); +lean_dec(x_39); x_52 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_52, 0, x_38); lean_ctor_set(x_52, 1, x_51); @@ -2171,8 +2165,8 @@ x_66 = lean_ctor_get(x_1, 1); lean_dec(x_66); x_67 = lean_ctor_get(x_1, 0); lean_dec(x_67); -lean_inc(x_6); x_68 = lean_string_utf8_next_fast(x_6, x_7); +lean_dec(x_7); lean_ctor_set(x_1, 1, x_68); x_9 = x_1; x_10 = x_8; @@ -2182,8 +2176,8 @@ else { lean_object* x_69; lean_object* x_70; lean_dec(x_1); -lean_inc(x_6); x_69 = lean_string_utf8_next_fast(x_6, x_7); +lean_dec(x_7); x_70 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_70, 0, x_6); lean_ctor_set(x_70, 1, x_69); @@ -2348,8 +2342,8 @@ x_44 = lean_ctor_get(x_30, 1); lean_dec(x_44); x_45 = lean_ctor_get(x_30, 0); lean_dec(x_45); -lean_inc(x_31); x_46 = lean_string_utf8_next_fast(x_31, x_32); +lean_dec(x_32); lean_ctor_set(x_30, 1, x_46); x_9 = x_30; x_10 = x_39; @@ -2359,8 +2353,8 @@ else { lean_object* x_47; lean_object* x_48; lean_dec(x_30); -lean_inc(x_31); x_47 = lean_string_utf8_next_fast(x_31, x_32); +lean_dec(x_32); x_48 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_48, 0, x_31); lean_ctor_set(x_48, 1, x_47); @@ -2420,8 +2414,8 @@ if (lean_is_exclusive(x_30)) { lean_dec_ref(x_30); x_56 = lean_box(0); } -lean_inc(x_31); x_57 = lean_string_utf8_next_fast(x_31, x_32); +lean_dec(x_32); if (lean_is_scalar(x_56)) { x_58 = lean_alloc_ctor(0, 2, 0); } else { @@ -2613,8 +2607,8 @@ else { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_dec_ref(x_2); -lean_inc(x_3); x_12 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); lean_inc(x_12); x_13 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_13, 0, x_3); @@ -3120,8 +3114,6 @@ if (x_8 == 0) uint8_t x_9; uint32_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint32_t x_31; uint8_t x_32; x_9 = 1; x_10 = lean_string_utf8_get_fast(x_5, x_6); -lean_inc(x_6); -lean_inc(x_5); x_11 = lean_string_utf8_next_fast(x_5, x_6); lean_inc(x_5); x_12 = lean_alloc_ctor(0, 2, 0); @@ -3551,8 +3543,8 @@ x_142 = lean_ctor_get(x_100, 1); lean_dec(x_142); x_143 = lean_ctor_get(x_100, 0); lean_dec(x_143); -lean_inc(x_103); x_144 = lean_string_utf8_next_fast(x_103, x_104); +lean_dec(x_104); lean_ctor_set(x_100, 1, x_144); x_145 = lean_box_uint32(x_136); lean_ctor_set_tag(x_99, 0); @@ -3563,8 +3555,8 @@ else { lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_dec(x_100); -lean_inc(x_103); x_146 = lean_string_utf8_next_fast(x_103, x_104); +lean_dec(x_104); x_147 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_147, 0, x_103); lean_ctor_set(x_147, 1, x_146); @@ -3628,8 +3620,8 @@ if (lean_is_exclusive(x_100)) { lean_dec_ref(x_100); x_156 = lean_box(0); } -lean_inc(x_103); x_157 = lean_string_utf8_next_fast(x_103, x_104); +lean_dec(x_104); if (lean_is_scalar(x_156)) { x_158 = lean_alloc_ctor(0, 2, 0); } else { @@ -3713,8 +3705,8 @@ else { lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_dec_ref(x_106); -lean_inc(x_107); x_119 = lean_string_utf8_next_fast(x_107, x_108); +lean_dec(x_108); if (lean_is_scalar(x_102)) { x_120 = lean_alloc_ctor(0, 2, 0); } else { @@ -3774,8 +3766,8 @@ goto block_123; block_9: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; -lean_inc(x_3); x_5 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_6 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_6, 0, x_3); lean_ctor_set(x_6, 1, x_5); @@ -3992,8 +3984,8 @@ else { lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_dec_ref(x_53); -lean_inc(x_54); x_64 = lean_string_utf8_next_fast(x_54, x_55); +lean_dec(x_55); x_65 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_65, 0, x_54); lean_ctor_set(x_65, 1, x_64); @@ -4088,8 +4080,8 @@ else { lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_dec_ref(x_77); -lean_inc(x_78); x_88 = lean_string_utf8_next_fast(x_78, x_79); +lean_dec(x_79); x_89 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_89, 0, x_78); lean_ctor_set(x_89, 1, x_88); @@ -4303,8 +4295,8 @@ x_22 = lean_ctor_get(x_2, 1); lean_dec(x_22); x_23 = lean_ctor_get(x_2, 0); lean_dec(x_23); -lean_inc(x_3); x_24 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); lean_ctor_set(x_2, 1, x_24); x_25 = lean_box_uint32(x_16); x_26 = lean_array_push(x_1, x_25); @@ -4315,8 +4307,8 @@ else { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_dec(x_2); -lean_inc(x_3); x_28 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_29 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_29, 0, x_3); lean_ctor_set(x_29, 1, x_28); @@ -4450,8 +4442,8 @@ x_19 = lean_ctor_get(x_4, 1); lean_dec(x_19); x_20 = lean_ctor_get(x_4, 0); lean_dec(x_20); -lean_inc(x_9); x_21 = lean_string_utf8_next_fast(x_9, x_10); +lean_dec(x_10); lean_ctor_set(x_4, 1, x_21); x_22 = l_Lean_Xml_Parser_VersionNum___closed__1; x_23 = lean_box_uint32(x_13); @@ -4510,8 +4502,8 @@ else { lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_dec(x_4); -lean_inc(x_9); x_36 = lean_string_utf8_next_fast(x_9, x_10); +lean_dec(x_10); x_37 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_37, 0, x_9); lean_ctor_set(x_37, 1, x_36); @@ -4782,8 +4774,6 @@ if (x_134 == 0) { uint32_t x_135; lean_object* x_136; lean_object* x_137; uint32_t x_143; uint8_t x_144; x_135 = lean_string_utf8_get_fast(x_8, x_9); -lean_inc(x_9); -lean_inc(x_8); x_136 = lean_string_utf8_next_fast(x_8, x_9); lean_inc(x_8); x_137 = lean_alloc_ctor(0, 2, 0); @@ -4974,8 +4964,8 @@ else lean_object* x_40; lean_object* x_41; lean_dec_ref(x_30); lean_dec(x_9); -lean_inc(x_31); x_40 = lean_string_utf8_next_fast(x_31, x_32); +lean_dec(x_32); x_41 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_40); @@ -5070,8 +5060,8 @@ else lean_object* x_62; lean_object* x_63; lean_dec_ref(x_51); lean_dec(x_9); -lean_inc(x_52); x_62 = lean_string_utf8_next_fast(x_52, x_53); +lean_dec(x_53); x_63 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_63, 0, x_52); lean_ctor_set(x_63, 1, x_62); @@ -5183,8 +5173,8 @@ x_87 = lean_ctor_get(x_73, 1); lean_dec(x_87); x_88 = lean_ctor_get(x_73, 0); lean_dec(x_88); -lean_inc(x_77); x_89 = lean_string_utf8_next_fast(x_77, x_78); +lean_dec(x_78); lean_ctor_set(x_73, 1, x_89); x_3 = x_73; x_4 = x_82; @@ -5194,8 +5184,8 @@ else { lean_object* x_90; lean_object* x_91; lean_dec(x_73); -lean_inc(x_77); x_90 = lean_string_utf8_next_fast(x_77, x_78); +lean_dec(x_78); x_91 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_91, 0, x_77); lean_ctor_set(x_91, 1, x_90); @@ -5286,8 +5276,8 @@ if (lean_is_exclusive(x_73)) { lean_dec_ref(x_73); x_103 = lean_box(0); } -lean_inc(x_93); x_104 = lean_string_utf8_next_fast(x_93, x_94); +lean_dec(x_94); if (lean_is_scalar(x_103)) { x_105 = lean_alloc_ctor(0, 2, 0); } else { @@ -5397,8 +5387,8 @@ else lean_object* x_127; lean_object* x_128; lean_dec_ref(x_116); lean_dec(x_9); -lean_inc(x_117); x_127 = lean_string_utf8_next_fast(x_117, x_118); +lean_dec(x_118); x_128 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_128, 0, x_117); lean_ctor_set(x_128, 1, x_127); @@ -5448,8 +5438,6 @@ if (x_14 == 0) { uint32_t x_15; lean_object* x_16; lean_object* x_17; uint32_t x_23; uint8_t x_24; x_15 = lean_string_utf8_get_fast(x_11, x_12); -lean_inc(x_12); -lean_inc(x_11); x_16 = lean_string_utf8_next_fast(x_11, x_12); lean_inc(x_11); x_17 = lean_alloc_ctor(0, 2, 0); @@ -6132,8 +6120,8 @@ x_59 = lean_ctor_get(x_2, 1); lean_dec(x_59); x_60 = lean_ctor_get(x_2, 0); lean_dec(x_60); -lean_inc(x_8); x_61 = lean_string_utf8_next_fast(x_8, x_9); +lean_dec(x_9); lean_ctor_set(x_2, 1, x_61); x_62 = l_Lean_Xml_Parser_endl___closed__2; x_63 = lean_string_push(x_62, x_54); @@ -6145,8 +6133,8 @@ else { lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_dec(x_2); -lean_inc(x_8); x_64 = lean_string_utf8_next_fast(x_8, x_9); +lean_dec(x_9); x_65 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_65, 0, x_8); lean_ctor_set(x_65, 1, x_64); @@ -6284,8 +6272,8 @@ goto block_16; else { lean_object* x_32; uint8_t x_33; -lean_inc(x_22); x_32 = lean_string_utf8_next_fast(x_22, x_23); +lean_dec(x_23); x_33 = lean_nat_dec_eq(x_32, x_26); lean_dec(x_26); if (x_33 == 0) @@ -6326,8 +6314,8 @@ x_38 = lean_ctor_get(x_2, 1); lean_dec(x_38); x_39 = lean_ctor_get(x_2, 0); lean_dec(x_39); -lean_inc(x_22); x_40 = lean_string_utf8_next_fast(x_22, x_32); +lean_dec(x_32); lean_ctor_set(x_2, 1, x_40); lean_ctor_set(x_2, 0, x_22); x_41 = l_Lean_Xml_Parser_endl___closed__2; @@ -6343,8 +6331,8 @@ else { lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_dec(x_2); -lean_inc(x_22); x_45 = lean_string_utf8_next_fast(x_22, x_32); +lean_dec(x_32); x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_22); lean_ctor_set(x_46, 1, x_45); @@ -6871,8 +6859,8 @@ x_118 = lean_ctor_get(x_90, 1); lean_dec(x_118); x_119 = lean_ctor_get(x_90, 0); lean_dec(x_119); -lean_inc(x_93); x_120 = lean_string_utf8_next_fast(x_93, x_94); +lean_dec(x_94); lean_inc(x_120); lean_inc(x_93); lean_ctor_set(x_90, 1, x_120); @@ -6886,8 +6874,8 @@ else { lean_object* x_121; lean_object* x_122; lean_dec(x_90); -lean_inc(x_93); x_121 = lean_string_utf8_next_fast(x_93, x_94); +lean_dec(x_94); lean_inc(x_121); lean_inc(x_93); x_122 = lean_alloc_ctor(0, 2, 0); @@ -6979,8 +6967,8 @@ else lean_object* x_108; lean_object* x_109; lean_dec_ref(x_95); lean_dec(x_92); -lean_inc(x_96); x_108 = lean_string_utf8_next_fast(x_96, x_97); +lean_dec(x_97); lean_inc(x_108); lean_inc(x_96); x_109 = lean_alloc_ctor(0, 2, 0); @@ -7109,8 +7097,8 @@ x_26 = lean_ctor_get(x_12, 1); lean_dec(x_26); x_27 = lean_ctor_get(x_12, 0); lean_dec(x_27); -lean_inc(x_14); x_28 = lean_string_utf8_next_fast(x_14, x_15); +lean_dec(x_15); lean_ctor_set(x_12, 1, x_28); x_29 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_29, 0, x_12); @@ -7121,8 +7109,8 @@ else { lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_dec(x_12); -lean_inc(x_14); x_30 = lean_string_utf8_next_fast(x_14, x_15); +lean_dec(x_15); x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_14); lean_ctor_set(x_31, 1, x_30); @@ -7169,8 +7157,8 @@ else { lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_dec_ref(x_34); -lean_inc(x_35); x_44 = lean_string_utf8_next_fast(x_35, x_36); +lean_dec(x_36); x_45 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_45, 0, x_35); lean_ctor_set(x_45, 1, x_44); @@ -7261,8 +7249,8 @@ x_69 = lean_ctor_get(x_55, 1); lean_dec(x_69); x_70 = lean_ctor_get(x_55, 0); lean_dec(x_70); -lean_inc(x_57); x_71 = lean_string_utf8_next_fast(x_57, x_58); +lean_dec(x_58); lean_inc(x_71); lean_inc(x_57); lean_ctor_set(x_55, 1, x_71); @@ -7276,8 +7264,8 @@ else { lean_object* x_72; lean_object* x_73; lean_dec(x_55); -lean_inc(x_57); x_72 = lean_string_utf8_next_fast(x_57, x_58); +lean_dec(x_58); lean_inc(x_72); lean_inc(x_57); x_73 = lean_alloc_ctor(0, 2, 0); @@ -7327,8 +7315,8 @@ else { lean_object* x_85; lean_object* x_86; lean_dec_ref(x_75); -lean_inc(x_76); x_85 = lean_string_utf8_next_fast(x_76, x_77); +lean_dec(x_77); lean_inc(x_85); lean_inc(x_76); x_86 = lean_alloc_ctor(0, 2, 0); @@ -7963,8 +7951,8 @@ x_18 = lean_ctor_get(x_3, 1); lean_dec(x_18); x_19 = lean_ctor_get(x_3, 0); lean_dec(x_19); -lean_inc(x_4); x_20 = lean_string_utf8_next_fast(x_4, x_5); +lean_dec(x_5); lean_ctor_set(x_3, 1, x_20); x_21 = lean_string_push(x_2, x_15); x_2 = x_21; @@ -7974,8 +7962,8 @@ else { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_dec(x_3); -lean_inc(x_4); x_23 = lean_string_utf8_next_fast(x_4, x_5); +lean_dec(x_5); x_24 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_24, 0, x_4); lean_ctor_set(x_24, 1, x_23); @@ -8076,8 +8064,6 @@ x_33 = lean_ctor_get(x_1, 1); lean_dec(x_33); x_34 = lean_ctor_get(x_1, 0); lean_dec(x_34); -lean_inc(x_7); -lean_inc(x_6); x_35 = lean_string_utf8_next_fast(x_6, x_7); lean_ctor_set(x_1, 1, x_35); x_36 = l_Lean_Xml_Parser_endl___closed__2; @@ -8144,8 +8130,8 @@ x_53 = lean_ctor_get(x_38, 1); lean_dec(x_53); x_54 = lean_ctor_get(x_38, 0); lean_dec(x_54); -lean_inc(x_41); x_55 = lean_string_utf8_next_fast(x_41, x_42); +lean_dec(x_42); lean_ctor_set(x_38, 1, x_55); x_56 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_56, 0, x_38); @@ -8156,8 +8142,8 @@ else { lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_dec(x_38); -lean_inc(x_41); x_57 = lean_string_utf8_next_fast(x_41, x_42); +lean_dec(x_42); x_58 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_58, 0, x_41); lean_ctor_set(x_58, 1, x_57); @@ -8222,8 +8208,6 @@ else { lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_dec(x_1); -lean_inc(x_7); -lean_inc(x_6); x_63 = lean_string_utf8_next_fast(x_6, x_7); x_64 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_64, 0, x_6); @@ -8292,8 +8276,8 @@ if (lean_is_exclusive(x_67)) { lean_dec_ref(x_67); x_81 = lean_box(0); } -lean_inc(x_70); x_82 = lean_string_utf8_next_fast(x_70, x_71); +lean_dec(x_71); if (lean_is_scalar(x_81)) { x_83 = lean_alloc_ctor(0, 2, 0); } else { @@ -8432,8 +8416,8 @@ else { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_dec_ref(x_9); -lean_inc(x_10); x_20 = lean_string_utf8_next_fast(x_10, x_11); +lean_dec(x_11); x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_10); lean_ctor_set(x_21, 1, x_20); @@ -8545,8 +8529,6 @@ if (x_82 == 0) { uint32_t x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; uint32_t x_93; uint8_t x_94; x_83 = lean_string_utf8_get_fast(x_59, x_60); -lean_inc(x_60); -lean_inc(x_59); x_84 = lean_string_utf8_next_fast(x_59, x_60); lean_inc(x_59); x_85 = lean_alloc_ctor(0, 2, 0); @@ -8723,8 +8705,8 @@ x_29 = lean_ctor_get(x_13, 1); lean_dec(x_29); x_30 = lean_ctor_get(x_13, 0); lean_dec(x_30); -lean_inc(x_14); x_31 = lean_string_utf8_next_fast(x_14, x_15); +lean_dec(x_15); lean_ctor_set(x_13, 1, x_31); x_32 = lean_box_uint32(x_22); lean_ctor_set_tag(x_12, 0); @@ -8735,8 +8717,8 @@ else { lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_dec(x_13); -lean_inc(x_14); x_33 = lean_string_utf8_next_fast(x_14, x_15); +lean_dec(x_15); x_34 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_34, 0, x_14); lean_ctor_set(x_34, 1, x_33); @@ -8800,8 +8782,8 @@ if (lean_is_exclusive(x_13)) { lean_dec_ref(x_13); x_45 = lean_box(0); } -lean_inc(x_14); x_46 = lean_string_utf8_next_fast(x_14, x_15); +lean_dec(x_15); if (lean_is_scalar(x_45)) { x_47 = lean_alloc_ctor(0, 2, 0); } else { @@ -8912,8 +8894,8 @@ else { lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_dec_ref(x_62); -lean_inc(x_63); x_73 = lean_string_utf8_next_fast(x_63, x_64); +lean_dec(x_64); x_74 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_74, 0, x_63); lean_ctor_set(x_74, 1, x_73); @@ -9237,8 +9219,6 @@ x_67 = lean_ctor_get(x_1, 1); lean_dec(x_67); x_68 = lean_ctor_get(x_1, 0); lean_dec(x_68); -lean_inc(x_11); -lean_inc(x_10); x_69 = lean_string_utf8_next_fast(x_10, x_11); lean_ctor_set(x_1, 1, x_69); x_70 = l_Lean_Xml_Parser_endl___closed__2; @@ -9305,8 +9285,8 @@ x_87 = lean_ctor_get(x_72, 1); lean_dec(x_87); x_88 = lean_ctor_get(x_72, 0); lean_dec(x_88); -lean_inc(x_75); x_89 = lean_string_utf8_next_fast(x_75, x_76); +lean_dec(x_76); lean_ctor_set(x_72, 1, x_89); x_90 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_90, 0, x_72); @@ -9317,8 +9297,8 @@ else { lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_dec(x_72); -lean_inc(x_75); x_91 = lean_string_utf8_next_fast(x_75, x_76); +lean_dec(x_76); x_92 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_92, 0, x_75); lean_ctor_set(x_92, 1, x_91); @@ -9383,8 +9363,6 @@ else { lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_dec(x_1); -lean_inc(x_11); -lean_inc(x_10); x_97 = lean_string_utf8_next_fast(x_10, x_11); x_98 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_98, 0, x_10); @@ -9453,8 +9431,8 @@ if (lean_is_exclusive(x_101)) { lean_dec_ref(x_101); x_115 = lean_box(0); } -lean_inc(x_104); x_116 = lean_string_utf8_next_fast(x_104, x_105); +lean_dec(x_105); if (lean_is_scalar(x_115)) { x_117 = lean_alloc_ctor(0, 2, 0); } else { @@ -9602,8 +9580,8 @@ else { lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_dec_ref(x_13); -lean_inc(x_14); x_24 = lean_string_utf8_next_fast(x_14, x_15); +lean_dec(x_15); x_25 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_25, 0, x_14); lean_ctor_set(x_25, 1, x_24); @@ -9659,8 +9637,8 @@ x_39 = lean_ctor_get(x_29, 1); lean_dec(x_39); x_40 = lean_ctor_get(x_29, 0); lean_dec(x_40); -lean_inc(x_31); x_41 = lean_string_utf8_next_fast(x_31, x_32); +lean_dec(x_32); lean_ctor_set(x_29, 1, x_41); return x_27; } @@ -9668,8 +9646,8 @@ else { lean_object* x_42; lean_object* x_43; lean_dec(x_29); -lean_inc(x_31); x_42 = lean_string_utf8_next_fast(x_31, x_32); +lean_dec(x_32); x_43 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_43, 0, x_31); lean_ctor_set(x_43, 1, x_42); @@ -9736,8 +9714,8 @@ if (lean_is_exclusive(x_44)) { lean_dec_ref(x_44); x_54 = lean_box(0); } -lean_inc(x_46); x_55 = lean_string_utf8_next_fast(x_46, x_47); +lean_dec(x_47); if (lean_is_scalar(x_54)) { x_56 = lean_alloc_ctor(0, 2, 0); } else { @@ -10321,8 +10299,8 @@ x_27 = lean_ctor_get(x_17, 1); lean_dec(x_27); x_28 = lean_ctor_get(x_17, 0); lean_dec(x_28); -lean_inc(x_18); x_29 = lean_string_utf8_next_fast(x_18, x_19); +lean_dec(x_19); lean_ctor_set(x_17, 1, x_29); x_30 = l_Std_Internal_Parsec_manyCore___at___00Lean_Xml_Parser_Mixed_spec__0___lam__0(x_17); if (lean_obj_tag(x_30) == 0) @@ -10376,8 +10354,8 @@ else { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_dec(x_17); -lean_inc(x_18); x_41 = lean_string_utf8_next_fast(x_18, x_19); +lean_dec(x_19); x_42 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_42, 0, x_18); lean_ctor_set(x_42, 1, x_41); @@ -10651,8 +10629,6 @@ x_141 = lean_ctor_get(x_1, 1); lean_dec(x_141); x_142 = lean_ctor_get(x_1, 0); lean_dec(x_142); -lean_inc(x_52); -lean_inc(x_51); x_143 = lean_string_utf8_next_fast(x_51, x_52); lean_inc(x_143); lean_ctor_set(x_1, 1, x_143); @@ -10739,8 +10715,6 @@ else { lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_dec(x_1); -lean_inc(x_52); -lean_inc(x_51); x_158 = lean_string_utf8_next_fast(x_51, x_52); lean_inc(x_158); x_159 = lean_alloc_ctor(0, 2, 0); @@ -10857,8 +10831,8 @@ else { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_dec_ref(x_7); -lean_inc(x_8); x_17 = lean_string_utf8_next_fast(x_8, x_9); +lean_dec(x_9); x_18 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_18, 0, x_8); lean_ctor_set(x_18, 1, x_17); @@ -11052,8 +11026,8 @@ else { lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_dec_ref(x_55); -lean_inc(x_56); x_65 = lean_string_utf8_next_fast(x_56, x_57); +lean_dec(x_57); lean_inc(x_65); x_66 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_66, 0, x_56); @@ -11744,8 +11718,8 @@ else lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_dec_ref(x_27); lean_dec_ref(x_23); -lean_inc(x_28); x_39 = lean_string_utf8_next_fast(x_28, x_29); +lean_dec(x_29); x_40 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_40, 0, x_28); lean_ctor_set(x_40, 1, x_39); @@ -11852,8 +11826,8 @@ else lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_dec_ref(x_54); lean_dec_ref(x_51); -lean_inc(x_55); x_66 = lean_string_utf8_next_fast(x_55, x_56); +lean_dec(x_56); x_67 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_67, 0, x_55); lean_ctor_set(x_67, 1, x_66); @@ -11917,8 +11891,8 @@ x_81 = lean_ctor_get(x_70, 1); lean_dec(x_81); x_82 = lean_ctor_get(x_70, 0); lean_dec(x_82); -lean_inc(x_72); x_83 = lean_string_utf8_next_fast(x_72, x_73); +lean_dec(x_73); lean_ctor_set(x_70, 1, x_83); x_84 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_84, 0, x_70); @@ -11929,8 +11903,8 @@ else { lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_dec(x_70); -lean_inc(x_72); x_85 = lean_string_utf8_next_fast(x_72, x_73); +lean_dec(x_73); x_86 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_86, 0, x_72); lean_ctor_set(x_86, 1, x_85); @@ -12062,8 +12036,8 @@ x_27 = lean_ctor_get(x_17, 1); lean_dec(x_27); x_28 = lean_ctor_get(x_17, 0); lean_dec(x_28); -lean_inc(x_18); x_29 = lean_string_utf8_next_fast(x_18, x_19); +lean_dec(x_19); lean_ctor_set(x_17, 1, x_29); x_30 = l_Std_Internal_Parsec_manyCore___at___00Lean_Xml_Parser_Mixed_spec__0___lam__0(x_17); if (lean_obj_tag(x_30) == 0) @@ -12117,8 +12091,8 @@ else { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_dec(x_17); -lean_inc(x_18); x_41 = lean_string_utf8_next_fast(x_18, x_19); +lean_dec(x_19); x_42 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_42, 0, x_18); lean_ctor_set(x_42, 1, x_41); @@ -12299,8 +12273,8 @@ x_60 = lean_ctor_get(x_1, 1); lean_dec(x_60); x_61 = lean_ctor_get(x_1, 0); lean_dec(x_61); -lean_inc(x_6); x_62 = lean_string_utf8_next_fast(x_6, x_7); +lean_dec(x_7); lean_inc(x_62); lean_ctor_set(x_1, 1, x_62); x_63 = l_Lean_Xml_Parser_S(x_1); @@ -12370,8 +12344,8 @@ else { lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_dec(x_1); -lean_inc(x_6); x_75 = lean_string_utf8_next_fast(x_6, x_7); +lean_dec(x_7); lean_inc(x_75); x_76 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_76, 0, x_6); @@ -12463,8 +12437,8 @@ else { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_dec_ref(x_13); -lean_inc(x_14); x_23 = lean_string_utf8_next_fast(x_14, x_15); +lean_dec(x_15); x_24 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_24, 0, x_14); lean_ctor_set(x_24, 1, x_23); @@ -12681,8 +12655,8 @@ x_27 = lean_ctor_get(x_17, 1); lean_dec(x_27); x_28 = lean_ctor_get(x_17, 0); lean_dec(x_28); -lean_inc(x_18); x_29 = lean_string_utf8_next_fast(x_18, x_19); +lean_dec(x_19); lean_ctor_set(x_17, 1, x_29); x_30 = l_Std_Internal_Parsec_manyCore___at___00Lean_Xml_Parser_Mixed_spec__0___lam__0(x_17); if (lean_obj_tag(x_30) == 0) @@ -12736,8 +12710,8 @@ else { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_dec(x_17); -lean_inc(x_18); x_41 = lean_string_utf8_next_fast(x_18, x_19); +lean_dec(x_19); x_42 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_42, 0, x_18); lean_ctor_set(x_42, 1, x_41); @@ -12918,8 +12892,8 @@ x_20 = lean_ctor_get(x_1, 1); lean_dec(x_20); x_21 = lean_ctor_get(x_1, 0); lean_dec(x_21); -lean_inc(x_10); x_193 = lean_string_utf8_next_fast(x_10, x_11); +lean_dec(x_11); lean_inc(x_193); lean_ctor_set(x_1, 1, x_193); x_194 = l_Lean_Xml_Parser_S(x_1); @@ -13046,8 +13020,8 @@ x_38 = lean_ctor_get(x_27, 1); lean_dec(x_38); x_39 = lean_ctor_get(x_27, 0); lean_dec(x_39); -lean_inc(x_29); x_40 = lean_string_utf8_next_fast(x_29, x_30); +lean_dec(x_30); lean_ctor_set(x_27, 1, x_40); x_41 = l_Std_Internal_Parsec_manyCore___at___00Lean_Xml_Parser_Mixed_spec__0___lam__0(x_27); if (lean_obj_tag(x_41) == 0) @@ -13125,8 +13099,8 @@ x_63 = lean_ctor_get(x_52, 1); lean_dec(x_63); x_64 = lean_ctor_get(x_52, 0); lean_dec(x_64); -lean_inc(x_54); x_65 = lean_string_utf8_next_fast(x_54, x_55); +lean_dec(x_55); lean_ctor_set(x_52, 1, x_65); x_66 = lean_box(0); lean_ctor_set(x_50, 1, x_66); @@ -13136,8 +13110,8 @@ else { lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_dec(x_52); -lean_inc(x_54); x_67 = lean_string_utf8_next_fast(x_54, x_55); +lean_dec(x_55); x_68 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_68, 0, x_54); lean_ctor_set(x_68, 1, x_67); @@ -13202,8 +13176,8 @@ if (lean_is_exclusive(x_70)) { lean_dec_ref(x_70); x_80 = lean_box(0); } -lean_inc(x_71); x_81 = lean_string_utf8_next_fast(x_71, x_72); +lean_dec(x_72); if (lean_is_scalar(x_80)) { x_82 = lean_alloc_ctor(0, 2, 0); } else { @@ -13304,8 +13278,8 @@ else { lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_dec(x_27); -lean_inc(x_29); x_97 = lean_string_utf8_next_fast(x_29, x_30); +lean_dec(x_30); x_98 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_98, 0, x_29); lean_ctor_set(x_98, 1, x_97); @@ -13394,8 +13368,8 @@ if (lean_is_exclusive(x_109)) { lean_dec_ref(x_109); x_120 = lean_box(0); } -lean_inc(x_111); x_121 = lean_string_utf8_next_fast(x_111, x_112); +lean_dec(x_112); if (lean_is_scalar(x_120)) { x_122 = lean_alloc_ctor(0, 2, 0); } else { @@ -13558,8 +13532,8 @@ if (lean_is_exclusive(x_137)) { lean_dec_ref(x_137); x_147 = lean_box(0); } -lean_inc(x_138); x_148 = lean_string_utf8_next_fast(x_138, x_139); +lean_dec(x_139); if (lean_is_scalar(x_147)) { x_149 = lean_alloc_ctor(0, 2, 0); } else { @@ -13652,8 +13626,8 @@ if (lean_is_exclusive(x_160)) { lean_dec_ref(x_160); x_171 = lean_box(0); } -lean_inc(x_162); x_172 = lean_string_utf8_next_fast(x_162, x_163); +lean_dec(x_163); if (lean_is_scalar(x_171)) { x_173 = lean_alloc_ctor(0, 2, 0); } else { @@ -13802,8 +13776,8 @@ else { lean_object* x_206; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_dec(x_1); -lean_inc(x_10); x_267 = lean_string_utf8_next_fast(x_10, x_11); +lean_dec(x_11); lean_inc(x_267); x_268 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_268, 0, x_10); @@ -13928,8 +13902,8 @@ if (lean_is_exclusive(x_210)) { lean_dec_ref(x_210); x_221 = lean_box(0); } -lean_inc(x_212); x_222 = lean_string_utf8_next_fast(x_212, x_213); +lean_dec(x_213); if (lean_is_scalar(x_221)) { x_223 = lean_alloc_ctor(0, 2, 0); } else { @@ -14022,8 +13996,8 @@ if (lean_is_exclusive(x_234)) { lean_dec_ref(x_234); x_245 = lean_box(0); } -lean_inc(x_236); x_246 = lean_string_utf8_next_fast(x_236, x_237); +lean_dec(x_237); if (lean_is_scalar(x_245)) { x_247 = lean_alloc_ctor(0, 2, 0); } else { @@ -14351,8 +14325,8 @@ else lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_dec_ref(x_27); lean_dec_ref(x_24); -lean_inc(x_28); x_39 = lean_string_utf8_next_fast(x_28, x_29); +lean_dec(x_29); x_40 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_40, 0, x_28); lean_ctor_set(x_40, 1, x_39); @@ -14459,8 +14433,8 @@ else lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_dec_ref(x_54); lean_dec_ref(x_51); -lean_inc(x_55); x_66 = lean_string_utf8_next_fast(x_55, x_56); +lean_dec(x_56); x_67 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_67, 0, x_55); lean_ctor_set(x_67, 1, x_66); @@ -14533,8 +14507,8 @@ x_83 = lean_ctor_get(x_72, 1); lean_dec(x_83); x_84 = lean_ctor_get(x_72, 0); lean_dec(x_84); -lean_inc(x_74); x_85 = lean_string_utf8_next_fast(x_74, x_75); +lean_dec(x_75); lean_ctor_set(x_72, 1, x_85); return x_70; } @@ -14542,8 +14516,8 @@ else { lean_object* x_86; lean_object* x_87; lean_dec(x_72); -lean_inc(x_74); x_86 = lean_string_utf8_next_fast(x_74, x_75); +lean_dec(x_75); x_87 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_87, 0, x_74); lean_ctor_set(x_87, 1, x_86); @@ -14616,8 +14590,8 @@ if (lean_is_exclusive(x_89)) { lean_dec_ref(x_89); x_99 = lean_box(0); } -lean_inc(x_91); x_100 = lean_string_utf8_next_fast(x_91, x_92); +lean_dec(x_92); if (lean_is_scalar(x_99)) { x_101 = lean_alloc_ctor(0, 2, 0); } else { @@ -15115,8 +15089,8 @@ else { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_dec_ref(x_2); -lean_inc(x_3); x_12 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_13 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_13, 0, x_3); lean_ctor_set(x_13, 1, x_12); @@ -17342,8 +17316,8 @@ else { lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_dec_ref(x_24); -lean_inc(x_25); x_33 = lean_string_utf8_next_fast(x_25, x_26); +lean_dec(x_26); lean_inc(x_33); x_34 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_34, 0, x_25); @@ -17462,8 +17436,8 @@ x_68 = lean_ctor_get(x_57, 1); lean_dec(x_68); x_69 = lean_ctor_get(x_57, 0); lean_dec(x_69); -lean_inc(x_59); x_70 = lean_string_utf8_next_fast(x_59, x_60); +lean_dec(x_60); lean_inc(x_70); lean_ctor_set(x_57, 1, x_70); x_71 = l_Lean_Xml_Parser_S(x_57); @@ -17533,8 +17507,8 @@ else { lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_dec(x_57); -lean_inc(x_59); x_83 = lean_string_utf8_next_fast(x_59, x_60); +lean_dec(x_60); lean_inc(x_83); x_84 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_84, 0, x_59); @@ -17639,8 +17613,8 @@ if (lean_is_exclusive(x_94)) { lean_dec_ref(x_94); x_104 = lean_box(0); } -lean_inc(x_95); x_105 = lean_string_utf8_next_fast(x_95, x_96); +lean_dec(x_96); lean_inc(x_105); if (lean_is_scalar(x_104)) { x_106 = lean_alloc_ctor(0, 2, 0); @@ -17783,8 +17757,8 @@ else { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_dec_ref(x_2); -lean_inc(x_3); x_12 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_13 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_13, 0, x_3); lean_ctor_set(x_13, 1, x_12); @@ -18047,8 +18021,8 @@ x_27 = lean_ctor_get(x_17, 1); lean_dec(x_27); x_28 = lean_ctor_get(x_17, 0); lean_dec(x_28); -lean_inc(x_18); x_29 = lean_string_utf8_next_fast(x_18, x_19); +lean_dec(x_19); lean_ctor_set(x_17, 1, x_29); x_30 = l_Std_Internal_Parsec_manyCore___at___00Lean_Xml_Parser_Mixed_spec__0___lam__0(x_17); if (lean_obj_tag(x_30) == 0) @@ -18102,8 +18076,8 @@ else { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_dec(x_17); -lean_inc(x_18); x_41 = lean_string_utf8_next_fast(x_18, x_19); +lean_dec(x_19); x_42 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_42, 0, x_18); lean_ctor_set(x_42, 1, x_41); @@ -18275,8 +18249,8 @@ x_64 = lean_ctor_get(x_1, 1); lean_dec(x_64); x_65 = lean_ctor_get(x_1, 0); lean_dec(x_65); -lean_inc(x_6); x_66 = lean_string_utf8_next_fast(x_6, x_7); +lean_dec(x_7); lean_inc(x_66); lean_ctor_set(x_1, 1, x_66); x_67 = l_Lean_Xml_Parser_S(x_1); @@ -18346,8 +18320,8 @@ else { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_dec(x_1); -lean_inc(x_6); x_79 = lean_string_utf8_next_fast(x_6, x_7); +lean_dec(x_7); lean_inc(x_79); x_80 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_80, 0, x_6); @@ -18439,8 +18413,8 @@ else { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_dec_ref(x_13); -lean_inc(x_14); x_23 = lean_string_utf8_next_fast(x_14, x_15); +lean_dec(x_15); x_24 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_24, 0, x_14); lean_ctor_set(x_24, 1, x_23); @@ -19051,8 +19025,6 @@ return x_13; else { lean_object* x_14; lean_object* x_15; lean_object* x_16; -lean_inc(x_6); -lean_inc(x_5); x_14 = lean_string_utf8_next_fast(x_5, x_6); lean_inc(x_5); x_15 = lean_alloc_ctor(0, 2, 0); @@ -19113,8 +19085,8 @@ lean_object* x_29; lean_object* x_30; lean_dec_ref(x_1); x_29 = l_Lean_Xml_Parser_predefinedEntityToChar(x_20); lean_dec(x_20); -lean_inc(x_21); x_30 = lean_string_utf8_next_fast(x_21, x_22); +lean_dec(x_22); lean_ctor_set(x_18, 1, x_30); lean_ctor_set(x_16, 1, x_29); return x_16; @@ -19177,8 +19149,8 @@ lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_dec_ref(x_1); x_40 = l_Lean_Xml_Parser_predefinedEntityToChar(x_31); lean_dec(x_31); -lean_inc(x_32); x_41 = lean_string_utf8_next_fast(x_32, x_33); +lean_dec(x_33); x_42 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_42, 0, x_32); lean_ctor_set(x_42, 1, x_41); @@ -19256,8 +19228,8 @@ lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_dec_ref(x_1); x_55 = l_Lean_Xml_Parser_predefinedEntityToChar(x_44); lean_dec(x_44); -lean_inc(x_45); x_56 = lean_string_utf8_next_fast(x_45, x_46); +lean_dec(x_46); if (lean_is_scalar(x_47)) { x_57 = lean_alloc_ctor(0, 2, 0); } else { @@ -19528,8 +19500,6 @@ if (x_50 == 0) { uint32_t x_51; lean_object* x_52; lean_object* x_53; uint32_t x_64; uint8_t x_65; x_51 = lean_string_utf8_get_fast(x_38, x_39); -lean_inc(x_39); -lean_inc(x_38); x_52 = lean_string_utf8_next_fast(x_38, x_39); lean_inc(x_38); x_53 = lean_alloc_ctor(0, 2, 0); @@ -19801,8 +19771,8 @@ x_27 = lean_ctor_get(x_2, 1); lean_dec(x_27); x_28 = lean_ctor_get(x_2, 0); lean_dec(x_28); -lean_inc(x_8); x_29 = lean_string_utf8_next_fast(x_8, x_9); +lean_dec(x_9); lean_ctor_set(x_2, 1, x_29); if (x_23 == 0) { @@ -19879,8 +19849,8 @@ else { lean_object* x_49; lean_object* x_50; lean_dec(x_2); -lean_inc(x_8); x_49 = lean_string_utf8_next_fast(x_8, x_9); +lean_dec(x_9); x_50 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_50, 0, x_8); lean_ctor_set(x_50, 1, x_49); @@ -20086,8 +20056,6 @@ x_154 = lean_ctor_get(x_102, 1); lean_dec(x_154); x_155 = lean_ctor_get(x_102, 0); lean_dec(x_155); -lean_inc(x_105); -lean_inc(x_104); x_156 = lean_string_utf8_next_fast(x_104, x_105); lean_ctor_set(x_102, 1, x_156); if (x_150 == 0) @@ -20165,8 +20133,6 @@ else { lean_object* x_176; lean_object* x_177; lean_dec(x_102); -lean_inc(x_105); -lean_inc(x_104); x_176 = lean_string_utf8_next_fast(x_104, x_105); x_177 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_177, 0, x_104); @@ -20321,8 +20287,8 @@ else lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_dec_ref(x_106); lean_dec(x_103); -lean_inc(x_107); x_119 = lean_string_utf8_next_fast(x_107, x_108); +lean_dec(x_108); lean_inc(x_119); lean_inc(x_107); x_120 = lean_alloc_ctor(0, 2, 0); @@ -20343,8 +20309,8 @@ else { uint32_t x_122; lean_object* x_123; lean_object* x_124; uint32_t x_125; uint8_t x_126; x_122 = lean_string_utf8_get_fast(x_107, x_119); -lean_inc(x_107); x_123 = lean_string_utf8_next_fast(x_107, x_119); +lean_dec(x_119); x_124 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_124, 0, x_107); lean_ctor_set(x_124, 1, x_123); @@ -20540,8 +20506,8 @@ x_26 = lean_ctor_get(x_14, 1); lean_dec(x_26); x_27 = lean_ctor_get(x_14, 0); lean_dec(x_27); -lean_inc(x_16); x_28 = lean_string_utf8_next_fast(x_16, x_17); +lean_dec(x_17); lean_ctor_set(x_14, 1, x_28); x_29 = l_Char_ofNat(x_15); lean_dec(x_15); @@ -20555,8 +20521,8 @@ else { lean_object* x_32; lean_object* x_33; uint32_t x_34; lean_object* x_35; lean_object* x_36; lean_dec(x_14); -lean_inc(x_16); x_32 = lean_string_utf8_next_fast(x_16, x_17); +lean_dec(x_17); x_33 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_33, 0, x_16); lean_ctor_set(x_33, 1, x_32); @@ -20945,8 +20911,8 @@ x_40 = lean_ctor_get(x_3, 1); lean_dec(x_40); x_41 = lean_ctor_get(x_3, 0); lean_dec(x_41); -lean_inc(x_9); x_42 = lean_string_utf8_next_fast(x_9, x_10); +lean_dec(x_10); lean_ctor_set(x_3, 1, x_42); x_43 = lean_box_uint32(x_33); x_44 = lean_alloc_ctor(1, 1, 0); @@ -20959,8 +20925,8 @@ else { lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_dec(x_3); -lean_inc(x_9); x_45 = lean_string_utf8_next_fast(x_9, x_10); +lean_dec(x_10); x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_9); lean_ctor_set(x_46, 1, x_45); @@ -21126,8 +21092,8 @@ x_44 = lean_ctor_get(x_3, 1); lean_dec(x_44); x_45 = lean_ctor_get(x_3, 0); lean_dec(x_45); -lean_inc(x_9); x_46 = lean_string_utf8_next_fast(x_9, x_10); +lean_dec(x_10); lean_ctor_set(x_3, 1, x_46); x_47 = lean_box_uint32(x_37); x_48 = lean_alloc_ctor(1, 1, 0); @@ -21140,8 +21106,8 @@ else { lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_dec(x_3); -lean_inc(x_9); x_49 = lean_string_utf8_next_fast(x_9, x_10); +lean_dec(x_10); x_50 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_50, 0, x_9); lean_ctor_set(x_50, 1, x_49); @@ -21346,8 +21312,6 @@ x_86 = lean_ctor_get(x_1, 1); lean_dec(x_86); x_87 = lean_ctor_get(x_1, 0); lean_dec(x_87); -lean_inc(x_25); -lean_inc(x_24); x_88 = lean_string_utf8_next_fast(x_24, x_25); lean_ctor_set(x_1, 1, x_88); x_89 = l_Lean_Xml_Parser_AttValue___closed__0; @@ -21402,8 +21366,8 @@ x_103 = lean_ctor_get(x_91, 1); lean_dec(x_103); x_104 = lean_ctor_get(x_91, 0); lean_dec(x_104); -lean_inc(x_93); x_105 = lean_string_utf8_next_fast(x_93, x_94); +lean_dec(x_94); lean_ctor_set(x_91, 1, x_105); x_10 = x_91; x_11 = x_92; @@ -21413,8 +21377,8 @@ else { lean_object* x_106; lean_object* x_107; lean_dec(x_91); -lean_inc(x_93); x_106 = lean_string_utf8_next_fast(x_93, x_94); +lean_dec(x_94); x_107 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_107, 0, x_93); lean_ctor_set(x_107, 1, x_106); @@ -21480,8 +21444,6 @@ else { lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_dec(x_1); -lean_inc(x_25); -lean_inc(x_24); x_114 = lean_string_utf8_next_fast(x_24, x_25); x_115 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_115, 0, x_24); @@ -21538,8 +21500,8 @@ if (lean_is_exclusive(x_118)) { lean_dec_ref(x_118); x_129 = lean_box(0); } -lean_inc(x_120); x_130 = lean_string_utf8_next_fast(x_120, x_121); +lean_dec(x_121); if (lean_is_scalar(x_129)) { x_131 = lean_alloc_ctor(0, 2, 0); } else { @@ -21733,8 +21695,8 @@ else { lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_dec_ref(x_26); -lean_inc(x_27); x_39 = lean_string_utf8_next_fast(x_27, x_28); +lean_dec(x_28); x_40 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_40, 0, x_27); lean_ctor_set(x_40, 1, x_39); @@ -21791,8 +21753,8 @@ x_54 = lean_ctor_get(x_44, 1); lean_dec(x_54); x_55 = lean_ctor_get(x_44, 0); lean_dec(x_55); -lean_inc(x_46); x_56 = lean_string_utf8_next_fast(x_46, x_47); +lean_dec(x_47); lean_ctor_set(x_44, 1, x_56); x_10 = x_44; x_11 = x_45; @@ -21802,8 +21764,8 @@ else { lean_object* x_57; lean_object* x_58; lean_dec(x_44); -lean_inc(x_46); x_57 = lean_string_utf8_next_fast(x_46, x_47); +lean_dec(x_47); x_58 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_58, 0, x_46); lean_ctor_set(x_58, 1, x_57); @@ -21871,8 +21833,8 @@ if (lean_is_exclusive(x_59)) { lean_dec_ref(x_59); x_69 = lean_box(0); } -lean_inc(x_61); x_70 = lean_string_utf8_next_fast(x_61, x_62); +lean_dec(x_62); if (lean_is_scalar(x_69)) { x_71 = lean_alloc_ctor(0, 2, 0); } else { @@ -22870,8 +22832,8 @@ else { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_dec_ref(x_2); -lean_inc(x_3); x_12 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_13 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_13, 0, x_3); lean_ctor_set(x_13, 1, x_12); @@ -22973,8 +22935,8 @@ x_12 = lean_ctor_get(x_1, 1); lean_dec(x_12); x_13 = lean_ctor_get(x_1, 0); lean_dec(x_13); -lean_inc(x_2); x_14 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); lean_ctor_set(x_1, 1, x_14); x_15 = l_Lean_Xml_Parser_Name(x_1); if (lean_obj_tag(x_15) == 0) @@ -23030,8 +22992,8 @@ x_31 = lean_ctor_get(x_16, 1); lean_dec(x_31); x_32 = lean_ctor_get(x_16, 0); lean_dec(x_32); -lean_inc(x_21); x_33 = lean_string_utf8_next_fast(x_21, x_22); +lean_dec(x_22); lean_ctor_set(x_16, 1, x_33); x_34 = lean_box(0); x_35 = lean_alloc_ctor(0, 2, 0); @@ -23043,8 +23005,8 @@ else { lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_dec(x_16); -lean_inc(x_21); x_36 = lean_string_utf8_next_fast(x_21, x_22); +lean_dec(x_22); x_37 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_37, 0, x_21); lean_ctor_set(x_37, 1, x_36); @@ -23103,8 +23065,8 @@ else { lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_dec(x_1); -lean_inc(x_2); x_44 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); x_45 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_45, 0, x_2); lean_ctor_set(x_45, 1, x_44); @@ -23162,8 +23124,8 @@ if (lean_is_exclusive(x_47)) { lean_dec_ref(x_47); x_61 = lean_box(0); } -lean_inc(x_52); x_62 = lean_string_utf8_next_fast(x_52, x_53); +lean_dec(x_53); if (lean_is_scalar(x_61)) { x_63 = lean_alloc_ctor(0, 2, 0); } else { @@ -23273,8 +23235,8 @@ x_47 = lean_ctor_get(x_3, 1); lean_dec(x_47); x_48 = lean_ctor_get(x_3, 0); lean_dec(x_48); -lean_inc(x_9); x_49 = lean_string_utf8_next_fast(x_9, x_10); +lean_dec(x_10); lean_ctor_set(x_3, 1, x_49); x_50 = lean_box_uint32(x_40); x_51 = lean_alloc_ctor(1, 1, 0); @@ -23287,8 +23249,8 @@ else { lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_dec(x_3); -lean_inc(x_9); x_52 = lean_string_utf8_next_fast(x_9, x_10); +lean_dec(x_10); x_53 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_53, 0, x_9); lean_ctor_set(x_53, 1, x_52); @@ -23492,8 +23454,8 @@ x_50 = lean_ctor_get(x_3, 1); lean_dec(x_50); x_51 = lean_ctor_get(x_3, 0); lean_dec(x_51); -lean_inc(x_9); x_52 = lean_string_utf8_next_fast(x_9, x_10); +lean_dec(x_10); lean_ctor_set(x_3, 1, x_52); x_53 = lean_box_uint32(x_43); x_54 = lean_alloc_ctor(1, 1, 0); @@ -23506,8 +23468,8 @@ else { lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_dec(x_3); -lean_inc(x_9); x_55 = lean_string_utf8_next_fast(x_9, x_10); +lean_dec(x_10); x_56 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_56, 0, x_9); lean_ctor_set(x_56, 1, x_55); @@ -23726,8 +23688,6 @@ x_86 = lean_ctor_get(x_1, 1); lean_dec(x_86); x_87 = lean_ctor_get(x_1, 0); lean_dec(x_87); -lean_inc(x_25); -lean_inc(x_24); x_88 = lean_string_utf8_next_fast(x_24, x_25); lean_ctor_set(x_1, 1, x_88); x_89 = l_Lean_Xml_Parser_AttValue___closed__0; @@ -23782,8 +23742,8 @@ x_103 = lean_ctor_get(x_91, 1); lean_dec(x_103); x_104 = lean_ctor_get(x_91, 0); lean_dec(x_104); -lean_inc(x_93); x_105 = lean_string_utf8_next_fast(x_93, x_94); +lean_dec(x_94); lean_ctor_set(x_91, 1, x_105); x_10 = x_91; x_11 = x_92; @@ -23793,8 +23753,8 @@ else { lean_object* x_106; lean_object* x_107; lean_dec(x_91); -lean_inc(x_93); x_106 = lean_string_utf8_next_fast(x_93, x_94); +lean_dec(x_94); x_107 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_107, 0, x_93); lean_ctor_set(x_107, 1, x_106); @@ -23860,8 +23820,6 @@ else { lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_dec(x_1); -lean_inc(x_25); -lean_inc(x_24); x_114 = lean_string_utf8_next_fast(x_24, x_25); x_115 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_115, 0, x_24); @@ -23918,8 +23876,8 @@ if (lean_is_exclusive(x_118)) { lean_dec_ref(x_118); x_129 = lean_box(0); } -lean_inc(x_120); x_130 = lean_string_utf8_next_fast(x_120, x_121); +lean_dec(x_121); if (lean_is_scalar(x_129)) { x_131 = lean_alloc_ctor(0, 2, 0); } else { @@ -24113,8 +24071,8 @@ else { lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_dec_ref(x_26); -lean_inc(x_27); x_39 = lean_string_utf8_next_fast(x_27, x_28); +lean_dec(x_28); x_40 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_40, 0, x_27); lean_ctor_set(x_40, 1, x_39); @@ -24171,8 +24129,8 @@ x_54 = lean_ctor_get(x_44, 1); lean_dec(x_54); x_55 = lean_ctor_get(x_44, 0); lean_dec(x_55); -lean_inc(x_46); x_56 = lean_string_utf8_next_fast(x_46, x_47); +lean_dec(x_47); lean_ctor_set(x_44, 1, x_56); x_10 = x_44; x_11 = x_45; @@ -24182,8 +24140,8 @@ else { lean_object* x_57; lean_object* x_58; lean_dec(x_44); -lean_inc(x_46); x_57 = lean_string_utf8_next_fast(x_46, x_47); +lean_dec(x_47); x_58 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_58, 0, x_46); lean_ctor_set(x_58, 1, x_57); @@ -24251,8 +24209,8 @@ if (lean_is_exclusive(x_59)) { lean_dec_ref(x_59); x_69 = lean_box(0); } -lean_inc(x_61); x_70 = lean_string_utf8_next_fast(x_61, x_62); +lean_dec(x_62); if (lean_is_scalar(x_69)) { x_71 = lean_alloc_ctor(0, 2, 0); } else { @@ -25004,8 +24962,8 @@ else { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_dec_ref(x_2); -lean_inc(x_3); x_12 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_13 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_13, 0, x_3); lean_ctor_set(x_13, 1, x_12); @@ -25180,8 +25138,8 @@ x_35 = lean_ctor_get(x_24, 1); lean_dec(x_35); x_36 = lean_ctor_get(x_24, 0); lean_dec(x_36); -lean_inc(x_26); x_37 = lean_string_utf8_next_fast(x_26, x_27); +lean_dec(x_27); lean_ctor_set(x_24, 1, x_37); x_38 = l_Lean_Xml_Parser_S(x_24); if (lean_obj_tag(x_38) == 0) @@ -25345,8 +25303,8 @@ else { lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_dec(x_24); -lean_inc(x_26); x_70 = lean_string_utf8_next_fast(x_26, x_27); +lean_dec(x_27); x_71 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_71, 0, x_26); lean_ctor_set(x_71, 1, x_70); @@ -25541,8 +25499,8 @@ if (lean_is_exclusive(x_99)) { lean_dec_ref(x_99); x_109 = lean_box(0); } -lean_inc(x_100); x_110 = lean_string_utf8_next_fast(x_100, x_101); +lean_dec(x_101); if (lean_is_scalar(x_109)) { x_111 = lean_alloc_ctor(0, 2, 0); } else { @@ -25775,8 +25733,8 @@ else { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_dec_ref(x_2); -lean_inc(x_3); x_12 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_13 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_13, 0, x_3); lean_ctor_set(x_13, 1, x_12); @@ -26118,8 +26076,8 @@ else { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_dec_ref(x_2); -lean_inc(x_3); x_12 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_13 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_13, 0, x_3); lean_ctor_set(x_13, 1, x_12); @@ -26856,8 +26814,8 @@ else { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_dec_ref(x_2); -lean_inc(x_3); x_12 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_13 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_13, 0, x_3); lean_ctor_set(x_13, 1, x_12); @@ -26955,8 +26913,6 @@ goto block_32; else { lean_object* x_47; lean_object* x_48; lean_object* x_49; -lean_inc(x_40); -lean_inc(x_39); x_47 = lean_string_utf8_next_fast(x_39, x_40); x_48 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_48, 0, x_39); @@ -27013,8 +26969,8 @@ x_60 = lean_ctor_get(x_50, 1); lean_dec(x_60); x_61 = lean_ctor_get(x_50, 0); lean_dec(x_61); -lean_inc(x_51); x_62 = lean_string_utf8_next_fast(x_51, x_52); +lean_dec(x_52); lean_inc(x_62); lean_ctor_set(x_50, 1, x_62); x_63 = l_Lean_Xml_Parser_S(x_50); @@ -27073,8 +27029,8 @@ else { lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_dec(x_50); -lean_inc(x_51); x_72 = lean_string_utf8_next_fast(x_51, x_52); +lean_dec(x_52); lean_inc(x_72); x_73 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_73, 0, x_51); @@ -29041,8 +28997,8 @@ x_12 = lean_ctor_get(x_1, 1); lean_dec(x_12); x_13 = lean_ctor_get(x_1, 0); lean_dec(x_13); -lean_inc(x_2); x_14 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); lean_ctor_set(x_1, 1, x_14); x_15 = l_Lean_Xml_Parser_Name(x_1); if (lean_obj_tag(x_15) == 0) @@ -29207,8 +29163,8 @@ else { lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_dec(x_1); -lean_inc(x_2); x_49 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); x_50 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_50, 0, x_2); lean_ctor_set(x_50, 1, x_49); @@ -29496,8 +29452,8 @@ x_13 = lean_ctor_get(x_2, 1); lean_dec(x_13); x_14 = lean_ctor_get(x_2, 0); lean_dec(x_14); -lean_inc(x_3); x_15 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); lean_ctor_set(x_2, 1, x_15); x_16 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_16, 0, x_2); @@ -29508,8 +29464,8 @@ else { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_dec(x_2); -lean_inc(x_3); x_17 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_18 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_18, 0, x_3); lean_ctor_set(x_18, 1, x_17); @@ -29717,8 +29673,8 @@ else { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_dec_ref(x_2); -lean_inc(x_3); x_12 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_13 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_13, 0, x_3); lean_ctor_set(x_13, 1, x_12); @@ -29912,8 +29868,8 @@ lean_dec(x_19); x_20 = lean_ctor_get(x_3, 0); lean_dec(x_20); x_21 = lean_string_utf8_get_fast(x_14, x_15); -lean_inc(x_14); x_22 = lean_string_utf8_next_fast(x_14, x_15); +lean_dec(x_15); lean_ctor_set(x_3, 1, x_22); x_23 = lean_string_push(x_2, x_21); x_2 = x_23; @@ -29924,8 +29880,8 @@ else uint32_t x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_dec(x_3); x_25 = lean_string_utf8_get_fast(x_14, x_15); -lean_inc(x_14); x_26 = lean_string_utf8_next_fast(x_14, x_15); +lean_dec(x_15); x_27 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_27, 0, x_14); lean_ctor_set(x_27, 1, x_26); @@ -30117,8 +30073,8 @@ x_22 = lean_ctor_get(x_2, 1); lean_dec(x_22); x_23 = lean_ctor_get(x_2, 0); lean_dec(x_23); -lean_inc(x_3); x_24 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); lean_ctor_set(x_2, 1, x_24); x_25 = lean_string_push(x_1, x_16); x_1 = x_25; @@ -30128,8 +30084,8 @@ else { lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_dec(x_2); -lean_inc(x_3); x_27 = lean_string_utf8_next_fast(x_3, x_4); +lean_dec(x_4); x_28 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_28, 0, x_3); lean_ctor_set(x_28, 1, x_27); diff --git a/stage0/stdlib/Lean/DocString/Extension.c b/stage0/stdlib/Lean/DocString/Extension.c index 3eceb446ad..25c035d2f9 100644 --- a/stage0/stdlib/Lean/DocString/Extension.c +++ b/stage0/stdlib/Lean/DocString/Extension.c @@ -6411,6 +6411,7 @@ x_4 = lean_ctor_get(x_1, 0); lean_inc_ref(x_4); lean_dec_ref(x_1); x_5 = l___private_Lean_DocString_Markdown_0__Lean_Doc_escape(x_4); +lean_dec_ref(x_4); x_6 = l_Lean_Doc_MarkdownM_push___redArg(x_5, x_3); lean_dec_ref(x_5); return x_6; @@ -7114,6 +7115,7 @@ lean_inc_ref(x_243); lean_dec_ref(x_1); x_244 = l___private_Lean_DocString_Markdown_0__Lean_Doc_inlineMarkdown___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_blockMarkdown___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_partMarkdown___at___00Lean_Doc_instToMarkdownPartOfMarkdownInlineOfMarkdownBlock___private__1___at___00__private_Lean_DocString_Extension_0__Lean_findSimpleDocString_x3f_toMarkdown_spec__0_spec__0_spec__1_spec__1___closed__15; x_245 = l___private_Lean_DocString_Markdown_0__Lean_Doc_escape(x_242); +lean_dec_ref(x_242); x_246 = lean_string_append(x_244, x_245); lean_dec_ref(x_245); x_247 = l___private_Lean_DocString_Markdown_0__Lean_Doc_inlineMarkdown___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_blockMarkdown___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_partMarkdown___at___00Lean_Doc_instToMarkdownPartOfMarkdownInlineOfMarkdownBlock___private__1___at___00__private_Lean_DocString_Extension_0__Lean_findSimpleDocString_x3f_toMarkdown_spec__0_spec__0_spec__1_spec__1___closed__8; @@ -7674,6 +7676,7 @@ lean_dec_ref(x_12); x_15 = lean_string_length(x_14); lean_dec_ref(x_14); x_16 = l___private_Lean_DocString_Markdown_0__Lean_Doc_quoteCodeBlock(x_15, x_11); +lean_dec_ref(x_11); x_17 = l_Lean_Doc_MarkdownM_push___redArg(x_16, x_13); lean_dec_ref(x_16); x_18 = lean_ctor_get(x_17, 1); diff --git a/stage0/stdlib/Lean/DocString/Links.c b/stage0/stdlib/Lean/DocString/Links.c index 2976f3613f..735ed53b18 100644 --- a/stage0/stdlib/Lean/DocString/Links.c +++ b/stage0/stdlib/Lean/DocString/Links.c @@ -2579,8 +2579,6 @@ if (x_16 == 0) { uint32_t x_17; lean_object* x_18; uint8_t x_38; uint8_t x_44; x_17 = lean_string_utf8_get_fast(x_1, x_12); -lean_inc(x_12); -lean_inc_ref(x_1); x_18 = lean_string_utf8_next_fast(x_1, x_12); x_44 = l___private_Lean_DocString_Links_0__Lean_rewriteManualLinksCore_urlChar(x_17); if (x_44 == 0) @@ -2608,7 +2606,6 @@ block_37: { lean_object* x_19; lean_object* x_20; x_19 = lean_string_utf8_extract(x_1, x_2, x_12); -lean_dec_ref(x_1); x_20 = l___private_Lean_DocString_Links_0__Lean_rw(x_19); if (lean_obj_tag(x_20) == 0) { @@ -2718,7 +2715,6 @@ else lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_dec(x_15); lean_dec(x_3); -lean_dec_ref(x_1); if (lean_is_scalar(x_14)) { x_46 = lean_alloc_ctor(0, 2, 0); } else { @@ -2766,8 +2762,6 @@ if (x_11 == 0) { uint32_t x_12; lean_object* x_13; uint8_t x_14; x_12 = lean_string_utf8_get_fast(x_1, x_8); -lean_inc(x_8); -lean_inc_ref(x_1); x_13 = lean_string_utf8_next_fast(x_1, x_8); lean_inc(x_8); x_14 = l___private_Lean_DocString_Links_0__Lean_rewriteManualLinksCore_lookingAt(x_2, x_1, x_8); @@ -2800,7 +2794,6 @@ lean_ctor_set(x_3, 0, x_13); x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_7); lean_ctor_set(x_21, 1, x_3); -lean_inc_ref(x_1); x_22 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_rewriteManualLinksCore_spec__0(x_1, x_20, x_8, x_12, x_21); lean_dec(x_20); x_23 = lean_ctor_get(x_22, 1); @@ -2896,8 +2889,6 @@ if (x_45 == 0) { uint32_t x_46; lean_object* x_47; uint8_t x_48; x_46 = lean_string_utf8_get_fast(x_1, x_42); -lean_inc(x_42); -lean_inc_ref(x_1); x_47 = lean_string_utf8_next_fast(x_1, x_42); lean_inc(x_42); x_48 = l___private_Lean_DocString_Links_0__Lean_rewriteManualLinksCore_lookingAt(x_2, x_1, x_42); @@ -2935,7 +2926,6 @@ lean_ctor_set(x_3, 0, x_47); x_57 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_57, 0, x_41); lean_ctor_set(x_57, 1, x_3); -lean_inc_ref(x_1); x_58 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_rewriteManualLinksCore_spec__0(x_1, x_55, x_42, x_46, x_57); lean_dec(x_55); x_59 = lean_ctor_get(x_58, 1); @@ -3022,8 +3012,6 @@ if (x_76 == 0) { uint32_t x_77; lean_object* x_78; uint8_t x_79; x_77 = lean_string_utf8_get_fast(x_1, x_72); -lean_inc(x_72); -lean_inc_ref(x_1); x_78 = lean_string_utf8_next_fast(x_1, x_72); lean_inc(x_72); x_79 = l___private_Lean_DocString_Links_0__Lean_rewriteManualLinksCore_lookingAt(x_2, x_1, x_72); @@ -3073,7 +3061,6 @@ lean_ctor_set(x_89, 1, x_88); x_90 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_90, 0, x_71); lean_ctor_set(x_90, 1, x_89); -lean_inc_ref(x_1); x_91 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_rewriteManualLinksCore_spec__0(x_1, x_87, x_72, x_77, x_90); lean_dec(x_87); x_92 = lean_ctor_get(x_91, 1); @@ -3163,8 +3150,6 @@ if (x_11 == 0) { uint32_t x_12; lean_object* x_13; uint8_t x_14; x_12 = lean_string_utf8_get_fast(x_1, x_8); -lean_inc(x_8); -lean_inc_ref(x_1); x_13 = lean_string_utf8_next_fast(x_1, x_8); lean_inc(x_8); x_14 = l___private_Lean_DocString_Links_0__Lean_rewriteManualLinksCore_lookingAt(x_2, x_1, x_8); @@ -3198,7 +3183,6 @@ lean_ctor_set(x_3, 0, x_13); x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_7); lean_ctor_set(x_21, 1, x_3); -lean_inc_ref(x_1); x_22 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_rewriteManualLinksCore_spec__0(x_1, x_20, x_8, x_12, x_21); lean_dec(x_20); x_23 = lean_ctor_get(x_22, 1); @@ -3294,8 +3278,6 @@ if (x_45 == 0) { uint32_t x_46; lean_object* x_47; uint8_t x_48; x_46 = lean_string_utf8_get_fast(x_1, x_42); -lean_inc(x_42); -lean_inc_ref(x_1); x_47 = lean_string_utf8_next_fast(x_1, x_42); lean_inc(x_42); x_48 = l___private_Lean_DocString_Links_0__Lean_rewriteManualLinksCore_lookingAt(x_2, x_1, x_42); @@ -3334,7 +3316,6 @@ lean_ctor_set(x_3, 0, x_47); x_57 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_57, 0, x_41); lean_ctor_set(x_57, 1, x_3); -lean_inc_ref(x_1); x_58 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_rewriteManualLinksCore_spec__0(x_1, x_55, x_42, x_46, x_57); lean_dec(x_55); x_59 = lean_ctor_get(x_58, 1); @@ -3421,8 +3402,6 @@ if (x_76 == 0) { uint32_t x_77; lean_object* x_78; uint8_t x_79; x_77 = lean_string_utf8_get_fast(x_1, x_72); -lean_inc(x_72); -lean_inc_ref(x_1); x_78 = lean_string_utf8_next_fast(x_1, x_72); lean_inc(x_72); x_79 = l___private_Lean_DocString_Links_0__Lean_rewriteManualLinksCore_lookingAt(x_2, x_1, x_72); @@ -3472,7 +3451,6 @@ lean_ctor_set(x_89, 1, x_88); x_90 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_90, 0, x_71); lean_ctor_set(x_90, 1, x_89); -lean_inc_ref(x_1); x_91 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_rewriteManualLinksCore_spec__0(x_1, x_87, x_72, x_77, x_90); lean_dec(x_87); x_92 = lean_ctor_get(x_91, 1); @@ -3623,6 +3601,7 @@ x_6 = lean_unbox_uint32(x_4); lean_dec(x_4); x_7 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_rewriteManualLinksCore_spec__0(x_1, x_2, x_3, x_6, x_5); lean_dec(x_2); +lean_dec_ref(x_1); return x_7; } } diff --git a/stage0/stdlib/Lean/DocString/Markdown.c b/stage0/stdlib/Lean/DocString/Markdown.c index b2dea5c87e..4816062eec 100644 --- a/stage0/stdlib/Lean/DocString/Markdown.c +++ b/stage0/stdlib/Lean/DocString/Markdown.c @@ -58,6 +58,7 @@ lean_object* l_String_Slice_Pos_prevAux_go___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Doc_MarkdownM_push___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Doc_MarkdownM_run(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_MarkdownM_combineBlocks___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_quoteCodeBlock_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_inlineMarkdown___redArg___closed__3; LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_trimLeft_go___redArg(lean_object*); lean_object* l_Id_instMonad___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -93,6 +94,7 @@ static lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_MarkdownM_co LEAN_EXPORT lean_object* l_String_Slice_Pattern_ForwardPattern_defaultDropPrefix_x3f___at___00__private_Init_Data_String_Slice_0__String_Slice_takeWhile_go___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_trimLeft_go_spec__1_spec__1___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_MarkdownM_State_endsWith___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_quoteCodeBlock_spec__0(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_quoteCodeBlock___boxed(lean_object*, lean_object*); lean_object* l_Id_instMonad___lam__2___boxed(lean_object*, lean_object*); lean_object* l_String_Slice_Pos_prevn(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_blockMarkdown___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -117,16 +119,19 @@ static lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_inlineMarkdo LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_blockMarkdown___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_quoteCode_spec__0(lean_object*, lean_object*, lean_object*); lean_object* l_StateT_bind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_escape___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_MarkdownM_State_render(lean_object*); lean_object* l_List_appendTR___redArg(lean_object*, lean_object*); static lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_MarkdownM_combineBlocks___closed__0; static lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_inlineMarkdown___redArg___closed__31; LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_inlineMarkdown___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_quoteCode_spec__0___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Doc_Inline_empty(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_escape_isSpecial___boxed(lean_object*); lean_object* l_String_Slice_Pos_next___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Doc_MarkdownM_endsWith___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_partMarkdown___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_escape_spec__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Doc_MarkdownM_run___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_trimLeft_go___redArg___closed__2; LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_trim___redArg(lean_object*); @@ -225,6 +230,7 @@ lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Doc_MarkdownM_Context_ctorIdx(lean_object*); lean_object* l_StateT_map(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Doc_MarkdownM_run_x27(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_quoteCodeBlock_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Doc_instToMarkdownBlockOfMarkdownInlineOfMarkdownBlock___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_String_Slice_Pattern_ForwardPattern_defaultDropPrefix_x3f___at___00__private_Init_Data_String_Slice_0__String_Slice_takeWhile_go___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_trimLeft_go_spec__1_spec__1(lean_object*); static lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_quoteCode___closed__2; @@ -1144,8 +1150,8 @@ if (x_7 == 0) { uint32_t x_8; lean_object* x_9; lean_object* x_10; uint8_t x_15; x_8 = lean_string_utf8_get_fast(x_1, x_3); -lean_inc_ref(x_1); x_9 = lean_string_utf8_next_fast(x_1, x_3); +lean_dec(x_3); x_15 = l___private_Lean_DocString_Markdown_0__Lean_Doc_escape_isSpecial(x_8); if (x_15 == 0) { @@ -1178,7 +1184,6 @@ goto _start; else { lean_object* x_18; -lean_dec_ref(x_1); if (lean_is_scalar(x_5)) { x_18 = lean_alloc_ctor(0, 2, 0); } else { @@ -1214,6 +1219,24 @@ lean_dec_ref(x_3); return x_4; } } +LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_escape_spec__0___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_escape_spec__0(x_1, x_2); +lean_dec_ref(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_escape___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_DocString_Markdown_0__Lean_Doc_escape(x_1); +lean_dec_ref(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_quoteCode_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -1249,8 +1272,8 @@ if (x_11 == 0) { uint32_t x_12; lean_object* x_13; lean_object* x_14; uint32_t x_19; uint8_t x_20; x_12 = lean_string_utf8_get_fast(x_1, x_7); -lean_inc_ref(x_1); x_13 = lean_string_utf8_next_fast(x_1, x_7); +lean_dec(x_7); x_19 = 96; x_20 = lean_uint32_dec_eq(x_12, x_19); if (x_20 == 0) @@ -1313,7 +1336,6 @@ else { lean_object* x_27; lean_object* x_28; lean_dec(x_2); -lean_dec_ref(x_1); if (lean_is_scalar(x_9)) { x_27 = lean_alloc_ctor(0, 2, 0); } else { @@ -1410,7 +1432,6 @@ _start: lean_object* x_2; lean_object* x_3; lean_object* x_7; lean_object* x_12; lean_object* x_13; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint32_t x_27; lean_object* x_28; uint8_t x_38; x_12 = lean_unsigned_to_nat(0u); x_21 = l___private_Lean_DocString_Markdown_0__Lean_Doc_quoteCode___closed__4; -lean_inc_ref(x_1); x_22 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_quoteCode_spec__0(x_1, x_12, x_21); x_23 = lean_ctor_get(x_22, 1); lean_inc(x_23); @@ -1525,6 +1546,15 @@ goto block_11; } } } +LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_quoteCode_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_quoteCode_spec__0(x_1, x_2, x_3); +lean_dec_ref(x_1); +return x_4; +} +} LEAN_EXPORT lean_object* l___private_Init_Data_Nat_Basic_0__Nat_repeatTR_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_quoteCode_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -3515,6 +3545,7 @@ x_6 = lean_ctor_get(x_2, 0); lean_inc_ref(x_6); lean_dec_ref(x_2); x_7 = l___private_Lean_DocString_Markdown_0__Lean_Doc_escape(x_6); +lean_dec_ref(x_6); x_8 = l_Lean_Doc_MarkdownM_push___redArg(x_7, x_4); lean_dec_ref(x_7); return x_8; @@ -4234,6 +4265,7 @@ lean_inc_ref(x_254); lean_dec_ref(x_2); x_255 = l___private_Lean_DocString_Markdown_0__Lean_Doc_inlineMarkdown___redArg___closed__36; x_256 = l___private_Lean_DocString_Markdown_0__Lean_Doc_escape(x_253); +lean_dec_ref(x_253); x_257 = lean_string_append(x_255, x_256); lean_dec_ref(x_256); x_258 = l___private_Lean_DocString_Markdown_0__Lean_Doc_inlineMarkdown___redArg___closed__30; @@ -4394,8 +4426,8 @@ if (x_15 == 0) { uint32_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint32_t x_35; uint8_t x_36; x_16 = lean_string_utf8_get_fast(x_1, x_9); -lean_inc_ref(x_1); x_17 = lean_string_utf8_next_fast(x_1, x_9); +lean_dec(x_9); x_35 = 96; x_36 = lean_uint32_dec_eq(x_16, x_35); if (x_36 == 0) @@ -4502,7 +4534,6 @@ else lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_dec(x_3); lean_dec(x_2); -lean_dec_ref(x_1); if (lean_is_scalar(x_13)) { x_40 = lean_alloc_ctor(0, 2, 0); } else { @@ -4575,8 +4606,8 @@ if (x_15 == 0) { uint32_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint32_t x_35; uint8_t x_36; x_16 = lean_string_utf8_get_fast(x_1, x_9); -lean_inc_ref(x_1); x_17 = lean_string_utf8_next_fast(x_1, x_9); +lean_dec(x_9); x_35 = 96; x_36 = lean_uint32_dec_eq(x_16, x_35); if (x_36 == 0) @@ -4683,7 +4714,6 @@ else lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_dec(x_3); lean_dec(x_2); -lean_dec_ref(x_1); if (lean_is_scalar(x_13)) { x_40 = lean_alloc_ctor(0, 2, 0); } else { @@ -4845,6 +4875,33 @@ goto block_30; } } } +LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_quoteCodeBlock_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_quoteCodeBlock_spec__0_spec__0(x_1, x_2, x_3, x_4); +lean_dec_ref(x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_quoteCodeBlock_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Markdown_0__Lean_Doc_quoteCodeBlock_spec__0(x_1, x_2, x_3, x_4); +lean_dec_ref(x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_quoteCodeBlock___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l___private_Lean_DocString_Markdown_0__Lean_Doc_quoteCodeBlock(x_1, x_2); +lean_dec_ref(x_2); +return x_3; +} +} LEAN_EXPORT lean_object* l___private_Lean_DocString_Markdown_0__Lean_Doc_blockMarkdown___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { @@ -5377,6 +5434,7 @@ lean_dec_ref(x_17); x_20 = lean_string_length(x_19); lean_dec_ref(x_19); x_21 = l___private_Lean_DocString_Markdown_0__Lean_Doc_quoteCodeBlock(x_20, x_16); +lean_dec_ref(x_16); x_22 = l_Lean_Doc_MarkdownM_push___redArg(x_21, x_18); lean_dec_ref(x_21); x_23 = lean_ctor_get(x_22, 1); diff --git a/stage0/stdlib/Lean/DocString/Parser.c b/stage0/stdlib/Lean/DocString/Parser.c index 30ce88599f..2dadef3443 100644 --- a/stage0/stdlib/Lean/DocString/Parser.c +++ b/stage0/stdlib/Lean/DocString/Parser.c @@ -44,6 +44,7 @@ LEAN_EXPORT lean_object* l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_li static lean_object* l_Lean_Doc_Parser_header___lam__8___closed__0; lean_object* l_Lean_Parser_ParserState_mkNode(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Doc_Parser_header___lam__3___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_unescapeStr___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Doc_Parser_lookaheadOrderedListIndicator(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Doc_Parser_header___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_Doc_Parser_blockOpener___lam__3___boxed__const__1; @@ -554,6 +555,7 @@ LEAN_EXPORT lean_object* l___private_Lean_DocString_Parser_0__Lean_Parser_Parser static lean_object* l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_arg_withParens___closed__0; LEAN_EXPORT lean_object* l_Lean_Doc_Parser_instReprOrderedListType_repr(uint8_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_skipBlock___lam__1___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Parser_0__Lean_Doc_Parser_unescapeStr_spec__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_linkRef_nameStart___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Doc_Parser_link___lam__5(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_arg_flag___lam__5(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2225,8 +2227,8 @@ if (x_7 == 0) { uint32_t x_8; lean_object* x_9; uint32_t x_13; uint8_t x_14; x_8 = lean_string_utf8_get_fast(x_1, x_3); -lean_inc_ref(x_1); x_9 = lean_string_utf8_next_fast(x_1, x_3); +lean_dec(x_3); x_13 = 92; x_14 = lean_uint32_dec_eq(x_8, x_13); if (x_14 == 0) @@ -2258,8 +2260,8 @@ uint32_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_dec(x_5); x_19 = lean_string_utf8_get_fast(x_1, x_9); x_20 = lean_string_push(x_4, x_19); -lean_inc_ref(x_1); x_21 = lean_string_utf8_next_fast(x_1, x_9); +lean_dec(x_9); x_22 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); @@ -2290,7 +2292,6 @@ else { lean_object* x_24; lean_dec(x_6); -lean_dec_ref(x_1); if (lean_is_scalar(x_5)) { x_24 = lean_alloc_ctor(0, 2, 0); } else { @@ -2334,6 +2335,24 @@ lean_dec_ref(x_3); return x_4; } } +LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Parser_0__Lean_Doc_Parser_unescapeStr_spec__0___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_DocString_Parser_0__Lean_Doc_Parser_unescapeStr_spec__0(x_1, x_2); +lean_dec_ref(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_unescapeStr___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_unescapeStr(x_1); +lean_dec_ref(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_asStringAux(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { @@ -2861,8 +2880,8 @@ return x_3; else { lean_object* x_6; -lean_inc_ref(x_2); x_6 = lean_string_utf8_next_fast(x_2, x_3); +lean_dec(x_3); x_3 = x_6; goto _start; } @@ -2926,8 +2945,8 @@ return x_70; block_10: { lean_object* x_7; lean_object* x_8; -lean_inc_ref(x_3); x_7 = lean_string_utf8_next_fast(x_3, x_6); +lean_dec(x_6); lean_inc(x_1); x_8 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_8, 0, x_1); @@ -2982,8 +3001,8 @@ return x_27; else { lean_object* x_28; lean_object* x_29; -lean_inc_ref(x_3); x_28 = lean_string_utf8_next_fast(x_3, x_11); +lean_dec(x_11); lean_inc(x_1); if (lean_is_scalar(x_12)) { x_29 = lean_alloc_ctor(0, 2, 0); @@ -2999,8 +3018,8 @@ goto _start; else { lean_object* x_31; lean_object* x_32; -lean_inc_ref(x_3); x_31 = lean_string_utf8_next_fast(x_3, x_11); +lean_dec(x_11); lean_inc(x_1); if (lean_is_scalar(x_12)) { x_32 = lean_alloc_ctor(0, 2, 0); @@ -3016,8 +3035,8 @@ goto _start; else { lean_object* x_34; lean_object* x_35; -lean_inc_ref(x_3); x_34 = lean_string_utf8_next_fast(x_3, x_11); +lean_dec(x_11); lean_inc(x_1); if (lean_is_scalar(x_12)) { x_35 = lean_alloc_ctor(0, 2, 0); @@ -3033,8 +3052,8 @@ goto _start; else { lean_object* x_37; lean_object* x_38; -lean_inc_ref(x_3); x_37 = lean_string_utf8_next_fast(x_3, x_11); +lean_dec(x_11); lean_inc(x_1); if (lean_is_scalar(x_12)) { x_38 = lean_alloc_ctor(0, 2, 0); @@ -3050,8 +3069,8 @@ goto _start; else { lean_object* x_40; lean_object* x_41; -lean_inc_ref(x_3); x_40 = lean_string_utf8_next_fast(x_3, x_11); +lean_dec(x_11); lean_inc(x_1); if (lean_is_scalar(x_12)) { x_41 = lean_alloc_ctor(0, 2, 0); @@ -3523,8 +3542,8 @@ x_7 = lean_string_utf8_get_fast(x_1, x_3); x_8 = lean_box_uint32(x_7); x_9 = lean_alloc_closure((void*)(l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_strFn_go___lam__0___boxed), 2, 1); lean_closure_set(x_9, 0, x_8); -lean_inc_ref(x_1); x_10 = lean_string_utf8_next_fast(x_1, x_3); +lean_dec(x_3); x_11 = l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_unescapeStr___closed__0; x_12 = lean_string_push(x_11, x_7); x_13 = l_Lean_Parser_satisfyFn(x_9, x_12, x_2, x_4); @@ -3535,7 +3554,6 @@ goto _start; else { lean_dec(x_3); -lean_dec_ref(x_1); return x_4; } } @@ -3559,6 +3577,7 @@ _start: lean_object* x_5; x_5 = l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_strFn_go(x_1, x_2, x_3, x_4); lean_dec_ref(x_2); +lean_dec_ref(x_1); return x_5; } } @@ -3576,7 +3595,6 @@ _start: lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_4 = lean_unsigned_to_nat(0u); lean_inc_ref(x_3); -lean_inc_ref(x_1); x_5 = l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_strFn_go(x_1, x_2, x_4, x_3); x_6 = lean_ctor_get(x_5, 4); lean_inc(x_6); @@ -3594,7 +3612,6 @@ x_11 = l_Lean_Parser_SyntaxStack_size(x_9); lean_dec_ref(x_9); x_12 = l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_strFn___lam__0___closed__0; x_13 = lean_string_append(x_12, x_1); -lean_dec_ref(x_1); x_14 = lean_string_append(x_13, x_12); x_15 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_15, 0, x_11); @@ -3605,7 +3622,6 @@ return x_16; else { lean_dec_ref(x_3); -lean_dec_ref(x_1); return x_5; } } @@ -3635,6 +3651,7 @@ _start: lean_object* x_4; x_4 = l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_strFn___lam__0(x_1, x_2, x_3); lean_dec_ref(x_2); +lean_dec_ref(x_1); return x_4; } } @@ -5597,7 +5614,7 @@ static lean_object* _init_l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_i _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_unescapeStr), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_DocString_Parser_0__Lean_Doc_Parser_unescapeStr___boxed), 1, 0); return x_1; } } diff --git a/stage0/stdlib/Lean/Elab/BuiltinEvalCommand.c b/stage0/stdlib/Lean/Elab/BuiltinEvalCommand.c index e8b11888d4..fb76013533 100644 --- a/stage0/stdlib/Lean/Elab/BuiltinEvalCommand.c +++ b/stage0/stdlib/Lean/Elab/BuiltinEvalCommand.c @@ -26630,7 +26630,6 @@ lean_dec(x_14); x_22 = lean_ctor_get(x_21, 0); lean_inc_ref(x_22); lean_dec_ref(x_21); -lean_inc_ref(x_22); x_23 = lean_string_validate_utf8(x_22); if (x_23 == 0) { diff --git a/stage0/stdlib/Lean/Elab/Command.c b/stage0/stdlib/Lean/Elab/Command.c index 1bbb34a004..d4b712c75b 100644 --- a/stage0/stdlib/Lean/Elab/Command.c +++ b/stage0/stdlib/Lean/Elab/Command.c @@ -14139,7 +14139,6 @@ lean_dec(x_14); x_22 = lean_ctor_get(x_21, 0); lean_inc_ref(x_22); lean_dec_ref(x_21); -lean_inc_ref(x_22); x_23 = lean_string_validate_utf8(x_22); if (x_23 == 0) { diff --git a/stage0/stdlib/Lean/Elab/DocString.c b/stage0/stdlib/Lean/Elab/DocString.c index 3f3b94a017..280b29b67b 100644 --- a/stage0/stdlib/Lean/Elab/DocString.c +++ b/stage0/stdlib/Lean/Elab/DocString.c @@ -65490,6 +65490,7 @@ x_4 = lean_ctor_get(x_1, 0); lean_inc_ref(x_4); lean_dec_ref(x_1); x_5 = l___private_Lean_DocString_Markdown_0__Lean_Doc_escape(x_4); +lean_dec_ref(x_4); x_6 = l_Lean_Doc_MarkdownM_push___redArg(x_5, x_3); lean_dec_ref(x_5); return x_6; @@ -66193,6 +66194,7 @@ lean_inc_ref(x_243); lean_dec_ref(x_1); x_244 = l___private_Lean_DocString_Markdown_0__Lean_Doc_inlineMarkdown___at___00__private_Lean_Elab_DocString_0__Lean_Doc_elabBlocks_x27_spec__1___closed__12; x_245 = l___private_Lean_DocString_Markdown_0__Lean_Doc_escape(x_242); +lean_dec_ref(x_242); x_246 = lean_string_append(x_244, x_245); lean_dec_ref(x_245); x_247 = l___private_Lean_DocString_Markdown_0__Lean_Doc_inlineMarkdown___at___00__private_Lean_Elab_DocString_0__Lean_Doc_elabBlocks_x27_spec__1___closed__6; diff --git a/stage0/stdlib/Lean/Elab/DocString/Builtin.c b/stage0/stdlib/Lean/Elab/DocString/Builtin.c index 664dfdd49b..649a8c6a5b 100644 --- a/stage0/stdlib/Lean/Elab/DocString/Builtin.c +++ b/stage0/stdlib/Lean/Elab/DocString/Builtin.c @@ -593,6 +593,7 @@ LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_ResolveNa static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Doc_given_spec__7___closed__0; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Array_filterMapM___at___00Lean_Doc_given_spec__5_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Doc_suggestOption(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_DocString_Builtin_0__Lean_Doc_output_sortByDistance___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Doc_set__option___regBuiltin_Lean_Doc_set__option__3(); static lean_object* l_Lean_Doc_getNamed___at___00Lean_Doc_name_getArgs_spec__3___closed__0; uint8_t l_String_Slice_beq(lean_object*, lean_object*); @@ -760,6 +761,7 @@ LEAN_EXPORT lean_object* l_Lean_Doc_DocHighlight_keyword_elim___redArg(lean_obje LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_DocString_Builtin_0__Lean_Doc_output_sortByDistance_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Doc_name_getArgs___closed__1; LEAN_EXPORT lean_object* l_List_filterMapTR_go___at___00Lean_resolveNamespace___at___00Lean_Doc_open_spec__0_spec__0(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_DocString_Builtin_0__Lean_Doc_output_sortByDistance___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Elab_DocString_Builtin_0__Lean_Doc_elabExtraTerm_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Doc_output_getArgs(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_DocString_Builtin_0__Lean_Doc_onlyCode___at___00Lean_Doc_name_spec__0(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -18881,7 +18883,6 @@ lean_object* x_7; uint8_t x_12; x_12 = lean_usize_dec_lt(x_5, x_4); if (x_12 == 0) { -lean_dec_ref(x_2); return x_6; } else @@ -18902,8 +18903,8 @@ if (lean_is_exclusive(x_6)) { x_16 = lean_array_uget(x_3, x_5); lean_inc(x_16); x_17 = l_Lean_Name_toString(x_16, x_1); -lean_inc_ref(x_2); x_18 = l_Lean_EditDistance_levenshtein(x_2, x_17, x_14); +lean_dec_ref(x_17); if (lean_obj_tag(x_18) == 1) { lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_28; @@ -19124,6 +19125,7 @@ lean_ctor_set(x_8, 1, x_5); x_9 = lean_array_size(x_2); x_10 = 0; x_11 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_DocString_Builtin_0__Lean_Doc_similarNames_spec__0(x_3, x_4, x_2, x_9, x_10, x_8); +lean_dec_ref(x_4); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); x_13 = lean_ctor_get(x_11, 1); @@ -19149,6 +19151,7 @@ x_9 = lean_unbox_usize(x_5); lean_dec(x_5); x_10 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_DocString_Builtin_0__Lean_Doc_similarNames_spec__0(x_7, x_2, x_3, x_8, x_9, x_6); lean_dec_ref(x_3); +lean_dec_ref(x_2); return x_10; } } @@ -27372,8 +27375,6 @@ if (x_13 == 0) lean_object* x_14; lean_object* x_15; lean_object* x_16; x_14 = lean_array_uget(x_4, x_5); x_15 = l_Lean_Name_toString(x_14, x_1); -lean_inc_ref(x_2); -lean_inc_ref(x_15); x_16 = l_Lean_EditDistance_levenshtein(x_15, x_2, x_3); if (lean_obj_tag(x_16) == 0) { @@ -27397,7 +27398,6 @@ goto block_12; } else { -lean_dec_ref(x_2); return x_7; } block_12: @@ -27428,7 +27428,6 @@ x_7 = l_Array_filterMapM___at___00__private_Lean_Elab_DocString_Builtin_0__Lean_ x_8 = lean_nat_dec_lt(x_5, x_6); if (x_8 == 0) { -lean_dec_ref(x_2); return x_7; } else @@ -27439,7 +27438,6 @@ x_10 = lean_nat_dec_le(x_6, x_9); lean_dec(x_9); if (x_10 == 0) { -lean_dec_ref(x_2); return x_7; } else @@ -27686,6 +27684,7 @@ x_80 = l_Array_filterMapM___at___00__private_Lean_Elab_DocString_Builtin_0__Lean lean_dec(x_79); lean_dec_ref(x_78); lean_dec(x_74); +lean_dec_ref(x_73); x_81 = lean_array_get_size(x_80); x_82 = lean_nat_dec_eq(x_81, x_19); if (x_82 == 0) @@ -27971,6 +27970,7 @@ x_158 = l_Array_filterMapM___at___00__private_Lean_Elab_DocString_Builtin_0__Lea lean_dec(x_157); lean_dec_ref(x_156); lean_dec(x_152); +lean_dec_ref(x_151); x_159 = lean_array_get_size(x_158); x_160 = lean_nat_dec_eq(x_159, x_97); if (x_160 == 0) @@ -28264,6 +28264,7 @@ lean_dec(x_6); x_11 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Array_filterMapM___at___00__private_Lean_Elab_DocString_Builtin_0__Lean_Doc_attr_validateAttr_spec__1_spec__1(x_8, x_2, x_3, x_4, x_9, x_10, x_7); lean_dec_ref(x_4); lean_dec(x_3); +lean_dec_ref(x_2); return x_11; } } @@ -28277,6 +28278,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); +lean_dec_ref(x_2); return x_8; } } @@ -42635,7 +42637,6 @@ lean_dec(x_12); x_20 = lean_ctor_get(x_19, 0); lean_inc_ref(x_20); lean_dec_ref(x_19); -lean_inc_ref(x_20); x_21 = lean_string_validate_utf8(x_20); if (x_21 == 0) { @@ -54505,7 +54506,6 @@ uint8_t x_5; x_5 = lean_usize_dec_lt(x_3, x_2); if (x_5 == 0) { -lean_dec_ref(x_1); return x_4; } else @@ -54527,8 +54527,6 @@ if (lean_is_exclusive(x_6)) { x_10 = lean_unsigned_to_nat(0u); x_11 = lean_array_uset(x_4, x_3, x_10); x_20 = lean_string_length(x_1); -lean_inc(x_8); -lean_inc_ref(x_1); x_21 = l_Lean_EditDistance_levenshtein(x_1, x_8, x_20); if (lean_obj_tag(x_21) == 0) { @@ -54751,6 +54749,7 @@ lean_dec(x_2); x_6 = lean_unbox_usize(x_3); lean_dec(x_3); x_7 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_DocString_Builtin_0__Lean_Doc_output_sortByDistance_spec__1___redArg(x_1, x_5, x_6, x_4); +lean_dec_ref(x_1); return x_7; } } @@ -54763,6 +54762,7 @@ lean_dec(x_3); x_7 = lean_unbox_usize(x_4); lean_dec(x_4); x_8 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_DocString_Builtin_0__Lean_Doc_output_sortByDistance_spec__1(x_1, x_2, x_6, x_7, x_5); +lean_dec_ref(x_2); return x_8; } } @@ -54796,6 +54796,24 @@ lean_dec(x_2); return x_9; } } +LEAN_EXPORT lean_object* l___private_Lean_Elab_DocString_Builtin_0__Lean_Doc_output_sortByDistance___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l___private_Lean_Elab_DocString_Builtin_0__Lean_Doc_output_sortByDistance___redArg(x_1, x_2); +lean_dec_ref(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_DocString_Builtin_0__Lean_Doc_output_sortByDistance___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Lean_Elab_DocString_Builtin_0__Lean_Doc_output_sortByDistance(x_1, x_2, x_3); +lean_dec_ref(x_2); +return x_4; +} +} LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Doc_output_spec__0_spec__0___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -56014,7 +56032,6 @@ if (lean_obj_tag(x_81) == 0) { lean_object* x_83; lean_object* x_84; lean_object* x_108; lean_object* x_109; uint8_t x_110; lean_free_object(x_78); -lean_inc_ref(x_72); x_83 = l___private_Lean_Elab_DocString_Builtin_0__Lean_Doc_output_sortByDistance___redArg(x_72, x_70); x_108 = lean_unsigned_to_nat(1u); x_109 = lean_array_get_size(x_83); @@ -56197,7 +56214,6 @@ if (lean_is_exclusive(x_114)) { if (lean_obj_tag(x_115) == 0) { lean_object* x_117; lean_object* x_118; lean_object* x_140; lean_object* x_141; uint8_t x_142; -lean_inc_ref(x_72); x_117 = l___private_Lean_Elab_DocString_Builtin_0__Lean_Doc_output_sortByDistance___redArg(x_72, x_70); x_140 = lean_unsigned_to_nat(1u); x_141 = lean_array_get_size(x_117); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen.c b/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen.c index 6d353bc268..88ba19f45f 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen.c @@ -15,7 +15,6 @@ extern "C" { #endif static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__7; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__17___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13_spec__13___redArg___closed__6; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__30___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -25,6 +24,7 @@ lean_object* l_Lean_Expr_fvarId_x3f(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27___closed__11; LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__9; lean_object* l_Lean_Meta_mkEqHEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__13_spec__13___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -38,14 +38,15 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tact static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__15; LEAN_EXPORT lean_object* l_Lean_logWarningAt___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__5___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_forIn_x27_loop___at___00List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0___redArg___closed__2; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__0; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__7; static lean_object* l_Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24___redArg___closed__7; LEAN_EXPORT lean_object* l_String_dropPrefix_x3f___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__3___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_paren(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__17___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__5___closed__11; @@ -53,7 +54,6 @@ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__pr static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13_spec__13___redArg___closed__26; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_assumption(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___lam__1___closed__2; LEAN_EXPORT lean_object* l_Lean_PersistentArray_foldlM___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13_spec__13___redArg___closed__15; @@ -68,16 +68,14 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_Pers LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__0; LEAN_EXPORT lean_object* l___private_Init_Data_Range_Basic_0__Std_Range_forIn_x27_loop___at___00Lean_Elab_Tactic_Do_VCGen_genVCs_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__0; LEAN_EXPORT lean_object* l___private_Init_Data_Range_Basic_0__Std_Range_forIn_x27_loop___at___00Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__9; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__14; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___lam__5(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Option_get___at___00Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24_spec__25(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___boxed(lean_object**); lean_object* l_Lean_Core_instMonadCoreM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -117,10 +115,10 @@ lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_object LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__17; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__28(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___boxed(lean_object**); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13_spec__13___redArg___closed__7; lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__17___closed__0; +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__8___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -133,8 +131,8 @@ LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_logErrorAt___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__1_spec__1___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__18___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__2; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mStartMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -149,6 +147,7 @@ lean_object* l_Lean_MetavarContext_getDecl(lean_object*, lean_object*); static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__13_spec__13___lam__4___closed__5; LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_le(size_t, size_t); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___closed__0; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__2; @@ -175,6 +174,7 @@ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Ela lean_object* l_Lean_mkApp8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__6___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27___closed__1; lean_object* l_Lean_Elab_Tactic_Do_knownJP_x3f___redArg(lean_object*, lean_object*); @@ -199,6 +199,7 @@ lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Range_Basic_0__Std_Range_forIn_x27_loop___at___00Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_findSpec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__20___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__40_spec__40___closed__7; LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_throwErrorAt___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__11_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -228,7 +229,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLoca LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__30___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15___lam__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__8___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -270,7 +270,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabInvariants___closed__3; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__6_spec__6___redArg___closed__1; uint8_t lean_usize_dec_eq(size_t, size_t); @@ -281,6 +280,7 @@ lean_object* l_Lean_KVMap_find(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_instReprTSyntax_repr___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__0___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___closed__4; lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -301,14 +301,12 @@ static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenHint___lam__0___closed__3; static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24_spec__24___lam__1___closed__2; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__5; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__40_spec__40___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalDecl_isNondep(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabInvariants___closed__12; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__1; lean_object* lean_mk_array(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__8_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -336,6 +334,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tac LEAN_EXPORT lean_object* l_Array_filterMapM___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__24___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__17___lam__0___closed__1; uint8_t l_Lean_instBEqMessageSeverity_beq(uint8_t, uint8_t); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__0; lean_object* l_Lean_MVarId_getTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__18___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -343,11 +342,12 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls lean_object* l_Lean_Expr_fvarId_x21(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___lam__11___closed__1; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_getKind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed(lean_object**); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__40_spec__40___closed__1; uint8_t lean_float_decLt(double, double); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13_spec__13___redArg___closed__20; -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___boxed(lean_object**); @@ -375,14 +375,12 @@ LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00__private_L static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__4___boxed(lean_object**); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__29___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__40_spec__40___closed__2; lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapFinIdxM_map___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__29___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_MVarId_assign___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__18_spec__18_spec__18_spec__18_spec__18___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__5; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__6_spec__6___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27___lam__1(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -400,6 +398,7 @@ extern lean_object* l_Lean_trace_profiler_useHeartbeats; LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__29___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__1; lean_object* l_Lean_stringToMessageData(lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__7; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -413,10 +412,12 @@ static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_It LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__6___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_instInhabitedPersistentArrayNode_default(lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__4___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__8___closed__0; static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__2; +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__3; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__8; lean_object* l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -438,7 +439,7 @@ lean_object* l_Lean_Exception_toMessageData(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Array_filterMapM___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__24_spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__40_spec__40___lam__6(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___closed__1; +static lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__0; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__15; @@ -470,12 +471,14 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Uns lean_object* l_ReaderT_instMonad___redArg(lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___lam__7___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27___boxed__const__1; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___boxed(lean_object**); static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__4; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__3___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -511,6 +514,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tact LEAN_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__4___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___lam__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__2; static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13_spec__13___redArg___closed__23; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -530,16 +534,19 @@ static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_liftSimpM___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__1; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_abstract(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMainGoal___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___00Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabInvariants___closed__4; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_MVarId_assign___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__18_spec__18_spec__18_spec__18___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__5; static lean_object* l___private_Init_Data_Range_Basic_0__Std_Range_forIn_x27_loop___at___00Lean_Elab_Tactic_Do_VCGen_genVCs_spec__1___redArg___closed__0; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__5___boxed(lean_object**); static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__5___closed__13; lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_mkProj_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -566,6 +573,7 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_m LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__38(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__5___closed__7; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__8___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -581,6 +589,7 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Uns LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabInvariants___closed__9; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__20_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__18___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__8_spec__8___redArg___boxed(lean_object**); @@ -601,8 +610,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherA LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__18___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofSyntax(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13_spec__13___redArg___closed__16; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabVCs_evalAlts(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__40_spec__40___lam__6___closed__2; @@ -625,6 +632,7 @@ lean_object* l_Lean_Elab_Tactic_Do_elimLets(lean_object*, uint8_t, lean_object*, LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_String_dropPrefix_x3f___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__20___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__1; static lean_object* l_Array_filterMapM___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__24___closed__0; static double l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___lam__1___closed__0; @@ -637,6 +645,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tact LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24_spec__24___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__6; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__10; +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__6; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FVarId_getValue_x3f___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3; @@ -657,10 +666,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tacti static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__13_spec__13___lam__4___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenHint___lam__0___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -676,6 +685,7 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_Pe LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabVCs___closed__2; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__3___closed__0; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__13; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__15_spec__15(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -712,7 +722,6 @@ double lean_float_of_nat(lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__0; lean_object* l_instInhabitedOfMonad___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -722,6 +731,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tacti lean_object* lean_array_pop(lean_object*); lean_object* l_Lean_Meta_mkAppM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__17___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -735,6 +745,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tacti LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAndN(lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); lean_object* lean_st_mk_ref(lean_object*); @@ -748,6 +759,7 @@ static lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at__ LEAN_EXPORT lean_object* l___private_Init_Data_Range_Basic_0__Std_Range_forIn_x27_loop___at___00Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at___00__private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___00Lean_PersistentArray_foldlM___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__3(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__40_spec__40___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -778,10 +790,8 @@ static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__10; static size_t l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_MVarId_assign___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__18_spec__18_spec__18___redArg___closed__0; lean_object* l_Lean_mkConst(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__0; static lean_object* l_Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24___redArg___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24_spec__26___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___boxed(lean_object**); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10_spec__10_spec__10___lam__3(uint8_t, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__10___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -814,7 +824,6 @@ static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__8; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__13_spec__13___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__27(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__5___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__40(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15___closed__6; @@ -844,7 +853,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocal LEAN_EXPORT lean_object* l_Array_filterMapM___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__24(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_letE___override(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Meta_mapErrorImp___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_forIn_x27_loop___at___00List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0___redArg___closed__1; @@ -859,7 +867,6 @@ static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do lean_object* l_Lean_Elab_Tactic_pruneSolvedGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Tactic_Do_isJP(lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__1; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___lam__7___closed__1; lean_object* l_Lean_MVarId_setTag___redArg(lean_object*, lean_object*, lean_object*); @@ -892,7 +899,6 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_m LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__9(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32_spec__32(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -931,8 +937,9 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Ela LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Range_Basic_0__Std_Range_forIn_x27_loop___at___00Lean_Elab_Tactic_Do_VCGen_genVCs_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapFinIdxM_map___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__29___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__20_spec__20_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appFn_x21(lean_object*); @@ -1044,7 +1051,6 @@ static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_ static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__12; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__10; lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__13_spec__13___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_MVarId_assign___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__18_spec__18_spec__18_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1054,7 +1060,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__5___closed__6; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__8___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27___lam__4(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__40_spec__40___closed__8; lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_pureRflAndAndIntro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1091,6 +1097,7 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Subarray_empty(lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1098,8 +1105,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tacti LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24_spec__26(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__15___closed__0; +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00Lean_Elab_Tactic_Do_VCGen_genVCs_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__5(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13___closed__0; lean_object* l_Lean_Expr_appFnCleanup___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__9___redArg(lean_object*, lean_object*); @@ -1118,11 +1127,9 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenHint___boxed(lean_objec LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13_spec__13___redArg___closed__21; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__3; lean_object* l_Lean_Meta_instMonadMetaM___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13_spec__13___redArg___closed__11; static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__5___closed__4; -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1(); @@ -1137,7 +1144,9 @@ static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do lean_object* l_Lean_Meta_decLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_emitVC(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___boxed(lean_object**); lean_object* l_Lean_Elab_Tactic_withMainContext___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabInvariants___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__40_spec__40___closed__3; @@ -1147,6 +1156,7 @@ uint64_t l_Lean_instHashableMVarId_hash(lean_object*); LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10_spec__10_spec__10___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24___redArg___closed__4; static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___closed__14; +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__8; lean_object* l_Lean_Meta_mkFreshExprMVar(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13_spec__13___redArg___closed__14; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1168,6 +1178,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic lean_object* l_Lean_Elab_Term_TermElabM_run___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__5___closed__0; @@ -1206,6 +1217,7 @@ static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_ uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForallFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__29___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___boxed(lean_object**); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn_x27(lean_object*); @@ -1228,6 +1240,7 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Uns LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__40_spec__40___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10_spec__10_spec__10___lam__3___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_panic_fn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___lam__8___closed__2; static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___lam__7___closed__2; @@ -1260,10 +1273,10 @@ static lean_object* l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__17___lam__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__17___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__18___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t lean_uint64_shift_left(uint64_t, uint64_t); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg(uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_MVarId_assign___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__18_spec__18_spec__18_spec__18_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1293,6 +1306,7 @@ LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3(uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static uint64_t l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___closed__15; lean_object* lean_erase_macro_scopes(lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__0; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__11; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__8___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*); @@ -1327,9 +1341,10 @@ static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_l LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Data_Range_Basic_0__Std_Range_forIn_x27_loop___at___00Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___closed__1; size_t lean_usize_add(size_t, size_t); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__4; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__0; @@ -1343,6 +1358,7 @@ static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10_spec__10_spec__10___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkMVar(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenHint___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32_spec__32___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_betaRev(lean_object*, lean_object*, uint8_t, uint8_t); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___lam__7(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1372,7 +1388,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabInvariants(lean_object*, lean LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr1(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__10___boxed(lean_object**); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_shift_left(size_t, size_t); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_num_indices(lean_object*); @@ -1380,9 +1395,9 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tact static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__3; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__2; static lean_object* l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__15___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Simp_simp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__40_spec__40___lam__6___boxed(lean_object**); @@ -1404,6 +1419,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Ela LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__8___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabVCs___closed__3; LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1440,6 +1456,7 @@ lean_object* l_Lean_mkAtom(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__8; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__31___boxed(lean_object*, lean_object*, lean_object*); @@ -1458,18 +1475,17 @@ uint8_t lean_usize_dec_lt(size_t, size_t); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_simpDiscrs_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27___closed__8; lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13(lean_object*, lean_object*, lean_object*, uint8_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___closed__3; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l_Lean_Meta_TransparencyMode_toUInt64(uint8_t); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); @@ -1505,6 +1521,7 @@ static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tac static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic(lean_object*); lean_object* l_Lean_Meta_instantiateForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabInvariants___closed__8; static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1521,6 +1538,7 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__5___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13___redArg___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1538,8 +1556,6 @@ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__pr LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15___lam__10___closed__2; lean_object* lean_expr_instantiate1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__40_spec__40___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1551,6 +1567,7 @@ static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tac LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___lam__1___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabVCs_applyPreTac(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__9(lean_object*, lean_object*); @@ -1563,6 +1580,8 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tact LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__13_spec__13___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13_spec__13___redArg___closed__9; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__7; lean_object* l_Lean_MessageLog_add(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -22384,7 +22403,7 @@ x_76 = l_Lean_Meta_Context_config(x_12); x_77 = !lean_is_exclusive(x_76); if (x_77 == 0) { -uint8_t x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; uint8_t x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; uint8_t x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_125; uint8_t x_126; lean_object* x_127; lean_object* x_128; uint8_t x_129; lean_object* x_130; uint8_t x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_143; uint8_t x_144; lean_object* x_145; lean_object* x_146; uint8_t x_147; uint8_t x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; uint8_t x_379; lean_object* x_380; lean_object* x_388; uint64_t x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; +uint8_t x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; uint8_t x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; uint8_t x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; uint8_t x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; uint8_t x_129; lean_object* x_130; uint8_t x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; uint8_t x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; uint8_t x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; uint8_t x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; uint8_t x_379; lean_object* x_380; lean_object* x_388; uint64_t x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; x_78 = lean_ctor_get_uint8(x_12, sizeof(void*)*7); x_79 = lean_ctor_get(x_12, 1); x_80 = lean_ctor_get(x_12, 2); @@ -22529,10 +22548,10 @@ block_124: { lean_object* x_111; lean_inc_ref(x_94); -lean_inc_ref(x_109); +lean_inc_ref(x_101); lean_inc_ref(x_74); lean_inc_ref(x_72); -x_111 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15(x_72, x_74, x_109, x_94, x_110, x_102, x_103, x_106, x_108, x_104, x_107); +x_111 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15(x_72, x_74, x_101, x_94, x_110, x_103, x_105, x_108, x_107, x_106, x_109); if (lean_obj_tag(x_111) == 0) { lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; @@ -22551,12 +22570,12 @@ lean_ctor_set(x_115, 0, x_64); lean_ctor_set(x_115, 1, x_114); lean_inc_ref(x_115); x_116 = l_Lean_mkConst(x_113, x_115); -lean_inc_ref(x_109); +lean_inc_ref(x_101); lean_inc_ref(x_5); lean_inc_ref(x_72); lean_inc_ref(x_74); lean_inc_ref(x_116); -x_117 = l_Lean_mkApp4(x_116, x_74, x_72, x_5, x_109); +x_117 = l_Lean_mkApp4(x_116, x_74, x_72, x_5, x_101); lean_inc_ref(x_94); lean_inc_ref(x_5); lean_inc_ref(x_72); @@ -22565,8 +22584,8 @@ x_118 = l_Lean_mkApp4(x_116, x_74, x_72, x_5, x_94); x_119 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___lam__8___closed__5; lean_inc_ref(x_115); x_120 = l_Lean_mkConst(x_119, x_115); -x_121 = l_Lean_mkApp6(x_120, x_74, x_72, x_5, x_109, x_94, x_112); -x_122 = lean_box(x_99); +x_121 = l_Lean_mkApp6(x_120, x_74, x_72, x_5, x_101, x_94, x_112); +x_122 = lean_box(x_98); x_123 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___lam__5___boxed), 11, 10); lean_closure_set(x_123, 0, x_60); lean_closure_set(x_123, 1, x_61); @@ -22577,19 +22596,19 @@ lean_closure_set(x_123, 5, x_122); lean_closure_set(x_123, 6, x_118); lean_closure_set(x_123, 7, x_121); lean_closure_set(x_123, 8, x_65); -lean_closure_set(x_123, 9, x_98); +lean_closure_set(x_123, 9, x_99); x_17 = x_100; -x_18 = x_105; +x_18 = x_104; x_19 = x_123; x_20 = lean_box(0); goto block_24; } else { -lean_dec_ref(x_109); -lean_dec_ref(x_105); +lean_dec_ref(x_104); +lean_dec_ref(x_101); lean_dec_ref(x_100); -lean_dec_ref(x_98); +lean_dec_ref(x_99); lean_dec_ref(x_97); lean_dec_ref(x_94); lean_dec_ref(x_74); @@ -22613,8 +22632,8 @@ lean_dec(x_136); lean_dec_ref(x_135); lean_dec(x_134); lean_dec_ref(x_133); -lean_dec_ref(x_130); -lean_dec_ref(x_125); +lean_dec_ref(x_128); +lean_dec_ref(x_126); lean_dec_ref(x_97); lean_dec_ref(x_94); lean_dec_ref(x_74); @@ -22626,13 +22645,13 @@ lean_dec(x_6); lean_dec_ref(x_5); x_17 = x_127; x_18 = x_132; -x_19 = x_128; +x_19 = x_130; x_20 = lean_box(0); goto block_24; } else { -lean_dec_ref(x_128); +lean_dec_ref(x_130); if (x_129 == 0) { if (x_63 == 0) @@ -22640,15 +22659,15 @@ if (x_63 == 0) x_98 = x_125; x_99 = x_126; x_100 = x_127; -x_101 = lean_box(0); -x_102 = x_133; -x_103 = x_134; -x_104 = x_137; -x_105 = x_132; -x_106 = x_135; -x_107 = x_138; -x_108 = x_136; -x_109 = x_130; +x_101 = x_128; +x_102 = lean_box(0); +x_103 = x_133; +x_104 = x_132; +x_105 = x_134; +x_106 = x_137; +x_107 = x_136; +x_108 = x_135; +x_109 = x_138; x_110 = x_6; goto block_124; } @@ -22660,15 +22679,15 @@ x_141 = l_Lean_Name_append(x_6, x_140); x_98 = x_125; x_99 = x_126; x_100 = x_127; -x_101 = lean_box(0); -x_102 = x_133; -x_103 = x_134; -x_104 = x_137; -x_105 = x_132; -x_106 = x_135; -x_107 = x_138; -x_108 = x_136; -x_109 = x_130; +x_101 = x_128; +x_102 = lean_box(0); +x_103 = x_133; +x_104 = x_132; +x_105 = x_134; +x_106 = x_137; +x_107 = x_136; +x_108 = x_135; +x_109 = x_138; x_110 = x_141; goto block_124; } @@ -22678,15 +22697,15 @@ else x_98 = x_125; x_99 = x_126; x_100 = x_127; -x_101 = lean_box(0); -x_102 = x_133; -x_103 = x_134; -x_104 = x_137; -x_105 = x_132; -x_106 = x_135; -x_107 = x_138; -x_108 = x_136; -x_109 = x_130; +x_101 = x_128; +x_102 = lean_box(0); +x_103 = x_133; +x_104 = x_132; +x_105 = x_134; +x_106 = x_137; +x_107 = x_136; +x_108 = x_135; +x_109 = x_138; x_110 = x_6; goto block_124; } @@ -22700,8 +22719,8 @@ lean_dec(x_136); lean_dec_ref(x_135); lean_dec(x_134); lean_dec_ref(x_133); -lean_dec_ref(x_130); -lean_dec_ref(x_125); +lean_dec_ref(x_128); +lean_dec_ref(x_126); lean_dec_ref(x_97); lean_dec_ref(x_94); lean_dec_ref(x_74); @@ -22713,7 +22732,7 @@ lean_dec(x_6); lean_dec_ref(x_5); x_17 = x_127; x_18 = x_132; -x_19 = x_128; +x_19 = x_130; x_20 = lean_box(0); goto block_24; } @@ -22721,7 +22740,7 @@ goto block_24; block_167: { lean_object* x_159; lean_object* x_160; -lean_inc_ref(x_149); +lean_inc_ref(x_151); lean_inc_ref(x_66); lean_inc_ref(x_65); lean_inc(x_64); @@ -22733,13 +22752,13 @@ if (lean_is_scalar(x_68)) { lean_ctor_set(x_159, 0, x_64); lean_ctor_set(x_159, 1, x_65); lean_ctor_set(x_159, 2, x_66); -lean_ctor_set(x_159, 3, x_149); -lean_inc(x_145); -lean_inc_ref(x_150); -lean_inc(x_157); -lean_inc_ref(x_153); -lean_inc_ref(x_155); -x_160 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__17(x_159, x_158, x_8, x_155, x_152, x_153, x_157, x_150, x_145); +lean_ctor_set(x_159, 3, x_151); +lean_inc(x_155); +lean_inc_ref(x_157); +lean_inc(x_149); +lean_inc_ref(x_147); +lean_inc_ref(x_152); +x_160 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__17(x_159, x_158, x_8, x_152, x_148, x_147, x_149, x_157, x_155); if (lean_obj_tag(x_160) == 0) { lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; @@ -22763,39 +22782,39 @@ x_166 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); lean_closure_set(x_166, 0, x_165); lean_closure_set(x_166, 1, x_65); lean_closure_set(x_166, 2, x_66); -lean_closure_set(x_166, 3, x_149); +lean_closure_set(x_166, 3, x_151); lean_closure_set(x_166, 4, x_67); lean_closure_set(x_166, 5, x_161); x_125 = x_143; x_126 = x_144; -x_127 = x_151; +x_127 = x_145; x_128 = x_146; -x_129 = x_147; -x_130 = x_154; -x_131 = x_148; +x_129 = x_150; +x_130 = x_153; +x_131 = x_154; x_132 = x_166; -x_133 = x_155; -x_134 = x_152; -x_135 = x_153; -x_136 = x_157; -x_137 = x_150; -x_138 = x_145; +x_133 = x_152; +x_134 = x_148; +x_135 = x_147; +x_136 = x_149; +x_137 = x_157; +x_138 = x_155; x_139 = lean_box(0); goto block_142; } else { -lean_dec(x_157); -lean_dec_ref(x_155); -lean_dec_ref(x_154); +lean_dec_ref(x_157); +lean_dec(x_155); lean_dec_ref(x_153); -lean_dec(x_152); +lean_dec_ref(x_152); lean_dec_ref(x_151); -lean_dec_ref(x_150); -lean_dec_ref(x_149); +lean_dec(x_149); +lean_dec(x_148); +lean_dec_ref(x_147); lean_dec_ref(x_146); -lean_dec(x_145); -lean_dec_ref(x_143); +lean_dec_ref(x_145); +lean_dec_ref(x_144); lean_dec_ref(x_97); lean_dec_ref(x_94); lean_dec_ref(x_74); @@ -22973,12 +22992,12 @@ lean_dec(x_211); x_218 = lean_unbox(x_214); lean_dec(x_214); lean_inc_ref(x_7); -x_125 = x_205; -x_126 = x_204; +x_125 = x_204; +x_126 = x_205; x_127 = x_215; -x_128 = x_7; +x_128 = x_181; x_129 = x_217; -x_130 = x_181; +x_130 = x_7; x_131 = x_218; x_132 = x_7; x_133 = x_170; @@ -23005,21 +23024,21 @@ x_221 = lean_unbox(x_214); lean_dec(x_214); lean_inc(x_6); lean_inc_ref(x_205); -x_143 = x_205; -x_144 = x_204; -x_145 = x_175; -x_146 = x_7; -x_147 = x_220; -x_148 = x_221; -x_149 = x_205; -x_150 = x_174; -x_151 = x_215; -x_152 = x_171; -x_153 = x_172; -x_154 = x_181; -x_155 = x_170; +x_143 = x_204; +x_144 = x_205; +x_145 = x_215; +x_146 = x_181; +x_147 = x_172; +x_148 = x_171; +x_149 = x_173; +x_150 = x_220; +x_151 = x_205; +x_152 = x_170; +x_153 = x_7; +x_154 = x_221; +x_155 = x_175; x_156 = lean_box(0); -x_157 = x_173; +x_157 = x_174; x_158 = x_6; goto block_167; } @@ -23034,21 +23053,21 @@ lean_dec(x_211); x_225 = lean_unbox(x_214); lean_dec(x_214); lean_inc_ref(x_205); -x_143 = x_205; -x_144 = x_204; -x_145 = x_175; -x_146 = x_7; -x_147 = x_224; -x_148 = x_225; -x_149 = x_205; -x_150 = x_174; -x_151 = x_215; -x_152 = x_171; -x_153 = x_172; -x_154 = x_181; -x_155 = x_170; +x_143 = x_204; +x_144 = x_205; +x_145 = x_215; +x_146 = x_181; +x_147 = x_172; +x_148 = x_171; +x_149 = x_173; +x_150 = x_224; +x_151 = x_205; +x_152 = x_170; +x_153 = x_7; +x_154 = x_225; +x_155 = x_175; x_156 = lean_box(0); -x_157 = x_173; +x_157 = x_174; x_158 = x_223; goto block_167; } @@ -23062,21 +23081,21 @@ x_227 = lean_unbox(x_214); lean_dec(x_214); lean_inc(x_6); lean_inc_ref(x_205); -x_143 = x_205; -x_144 = x_204; -x_145 = x_175; -x_146 = x_7; -x_147 = x_226; -x_148 = x_227; -x_149 = x_205; -x_150 = x_174; -x_151 = x_215; -x_152 = x_171; -x_153 = x_172; -x_154 = x_181; -x_155 = x_170; +x_143 = x_204; +x_144 = x_205; +x_145 = x_215; +x_146 = x_181; +x_147 = x_172; +x_148 = x_171; +x_149 = x_173; +x_150 = x_226; +x_151 = x_205; +x_152 = x_170; +x_153 = x_7; +x_154 = x_227; +x_155 = x_175; x_156 = lean_box(0); -x_157 = x_173; +x_157 = x_174; x_158 = x_6; goto block_167; } @@ -23094,12 +23113,12 @@ lean_dec(x_211); x_229 = lean_unbox(x_214); lean_dec(x_214); lean_inc_ref(x_7); -x_125 = x_205; -x_126 = x_204; +x_125 = x_204; +x_126 = x_205; x_127 = x_215; -x_128 = x_7; +x_128 = x_181; x_129 = x_228; -x_130 = x_181; +x_130 = x_7; x_131 = x_229; x_132 = x_7; x_133 = x_170; @@ -23311,12 +23330,12 @@ lean_dec(x_259); x_266 = lean_unbox(x_262); lean_dec(x_262); lean_inc_ref(x_7); -x_125 = x_252; -x_126 = x_251; +x_125 = x_251; +x_126 = x_252; x_127 = x_263; -x_128 = x_7; +x_128 = x_181; x_129 = x_265; -x_130 = x_181; +x_130 = x_7; x_131 = x_266; x_132 = x_7; x_133 = x_170; @@ -23343,21 +23362,21 @@ x_269 = lean_unbox(x_262); lean_dec(x_262); lean_inc(x_6); lean_inc_ref(x_252); -x_143 = x_252; -x_144 = x_251; -x_145 = x_175; -x_146 = x_7; -x_147 = x_268; -x_148 = x_269; -x_149 = x_252; -x_150 = x_174; -x_151 = x_263; -x_152 = x_171; -x_153 = x_172; -x_154 = x_181; -x_155 = x_170; +x_143 = x_251; +x_144 = x_252; +x_145 = x_263; +x_146 = x_181; +x_147 = x_172; +x_148 = x_171; +x_149 = x_173; +x_150 = x_268; +x_151 = x_252; +x_152 = x_170; +x_153 = x_7; +x_154 = x_269; +x_155 = x_175; x_156 = lean_box(0); -x_157 = x_173; +x_157 = x_174; x_158 = x_6; goto block_167; } @@ -23372,21 +23391,21 @@ lean_dec(x_259); x_273 = lean_unbox(x_262); lean_dec(x_262); lean_inc_ref(x_252); -x_143 = x_252; -x_144 = x_251; -x_145 = x_175; -x_146 = x_7; -x_147 = x_272; -x_148 = x_273; -x_149 = x_252; -x_150 = x_174; -x_151 = x_263; -x_152 = x_171; -x_153 = x_172; -x_154 = x_181; -x_155 = x_170; +x_143 = x_251; +x_144 = x_252; +x_145 = x_263; +x_146 = x_181; +x_147 = x_172; +x_148 = x_171; +x_149 = x_173; +x_150 = x_272; +x_151 = x_252; +x_152 = x_170; +x_153 = x_7; +x_154 = x_273; +x_155 = x_175; x_156 = lean_box(0); -x_157 = x_173; +x_157 = x_174; x_158 = x_271; goto block_167; } @@ -23400,21 +23419,21 @@ x_275 = lean_unbox(x_262); lean_dec(x_262); lean_inc(x_6); lean_inc_ref(x_252); -x_143 = x_252; -x_144 = x_251; -x_145 = x_175; -x_146 = x_7; -x_147 = x_274; -x_148 = x_275; -x_149 = x_252; -x_150 = x_174; -x_151 = x_263; -x_152 = x_171; -x_153 = x_172; -x_154 = x_181; -x_155 = x_170; +x_143 = x_251; +x_144 = x_252; +x_145 = x_263; +x_146 = x_181; +x_147 = x_172; +x_148 = x_171; +x_149 = x_173; +x_150 = x_274; +x_151 = x_252; +x_152 = x_170; +x_153 = x_7; +x_154 = x_275; +x_155 = x_175; x_156 = lean_box(0); -x_157 = x_173; +x_157 = x_174; x_158 = x_6; goto block_167; } @@ -23432,12 +23451,12 @@ lean_dec(x_259); x_277 = lean_unbox(x_262); lean_dec(x_262); lean_inc_ref(x_7); -x_125 = x_252; -x_126 = x_251; +x_125 = x_251; +x_126 = x_252; x_127 = x_263; -x_128 = x_7; +x_128 = x_181; x_129 = x_276; -x_130 = x_181; +x_130 = x_7; x_131 = x_277; x_132 = x_7; x_133 = x_170; @@ -23738,12 +23757,12 @@ lean_dec(x_346); x_353 = lean_unbox(x_349); lean_dec(x_349); lean_inc_ref(x_7); -x_125 = x_339; -x_126 = x_338; +x_125 = x_338; +x_126 = x_339; x_127 = x_350; -x_128 = x_7; +x_128 = x_181; x_129 = x_352; -x_130 = x_181; +x_130 = x_7; x_131 = x_353; x_132 = x_7; x_133 = x_170; @@ -23770,21 +23789,21 @@ x_356 = lean_unbox(x_349); lean_dec(x_349); lean_inc(x_6); lean_inc_ref(x_339); -x_143 = x_339; -x_144 = x_338; -x_145 = x_175; -x_146 = x_7; -x_147 = x_355; -x_148 = x_356; -x_149 = x_339; -x_150 = x_174; -x_151 = x_350; -x_152 = x_171; -x_153 = x_172; -x_154 = x_181; -x_155 = x_170; +x_143 = x_338; +x_144 = x_339; +x_145 = x_350; +x_146 = x_181; +x_147 = x_172; +x_148 = x_171; +x_149 = x_173; +x_150 = x_355; +x_151 = x_339; +x_152 = x_170; +x_153 = x_7; +x_154 = x_356; +x_155 = x_175; x_156 = lean_box(0); -x_157 = x_173; +x_157 = x_174; x_158 = x_6; goto block_167; } @@ -23799,21 +23818,21 @@ lean_dec(x_346); x_360 = lean_unbox(x_349); lean_dec(x_349); lean_inc_ref(x_339); -x_143 = x_339; -x_144 = x_338; -x_145 = x_175; -x_146 = x_7; -x_147 = x_359; -x_148 = x_360; -x_149 = x_339; -x_150 = x_174; -x_151 = x_350; -x_152 = x_171; -x_153 = x_172; -x_154 = x_181; -x_155 = x_170; +x_143 = x_338; +x_144 = x_339; +x_145 = x_350; +x_146 = x_181; +x_147 = x_172; +x_148 = x_171; +x_149 = x_173; +x_150 = x_359; +x_151 = x_339; +x_152 = x_170; +x_153 = x_7; +x_154 = x_360; +x_155 = x_175; x_156 = lean_box(0); -x_157 = x_173; +x_157 = x_174; x_158 = x_358; goto block_167; } @@ -23827,21 +23846,21 @@ x_362 = lean_unbox(x_349); lean_dec(x_349); lean_inc(x_6); lean_inc_ref(x_339); -x_143 = x_339; -x_144 = x_338; -x_145 = x_175; -x_146 = x_7; -x_147 = x_361; -x_148 = x_362; -x_149 = x_339; -x_150 = x_174; -x_151 = x_350; -x_152 = x_171; -x_153 = x_172; -x_154 = x_181; -x_155 = x_170; +x_143 = x_338; +x_144 = x_339; +x_145 = x_350; +x_146 = x_181; +x_147 = x_172; +x_148 = x_171; +x_149 = x_173; +x_150 = x_361; +x_151 = x_339; +x_152 = x_170; +x_153 = x_7; +x_154 = x_362; +x_155 = x_175; x_156 = lean_box(0); -x_157 = x_173; +x_157 = x_174; x_158 = x_6; goto block_167; } @@ -23859,12 +23878,12 @@ lean_dec(x_346); x_364 = lean_unbox(x_349); lean_dec(x_349); lean_inc_ref(x_7); -x_125 = x_339; -x_126 = x_338; +x_125 = x_338; +x_126 = x_339; x_127 = x_350; -x_128 = x_7; +x_128 = x_181; x_129 = x_363; -x_130 = x_181; +x_130 = x_7; x_131 = x_364; x_132 = x_7; x_133 = x_170; @@ -24159,7 +24178,7 @@ goto block_374; } else { -uint8_t x_400; uint8_t x_401; uint8_t x_402; uint8_t x_403; uint8_t x_404; uint8_t x_405; uint8_t x_406; uint8_t x_407; uint8_t x_408; uint8_t x_409; uint8_t x_410; uint8_t x_411; uint8_t x_412; uint8_t x_413; uint8_t x_414; uint8_t x_415; uint8_t x_416; uint8_t x_417; uint8_t x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; uint8_t x_425; uint8_t x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; uint8_t x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_465; uint8_t x_466; lean_object* x_467; lean_object* x_468; uint8_t x_469; lean_object* x_470; uint8_t x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_483; uint8_t x_484; lean_object* x_485; lean_object* x_486; uint8_t x_487; uint8_t x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; uint8_t x_619; lean_object* x_620; lean_object* x_628; lean_object* x_629; uint64_t x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; +uint8_t x_400; uint8_t x_401; uint8_t x_402; uint8_t x_403; uint8_t x_404; uint8_t x_405; uint8_t x_406; uint8_t x_407; uint8_t x_408; uint8_t x_409; uint8_t x_410; uint8_t x_411; uint8_t x_412; uint8_t x_413; uint8_t x_414; uint8_t x_415; uint8_t x_416; uint8_t x_417; uint8_t x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; uint8_t x_425; uint8_t x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; uint8_t x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; uint8_t x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; uint8_t x_469; lean_object* x_470; uint8_t x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; uint8_t x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; uint8_t x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; uint8_t x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; uint8_t x_619; lean_object* x_620; lean_object* x_628; lean_object* x_629; uint64_t x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; x_400 = lean_ctor_get_uint8(x_76, 0); x_401 = lean_ctor_get_uint8(x_76, 1); x_402 = lean_ctor_get_uint8(x_76, 2); @@ -24343,10 +24362,10 @@ block_464: { lean_object* x_451; lean_inc_ref(x_434); -lean_inc_ref(x_449); +lean_inc_ref(x_441); lean_inc_ref(x_74); lean_inc_ref(x_72); -x_451 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15(x_72, x_74, x_449, x_434, x_450, x_442, x_443, x_446, x_448, x_444, x_447); +x_451 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15(x_72, x_74, x_441, x_434, x_450, x_443, x_445, x_448, x_447, x_446, x_449); if (lean_obj_tag(x_451) == 0) { lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; @@ -24365,12 +24384,12 @@ lean_ctor_set(x_455, 0, x_64); lean_ctor_set(x_455, 1, x_454); lean_inc_ref(x_455); x_456 = l_Lean_mkConst(x_453, x_455); -lean_inc_ref(x_449); +lean_inc_ref(x_441); lean_inc_ref(x_5); lean_inc_ref(x_72); lean_inc_ref(x_74); lean_inc_ref(x_456); -x_457 = l_Lean_mkApp4(x_456, x_74, x_72, x_5, x_449); +x_457 = l_Lean_mkApp4(x_456, x_74, x_72, x_5, x_441); lean_inc_ref(x_434); lean_inc_ref(x_5); lean_inc_ref(x_72); @@ -24379,8 +24398,8 @@ x_458 = l_Lean_mkApp4(x_456, x_74, x_72, x_5, x_434); x_459 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___lam__8___closed__5; lean_inc_ref(x_455); x_460 = l_Lean_mkConst(x_459, x_455); -x_461 = l_Lean_mkApp6(x_460, x_74, x_72, x_5, x_449, x_434, x_452); -x_462 = lean_box(x_439); +x_461 = l_Lean_mkApp6(x_460, x_74, x_72, x_5, x_441, x_434, x_452); +x_462 = lean_box(x_438); x_463 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___lam__5___boxed), 11, 10); lean_closure_set(x_463, 0, x_60); lean_closure_set(x_463, 1, x_61); @@ -24391,19 +24410,19 @@ lean_closure_set(x_463, 5, x_462); lean_closure_set(x_463, 6, x_458); lean_closure_set(x_463, 7, x_461); lean_closure_set(x_463, 8, x_65); -lean_closure_set(x_463, 9, x_438); +lean_closure_set(x_463, 9, x_439); x_17 = x_440; -x_18 = x_445; +x_18 = x_444; x_19 = x_463; x_20 = lean_box(0); goto block_24; } else { -lean_dec_ref(x_449); -lean_dec_ref(x_445); +lean_dec_ref(x_444); +lean_dec_ref(x_441); lean_dec_ref(x_440); -lean_dec_ref(x_438); +lean_dec_ref(x_439); lean_dec_ref(x_437); lean_dec_ref(x_434); lean_dec_ref(x_74); @@ -24427,8 +24446,8 @@ lean_dec(x_476); lean_dec_ref(x_475); lean_dec(x_474); lean_dec_ref(x_473); -lean_dec_ref(x_470); -lean_dec_ref(x_465); +lean_dec_ref(x_468); +lean_dec_ref(x_466); lean_dec_ref(x_437); lean_dec_ref(x_434); lean_dec_ref(x_74); @@ -24440,13 +24459,13 @@ lean_dec(x_6); lean_dec_ref(x_5); x_17 = x_467; x_18 = x_472; -x_19 = x_468; +x_19 = x_470; x_20 = lean_box(0); goto block_24; } else { -lean_dec_ref(x_468); +lean_dec_ref(x_470); if (x_469 == 0) { if (x_63 == 0) @@ -24454,15 +24473,15 @@ if (x_63 == 0) x_438 = x_465; x_439 = x_466; x_440 = x_467; -x_441 = lean_box(0); -x_442 = x_473; -x_443 = x_474; -x_444 = x_477; -x_445 = x_472; -x_446 = x_475; -x_447 = x_478; -x_448 = x_476; -x_449 = x_470; +x_441 = x_468; +x_442 = lean_box(0); +x_443 = x_473; +x_444 = x_472; +x_445 = x_474; +x_446 = x_477; +x_447 = x_476; +x_448 = x_475; +x_449 = x_478; x_450 = x_6; goto block_464; } @@ -24474,15 +24493,15 @@ x_481 = l_Lean_Name_append(x_6, x_480); x_438 = x_465; x_439 = x_466; x_440 = x_467; -x_441 = lean_box(0); -x_442 = x_473; -x_443 = x_474; -x_444 = x_477; -x_445 = x_472; -x_446 = x_475; -x_447 = x_478; -x_448 = x_476; -x_449 = x_470; +x_441 = x_468; +x_442 = lean_box(0); +x_443 = x_473; +x_444 = x_472; +x_445 = x_474; +x_446 = x_477; +x_447 = x_476; +x_448 = x_475; +x_449 = x_478; x_450 = x_481; goto block_464; } @@ -24492,15 +24511,15 @@ else x_438 = x_465; x_439 = x_466; x_440 = x_467; -x_441 = lean_box(0); -x_442 = x_473; -x_443 = x_474; -x_444 = x_477; -x_445 = x_472; -x_446 = x_475; -x_447 = x_478; -x_448 = x_476; -x_449 = x_470; +x_441 = x_468; +x_442 = lean_box(0); +x_443 = x_473; +x_444 = x_472; +x_445 = x_474; +x_446 = x_477; +x_447 = x_476; +x_448 = x_475; +x_449 = x_478; x_450 = x_6; goto block_464; } @@ -24514,8 +24533,8 @@ lean_dec(x_476); lean_dec_ref(x_475); lean_dec(x_474); lean_dec_ref(x_473); -lean_dec_ref(x_470); -lean_dec_ref(x_465); +lean_dec_ref(x_468); +lean_dec_ref(x_466); lean_dec_ref(x_437); lean_dec_ref(x_434); lean_dec_ref(x_74); @@ -24527,7 +24546,7 @@ lean_dec(x_6); lean_dec_ref(x_5); x_17 = x_467; x_18 = x_472; -x_19 = x_468; +x_19 = x_470; x_20 = lean_box(0); goto block_24; } @@ -24535,7 +24554,7 @@ goto block_24; block_507: { lean_object* x_499; lean_object* x_500; -lean_inc_ref(x_489); +lean_inc_ref(x_491); lean_inc_ref(x_66); lean_inc_ref(x_65); lean_inc(x_64); @@ -24547,13 +24566,13 @@ if (lean_is_scalar(x_68)) { lean_ctor_set(x_499, 0, x_64); lean_ctor_set(x_499, 1, x_65); lean_ctor_set(x_499, 2, x_66); -lean_ctor_set(x_499, 3, x_489); -lean_inc(x_485); -lean_inc_ref(x_490); -lean_inc(x_497); -lean_inc_ref(x_493); -lean_inc_ref(x_495); -x_500 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__17(x_499, x_498, x_8, x_495, x_492, x_493, x_497, x_490, x_485); +lean_ctor_set(x_499, 3, x_491); +lean_inc(x_495); +lean_inc_ref(x_497); +lean_inc(x_489); +lean_inc_ref(x_487); +lean_inc_ref(x_492); +x_500 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__17(x_499, x_498, x_8, x_492, x_488, x_487, x_489, x_497, x_495); if (lean_obj_tag(x_500) == 0) { lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; @@ -24577,39 +24596,39 @@ x_506 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); lean_closure_set(x_506, 0, x_505); lean_closure_set(x_506, 1, x_65); lean_closure_set(x_506, 2, x_66); -lean_closure_set(x_506, 3, x_489); +lean_closure_set(x_506, 3, x_491); lean_closure_set(x_506, 4, x_67); lean_closure_set(x_506, 5, x_501); x_465 = x_483; x_466 = x_484; -x_467 = x_491; +x_467 = x_485; x_468 = x_486; -x_469 = x_487; -x_470 = x_494; -x_471 = x_488; +x_469 = x_490; +x_470 = x_493; +x_471 = x_494; x_472 = x_506; -x_473 = x_495; -x_474 = x_492; -x_475 = x_493; -x_476 = x_497; -x_477 = x_490; -x_478 = x_485; +x_473 = x_492; +x_474 = x_488; +x_475 = x_487; +x_476 = x_489; +x_477 = x_497; +x_478 = x_495; x_479 = lean_box(0); goto block_482; } else { -lean_dec(x_497); -lean_dec_ref(x_495); -lean_dec_ref(x_494); +lean_dec_ref(x_497); +lean_dec(x_495); lean_dec_ref(x_493); -lean_dec(x_492); +lean_dec_ref(x_492); lean_dec_ref(x_491); -lean_dec_ref(x_490); -lean_dec_ref(x_489); +lean_dec(x_489); +lean_dec(x_488); +lean_dec_ref(x_487); lean_dec_ref(x_486); -lean_dec(x_485); -lean_dec_ref(x_483); +lean_dec_ref(x_485); +lean_dec_ref(x_484); lean_dec_ref(x_437); lean_dec_ref(x_434); lean_dec_ref(x_74); @@ -24867,12 +24886,12 @@ lean_dec(x_586); x_593 = lean_unbox(x_589); lean_dec(x_589); lean_inc_ref(x_7); -x_465 = x_579; -x_466 = x_578; +x_465 = x_578; +x_466 = x_579; x_467 = x_590; -x_468 = x_7; +x_468 = x_521; x_469 = x_592; -x_470 = x_521; +x_470 = x_7; x_471 = x_593; x_472 = x_7; x_473 = x_510; @@ -24899,21 +24918,21 @@ x_596 = lean_unbox(x_589); lean_dec(x_589); lean_inc(x_6); lean_inc_ref(x_579); -x_483 = x_579; -x_484 = x_578; -x_485 = x_515; -x_486 = x_7; -x_487 = x_595; -x_488 = x_596; -x_489 = x_579; -x_490 = x_514; -x_491 = x_590; -x_492 = x_511; -x_493 = x_512; -x_494 = x_521; -x_495 = x_510; +x_483 = x_578; +x_484 = x_579; +x_485 = x_590; +x_486 = x_521; +x_487 = x_512; +x_488 = x_511; +x_489 = x_513; +x_490 = x_595; +x_491 = x_579; +x_492 = x_510; +x_493 = x_7; +x_494 = x_596; +x_495 = x_515; x_496 = lean_box(0); -x_497 = x_513; +x_497 = x_514; x_498 = x_6; goto block_507; } @@ -24928,21 +24947,21 @@ lean_dec(x_586); x_600 = lean_unbox(x_589); lean_dec(x_589); lean_inc_ref(x_579); -x_483 = x_579; -x_484 = x_578; -x_485 = x_515; -x_486 = x_7; -x_487 = x_599; -x_488 = x_600; -x_489 = x_579; -x_490 = x_514; -x_491 = x_590; -x_492 = x_511; -x_493 = x_512; -x_494 = x_521; -x_495 = x_510; +x_483 = x_578; +x_484 = x_579; +x_485 = x_590; +x_486 = x_521; +x_487 = x_512; +x_488 = x_511; +x_489 = x_513; +x_490 = x_599; +x_491 = x_579; +x_492 = x_510; +x_493 = x_7; +x_494 = x_600; +x_495 = x_515; x_496 = lean_box(0); -x_497 = x_513; +x_497 = x_514; x_498 = x_598; goto block_507; } @@ -24956,21 +24975,21 @@ x_602 = lean_unbox(x_589); lean_dec(x_589); lean_inc(x_6); lean_inc_ref(x_579); -x_483 = x_579; -x_484 = x_578; -x_485 = x_515; -x_486 = x_7; -x_487 = x_601; -x_488 = x_602; -x_489 = x_579; -x_490 = x_514; -x_491 = x_590; -x_492 = x_511; -x_493 = x_512; -x_494 = x_521; -x_495 = x_510; +x_483 = x_578; +x_484 = x_579; +x_485 = x_590; +x_486 = x_521; +x_487 = x_512; +x_488 = x_511; +x_489 = x_513; +x_490 = x_601; +x_491 = x_579; +x_492 = x_510; +x_493 = x_7; +x_494 = x_602; +x_495 = x_515; x_496 = lean_box(0); -x_497 = x_513; +x_497 = x_514; x_498 = x_6; goto block_507; } @@ -24988,12 +25007,12 @@ lean_dec(x_586); x_604 = lean_unbox(x_589); lean_dec(x_589); lean_inc_ref(x_7); -x_465 = x_579; -x_466 = x_578; +x_465 = x_578; +x_466 = x_579; x_467 = x_590; -x_468 = x_7; +x_468 = x_521; x_469 = x_603; -x_470 = x_521; +x_470 = x_7; x_471 = x_604; x_472 = x_7; x_473 = x_510; @@ -27003,7 +27022,7 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_31; lean_object* x_32; double x_33; lean_object* x_34; uint8_t x_35; double x_36; lean_object* x_37; lean_object* x_38; lean_object* x_43; lean_object* x_44; double x_45; lean_object* x_46; uint8_t x_47; double x_48; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_72; double x_73; lean_object* x_74; uint8_t x_75; double x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_84; lean_object* x_85; double x_86; lean_object* x_87; uint8_t x_88; double x_89; lean_object* x_95; lean_object* x_96; +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_31; lean_object* x_32; double x_33; uint8_t x_34; double x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_43; lean_object* x_44; double x_45; lean_object* x_46; uint8_t x_47; double x_48; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_72; double x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; double x_77; lean_object* x_78; lean_object* x_79; lean_object* x_84; lean_object* x_85; double x_86; lean_object* x_87; uint8_t x_88; double x_89; lean_object* x_95; lean_object* x_96; x_95 = l_Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24___redArg___closed__2; lean_inc(x_11); lean_inc_ref(x_10); @@ -27819,7 +27838,7 @@ return x_250; block_30: { lean_object* x_25; -x_25 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24_spec__26(x_14, x_17, x_15, x_16, x_18, x_19, x_20, x_21, x_22, x_23); +x_25 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24_spec__26(x_14, x_17, x_16, x_15, x_18, x_19, x_20, x_21, x_22, x_23); lean_dec(x_19); if (lean_obj_tag(x_25) == 0) { @@ -27851,7 +27870,7 @@ return x_29; } block_42: { -if (x_35 == 0) +if (x_34 == 0) { double x_39; lean_object* x_40; x_39 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___lam__1___closed__0; @@ -27863,8 +27882,8 @@ lean_ctor_set_float(x_40, sizeof(void*)*2 + 8, x_39); lean_ctor_set_uint8(x_40, sizeof(void*)*2 + 16, x_4); x_13 = x_32; x_14 = x_31; -x_15 = x_34; -x_16 = x_37; +x_15 = x_37; +x_16 = x_36; x_17 = x_40; x_18 = x_6; x_19 = x_7; @@ -27881,13 +27900,13 @@ lean_object* x_41; x_41 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_41, 0, x_1); lean_ctor_set(x_41, 1, x_5); -lean_ctor_set_float(x_41, sizeof(void*)*2, x_36); +lean_ctor_set_float(x_41, sizeof(void*)*2, x_35); lean_ctor_set_float(x_41, sizeof(void*)*2 + 8, x_33); lean_ctor_set_uint8(x_41, sizeof(void*)*2 + 16, x_4); x_13 = x_32; x_14 = x_31; -x_15 = x_34; -x_16 = x_37; +x_15 = x_37; +x_16 = x_36; x_17 = x_41; x_18 = x_6; x_19 = x_7; @@ -27921,9 +27940,9 @@ lean_inc(x_49); x_31 = x_44; x_32 = x_43; x_33 = x_45; -x_34 = x_49; -x_35 = x_47; -x_36 = x_48; +x_34 = x_47; +x_35 = x_48; +x_36 = x_49; x_37 = x_51; x_38 = lean_box(0); goto block_42; @@ -27937,9 +27956,9 @@ lean_inc(x_49); x_31 = x_44; x_32 = x_43; x_33 = x_45; -x_34 = x_49; -x_35 = x_47; -x_36 = x_48; +x_34 = x_47; +x_35 = x_48; +x_36 = x_49; x_37 = x_52; x_38 = lean_box(0); goto block_42; @@ -27948,7 +27967,7 @@ goto block_42; block_71: { lean_object* x_66; -x_66 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24_spec__26(x_54, x_58, x_57, x_56, x_59, x_60, x_61, x_62, x_63, x_64); +x_66 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24_spec__26(x_54, x_58, x_56, x_57, x_59, x_60, x_61, x_62, x_63, x_64); lean_dec(x_60); if (lean_obj_tag(x_66) == 0) { @@ -27980,7 +27999,7 @@ return x_70; } block_83: { -if (x_75 == 0) +if (x_76 == 0) { double x_80; lean_object* x_81; x_80 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___lam__1___closed__0; @@ -27992,8 +28011,8 @@ lean_ctor_set_float(x_81, sizeof(void*)*2 + 8, x_80); lean_ctor_set_uint8(x_81, sizeof(void*)*2 + 16, x_4); x_54 = x_72; x_55 = x_74; -x_56 = x_78; -x_57 = x_77; +x_56 = x_75; +x_57 = x_78; x_58 = x_81; x_59 = x_6; x_60 = x_7; @@ -28011,12 +28030,12 @@ x_82 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_82, 0, x_1); lean_ctor_set(x_82, 1, x_5); lean_ctor_set_float(x_82, sizeof(void*)*2, x_73); -lean_ctor_set_float(x_82, sizeof(void*)*2 + 8, x_76); +lean_ctor_set_float(x_82, sizeof(void*)*2 + 8, x_77); lean_ctor_set_uint8(x_82, sizeof(void*)*2 + 16, x_4); x_54 = x_72; x_55 = x_74; -x_56 = x_78; -x_57 = x_77; +x_56 = x_75; +x_57 = x_78; x_58 = x_82; x_59 = x_6; x_60 = x_7; @@ -28050,9 +28069,9 @@ lean_inc(x_90); x_72 = x_84; x_73 = x_86; x_74 = x_87; -x_75 = x_88; -x_76 = x_89; -x_77 = x_90; +x_75 = x_90; +x_76 = x_88; +x_77 = x_89; x_78 = x_92; x_79 = lean_box(0); goto block_83; @@ -28066,9 +28085,9 @@ lean_inc(x_90); x_72 = x_84; x_73 = x_86; x_74 = x_87; -x_75 = x_88; -x_76 = x_89; -x_77 = x_90; +x_75 = x_90; +x_76 = x_88; +x_77 = x_89; x_78 = x_93; x_79 = lean_box(0); goto block_83; @@ -29727,8 +29746,8 @@ x_37 = l_Lean_MessageData_ofList(x_36); x_38 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_38, 0, x_30); lean_ctor_set(x_38, 1, x_37); -x_39 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10(x_8, x_38, x_23, x_27, x_22, x_21, x_24, x_25); -lean_dec(x_27); +x_39 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10(x_8, x_38, x_27, x_22, x_23, x_24, x_26, x_21); +lean_dec(x_22); if (lean_obj_tag(x_39) == 0) { uint8_t x_40; @@ -29738,7 +29757,7 @@ if (x_40 == 0) lean_object* x_41; x_41 = lean_ctor_get(x_39, 0); lean_dec(x_41); -lean_ctor_set(x_39, 0, x_26); +lean_ctor_set(x_39, 0, x_25); return x_39; } else @@ -29746,14 +29765,14 @@ else lean_object* x_42; lean_dec(x_39); x_42 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_42, 0, x_26); +lean_ctor_set(x_42, 0, x_25); return x_42; } } else { uint8_t x_43; -lean_dec_ref(x_26); +lean_dec_ref(x_25); x_43 = !lean_is_exclusive(x_39); if (x_43 == 0) { @@ -29786,24 +29805,24 @@ lean_inc(x_57); lean_dec(x_55); lean_inc(x_57); x_58 = lean_array_to_list(x_57); -lean_inc(x_51); -lean_inc_ref(x_50); lean_inc(x_47); +lean_inc_ref(x_51); +lean_inc(x_50); lean_inc_ref(x_49); -lean_inc(x_52); -lean_inc_ref(x_48); -x_59 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars(x_4, x_58, x_48, x_52, x_49, x_47, x_50, x_51); +lean_inc(x_48); +lean_inc_ref(x_52); +x_59 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars(x_4, x_58, x_52, x_48, x_49, x_50, x_51, x_47); if (lean_obj_tag(x_59) == 0) { lean_object* x_60; lean_dec_ref(x_59); -lean_inc(x_51); -lean_inc_ref(x_50); lean_inc(x_47); +lean_inc_ref(x_51); +lean_inc(x_50); lean_inc_ref(x_49); -lean_inc_ref(x_48); +lean_inc_ref(x_52); lean_inc(x_8); -x_60 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__8(x_8, x_48, x_52, x_49, x_47, x_50, x_51); +x_60 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__8(x_8, x_52, x_48, x_49, x_50, x_51, x_47); if (lean_obj_tag(x_60) == 0) { uint8_t x_61; @@ -29817,11 +29836,11 @@ lean_dec(x_62); if (x_63 == 0) { lean_dec(x_57); -lean_dec(x_52); -lean_dec(x_51); -lean_dec_ref(x_50); +lean_dec_ref(x_52); +lean_dec_ref(x_51); +lean_dec(x_50); lean_dec_ref(x_49); -lean_dec_ref(x_48); +lean_dec(x_48); lean_dec(x_47); lean_dec(x_8); lean_ctor_set(x_60, 0, x_56); @@ -29840,11 +29859,11 @@ if (x_67 == 0) lean_dec(x_65); lean_dec(x_57); x_21 = x_47; -x_22 = x_49; -x_23 = x_48; +x_22 = x_48; +x_23 = x_49; x_24 = x_50; -x_25 = x_51; -x_26 = x_56; +x_25 = x_56; +x_26 = x_51; x_27 = x_52; x_28 = x_66; x_29 = lean_box(0); @@ -29859,11 +29878,11 @@ if (x_68 == 0) lean_dec(x_65); lean_dec(x_57); x_21 = x_47; -x_22 = x_49; -x_23 = x_48; +x_22 = x_48; +x_23 = x_49; x_24 = x_50; -x_25 = x_51; -x_26 = x_56; +x_25 = x_56; +x_26 = x_51; x_27 = x_52; x_28 = x_66; x_29 = lean_box(0); @@ -29875,12 +29894,12 @@ size_t x_69; size_t x_70; lean_object* x_71; x_69 = 0; x_70 = lean_usize_of_nat(x_65); lean_dec(x_65); -lean_inc(x_51); -lean_inc_ref(x_50); lean_inc(x_47); +lean_inc_ref(x_51); +lean_inc(x_50); lean_inc_ref(x_49); -lean_inc_ref(x_48); -x_71 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6___redArg(x_57, x_69, x_70, x_66, x_48, x_52, x_49, x_47, x_50, x_51); +lean_inc_ref(x_52); +x_71 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6___redArg(x_57, x_69, x_70, x_66, x_52, x_48, x_49, x_50, x_51, x_47); lean_dec(x_57); if (lean_obj_tag(x_71) == 0) { @@ -29889,11 +29908,11 @@ x_72 = lean_ctor_get(x_71, 0); lean_inc(x_72); lean_dec_ref(x_71); x_21 = x_47; -x_22 = x_49; -x_23 = x_48; +x_22 = x_48; +x_23 = x_49; x_24 = x_50; -x_25 = x_51; -x_26 = x_56; +x_25 = x_56; +x_26 = x_51; x_27 = x_52; x_28 = x_72; x_29 = lean_box(0); @@ -29903,11 +29922,11 @@ else { uint8_t x_73; lean_dec(x_56); -lean_dec(x_52); -lean_dec(x_51); -lean_dec_ref(x_50); +lean_dec_ref(x_52); +lean_dec_ref(x_51); +lean_dec(x_50); lean_dec_ref(x_49); -lean_dec_ref(x_48); +lean_dec(x_48); lean_dec(x_47); lean_dec(x_8); x_73 = !lean_is_exclusive(x_71); @@ -29942,11 +29961,11 @@ if (x_77 == 0) { lean_object* x_78; lean_dec(x_57); -lean_dec(x_52); -lean_dec(x_51); -lean_dec_ref(x_50); +lean_dec_ref(x_52); +lean_dec_ref(x_51); +lean_dec(x_50); lean_dec_ref(x_49); -lean_dec_ref(x_48); +lean_dec(x_48); lean_dec(x_47); lean_dec(x_8); x_78 = lean_alloc_ctor(0, 1, 0); @@ -29965,11 +29984,11 @@ if (x_82 == 0) lean_dec(x_80); lean_dec(x_57); x_21 = x_47; -x_22 = x_49; -x_23 = x_48; +x_22 = x_48; +x_23 = x_49; x_24 = x_50; -x_25 = x_51; -x_26 = x_56; +x_25 = x_56; +x_26 = x_51; x_27 = x_52; x_28 = x_81; x_29 = lean_box(0); @@ -29984,11 +30003,11 @@ if (x_83 == 0) lean_dec(x_80); lean_dec(x_57); x_21 = x_47; -x_22 = x_49; -x_23 = x_48; +x_22 = x_48; +x_23 = x_49; x_24 = x_50; -x_25 = x_51; -x_26 = x_56; +x_25 = x_56; +x_26 = x_51; x_27 = x_52; x_28 = x_81; x_29 = lean_box(0); @@ -30000,12 +30019,12 @@ size_t x_84; size_t x_85; lean_object* x_86; x_84 = 0; x_85 = lean_usize_of_nat(x_80); lean_dec(x_80); -lean_inc(x_51); -lean_inc_ref(x_50); lean_inc(x_47); +lean_inc_ref(x_51); +lean_inc(x_50); lean_inc_ref(x_49); -lean_inc_ref(x_48); -x_86 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6___redArg(x_57, x_84, x_85, x_81, x_48, x_52, x_49, x_47, x_50, x_51); +lean_inc_ref(x_52); +x_86 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6___redArg(x_57, x_84, x_85, x_81, x_52, x_48, x_49, x_50, x_51, x_47); lean_dec(x_57); if (lean_obj_tag(x_86) == 0) { @@ -30014,11 +30033,11 @@ x_87 = lean_ctor_get(x_86, 0); lean_inc(x_87); lean_dec_ref(x_86); x_21 = x_47; -x_22 = x_49; -x_23 = x_48; +x_22 = x_48; +x_23 = x_49; x_24 = x_50; -x_25 = x_51; -x_26 = x_56; +x_25 = x_56; +x_26 = x_51; x_27 = x_52; x_28 = x_87; x_29 = lean_box(0); @@ -30028,11 +30047,11 @@ else { lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_dec(x_56); -lean_dec(x_52); -lean_dec(x_51); -lean_dec_ref(x_50); +lean_dec_ref(x_52); +lean_dec_ref(x_51); +lean_dec(x_50); lean_dec_ref(x_49); -lean_dec_ref(x_48); +lean_dec(x_48); lean_dec(x_47); lean_dec(x_8); x_88 = lean_ctor_get(x_86, 0); @@ -30062,11 +30081,11 @@ else uint8_t x_91; lean_dec(x_57); lean_dec(x_56); -lean_dec(x_52); -lean_dec(x_51); -lean_dec_ref(x_50); +lean_dec_ref(x_52); +lean_dec_ref(x_51); +lean_dec(x_50); lean_dec_ref(x_49); -lean_dec_ref(x_48); +lean_dec(x_48); lean_dec(x_47); lean_dec(x_8); x_91 = !lean_is_exclusive(x_60); @@ -30091,11 +30110,11 @@ else uint8_t x_94; lean_dec(x_57); lean_dec(x_56); -lean_dec(x_52); -lean_dec(x_51); -lean_dec_ref(x_50); +lean_dec_ref(x_52); +lean_dec_ref(x_51); +lean_dec(x_50); lean_dec_ref(x_49); -lean_dec_ref(x_48); +lean_dec(x_48); lean_dec(x_47); lean_dec(x_8); x_94 = !lean_is_exclusive(x_59); @@ -30118,11 +30137,11 @@ return x_96; else { lean_object* x_97; lean_object* x_98; -lean_dec(x_52); -lean_dec(x_51); -lean_dec_ref(x_50); +lean_dec_ref(x_52); +lean_dec_ref(x_51); +lean_dec(x_50); lean_dec_ref(x_49); -lean_dec_ref(x_48); +lean_dec(x_48); lean_dec(x_47); lean_dec(x_8); lean_dec_ref(x_4); @@ -30143,8 +30162,8 @@ x_107 = lean_ctor_get(x_106, 0); lean_inc(x_107); lean_dec_ref(x_106); x_47 = x_100; -x_48 = x_102; -x_49 = x_101; +x_48 = x_101; +x_49 = x_102; x_50 = x_103; x_51 = x_104; x_52 = x_105; @@ -30155,11 +30174,11 @@ goto block_99; else { uint8_t x_108; -lean_dec(x_105); -lean_dec(x_104); -lean_dec_ref(x_103); +lean_dec_ref(x_105); +lean_dec_ref(x_104); +lean_dec(x_103); lean_dec_ref(x_102); -lean_dec_ref(x_101); +lean_dec(x_101); lean_dec(x_100); lean_dec(x_8); lean_dec_ref(x_4); @@ -30185,13 +30204,13 @@ block_147: if (x_121 == 0) { lean_object* x_122; -lean_inc(x_117); -lean_inc_ref(x_116); lean_inc(x_113); -lean_inc_ref(x_114); +lean_inc_ref(x_118); +lean_inc(x_117); lean_inc_ref(x_115); +lean_inc_ref(x_119); lean_inc(x_8); -x_122 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__8(x_8, x_115, x_118, x_114, x_113, x_116, x_117); +x_122 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__8(x_8, x_119, x_114, x_115, x_117, x_118, x_113); if (lean_obj_tag(x_122) == 0) { lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; uint8_t x_127; @@ -30211,24 +30230,24 @@ lean_dec(x_123); if (x_127 == 0) { lean_object* x_128; lean_object* x_129; -lean_dec_ref(x_119); +lean_dec_ref(x_120); lean_dec_ref(x_13); x_128 = lean_box(0); -lean_inc(x_117); -lean_inc_ref(x_116); lean_inc(x_113); -lean_inc_ref(x_114); -lean_inc(x_118); +lean_inc_ref(x_118); +lean_inc(x_117); lean_inc_ref(x_115); +lean_inc(x_114); +lean_inc_ref(x_119); lean_inc_ref(x_4); lean_inc(x_8); -x_129 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(x_2, x_3, x_5, x_112, x_8, x_4, x_11, x_12, x_126, x_128, x_115, x_118, x_114, x_113, x_116, x_117); +x_129 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(x_2, x_3, x_5, x_112, x_8, x_4, x_11, x_12, x_126, x_128, x_119, x_114, x_115, x_117, x_118, x_113); x_100 = x_113; x_101 = x_114; x_102 = x_115; -x_103 = x_116; -x_104 = x_117; -x_105 = x_118; +x_103 = x_117; +x_104 = x_118; +x_105 = x_119; x_106 = x_129; goto block_111; } @@ -30244,38 +30263,38 @@ x_133 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVC x_134 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_134, 0, x_132); lean_ctor_set(x_134, 1, x_133); -x_135 = l_Lean_Exception_toMessageData(x_119); +x_135 = l_Lean_Exception_toMessageData(x_120); x_136 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_136, 0, x_134); lean_ctor_set(x_136, 1, x_135); -lean_inc(x_117); -lean_inc_ref(x_116); lean_inc(x_113); -lean_inc_ref(x_114); +lean_inc_ref(x_118); +lean_inc(x_117); lean_inc_ref(x_115); +lean_inc_ref(x_119); lean_inc(x_8); -x_137 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10(x_8, x_136, x_115, x_118, x_114, x_113, x_116, x_117); +x_137 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10(x_8, x_136, x_119, x_114, x_115, x_117, x_118, x_113); if (lean_obj_tag(x_137) == 0) { lean_object* x_138; lean_object* x_139; x_138 = lean_ctor_get(x_137, 0); lean_inc(x_138); lean_dec_ref(x_137); -lean_inc(x_117); -lean_inc_ref(x_116); lean_inc(x_113); -lean_inc_ref(x_114); -lean_inc(x_118); +lean_inc_ref(x_118); +lean_inc(x_117); lean_inc_ref(x_115); +lean_inc(x_114); +lean_inc_ref(x_119); lean_inc_ref(x_4); lean_inc(x_8); -x_139 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(x_2, x_3, x_5, x_112, x_8, x_4, x_11, x_12, x_126, x_138, x_115, x_118, x_114, x_113, x_116, x_117); +x_139 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(x_2, x_3, x_5, x_112, x_8, x_4, x_11, x_12, x_126, x_138, x_119, x_114, x_115, x_117, x_118, x_113); x_100 = x_113; x_101 = x_114; x_102 = x_115; -x_103 = x_116; -x_104 = x_117; -x_105 = x_118; +x_103 = x_117; +x_104 = x_118; +x_105 = x_119; x_106 = x_139; goto block_111; } @@ -30283,11 +30302,11 @@ else { uint8_t x_140; lean_dec_ref(x_126); -lean_dec(x_118); +lean_dec_ref(x_119); +lean_dec_ref(x_118); lean_dec(x_117); -lean_dec_ref(x_116); lean_dec_ref(x_115); -lean_dec_ref(x_114); +lean_dec(x_114); lean_dec(x_113); lean_dec_ref(x_12); lean_dec_ref(x_11); @@ -30317,12 +30336,12 @@ return x_142; else { uint8_t x_143; +lean_dec_ref(x_120); lean_dec_ref(x_119); -lean_dec(x_118); +lean_dec_ref(x_118); lean_dec(x_117); -lean_dec_ref(x_116); lean_dec_ref(x_115); -lean_dec_ref(x_114); +lean_dec(x_114); lean_dec(x_113); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -30353,11 +30372,11 @@ return x_145; else { lean_object* x_146; -lean_dec(x_118); +lean_dec_ref(x_119); +lean_dec_ref(x_118); lean_dec(x_117); -lean_dec_ref(x_116); lean_dec_ref(x_115); -lean_dec_ref(x_114); +lean_dec(x_114); lean_dec(x_113); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -30369,7 +30388,7 @@ lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); x_146 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_146, 0, x_119); +lean_ctor_set(x_146, 0, x_120); return x_146; } } @@ -30383,13 +30402,13 @@ uint8_t x_158; x_158 = l_Lean_Exception_isRuntime(x_155); x_112 = x_148; x_113 = x_149; -x_114 = x_151; -x_115 = x_150; -x_116 = x_152; -x_117 = x_153; -x_118 = x_154; -x_119 = x_155; -x_120 = lean_box(0); +x_114 = x_150; +x_115 = x_151; +x_116 = lean_box(0); +x_117 = x_152; +x_118 = x_153; +x_119 = x_154; +x_120 = x_155; x_121 = x_158; goto block_147; } @@ -30397,13 +30416,13 @@ else { x_112 = x_148; x_113 = x_149; -x_114 = x_151; -x_115 = x_150; -x_116 = x_152; -x_117 = x_153; -x_118 = x_154; -x_119 = x_155; -x_120 = lean_box(0); +x_114 = x_150; +x_115 = x_151; +x_116 = lean_box(0); +x_117 = x_152; +x_118 = x_153; +x_119 = x_154; +x_120 = x_155; x_121 = x_157; goto block_147; } @@ -30424,8 +30443,8 @@ x_168 = lean_ctor_get(x_167, 0); lean_inc(x_168); lean_dec_ref(x_167); x_47 = x_161; -x_48 = x_163; -x_49 = x_162; +x_48 = x_162; +x_49 = x_163; x_50 = x_164; x_51 = x_165; x_52 = x_166; @@ -30441,8 +30460,8 @@ lean_inc(x_169); lean_dec_ref(x_167); x_148 = x_160; x_149 = x_161; -x_150 = x_163; -x_151 = x_162; +x_150 = x_162; +x_151 = x_163; x_152 = x_164; x_153 = x_165; x_154 = x_166; @@ -30455,34 +30474,34 @@ block_187: { lean_object* x_182; lean_object* x_183; x_182 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_182, 0, x_177); +lean_ctor_set(x_182, 0, x_175); lean_ctor_set(x_182, 1, x_181); -lean_inc(x_176); -lean_inc_ref(x_175); lean_inc(x_172); -lean_inc_ref(x_173); -lean_inc_ref(x_174); +lean_inc_ref(x_179); +lean_inc(x_177); +lean_inc_ref(x_176); +lean_inc_ref(x_180); lean_inc(x_8); -x_183 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10(x_8, x_182, x_174, x_180, x_173, x_172, x_175, x_176); +x_183 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10(x_8, x_182, x_180, x_173, x_176, x_177, x_179, x_172); if (lean_obj_tag(x_183) == 0) { lean_object* x_184; lean_object* x_185; x_184 = lean_ctor_get(x_183, 0); lean_inc(x_184); lean_dec_ref(x_183); -lean_inc(x_176); -lean_inc_ref(x_175); lean_inc(x_172); -lean_inc_ref(x_173); -lean_inc(x_180); -lean_inc_ref(x_174); -x_185 = lean_apply_8(x_179, x_184, x_174, x_180, x_173, x_172, x_175, x_176, lean_box(0)); +lean_inc_ref(x_179); +lean_inc(x_177); +lean_inc_ref(x_176); +lean_inc(x_173); +lean_inc_ref(x_180); +x_185 = lean_apply_8(x_174, x_184, x_180, x_173, x_176, x_177, x_179, x_172, lean_box(0)); x_160 = x_171; x_161 = x_172; x_162 = x_173; -x_163 = x_174; -x_164 = x_175; -x_165 = x_176; +x_163 = x_176; +x_164 = x_177; +x_165 = x_179; x_166 = x_180; x_167 = x_185; goto block_170; @@ -30490,16 +30509,16 @@ goto block_170; else { lean_object* x_186; -lean_dec_ref(x_179); +lean_dec_ref(x_174); x_186 = lean_ctor_get(x_183, 0); lean_inc(x_186); lean_dec_ref(x_183); x_148 = x_171; x_149 = x_172; -x_150 = x_174; -x_151 = x_173; -x_152 = x_175; -x_153 = x_176; +x_150 = x_173; +x_151 = x_176; +x_152 = x_177; +x_153 = x_179; x_154 = x_180; x_155 = x_186; x_156 = lean_box(0); @@ -30595,12 +30614,12 @@ lean_inc_ref(x_188); lean_inc_ref(x_3); x_209 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__16(x_3, x_205, x_208, x_188, x_189, x_190, x_191, x_192, x_193); x_160 = x_195; -x_161 = x_191; -x_162 = x_190; -x_163 = x_188; -x_164 = x_192; -x_165 = x_193; -x_166 = x_189; +x_161 = x_193; +x_162 = x_189; +x_163 = x_190; +x_164 = x_191; +x_165 = x_192; +x_166 = x_188; x_167 = x_209; goto block_170; } @@ -30635,15 +30654,15 @@ x_220 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_220, 0, x_218); lean_ctor_set(x_220, 1, x_219); x_171 = x_195; -x_172 = x_191; -x_173 = x_190; -x_174 = x_188; -x_175 = x_192; -x_176 = x_193; -x_177 = x_216; +x_172 = x_193; +x_173 = x_189; +x_174 = x_206; +x_175 = x_216; +x_176 = x_190; +x_177 = x_191; x_178 = lean_box(0); -x_179 = x_206; -x_180 = x_189; +x_179 = x_192; +x_180 = x_188; x_181 = x_220; goto block_187; } @@ -30660,15 +30679,15 @@ x_225 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_225, 0, x_222); lean_ctor_set(x_225, 1, x_224); x_171 = x_195; -x_172 = x_191; -x_173 = x_190; -x_174 = x_188; -x_175 = x_192; -x_176 = x_193; -x_177 = x_216; +x_172 = x_193; +x_173 = x_189; +x_174 = x_206; +x_175 = x_216; +x_176 = x_190; +x_177 = x_191; x_178 = lean_box(0); -x_179 = x_206; -x_180 = x_189; +x_179 = x_192; +x_180 = x_188; x_181 = x_225; goto block_187; } @@ -30694,15 +30713,15 @@ x_234 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_234, 0, x_232); lean_ctor_set(x_234, 1, x_233); x_171 = x_195; -x_172 = x_191; -x_173 = x_190; -x_174 = x_188; -x_175 = x_192; -x_176 = x_193; -x_177 = x_216; +x_172 = x_193; +x_173 = x_189; +x_174 = x_206; +x_175 = x_216; +x_176 = x_190; +x_177 = x_191; x_178 = lean_box(0); -x_179 = x_206; -x_180 = x_189; +x_179 = x_192; +x_180 = x_188; x_181 = x_234; goto block_187; } @@ -30718,12 +30737,12 @@ x_235 = lean_ctor_get(x_202, 0); lean_inc(x_235); lean_dec_ref(x_202); x_148 = x_195; -x_149 = x_191; -x_150 = x_188; +x_149 = x_193; +x_150 = x_189; x_151 = x_190; -x_152 = x_192; -x_153 = x_193; -x_154 = x_189; +x_152 = x_191; +x_153 = x_192; +x_154 = x_188; x_155 = x_235; x_156 = lean_box(0); goto block_159; @@ -30737,12 +30756,12 @@ x_236 = lean_ctor_get(x_200, 0); lean_inc(x_236); lean_dec_ref(x_200); x_148 = x_195; -x_149 = x_191; -x_150 = x_188; +x_149 = x_193; +x_150 = x_189; x_151 = x_190; -x_152 = x_192; -x_153 = x_193; -x_154 = x_189; +x_152 = x_191; +x_153 = x_192; +x_154 = x_188; x_155 = x_236; x_156 = lean_box(0); goto block_159; @@ -35547,7 +35566,7 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10_spec__10_spec__10(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_12; lean_object* x_13; uint8_t x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_46; uint8_t x_47; uint8_t x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_55; uint8_t x_56; lean_object* x_57; uint8_t x_58; uint8_t x_59; lean_object* x_70; uint8_t x_71; lean_object* x_72; uint8_t x_73; uint8_t x_74; uint8_t x_75; uint8_t x_77; uint8_t x_90; +lean_object* x_12; lean_object* x_13; uint8_t x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_46; lean_object* x_47; uint8_t x_48; lean_object* x_49; uint8_t x_50; lean_object* x_51; lean_object* x_55; uint8_t x_56; lean_object* x_57; uint8_t x_58; uint8_t x_59; lean_object* x_70; uint8_t x_71; lean_object* x_72; uint8_t x_73; uint8_t x_74; uint8_t x_75; uint8_t x_77; uint8_t x_90; x_12 = lean_alloc_closure((void*)(l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10_spec__10_spec__10___lam__0___boxed), 8, 0); x_13 = lean_alloc_closure((void*)(l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10_spec__10_spec__10___lam__1___boxed), 8, 0); x_55 = lean_alloc_closure((void*)(l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10_spec__10_spec__10___lam__2___boxed), 8, 0); @@ -35722,12 +35741,12 @@ return x_44; block_54: { lean_object* x_52; -x_52 = l_Lean_Syntax_getTailPos_x3f(x_50, x_49); -lean_dec(x_50); +x_52 = l_Lean_Syntax_getTailPos_x3f(x_49, x_50); +lean_dec(x_49); if (lean_obj_tag(x_52) == 0) { lean_inc(x_51); -x_14 = x_47; +x_14 = x_46; x_15 = x_48; x_16 = lean_box(0); x_17 = x_51; @@ -35740,7 +35759,7 @@ lean_object* x_53; x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); lean_dec_ref(x_52); -x_14 = x_47; +x_14 = x_46; x_15 = x_48; x_16 = lean_box(0); x_17 = x_51; @@ -35770,11 +35789,11 @@ if (lean_obj_tag(x_63) == 0) { lean_object* x_64; x_64 = lean_unsigned_to_nat(0u); -x_46 = lean_box(0); -x_47 = x_59; +x_46 = x_59; +x_47 = lean_box(0); x_48 = x_56; -x_49 = x_58; -x_50 = x_62; +x_49 = x_62; +x_50 = x_58; x_51 = x_64; goto block_54; } @@ -35784,11 +35803,11 @@ lean_object* x_65; x_65 = lean_ctor_get(x_63, 0); lean_inc(x_65); lean_dec_ref(x_63); -x_46 = lean_box(0); -x_47 = x_59; +x_46 = x_59; +x_47 = lean_box(0); x_48 = x_56; -x_49 = x_58; -x_50 = x_62; +x_49 = x_62; +x_50 = x_58; x_51 = x_65; goto block_54; } @@ -35988,7 +36007,983 @@ x_11 = l_Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +static lean_object* _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Subarray_empty(lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Array_empty(lean_box(0)); +return x_1; +} +} +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_9; uint8_t x_10; +x_9 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__1; +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_ctor_get(x_9, 1); +lean_dec(x_12); +x_13 = !lean_is_exclusive(x_11); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_14 = lean_ctor_get(x_11, 0); +x_15 = lean_ctor_get(x_11, 2); +x_16 = lean_ctor_get(x_11, 3); +x_17 = lean_ctor_get(x_11, 4); +x_18 = lean_ctor_get(x_11, 1); +lean_dec(x_18); +x_19 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__2; +x_20 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__3; +lean_inc_ref(x_14); +x_21 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_21, 0, x_14); +x_22 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_22, 0, x_14); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +x_24 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_24, 0, x_17); +x_25 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_25, 0, x_16); +x_26 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_26, 0, x_15); +lean_ctor_set(x_11, 4, x_24); +lean_ctor_set(x_11, 3, x_25); +lean_ctor_set(x_11, 2, x_26); +lean_ctor_set(x_11, 1, x_19); +lean_ctor_set(x_11, 0, x_23); +lean_ctor_set(x_9, 1, x_20); +x_27 = l_ReaderT_instMonad___redArg(x_9); +x_28 = !lean_is_exclusive(x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_29 = lean_ctor_get(x_27, 0); +x_30 = lean_ctor_get(x_27, 1); +lean_dec(x_30); +x_31 = !lean_is_exclusive(x_29); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_32 = lean_ctor_get(x_29, 0); +x_33 = lean_ctor_get(x_29, 2); +x_34 = lean_ctor_get(x_29, 3); +x_35 = lean_ctor_get(x_29, 4); +x_36 = lean_ctor_get(x_29, 1); +lean_dec(x_36); +x_37 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__4; +x_38 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__5; +lean_inc_ref(x_32); +x_39 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_39, 0, x_32); +x_40 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_40, 0, x_32); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +x_42 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_42, 0, x_35); +x_43 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_43, 0, x_34); +x_44 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_44, 0, x_33); +lean_ctor_set(x_29, 4, x_42); +lean_ctor_set(x_29, 3, x_43); +lean_ctor_set(x_29, 2, x_44); +lean_ctor_set(x_29, 1, x_37); +lean_ctor_set(x_29, 0, x_41); +lean_ctor_set(x_27, 1, x_38); +x_45 = l_ReaderT_instMonad___redArg(x_27); +x_46 = l_ReaderT_instMonad___redArg(x_45); +x_47 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__0; +x_48 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__1; +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_47); +lean_ctor_set(x_50, 1, x_49); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_47); +lean_ctor_set(x_51, 1, x_50); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_47); +lean_ctor_set(x_52, 1, x_51); +x_53 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_53, 0, x_47); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_54, 0, x_53); +x_55 = l_instInhabitedOfMonad___redArg(x_46, x_54); +x_56 = lean_panic_fn(x_55, x_1); +x_57 = lean_apply_7(x_56, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_57; +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_58 = lean_ctor_get(x_29, 0); +x_59 = lean_ctor_get(x_29, 2); +x_60 = lean_ctor_get(x_29, 3); +x_61 = lean_ctor_get(x_29, 4); +lean_inc(x_61); +lean_inc(x_60); +lean_inc(x_59); +lean_inc(x_58); +lean_dec(x_29); +x_62 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__4; +x_63 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__5; +lean_inc_ref(x_58); +x_64 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_64, 0, x_58); +x_65 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_65, 0, x_58); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_64); +lean_ctor_set(x_66, 1, x_65); +x_67 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_67, 0, x_61); +x_68 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_68, 0, x_60); +x_69 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_69, 0, x_59); +x_70 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_70, 0, x_66); +lean_ctor_set(x_70, 1, x_62); +lean_ctor_set(x_70, 2, x_69); +lean_ctor_set(x_70, 3, x_68); +lean_ctor_set(x_70, 4, x_67); +lean_ctor_set(x_27, 1, x_63); +lean_ctor_set(x_27, 0, x_70); +x_71 = l_ReaderT_instMonad___redArg(x_27); +x_72 = l_ReaderT_instMonad___redArg(x_71); +x_73 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__0; +x_74 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__1; +x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_75, 0, x_73); +lean_ctor_set(x_75, 1, x_74); +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_73); +lean_ctor_set(x_76, 1, x_75); +x_77 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_77, 0, x_73); +lean_ctor_set(x_77, 1, x_76); +x_78 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_78, 0, x_73); +lean_ctor_set(x_78, 1, x_77); +x_79 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_79, 0, x_73); +lean_ctor_set(x_79, 1, x_78); +x_80 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_80, 0, x_79); +x_81 = l_instInhabitedOfMonad___redArg(x_72, x_80); +x_82 = lean_panic_fn(x_81, x_1); +x_83 = lean_apply_7(x_82, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_83; +} +} +else +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_84 = lean_ctor_get(x_27, 0); +lean_inc(x_84); +lean_dec(x_27); +x_85 = lean_ctor_get(x_84, 0); +lean_inc_ref(x_85); +x_86 = lean_ctor_get(x_84, 2); +lean_inc(x_86); +x_87 = lean_ctor_get(x_84, 3); +lean_inc(x_87); +x_88 = lean_ctor_get(x_84, 4); +lean_inc(x_88); +if (lean_is_exclusive(x_84)) { + lean_ctor_release(x_84, 0); + lean_ctor_release(x_84, 1); + lean_ctor_release(x_84, 2); + lean_ctor_release(x_84, 3); + lean_ctor_release(x_84, 4); + x_89 = x_84; +} else { + lean_dec_ref(x_84); + x_89 = lean_box(0); +} +x_90 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__4; +x_91 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__5; +lean_inc_ref(x_85); +x_92 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_92, 0, x_85); +x_93 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_93, 0, x_85); +x_94 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_94, 0, x_92); +lean_ctor_set(x_94, 1, x_93); +x_95 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_95, 0, x_88); +x_96 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_96, 0, x_87); +x_97 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_97, 0, x_86); +if (lean_is_scalar(x_89)) { + x_98 = lean_alloc_ctor(0, 5, 0); +} else { + x_98 = x_89; +} +lean_ctor_set(x_98, 0, x_94); +lean_ctor_set(x_98, 1, x_90); +lean_ctor_set(x_98, 2, x_97); +lean_ctor_set(x_98, 3, x_96); +lean_ctor_set(x_98, 4, x_95); +x_99 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_99, 0, x_98); +lean_ctor_set(x_99, 1, x_91); +x_100 = l_ReaderT_instMonad___redArg(x_99); +x_101 = l_ReaderT_instMonad___redArg(x_100); +x_102 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__0; +x_103 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__1; +x_104 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_104, 0, x_102); +lean_ctor_set(x_104, 1, x_103); +x_105 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_105, 0, x_102); +lean_ctor_set(x_105, 1, x_104); +x_106 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_106, 0, x_102); +lean_ctor_set(x_106, 1, x_105); +x_107 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_107, 0, x_102); +lean_ctor_set(x_107, 1, x_106); +x_108 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_108, 0, x_102); +lean_ctor_set(x_108, 1, x_107); +x_109 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_109, 0, x_108); +x_110 = l_instInhabitedOfMonad___redArg(x_101, x_109); +x_111 = lean_panic_fn(x_110, x_1); +x_112 = lean_apply_7(x_111, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_112; +} +} +else +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; +x_113 = lean_ctor_get(x_11, 0); +x_114 = lean_ctor_get(x_11, 2); +x_115 = lean_ctor_get(x_11, 3); +x_116 = lean_ctor_get(x_11, 4); +lean_inc(x_116); +lean_inc(x_115); +lean_inc(x_114); +lean_inc(x_113); +lean_dec(x_11); +x_117 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__2; +x_118 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__3; +lean_inc_ref(x_113); +x_119 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_119, 0, x_113); +x_120 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_120, 0, x_113); +x_121 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_121, 0, x_119); +lean_ctor_set(x_121, 1, x_120); +x_122 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_122, 0, x_116); +x_123 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_123, 0, x_115); +x_124 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_124, 0, x_114); +x_125 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_125, 0, x_121); +lean_ctor_set(x_125, 1, x_117); +lean_ctor_set(x_125, 2, x_124); +lean_ctor_set(x_125, 3, x_123); +lean_ctor_set(x_125, 4, x_122); +lean_ctor_set(x_9, 1, x_118); +lean_ctor_set(x_9, 0, x_125); +x_126 = l_ReaderT_instMonad___redArg(x_9); +x_127 = lean_ctor_get(x_126, 0); +lean_inc_ref(x_127); +if (lean_is_exclusive(x_126)) { + lean_ctor_release(x_126, 0); + lean_ctor_release(x_126, 1); + x_128 = x_126; +} else { + lean_dec_ref(x_126); + x_128 = lean_box(0); +} +x_129 = lean_ctor_get(x_127, 0); +lean_inc_ref(x_129); +x_130 = lean_ctor_get(x_127, 2); +lean_inc(x_130); +x_131 = lean_ctor_get(x_127, 3); +lean_inc(x_131); +x_132 = lean_ctor_get(x_127, 4); +lean_inc(x_132); +if (lean_is_exclusive(x_127)) { + lean_ctor_release(x_127, 0); + lean_ctor_release(x_127, 1); + lean_ctor_release(x_127, 2); + lean_ctor_release(x_127, 3); + lean_ctor_release(x_127, 4); + x_133 = x_127; +} else { + lean_dec_ref(x_127); + x_133 = lean_box(0); +} +x_134 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__4; +x_135 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__5; +lean_inc_ref(x_129); +x_136 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_136, 0, x_129); +x_137 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_137, 0, x_129); +x_138 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_138, 0, x_136); +lean_ctor_set(x_138, 1, x_137); +x_139 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_139, 0, x_132); +x_140 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_140, 0, x_131); +x_141 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_141, 0, x_130); +if (lean_is_scalar(x_133)) { + x_142 = lean_alloc_ctor(0, 5, 0); +} else { + x_142 = x_133; +} +lean_ctor_set(x_142, 0, x_138); +lean_ctor_set(x_142, 1, x_134); +lean_ctor_set(x_142, 2, x_141); +lean_ctor_set(x_142, 3, x_140); +lean_ctor_set(x_142, 4, x_139); +if (lean_is_scalar(x_128)) { + x_143 = lean_alloc_ctor(0, 2, 0); +} else { + x_143 = x_128; +} +lean_ctor_set(x_143, 0, x_142); +lean_ctor_set(x_143, 1, x_135); +x_144 = l_ReaderT_instMonad___redArg(x_143); +x_145 = l_ReaderT_instMonad___redArg(x_144); +x_146 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__0; +x_147 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__1; +x_148 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_148, 0, x_146); +lean_ctor_set(x_148, 1, x_147); +x_149 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_149, 0, x_146); +lean_ctor_set(x_149, 1, x_148); +x_150 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_150, 0, x_146); +lean_ctor_set(x_150, 1, x_149); +x_151 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_151, 0, x_146); +lean_ctor_set(x_151, 1, x_150); +x_152 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_152, 0, x_146); +lean_ctor_set(x_152, 1, x_151); +x_153 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_153, 0, x_152); +x_154 = l_instInhabitedOfMonad___redArg(x_145, x_153); +x_155 = lean_panic_fn(x_154, x_1); +x_156 = lean_apply_7(x_155, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_156; +} +} +else +{ +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; +x_157 = lean_ctor_get(x_9, 0); +lean_inc(x_157); +lean_dec(x_9); +x_158 = lean_ctor_get(x_157, 0); +lean_inc_ref(x_158); +x_159 = lean_ctor_get(x_157, 2); +lean_inc(x_159); +x_160 = lean_ctor_get(x_157, 3); +lean_inc(x_160); +x_161 = lean_ctor_get(x_157, 4); +lean_inc(x_161); +if (lean_is_exclusive(x_157)) { + lean_ctor_release(x_157, 0); + lean_ctor_release(x_157, 1); + lean_ctor_release(x_157, 2); + lean_ctor_release(x_157, 3); + lean_ctor_release(x_157, 4); + x_162 = x_157; +} else { + lean_dec_ref(x_157); + x_162 = lean_box(0); +} +x_163 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__2; +x_164 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__3; +lean_inc_ref(x_158); +x_165 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_165, 0, x_158); +x_166 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_166, 0, x_158); +x_167 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_167, 0, x_165); +lean_ctor_set(x_167, 1, x_166); +x_168 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_168, 0, x_161); +x_169 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_169, 0, x_160); +x_170 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_170, 0, x_159); +if (lean_is_scalar(x_162)) { + x_171 = lean_alloc_ctor(0, 5, 0); +} else { + x_171 = x_162; +} +lean_ctor_set(x_171, 0, x_167); +lean_ctor_set(x_171, 1, x_163); +lean_ctor_set(x_171, 2, x_170); +lean_ctor_set(x_171, 3, x_169); +lean_ctor_set(x_171, 4, x_168); +x_172 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_172, 0, x_171); +lean_ctor_set(x_172, 1, x_164); +x_173 = l_ReaderT_instMonad___redArg(x_172); +x_174 = lean_ctor_get(x_173, 0); +lean_inc_ref(x_174); +if (lean_is_exclusive(x_173)) { + lean_ctor_release(x_173, 0); + lean_ctor_release(x_173, 1); + x_175 = x_173; +} else { + lean_dec_ref(x_173); + x_175 = lean_box(0); +} +x_176 = lean_ctor_get(x_174, 0); +lean_inc_ref(x_176); +x_177 = lean_ctor_get(x_174, 2); +lean_inc(x_177); +x_178 = lean_ctor_get(x_174, 3); +lean_inc(x_178); +x_179 = lean_ctor_get(x_174, 4); +lean_inc(x_179); +if (lean_is_exclusive(x_174)) { + lean_ctor_release(x_174, 0); + lean_ctor_release(x_174, 1); + lean_ctor_release(x_174, 2); + lean_ctor_release(x_174, 3); + lean_ctor_release(x_174, 4); + x_180 = x_174; +} else { + lean_dec_ref(x_174); + x_180 = lean_box(0); +} +x_181 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__4; +x_182 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__5; +lean_inc_ref(x_176); +x_183 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_183, 0, x_176); +x_184 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_184, 0, x_176); +x_185 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_185, 0, x_183); +lean_ctor_set(x_185, 1, x_184); +x_186 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_186, 0, x_179); +x_187 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_187, 0, x_178); +x_188 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_188, 0, x_177); +if (lean_is_scalar(x_180)) { + x_189 = lean_alloc_ctor(0, 5, 0); +} else { + x_189 = x_180; +} +lean_ctor_set(x_189, 0, x_185); +lean_ctor_set(x_189, 1, x_181); +lean_ctor_set(x_189, 2, x_188); +lean_ctor_set(x_189, 3, x_187); +lean_ctor_set(x_189, 4, x_186); +if (lean_is_scalar(x_175)) { + x_190 = lean_alloc_ctor(0, 2, 0); +} else { + x_190 = x_175; +} +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_182); +x_191 = l_ReaderT_instMonad___redArg(x_190); +x_192 = l_ReaderT_instMonad___redArg(x_191); +x_193 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__0; +x_194 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__1; +x_195 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_195, 0, x_193); +lean_ctor_set(x_195, 1, x_194); +x_196 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_196, 0, x_193); +lean_ctor_set(x_196, 1, x_195); +x_197 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_197, 0, x_193); +lean_ctor_set(x_197, 1, x_196); +x_198 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_198, 0, x_193); +lean_ctor_set(x_198, 1, x_197); +x_199 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_199, 0, x_193); +lean_ctor_set(x_199, 1, x_198); +x_200 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_200, 0, x_199); +x_201 = l_instInhabitedOfMonad___redArg(x_192, x_200); +x_202 = lean_panic_fn(x_201, x_1); +x_203 = lean_apply_7(x_202, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_203; +} +} +} +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_9; uint8_t x_10; +x_9 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__1; +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_ctor_get(x_9, 1); +lean_dec(x_12); +x_13 = !lean_is_exclusive(x_11); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_14 = lean_ctor_get(x_11, 0); +x_15 = lean_ctor_get(x_11, 2); +x_16 = lean_ctor_get(x_11, 3); +x_17 = lean_ctor_get(x_11, 4); +x_18 = lean_ctor_get(x_11, 1); +lean_dec(x_18); +x_19 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__2; +x_20 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__3; +lean_inc_ref(x_14); +x_21 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_21, 0, x_14); +x_22 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_22, 0, x_14); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +x_24 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_24, 0, x_17); +x_25 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_25, 0, x_16); +x_26 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_26, 0, x_15); +lean_ctor_set(x_11, 4, x_24); +lean_ctor_set(x_11, 3, x_25); +lean_ctor_set(x_11, 2, x_26); +lean_ctor_set(x_11, 1, x_19); +lean_ctor_set(x_11, 0, x_23); +lean_ctor_set(x_9, 1, x_20); +x_27 = l_ReaderT_instMonad___redArg(x_9); +x_28 = !lean_is_exclusive(x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_29 = lean_ctor_get(x_27, 0); +x_30 = lean_ctor_get(x_27, 1); +lean_dec(x_30); +x_31 = !lean_is_exclusive(x_29); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_32 = lean_ctor_get(x_29, 0); +x_33 = lean_ctor_get(x_29, 2); +x_34 = lean_ctor_get(x_29, 3); +x_35 = lean_ctor_get(x_29, 4); +x_36 = lean_ctor_get(x_29, 1); +lean_dec(x_36); +x_37 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__4; +x_38 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__5; +lean_inc_ref(x_32); +x_39 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_39, 0, x_32); +x_40 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_40, 0, x_32); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +x_42 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_42, 0, x_35); +x_43 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_43, 0, x_34); +x_44 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_44, 0, x_33); +lean_ctor_set(x_29, 4, x_42); +lean_ctor_set(x_29, 3, x_43); +lean_ctor_set(x_29, 2, x_44); +lean_ctor_set(x_29, 1, x_37); +lean_ctor_set(x_29, 0, x_41); +lean_ctor_set(x_27, 1, x_38); +x_45 = l_ReaderT_instMonad___redArg(x_27); +x_46 = l_ReaderT_instMonad___redArg(x_45); +x_47 = l_Lean_instInhabitedExpr; +x_48 = l_instInhabitedOfMonad___redArg(x_46, x_47); +x_49 = lean_panic_fn(x_48, x_1); +x_50 = lean_apply_7(x_49, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_50; +} +else +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_51 = lean_ctor_get(x_29, 0); +x_52 = lean_ctor_get(x_29, 2); +x_53 = lean_ctor_get(x_29, 3); +x_54 = lean_ctor_get(x_29, 4); +lean_inc(x_54); +lean_inc(x_53); +lean_inc(x_52); +lean_inc(x_51); +lean_dec(x_29); +x_55 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__4; +x_56 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__5; +lean_inc_ref(x_51); +x_57 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_57, 0, x_51); +x_58 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_58, 0, x_51); +x_59 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_58); +x_60 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_60, 0, x_54); +x_61 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_61, 0, x_53); +x_62 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_62, 0, x_52); +x_63 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_63, 0, x_59); +lean_ctor_set(x_63, 1, x_55); +lean_ctor_set(x_63, 2, x_62); +lean_ctor_set(x_63, 3, x_61); +lean_ctor_set(x_63, 4, x_60); +lean_ctor_set(x_27, 1, x_56); +lean_ctor_set(x_27, 0, x_63); +x_64 = l_ReaderT_instMonad___redArg(x_27); +x_65 = l_ReaderT_instMonad___redArg(x_64); +x_66 = l_Lean_instInhabitedExpr; +x_67 = l_instInhabitedOfMonad___redArg(x_65, x_66); +x_68 = lean_panic_fn(x_67, x_1); +x_69 = lean_apply_7(x_68, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_69; +} +} +else +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; +x_70 = lean_ctor_get(x_27, 0); +lean_inc(x_70); +lean_dec(x_27); +x_71 = lean_ctor_get(x_70, 0); +lean_inc_ref(x_71); +x_72 = lean_ctor_get(x_70, 2); +lean_inc(x_72); +x_73 = lean_ctor_get(x_70, 3); +lean_inc(x_73); +x_74 = lean_ctor_get(x_70, 4); +lean_inc(x_74); +if (lean_is_exclusive(x_70)) { + lean_ctor_release(x_70, 0); + lean_ctor_release(x_70, 1); + lean_ctor_release(x_70, 2); + lean_ctor_release(x_70, 3); + lean_ctor_release(x_70, 4); + x_75 = x_70; +} else { + lean_dec_ref(x_70); + x_75 = lean_box(0); +} +x_76 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__4; +x_77 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__5; +lean_inc_ref(x_71); +x_78 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_78, 0, x_71); +x_79 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_79, 0, x_71); +x_80 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_78); +lean_ctor_set(x_80, 1, x_79); +x_81 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_81, 0, x_74); +x_82 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_82, 0, x_73); +x_83 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_83, 0, x_72); +if (lean_is_scalar(x_75)) { + x_84 = lean_alloc_ctor(0, 5, 0); +} else { + x_84 = x_75; +} +lean_ctor_set(x_84, 0, x_80); +lean_ctor_set(x_84, 1, x_76); +lean_ctor_set(x_84, 2, x_83); +lean_ctor_set(x_84, 3, x_82); +lean_ctor_set(x_84, 4, x_81); +x_85 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_85, 0, x_84); +lean_ctor_set(x_85, 1, x_77); +x_86 = l_ReaderT_instMonad___redArg(x_85); +x_87 = l_ReaderT_instMonad___redArg(x_86); +x_88 = l_Lean_instInhabitedExpr; +x_89 = l_instInhabitedOfMonad___redArg(x_87, x_88); +x_90 = lean_panic_fn(x_89, x_1); +x_91 = lean_apply_7(x_90, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_91; +} +} +else +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; +x_92 = lean_ctor_get(x_11, 0); +x_93 = lean_ctor_get(x_11, 2); +x_94 = lean_ctor_get(x_11, 3); +x_95 = lean_ctor_get(x_11, 4); +lean_inc(x_95); +lean_inc(x_94); +lean_inc(x_93); +lean_inc(x_92); +lean_dec(x_11); +x_96 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__2; +x_97 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__3; +lean_inc_ref(x_92); +x_98 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_98, 0, x_92); +x_99 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_99, 0, x_92); +x_100 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_100, 0, x_98); +lean_ctor_set(x_100, 1, x_99); +x_101 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_101, 0, x_95); +x_102 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_102, 0, x_94); +x_103 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_103, 0, x_93); +x_104 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_104, 0, x_100); +lean_ctor_set(x_104, 1, x_96); +lean_ctor_set(x_104, 2, x_103); +lean_ctor_set(x_104, 3, x_102); +lean_ctor_set(x_104, 4, x_101); +lean_ctor_set(x_9, 1, x_97); +lean_ctor_set(x_9, 0, x_104); +x_105 = l_ReaderT_instMonad___redArg(x_9); +x_106 = lean_ctor_get(x_105, 0); +lean_inc_ref(x_106); +if (lean_is_exclusive(x_105)) { + lean_ctor_release(x_105, 0); + lean_ctor_release(x_105, 1); + x_107 = x_105; +} else { + lean_dec_ref(x_105); + x_107 = lean_box(0); +} +x_108 = lean_ctor_get(x_106, 0); +lean_inc_ref(x_108); +x_109 = lean_ctor_get(x_106, 2); +lean_inc(x_109); +x_110 = lean_ctor_get(x_106, 3); +lean_inc(x_110); +x_111 = lean_ctor_get(x_106, 4); +lean_inc(x_111); +if (lean_is_exclusive(x_106)) { + lean_ctor_release(x_106, 0); + lean_ctor_release(x_106, 1); + lean_ctor_release(x_106, 2); + lean_ctor_release(x_106, 3); + lean_ctor_release(x_106, 4); + x_112 = x_106; +} else { + lean_dec_ref(x_106); + x_112 = lean_box(0); +} +x_113 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__4; +x_114 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__5; +lean_inc_ref(x_108); +x_115 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_115, 0, x_108); +x_116 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_116, 0, x_108); +x_117 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_117, 0, x_115); +lean_ctor_set(x_117, 1, x_116); +x_118 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_118, 0, x_111); +x_119 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_119, 0, x_110); +x_120 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_120, 0, x_109); +if (lean_is_scalar(x_112)) { + x_121 = lean_alloc_ctor(0, 5, 0); +} else { + x_121 = x_112; +} +lean_ctor_set(x_121, 0, x_117); +lean_ctor_set(x_121, 1, x_113); +lean_ctor_set(x_121, 2, x_120); +lean_ctor_set(x_121, 3, x_119); +lean_ctor_set(x_121, 4, x_118); +if (lean_is_scalar(x_107)) { + x_122 = lean_alloc_ctor(0, 2, 0); +} else { + x_122 = x_107; +} +lean_ctor_set(x_122, 0, x_121); +lean_ctor_set(x_122, 1, x_114); +x_123 = l_ReaderT_instMonad___redArg(x_122); +x_124 = l_ReaderT_instMonad___redArg(x_123); +x_125 = l_Lean_instInhabitedExpr; +x_126 = l_instInhabitedOfMonad___redArg(x_124, x_125); +x_127 = lean_panic_fn(x_126, x_1); +x_128 = lean_apply_7(x_127, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_128; +} +} +else +{ +lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; +x_129 = lean_ctor_get(x_9, 0); +lean_inc(x_129); +lean_dec(x_9); +x_130 = lean_ctor_get(x_129, 0); +lean_inc_ref(x_130); +x_131 = lean_ctor_get(x_129, 2); +lean_inc(x_131); +x_132 = lean_ctor_get(x_129, 3); +lean_inc(x_132); +x_133 = lean_ctor_get(x_129, 4); +lean_inc(x_133); +if (lean_is_exclusive(x_129)) { + lean_ctor_release(x_129, 0); + lean_ctor_release(x_129, 1); + lean_ctor_release(x_129, 2); + lean_ctor_release(x_129, 3); + lean_ctor_release(x_129, 4); + x_134 = x_129; +} else { + lean_dec_ref(x_129); + x_134 = lean_box(0); +} +x_135 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__2; +x_136 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__3; +lean_inc_ref(x_130); +x_137 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_137, 0, x_130); +x_138 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_138, 0, x_130); +x_139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_139, 0, x_137); +lean_ctor_set(x_139, 1, x_138); +x_140 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_140, 0, x_133); +x_141 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_141, 0, x_132); +x_142 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_142, 0, x_131); +if (lean_is_scalar(x_134)) { + x_143 = lean_alloc_ctor(0, 5, 0); +} else { + x_143 = x_134; +} +lean_ctor_set(x_143, 0, x_139); +lean_ctor_set(x_143, 1, x_135); +lean_ctor_set(x_143, 2, x_142); +lean_ctor_set(x_143, 3, x_141); +lean_ctor_set(x_143, 4, x_140); +x_144 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_144, 0, x_143); +lean_ctor_set(x_144, 1, x_136); +x_145 = l_ReaderT_instMonad___redArg(x_144); +x_146 = lean_ctor_get(x_145, 0); +lean_inc_ref(x_146); +if (lean_is_exclusive(x_145)) { + lean_ctor_release(x_145, 0); + lean_ctor_release(x_145, 1); + x_147 = x_145; +} else { + lean_dec_ref(x_145); + x_147 = lean_box(0); +} +x_148 = lean_ctor_get(x_146, 0); +lean_inc_ref(x_148); +x_149 = lean_ctor_get(x_146, 2); +lean_inc(x_149); +x_150 = lean_ctor_get(x_146, 3); +lean_inc(x_150); +x_151 = lean_ctor_get(x_146, 4); +lean_inc(x_151); +if (lean_is_exclusive(x_146)) { + lean_ctor_release(x_146, 0); + lean_ctor_release(x_146, 1); + lean_ctor_release(x_146, 2); + lean_ctor_release(x_146, 3); + lean_ctor_release(x_146, 4); + x_152 = x_146; +} else { + lean_dec_ref(x_146); + x_152 = lean_box(0); +} +x_153 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__4; +x_154 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32_spec__32___redArg___closed__5; +lean_inc_ref(x_148); +x_155 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_155, 0, x_148); +x_156 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_156, 0, x_148); +x_157 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_157, 0, x_155); +lean_ctor_set(x_157, 1, x_156); +x_158 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_158, 0, x_151); +x_159 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_159, 0, x_150); +x_160 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_160, 0, x_149); +if (lean_is_scalar(x_152)) { + x_161 = lean_alloc_ctor(0, 5, 0); +} else { + x_161 = x_152; +} +lean_ctor_set(x_161, 0, x_157); +lean_ctor_set(x_161, 1, x_153); +lean_ctor_set(x_161, 2, x_160); +lean_ctor_set(x_161, 3, x_159); +lean_ctor_set(x_161, 4, x_158); +if (lean_is_scalar(x_147)) { + x_162 = lean_alloc_ctor(0, 2, 0); +} else { + x_162 = x_147; +} +lean_ctor_set(x_162, 0, x_161); +lean_ctor_set(x_162, 1, x_154); +x_163 = l_ReaderT_instMonad___redArg(x_162); +x_164 = l_ReaderT_instMonad___redArg(x_163); +x_165 = l_Lean_instInhabitedExpr; +x_166 = l_instInhabitedOfMonad___redArg(x_164, x_165); +x_167 = lean_panic_fn(x_166, x_1); +x_168 = lean_apply_7(x_167, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_168; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_13; @@ -35996,49 +36991,49 @@ x_13 = lean_apply_9(x_1, x_4, x_5, x_2, x_3, x_8, x_9, x_10, x_11, lean_box(0)); return x_13; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_12; lean_object* x_13; -x_12 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg___lam__0___boxed), 12, 3); -lean_closure_set(x_12, 0, x_4); -lean_closure_set(x_12, 1, x_5); -lean_closure_set(x_12, 2, x_6); -x_13 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_1, x_2, x_3, x_12, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) +lean_object* x_11; lean_object* x_12; +x_11 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg___lam__0___boxed), 12, 3); +lean_closure_set(x_11, 0, x_3); +lean_closure_set(x_11, 1, x_4); +lean_closure_set(x_11, 2, x_5); +x_12 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_1, x_2, x_11, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_12) == 0) { -return x_13; +return x_12; } else { -uint8_t x_14; -x_14 = !lean_is_exclusive(x_13); -if (x_14 == 0) +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) { -return x_13; +return x_12; } else { -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_13, 0); -lean_inc(x_15); -lean_dec(x_13); -x_16 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_16, 0, x_15); -return x_16; +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_12, 0); +lean_inc(x_14); +lean_dec(x_12); +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_14); +return x_15; } } } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_13; -x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_13; +lean_object* x_12; +x_12 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_11; @@ -36046,7 +37041,7 @@ x_11 = l_Lean_Meta_instantiateForall(x_1, x_2, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_11; @@ -36054,7 +37049,7 @@ x_11 = l_Lean_Meta_instantiateLambda(x_1, x_2, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_14; @@ -36062,7 +37057,7 @@ x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x return x_14; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___closed__0() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___closed__0() { _start: { lean_object* x_1; @@ -36070,22 +37065,22 @@ x_1 = lean_mk_string_unchecked("unexpected matcher application, insufficient num return x_1; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___closed__1() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___closed__0; +x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, uint8_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, uint8_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_19; lean_object* x_20; lean_object* x_34; lean_object* x_35; x_19 = l_Array_append___redArg(x_1, x_2); lean_inc_ref(x_19); -x_34 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__1___boxed), 10, 2); +x_34 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__1___boxed), 10, 2); lean_closure_set(x_34, 0, x_3); lean_closure_set(x_34, 1, x_19); lean_inc(x_17); @@ -36125,7 +37120,7 @@ if (x_37 == 0) { lean_object* x_38; lean_object* x_39; lean_dec_ref(x_35); -x_38 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___closed__1; +x_38 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___closed__1; lean_inc(x_17); lean_inc_ref(x_16); lean_inc(x_15); @@ -36170,7 +37165,7 @@ x_27 = 1; x_28 = lean_box(x_8); x_29 = lean_box(x_9); x_30 = lean_box(x_27); -x_31 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__2___boxed), 13, 5); +x_31 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__2___boxed), 13, 5); lean_closure_set(x_31, 0, x_26); lean_closure_set(x_31, 1, x_23); lean_closure_set(x_31, 2, x_28); @@ -36210,13 +37205,13 @@ return x_20; } } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_19 = lean_box(x_7); x_20 = lean_box(x_8); -x_21 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___boxed), 18, 9); +x_21 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___boxed), 18, 9); lean_closure_set(x_21, 0, x_1); lean_closure_set(x_21, 1, x_10); lean_closure_set(x_21, 2, x_2); @@ -36232,13 +37227,13 @@ x_23 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do return x_23; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_19 = lean_box(x_6); x_20 = lean_box(x_7); -x_21 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__4___boxed), 18, 9); +x_21 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__4___boxed), 18, 9); lean_closure_set(x_21, 0, x_1); lean_closure_set(x_21, 1, x_2); lean_closure_set(x_21, 2, x_3); @@ -36254,7 +37249,7 @@ x_23 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do return x_23; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_11; @@ -36262,7 +37257,44 @@ x_11 = l_Lean_Meta_instantiateForall(x_1, x_2, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__0() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Lean.Meta.Match.MatcherApp.Transform", 36, 36); +return x_1; +} +} +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Lean.Meta.MatcherApp.transform", 30, 30); +return x_1; +} +} +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("assertion violation: ys.size == splitterAltInfo.numFields\n ", 66, 66); +return x_1; +} +} +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__2; +x_2 = lean_unsigned_to_nat(8u); +x_3 = lean_unsigned_to_nat(317u); +x_4 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__1; +x_5 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__0; +x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); +return x_6; +} +} +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__4() { _start: { lean_object* x_1; @@ -36270,7 +37302,7 @@ x_1 = lean_mk_string_unchecked("Function", 8, 8); return x_1; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__1() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__5() { _start: { lean_object* x_1; @@ -36278,17 +37310,17 @@ x_1 = lean_mk_string_unchecked("const", 5, 5); return x_1; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__2() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__1; -x_2 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__0; +x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__5; +x_2 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__4; x_3 = l_Lean_Name_mkStr2(x_2, x_1); return x_3; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__3() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -36298,17 +37330,17 @@ x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__4() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__3; +x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__7; x_2 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___closed__12; x_3 = lean_array_push(x_2, x_1); return x_3; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__5() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -36318,173 +37350,180 @@ x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, uint8_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { _start: { -lean_object* x_21; lean_object* x_22; -lean_inc_ref(x_12); -x_21 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__0___boxed), 10, 2); -lean_closure_set(x_21, 0, x_1); -lean_closure_set(x_21, 1, x_12); -lean_inc(x_19); -lean_inc_ref(x_18); -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc_ref(x_14); -x_22 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_21, x_14, x_15, x_16, x_17, x_18, x_19); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_49; uint8_t x_50; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - x_24 = x_22; -} else { - lean_dec_ref(x_22); - x_24 = lean_box(0); -} -x_25 = lean_box(x_5); -x_26 = lean_box(x_6); -lean_inc(x_8); -lean_inc_ref(x_12); -x_27 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__5___boxed), 18, 9); -lean_closure_set(x_27, 0, x_13); -lean_closure_set(x_27, 1, x_2); -lean_closure_set(x_27, 2, x_3); -lean_closure_set(x_27, 3, x_4); -lean_closure_set(x_27, 4, x_12); -lean_closure_set(x_27, 5, x_25); -lean_closure_set(x_27, 6, x_26); -lean_closure_set(x_27, 7, x_7); -lean_closure_set(x_27, 8, x_8); -x_49 = lean_nat_add(x_9, x_8); -x_50 = lean_nat_dec_eq(x_49, x_10); -lean_dec(x_49); -if (x_50 == 0) -{ -x_28 = x_23; -x_29 = x_14; -x_30 = x_15; -x_31 = x_16; -x_32 = x_17; -x_33 = x_18; -x_34 = x_19; -x_35 = lean_box(0); -goto block_48; -} -else -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_51 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__5; -x_52 = lean_mk_empty_array_with_capacity(x_11); -x_53 = lean_array_push(x_52, x_51); -x_54 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__7___boxed), 10, 2); -lean_closure_set(x_54, 0, x_23); -lean_closure_set(x_54, 1, x_53); -lean_inc(x_19); -lean_inc_ref(x_18); -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc_ref(x_14); -x_55 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_54, x_14, x_15, x_16, x_17, x_18, x_19); -if (lean_obj_tag(x_55) == 0) -{ -lean_object* x_56; -x_56 = lean_ctor_get(x_55, 0); -lean_inc(x_56); -lean_dec_ref(x_55); -x_28 = x_56; -x_29 = x_14; -x_30 = x_15; -x_31 = x_16; -x_32 = x_17; -x_33 = x_18; -x_34 = x_19; -x_35 = lean_box(0); -goto block_48; -} -else -{ -lean_dec_ref(x_27); +lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; uint8_t x_25; +x_21 = lean_ctor_get(x_1, 0); +x_22 = lean_ctor_get(x_1, 1); +x_23 = lean_ctor_get_uint8(x_1, sizeof(void*)*2); +x_24 = lean_array_get_size(x_12); +x_25 = lean_nat_dec_eq(x_24, x_21); lean_dec(x_24); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_26 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__3; +x_27 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14(x_26, x_14, x_15, x_16, x_17, x_18, x_19); +return x_27; +} +else +{ +lean_object* x_28; lean_object* x_29; +lean_inc_ref(x_12); +x_28 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__0___boxed), 10, 2); +lean_closure_set(x_28, 0, x_2); +lean_closure_set(x_28, 1, x_12); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc_ref(x_14); +x_29 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_28, x_14, x_15, x_16, x_17, x_18, x_19); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + x_31 = x_29; +} else { + lean_dec_ref(x_29); + x_31 = lean_box(0); +} +x_32 = lean_box(x_6); +x_33 = lean_box(x_7); +x_34 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__5___boxed), 18, 9); +lean_closure_set(x_34, 0, x_13); +lean_closure_set(x_34, 1, x_3); +lean_closure_set(x_34, 2, x_4); +lean_closure_set(x_34, 3, x_5); +lean_closure_set(x_34, 4, x_12); +lean_closure_set(x_34, 5, x_32); +lean_closure_set(x_34, 6, x_33); +lean_closure_set(x_34, 7, x_8); +lean_closure_set(x_34, 8, x_9); +if (x_10 == 0) +{ +x_35 = x_30; +x_36 = x_14; +x_37 = x_15; +x_38 = x_16; +x_39 = x_17; +x_40 = x_18; +x_41 = x_19; +x_42 = lean_box(0); +goto block_51; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_52 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__9; +x_53 = lean_mk_empty_array_with_capacity(x_11); +x_54 = lean_array_push(x_53, x_52); +x_55 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__7___boxed), 10, 2); +lean_closure_set(x_55, 0, x_30); +lean_closure_set(x_55, 1, x_54); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc_ref(x_14); +x_56 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_55, x_14, x_15, x_16, x_17, x_18, x_19); +if (lean_obj_tag(x_56) == 0) +{ +lean_object* x_57; +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +lean_dec_ref(x_56); +x_35 = x_57; +x_36 = x_14; +x_37 = x_15; +x_38 = x_16; +x_39 = x_17; +x_40 = x_18; +x_41 = x_19; +x_42 = lean_box(0); +goto block_51; +} +else +{ +lean_dec_ref(x_34); +lean_dec(x_31); lean_dec(x_19); lean_dec_ref(x_18); lean_dec(x_17); lean_dec_ref(x_16); lean_dec(x_15); lean_dec_ref(x_14); -lean_dec_ref(x_12); -lean_dec(x_8); -return x_55; +return x_56; } } -block_48: +block_51: { -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_36 = lean_array_get_size(x_12); -lean_dec_ref(x_12); -x_37 = lean_nat_sub(x_9, x_36); -lean_dec(x_36); -if (lean_is_scalar(x_24)) { - x_38 = lean_alloc_ctor(1, 1, 0); +lean_object* x_43; lean_object* x_44; +lean_inc(x_22); +if (lean_is_scalar(x_31)) { + x_43 = lean_alloc_ctor(1, 1, 0); } else { - x_38 = x_24; - lean_ctor_set_tag(x_38, 1); + x_43 = x_31; + lean_ctor_set_tag(x_43, 1); } -lean_ctor_set(x_38, 0, x_37); -lean_inc(x_34); -lean_inc_ref(x_33); -lean_inc(x_32); -lean_inc_ref(x_31); -lean_inc(x_30); -lean_inc_ref(x_29); -x_39 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__17___redArg(x_28, x_38, x_27, x_5, x_5, x_29, x_30, x_31, x_32, x_33, x_34); -if (lean_obj_tag(x_39) == 0) +lean_ctor_set(x_43, 0, x_22); +lean_inc(x_41); +lean_inc_ref(x_40); +lean_inc(x_39); +lean_inc_ref(x_38); +lean_inc(x_37); +lean_inc_ref(x_36); +x_44 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__17___redArg(x_35, x_43, x_34, x_6, x_6, x_36, x_37, x_38, x_39, x_40, x_41); +if (lean_obj_tag(x_44) == 0) +{ +if (x_23 == 0) { -lean_object* x_40; lean_object* x_41; uint8_t x_42; -x_40 = lean_ctor_get(x_39, 0); -lean_inc(x_40); -x_41 = lean_nat_add(x_9, x_8); -lean_dec(x_8); -x_42 = lean_nat_dec_eq(x_41, x_10); lean_dec(x_41); -if (x_42 == 0) -{ -lean_dec(x_40); -lean_dec(x_34); -lean_dec_ref(x_33); -lean_dec(x_32); -lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec_ref(x_29); -return x_39; +lean_dec_ref(x_40); +lean_dec(x_39); +lean_dec_ref(x_38); +lean_dec(x_37); +lean_dec_ref(x_36); +return x_44; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -lean_dec_ref(x_39); -x_43 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__2; -x_44 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__4; -x_45 = lean_array_push(x_44, x_40); -x_46 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___lam__11___boxed), 10, 2); -lean_closure_set(x_46, 0, x_43); -lean_closure_set(x_46, 1, x_45); -x_47 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_46, x_29, x_30, x_31, x_32, x_33, x_34); -lean_dec(x_30); -return x_47; +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_45 = lean_ctor_get(x_44, 0); +lean_inc(x_45); +lean_dec_ref(x_44); +x_46 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__6; +x_47 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__8; +x_48 = lean_array_push(x_47, x_45); +x_49 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8_spec__15_spec__15___lam__11___boxed), 10, 2); +lean_closure_set(x_49, 0, x_46); +lean_closure_set(x_49, 1, x_48); +x_50 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_49, x_36, x_37, x_38, x_39, x_40, x_41); +lean_dec(x_37); +return x_50; } } else { -lean_dec(x_34); -lean_dec_ref(x_33); -lean_dec(x_32); -lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec_ref(x_29); -lean_dec(x_8); -return x_39; +lean_dec(x_41); +lean_dec_ref(x_40); +lean_dec(x_39); +lean_dec_ref(x_38); +lean_dec(x_37); +lean_dec_ref(x_36); +return x_44; } } } @@ -36498,115 +37537,93 @@ lean_dec(x_15); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); +lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_4); +lean_dec(x_5); +lean_dec_ref(x_4); lean_dec_ref(x_3); -lean_dec_ref(x_2); -return x_22; +return x_29; } } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +} +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__0() { _start: { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_17 = lean_ctor_get(x_8, 1); -lean_inc(x_17); -x_18 = lean_ctor_get(x_17, 1); -lean_inc(x_18); -x_19 = lean_ctor_get(x_18, 1); -lean_inc(x_19); -x_20 = lean_ctor_get(x_19, 1); -lean_inc(x_20); -x_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -x_22 = !lean_is_exclusive(x_8); -if (x_22 == 0) -{ -lean_object* x_23; lean_object* x_24; uint8_t x_25; -x_23 = lean_ctor_get(x_8, 0); -x_24 = lean_ctor_get(x_8, 1); -lean_dec(x_24); -x_25 = !lean_is_exclusive(x_17); -if (x_25 == 0) -{ -lean_object* x_26; lean_object* x_27; uint8_t x_28; -x_26 = lean_ctor_get(x_17, 0); -x_27 = lean_ctor_get(x_17, 1); -lean_dec(x_27); -x_28 = !lean_is_exclusive(x_18); -if (x_28 == 0) -{ -lean_object* x_29; lean_object* x_30; uint8_t x_31; -x_29 = lean_ctor_get(x_18, 0); -x_30 = lean_ctor_get(x_18, 1); -lean_dec(x_30); -x_31 = !lean_is_exclusive(x_19); -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; uint8_t x_34; -x_32 = lean_ctor_get(x_19, 0); -x_33 = lean_ctor_get(x_19, 1); -lean_dec(x_33); -x_34 = !lean_is_exclusive(x_20); -if (x_34 == 0) -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; -x_35 = lean_ctor_get(x_20, 1); -x_36 = lean_ctor_get(x_20, 0); -lean_dec(x_36); -x_37 = lean_ctor_get(x_21, 0); -x_38 = lean_ctor_get(x_21, 1); -x_39 = lean_ctor_get(x_21, 2); -x_40 = lean_nat_dec_lt(x_38, x_39); -if (x_40 == 0) -{ -lean_object* x_41; -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_41 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_41, 0, x_8); -return x_41; +lean_object* x_1; +x_1 = lean_mk_string_unchecked("assertion violation: altInfo.numOverlaps = 0\n ", 51, 51); +return x_1; } -else +} +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1() { +_start: { -uint8_t x_42; -lean_inc(x_39); -lean_inc(x_38); -lean_inc_ref(x_37); -x_42 = !lean_is_exclusive(x_21); +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__0; +x_2 = lean_unsigned_to_nat(6u); +x_3 = lean_unsigned_to_nat(315u); +x_4 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__1; +x_5 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__0; +x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_25 = lean_ctor_get(x_8, 1); +lean_inc(x_25); +x_26 = lean_ctor_get(x_25, 1); +lean_inc(x_26); +x_27 = lean_ctor_get(x_26, 1); +lean_inc(x_27); +x_28 = lean_ctor_get(x_27, 1); +lean_inc(x_28); +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +x_30 = !lean_is_exclusive(x_8); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_31 = lean_ctor_get(x_8, 0); +x_32 = lean_ctor_get(x_8, 1); +lean_dec(x_32); +x_33 = !lean_is_exclusive(x_25); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; uint8_t x_36; +x_34 = lean_ctor_get(x_25, 0); +x_35 = lean_ctor_get(x_25, 1); +lean_dec(x_35); +x_36 = !lean_is_exclusive(x_26); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_37 = lean_ctor_get(x_26, 0); +x_38 = lean_ctor_get(x_26, 1); +lean_dec(x_38); +x_39 = !lean_is_exclusive(x_27); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; uint8_t x_42; +x_40 = lean_ctor_get(x_27, 0); +x_41 = lean_ctor_get(x_27, 1); +lean_dec(x_41); +x_42 = !lean_is_exclusive(x_28); if (x_42 == 0) { -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; -x_43 = lean_ctor_get(x_21, 2); -lean_dec(x_43); -x_44 = lean_ctor_get(x_21, 1); +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; +x_43 = lean_ctor_get(x_28, 1); +x_44 = lean_ctor_get(x_28, 0); lean_dec(x_44); -x_45 = lean_ctor_get(x_21, 0); -lean_dec(x_45); -x_46 = lean_ctor_get(x_32, 0); -x_47 = lean_ctor_get(x_32, 1); -x_48 = lean_ctor_get(x_32, 2); -x_49 = lean_unsigned_to_nat(1u); -x_50 = lean_nat_add(x_38, x_49); -lean_inc_ref(x_37); -lean_ctor_set(x_21, 1, x_50); -x_51 = lean_nat_dec_lt(x_47, x_48); -if (x_51 == 0) +x_45 = lean_ctor_get(x_29, 0); +x_46 = lean_ctor_get(x_29, 1); +x_47 = lean_ctor_get(x_29, 2); +x_48 = lean_nat_dec_lt(x_46, x_47); +if (x_48 == 0) { -lean_object* x_52; -lean_dec(x_38); -lean_dec_ref(x_37); +lean_object* x_49; lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -36616,42 +37633,84 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_52 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_52, 0, x_8); -return x_52; +lean_dec_ref(x_2); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_8); +return x_49; } else { -uint8_t x_53; -lean_inc(x_48); +uint8_t x_50; lean_inc(x_47); -lean_inc_ref(x_46); -x_53 = !lean_is_exclusive(x_32); -if (x_53 == 0) +lean_inc(x_46); +lean_inc_ref(x_45); +x_50 = !lean_is_exclusive(x_29); +if (x_50 == 0) { -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; -x_54 = lean_ctor_get(x_32, 2); -lean_dec(x_54); -x_55 = lean_ctor_get(x_32, 1); -lean_dec(x_55); -x_56 = lean_ctor_get(x_32, 0); -lean_dec(x_56); -x_57 = lean_ctor_get(x_29, 0); -x_58 = lean_ctor_get(x_29, 1); -x_59 = lean_ctor_get(x_29, 2); -x_60 = lean_nat_add(x_47, x_49); -lean_inc_ref(x_46); -lean_ctor_set(x_32, 1, x_60); -x_61 = lean_nat_dec_lt(x_58, x_59); +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; +x_51 = lean_ctor_get(x_29, 2); +lean_dec(x_51); +x_52 = lean_ctor_get(x_29, 1); +lean_dec(x_52); +x_53 = lean_ctor_get(x_29, 0); +lean_dec(x_53); +x_54 = lean_ctor_get(x_40, 0); +x_55 = lean_ctor_get(x_40, 1); +x_56 = lean_ctor_get(x_40, 2); +x_57 = lean_unsigned_to_nat(1u); +x_58 = lean_nat_add(x_46, x_57); +lean_inc_ref(x_45); +lean_ctor_set(x_29, 1, x_58); +x_59 = lean_nat_dec_lt(x_55, x_56); +if (x_59 == 0) +{ +lean_object* x_60; +lean_dec(x_46); +lean_dec_ref(x_45); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_60 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_60, 0, x_8); +return x_60; +} +else +{ +uint8_t x_61; +lean_inc(x_56); +lean_inc(x_55); +lean_inc_ref(x_54); +x_61 = !lean_is_exclusive(x_40); if (x_61 == 0) { -lean_object* x_62; -lean_dec(x_47); -lean_dec_ref(x_46); -lean_dec(x_38); -lean_dec_ref(x_37); +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_62 = lean_ctor_get(x_40, 2); +lean_dec(x_62); +x_63 = lean_ctor_get(x_40, 1); +lean_dec(x_63); +x_64 = lean_ctor_get(x_40, 0); +lean_dec(x_64); +x_65 = lean_ctor_get(x_37, 0); +x_66 = lean_ctor_get(x_37, 1); +x_67 = lean_ctor_get(x_37, 2); +x_68 = lean_nat_add(x_55, x_57); +lean_inc_ref(x_54); +lean_ctor_set(x_40, 1, x_68); +x_69 = lean_nat_dec_lt(x_66, x_67); +if (x_69 == 0) +{ +lean_object* x_70; +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_46); +lean_dec_ref(x_45); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -36661,44 +37720,43 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_62 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_62, 0, x_8); -return x_62; +lean_dec_ref(x_2); +x_70 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_70, 0, x_8); +return x_70; } else { -uint8_t x_63; -lean_inc(x_59); -lean_inc(x_58); -lean_inc_ref(x_57); -x_63 = !lean_is_exclusive(x_29); -if (x_63 == 0) -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_71; -x_64 = lean_ctor_get(x_29, 2); -lean_dec(x_64); -x_65 = lean_ctor_get(x_29, 1); -lean_dec(x_65); -x_66 = lean_ctor_get(x_29, 0); -lean_dec(x_66); -x_67 = lean_ctor_get(x_26, 0); -x_68 = lean_ctor_get(x_26, 1); -x_69 = lean_ctor_get(x_26, 2); -x_70 = lean_nat_add(x_58, x_49); -lean_inc_ref(x_57); -lean_ctor_set(x_29, 1, x_70); -x_71 = lean_nat_dec_lt(x_68, x_69); +uint8_t x_71; +lean_inc(x_67); +lean_inc(x_66); +lean_inc_ref(x_65); +x_71 = !lean_is_exclusive(x_37); if (x_71 == 0) { -lean_object* x_72; -lean_dec(x_58); -lean_dec_ref(x_57); -lean_dec(x_47); -lean_dec_ref(x_46); -lean_dec(x_38); -lean_dec_ref(x_37); +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79; +x_72 = lean_ctor_get(x_37, 2); +lean_dec(x_72); +x_73 = lean_ctor_get(x_37, 1); +lean_dec(x_73); +x_74 = lean_ctor_get(x_37, 0); +lean_dec(x_74); +x_75 = lean_ctor_get(x_34, 0); +x_76 = lean_ctor_get(x_34, 1); +x_77 = lean_ctor_get(x_34, 2); +x_78 = lean_nat_add(x_66, x_57); +lean_inc_ref(x_65); +lean_ctor_set(x_37, 1, x_78); +x_79 = lean_nat_dec_lt(x_76, x_77); +if (x_79 == 0) +{ +lean_object* x_80; +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_46); +lean_dec_ref(x_45); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -36708,46 +37766,45 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_72 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_72, 0, x_8); -return x_72; +lean_dec_ref(x_2); +x_80 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_80, 0, x_8); +return x_80; } else { -uint8_t x_73; -lean_inc(x_69); -lean_inc(x_68); -lean_inc_ref(x_67); -x_73 = !lean_is_exclusive(x_26); -if (x_73 == 0) -{ -lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; -x_74 = lean_ctor_get(x_26, 2); -lean_dec(x_74); -x_75 = lean_ctor_get(x_26, 1); -lean_dec(x_75); -x_76 = lean_ctor_get(x_26, 0); -lean_dec(x_76); -x_77 = lean_ctor_get(x_23, 0); -x_78 = lean_ctor_get(x_23, 1); -x_79 = lean_ctor_get(x_23, 2); -x_80 = lean_nat_add(x_68, x_49); -lean_inc_ref(x_67); -lean_ctor_set(x_26, 1, x_80); -x_81 = lean_nat_dec_lt(x_78, x_79); +uint8_t x_81; +lean_inc(x_77); +lean_inc(x_76); +lean_inc_ref(x_75); +x_81 = !lean_is_exclusive(x_34); if (x_81 == 0) { -lean_object* x_82; -lean_dec(x_68); -lean_dec_ref(x_67); -lean_dec(x_58); -lean_dec_ref(x_57); -lean_dec(x_47); -lean_dec_ref(x_46); -lean_dec(x_38); -lean_dec_ref(x_37); +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; uint8_t x_89; +x_82 = lean_ctor_get(x_34, 2); +lean_dec(x_82); +x_83 = lean_ctor_get(x_34, 1); +lean_dec(x_83); +x_84 = lean_ctor_get(x_34, 0); +lean_dec(x_84); +x_85 = lean_ctor_get(x_31, 0); +x_86 = lean_ctor_get(x_31, 1); +x_87 = lean_ctor_get(x_31, 2); +x_88 = lean_nat_add(x_76, x_57); +lean_inc_ref(x_75); +lean_ctor_set(x_34, 1, x_88); +x_89 = lean_nat_dec_lt(x_86, x_87); +if (x_89 == 0) +{ +lean_object* x_90; +lean_dec(x_76); +lean_dec_ref(x_75); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_46); +lean_dec_ref(x_45); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -36757,165 +37814,243 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_82 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_82, 0, x_8); -return x_82; +lean_dec_ref(x_2); +x_90 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_90, 0, x_8); +return x_90; } else { -uint8_t x_83; -lean_inc(x_79); -lean_inc(x_78); -lean_inc_ref(x_77); -x_83 = !lean_is_exclusive(x_23); -if (x_83 == 0) +uint8_t x_91; +lean_inc(x_87); +lean_inc(x_86); +lean_inc_ref(x_85); +x_91 = !lean_is_exclusive(x_31); +if (x_91 == 0) { -lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; -x_84 = lean_ctor_get(x_23, 2); -lean_dec(x_84); -x_85 = lean_ctor_get(x_23, 1); -lean_dec(x_85); -x_86 = lean_ctor_get(x_23, 0); +lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; uint8_t x_97; uint8_t x_98; +x_92 = lean_ctor_get(x_31, 2); +lean_dec(x_92); +x_93 = lean_ctor_get(x_31, 1); +lean_dec(x_93); +x_94 = lean_ctor_get(x_31, 0); +lean_dec(x_94); +x_95 = lean_array_fget(x_75, x_76); +lean_dec(x_76); +lean_dec_ref(x_75); +x_96 = lean_ctor_get(x_95, 1); +x_97 = lean_ctor_get_uint8(x_95, sizeof(void*)*2); +x_98 = lean_nat_dec_eq(x_96, x_1); +if (x_98 == 0) +{ +lean_object* x_99; lean_object* x_100; +lean_dec_ref(x_95); +lean_free_object(x_31); +lean_dec_ref(x_34); +lean_dec(x_87); lean_dec(x_86); -x_87 = lean_array_fget(x_37, x_38); -lean_dec(x_38); +lean_dec_ref(x_85); lean_dec_ref(x_37); -x_88 = lean_array_fget(x_46, x_47); -lean_dec(x_47); -lean_dec_ref(x_46); -x_89 = lean_array_fget(x_57, x_58); -lean_dec(x_58); -lean_dec_ref(x_57); -x_90 = lean_array_fget(x_67, x_68); -lean_dec(x_68); -lean_dec_ref(x_67); -x_91 = lean_array_fget_borrowed(x_77, x_78); -x_92 = lean_box(x_2); -x_93 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_9); -lean_inc_ref(x_1); -lean_inc_ref(x_91); -x_94 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___boxed), 20, 11); -lean_closure_set(x_94, 0, x_87); -lean_closure_set(x_94, 1, x_91); -lean_closure_set(x_94, 2, x_1); -lean_closure_set(x_94, 3, x_9); -lean_closure_set(x_94, 4, x_92); -lean_closure_set(x_94, 5, x_93); -lean_closure_set(x_94, 6, x_4); -lean_closure_set(x_94, 7, x_5); -lean_closure_set(x_94, 8, x_89); -lean_closure_set(x_94, 9, x_6); -lean_closure_set(x_94, 10, x_49); -x_95 = lean_nat_sub(x_90, x_5); -lean_dec(x_90); +lean_dec_ref(x_40); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec_ref(x_29); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_46); +lean_dec_ref(x_45); +lean_free_object(x_28); +lean_dec(x_43); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_8); +x_99 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; lean_inc(x_15); lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_96 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(x_88, x_95, x_6, x_94, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_96) == 0) +x_100 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_99, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_100) == 0) { -uint8_t x_97; -x_97 = !lean_is_exclusive(x_96); -if (x_97 == 0) +uint8_t x_101; +x_101 = !lean_is_exclusive(x_100); +if (x_101 == 0) { -lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; -x_98 = lean_ctor_get(x_96, 0); -x_99 = lean_nat_add(x_78, x_49); -lean_dec(x_78); -lean_ctor_set(x_23, 1, x_99); -x_100 = lean_array_push(x_35, x_98); -lean_ctor_set(x_20, 1, x_100); -x_101 = lean_nat_add(x_9, x_49); -lean_dec(x_9); -x_102 = lean_nat_dec_lt(x_101, x_7); -if (x_102 == 0) +lean_object* x_102; +x_102 = lean_ctor_get(x_100, 0); +if (lean_obj_tag(x_102) == 0) { -lean_dec(x_101); +lean_object* x_103; lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_96, 0, x_8); -return x_96; +lean_dec_ref(x_2); +x_103 = lean_ctor_get(x_102, 0); +lean_inc(x_103); +lean_dec_ref(x_102); +lean_ctor_set(x_100, 0, x_103); +return x_100; } else { -lean_free_object(x_96); -x_9 = x_101; -goto _start; -} -} -else -{ -lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; uint8_t x_108; -x_104 = lean_ctor_get(x_96, 0); +lean_object* x_104; +lean_free_object(x_100); +x_104 = lean_ctor_get(x_102, 0); lean_inc(x_104); -lean_dec(x_96); -x_105 = lean_nat_add(x_78, x_49); -lean_dec(x_78); -lean_ctor_set(x_23, 1, x_105); -x_106 = lean_array_push(x_35, x_104); -lean_ctor_set(x_20, 1, x_106); -x_107 = lean_nat_add(x_9, x_49); -lean_dec(x_9); -x_108 = lean_nat_dec_lt(x_107, x_7); -if (x_108 == 0) +lean_dec_ref(x_102); +x_17 = x_104; +x_18 = lean_box(0); +goto block_24; +} +} +else { -lean_object* x_109; -lean_dec(x_107); +lean_object* x_105; +x_105 = lean_ctor_get(x_100, 0); +lean_inc(x_105); +lean_dec(x_100); +if (lean_obj_tag(x_105) == 0) +{ +lean_object* x_106; lean_object* x_107; lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_109 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_109, 0, x_8); -return x_109; +lean_dec_ref(x_2); +x_106 = lean_ctor_get(x_105, 0); +lean_inc(x_106); +lean_dec_ref(x_105); +x_107 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_107, 0, x_106); +return x_107; } else { -x_9 = x_107; -goto _start; +lean_object* x_108; +x_108 = lean_ctor_get(x_105, 0); +lean_inc(x_108); +lean_dec_ref(x_105); +x_17 = x_108; +x_18 = lean_box(0); +goto block_24; } } } else { -uint8_t x_111; -lean_free_object(x_23); -lean_dec_ref(x_26); -lean_dec(x_79); -lean_dec(x_78); -lean_dec_ref(x_77); +uint8_t x_109; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_109 = !lean_is_exclusive(x_100); +if (x_109 == 0) +{ +return x_100; +} +else +{ +lean_object* x_110; lean_object* x_111; +x_110 = lean_ctor_get(x_100, 0); +lean_inc(x_110); +lean_dec(x_100); +x_111 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_111, 0, x_110); +return x_111; +} +} +} +else +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; +x_112 = lean_array_fget(x_45, x_46); +lean_dec(x_46); +lean_dec_ref(x_45); +x_113 = lean_array_fget(x_54, x_55); +lean_dec(x_55); +lean_dec_ref(x_54); +x_114 = lean_array_fget(x_65, x_66); +lean_dec(x_66); +lean_dec_ref(x_65); +x_115 = lean_array_fget_borrowed(x_85, x_86); +x_116 = lean_box(x_3); +x_117 = lean_box(x_4); +x_118 = lean_box(x_97); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_9); +lean_inc_ref(x_2); +lean_inc_ref(x_115); +x_119 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_119, 0, x_114); +lean_closure_set(x_119, 1, x_112); +lean_closure_set(x_119, 2, x_115); +lean_closure_set(x_119, 3, x_2); +lean_closure_set(x_119, 4, x_9); +lean_closure_set(x_119, 5, x_116); +lean_closure_set(x_119, 6, x_117); +lean_closure_set(x_119, 7, x_5); +lean_closure_set(x_119, 8, x_6); +lean_closure_set(x_119, 9, x_118); +lean_closure_set(x_119, 10, x_57); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_120 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_113, x_95, x_119, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_120) == 0) +{ +lean_object* x_121; lean_object* x_122; lean_object* x_123; +x_121 = lean_ctor_get(x_120, 0); +lean_inc(x_121); +lean_dec_ref(x_120); +x_122 = lean_nat_add(x_86, x_57); +lean_dec(x_86); +lean_ctor_set(x_31, 1, x_122); +x_123 = lean_array_push(x_43, x_121); +lean_ctor_set(x_28, 1, x_123); +x_17 = x_8; +x_18 = lean_box(0); +goto block_24; +} +else +{ +uint8_t x_124; +lean_free_object(x_31); +lean_dec_ref(x_34); +lean_dec(x_87); +lean_dec(x_86); +lean_dec_ref(x_85); +lean_dec_ref(x_37); +lean_dec_ref(x_40); lean_dec_ref(x_29); -lean_dec_ref(x_32); -lean_dec_ref(x_21); -lean_free_object(x_20); -lean_dec(x_35); -lean_free_object(x_19); -lean_free_object(x_18); -lean_free_object(x_17); +lean_free_object(x_28); +lean_dec(x_43); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_25); lean_free_object(x_8); lean_dec(x_15); lean_dec_ref(x_14); @@ -36926,197 +38061,81 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_111 = !lean_is_exclusive(x_96); -if (x_111 == 0) +lean_dec_ref(x_2); +x_124 = !lean_is_exclusive(x_120); +if (x_124 == 0) { -return x_96; +return x_120; } else { -lean_object* x_112; lean_object* x_113; -x_112 = lean_ctor_get(x_96, 0); -lean_inc(x_112); -lean_dec(x_96); -x_113 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_113, 0, x_112); -return x_113; +lean_object* x_125; lean_object* x_126; +x_125 = lean_ctor_get(x_120, 0); +lean_inc(x_125); +lean_dec(x_120); +x_126 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_126, 0, x_125); +return x_126; +} } } } else { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; -lean_dec(x_23); -x_114 = lean_array_fget(x_37, x_38); -lean_dec(x_38); -lean_dec_ref(x_37); -x_115 = lean_array_fget(x_46, x_47); -lean_dec(x_47); -lean_dec_ref(x_46); -x_116 = lean_array_fget(x_57, x_58); -lean_dec(x_58); -lean_dec_ref(x_57); -x_117 = lean_array_fget(x_67, x_68); -lean_dec(x_68); -lean_dec_ref(x_67); -x_118 = lean_array_fget_borrowed(x_77, x_78); -x_119 = lean_box(x_2); -x_120 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_9); -lean_inc_ref(x_1); -lean_inc_ref(x_118); -x_121 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___boxed), 20, 11); -lean_closure_set(x_121, 0, x_114); -lean_closure_set(x_121, 1, x_118); -lean_closure_set(x_121, 2, x_1); -lean_closure_set(x_121, 3, x_9); -lean_closure_set(x_121, 4, x_119); -lean_closure_set(x_121, 5, x_120); -lean_closure_set(x_121, 6, x_4); -lean_closure_set(x_121, 7, x_5); -lean_closure_set(x_121, 8, x_116); -lean_closure_set(x_121, 9, x_6); -lean_closure_set(x_121, 10, x_49); -x_122 = lean_nat_sub(x_117, x_5); -lean_dec(x_117); -lean_inc(x_15); -lean_inc_ref(x_14); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_6); -x_123 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(x_115, x_122, x_6, x_121, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_123) == 0) -{ -lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; uint8_t x_130; -x_124 = lean_ctor_get(x_123, 0); -lean_inc(x_124); -if (lean_is_exclusive(x_123)) { - lean_ctor_release(x_123, 0); - x_125 = x_123; -} else { - lean_dec_ref(x_123); - x_125 = lean_box(0); -} -x_126 = lean_nat_add(x_78, x_49); -lean_dec(x_78); -x_127 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_127, 0, x_77); -lean_ctor_set(x_127, 1, x_126); -lean_ctor_set(x_127, 2, x_79); -x_128 = lean_array_push(x_35, x_124); -lean_ctor_set(x_20, 1, x_128); -lean_ctor_set(x_8, 0, x_127); -x_129 = lean_nat_add(x_9, x_49); -lean_dec(x_9); -x_130 = lean_nat_dec_lt(x_129, x_7); +lean_object* x_127; lean_object* x_128; uint8_t x_129; uint8_t x_130; +lean_dec(x_31); +x_127 = lean_array_fget(x_75, x_76); +lean_dec(x_76); +lean_dec_ref(x_75); +x_128 = lean_ctor_get(x_127, 1); +x_129 = lean_ctor_get_uint8(x_127, sizeof(void*)*2); +x_130 = lean_nat_dec_eq(x_128, x_1); if (x_130 == 0) { -lean_object* x_131; -lean_dec(x_129); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_125)) { - x_131 = lean_alloc_ctor(0, 1, 0); -} else { - x_131 = x_125; -} -lean_ctor_set(x_131, 0, x_8); -return x_131; -} -else -{ -lean_dec(x_125); -x_9 = x_129; -goto _start; -} -} -else -{ -lean_object* x_133; lean_object* x_134; lean_object* x_135; -lean_dec_ref(x_26); -lean_dec(x_79); -lean_dec(x_78); -lean_dec_ref(x_77); +lean_object* x_131; lean_object* x_132; +lean_dec_ref(x_127); +lean_dec_ref(x_34); +lean_dec(x_87); +lean_dec(x_86); +lean_dec_ref(x_85); +lean_dec_ref(x_37); +lean_dec_ref(x_40); +lean_dec(x_66); +lean_dec_ref(x_65); lean_dec_ref(x_29); -lean_dec_ref(x_32); -lean_dec_ref(x_21); -lean_free_object(x_20); -lean_dec(x_35); -lean_free_object(x_19); -lean_free_object(x_18); -lean_free_object(x_17); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_46); +lean_dec_ref(x_45); +lean_free_object(x_28); +lean_dec(x_43); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_25); lean_free_object(x_8); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_133 = lean_ctor_get(x_123, 0); +x_131 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_132 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_131, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_132) == 0) +{ +lean_object* x_133; lean_object* x_134; +x_133 = lean_ctor_get(x_132, 0); lean_inc(x_133); -if (lean_is_exclusive(x_123)) { - lean_ctor_release(x_123, 0); - x_134 = x_123; +if (lean_is_exclusive(x_132)) { + lean_ctor_release(x_132, 0); + x_134 = x_132; } else { - lean_dec_ref(x_123); + lean_dec_ref(x_132); x_134 = lean_box(0); } -if (lean_is_scalar(x_134)) { - x_135 = lean_alloc_ctor(1, 1, 0); -} else { - x_135 = x_134; -} -lean_ctor_set(x_135, 0, x_133); -return x_135; -} -} -} -} -else +if (lean_obj_tag(x_133) == 0) { -lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; uint8_t x_141; -lean_dec(x_26); -x_136 = lean_ctor_get(x_23, 0); -x_137 = lean_ctor_get(x_23, 1); -x_138 = lean_ctor_get(x_23, 2); -x_139 = lean_nat_add(x_68, x_49); -lean_inc_ref(x_67); -x_140 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_140, 0, x_67); -lean_ctor_set(x_140, 1, x_139); -lean_ctor_set(x_140, 2, x_69); -x_141 = lean_nat_dec_lt(x_137, x_138); -if (x_141 == 0) -{ -lean_object* x_142; -lean_dec(x_68); -lean_dec_ref(x_67); -lean_dec(x_58); -lean_dec_ref(x_57); -lean_dec(x_47); -lean_dec_ref(x_46); -lean_dec(x_38); -lean_dec_ref(x_37); +lean_object* x_135; lean_object* x_136; lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -37126,146 +38145,192 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_17, 0, x_140); -x_142 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_142, 0, x_8); -return x_142; +lean_dec_ref(x_2); +x_135 = lean_ctor_get(x_133, 0); +lean_inc(x_135); +lean_dec_ref(x_133); +if (lean_is_scalar(x_134)) { + x_136 = lean_alloc_ctor(0, 1, 0); +} else { + x_136 = x_134; +} +lean_ctor_set(x_136, 0, x_135); +return x_136; } else { -lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; -lean_inc(x_138); +lean_object* x_137; +lean_dec(x_134); +x_137 = lean_ctor_get(x_133, 0); lean_inc(x_137); -lean_inc_ref(x_136); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - lean_ctor_release(x_23, 2); - x_143 = x_23; -} else { - lean_dec_ref(x_23); - x_143 = lean_box(0); +lean_dec_ref(x_133); +x_17 = x_137; +x_18 = lean_box(0); +goto block_24; } -x_144 = lean_array_fget(x_37, x_38); -lean_dec(x_38); -lean_dec_ref(x_37); -x_145 = lean_array_fget(x_46, x_47); -lean_dec(x_47); -lean_dec_ref(x_46); -x_146 = lean_array_fget(x_57, x_58); -lean_dec(x_58); -lean_dec_ref(x_57); -x_147 = lean_array_fget(x_67, x_68); -lean_dec(x_68); -lean_dec_ref(x_67); -x_148 = lean_array_fget_borrowed(x_136, x_137); -x_149 = lean_box(x_2); -x_150 = lean_box(x_3); +} +else +{ +lean_object* x_138; lean_object* x_139; lean_object* x_140; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_138 = lean_ctor_get(x_132, 0); +lean_inc(x_138); +if (lean_is_exclusive(x_132)) { + lean_ctor_release(x_132, 0); + x_139 = x_132; +} else { + lean_dec_ref(x_132); + x_139 = lean_box(0); +} +if (lean_is_scalar(x_139)) { + x_140 = lean_alloc_ctor(1, 1, 0); +} else { + x_140 = x_139; +} +lean_ctor_set(x_140, 0, x_138); +return x_140; +} +} +else +{ +lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; +x_141 = lean_array_fget(x_45, x_46); +lean_dec(x_46); +lean_dec_ref(x_45); +x_142 = lean_array_fget(x_54, x_55); +lean_dec(x_55); +lean_dec_ref(x_54); +x_143 = lean_array_fget(x_65, x_66); +lean_dec(x_66); +lean_dec_ref(x_65); +x_144 = lean_array_fget_borrowed(x_85, x_86); +x_145 = lean_box(x_3); +x_146 = lean_box(x_4); +x_147 = lean_box(x_129); lean_inc(x_6); lean_inc(x_5); -lean_inc(x_4); lean_inc(x_9); -lean_inc_ref(x_1); -lean_inc_ref(x_148); -x_151 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___boxed), 20, 11); -lean_closure_set(x_151, 0, x_144); -lean_closure_set(x_151, 1, x_148); -lean_closure_set(x_151, 2, x_1); -lean_closure_set(x_151, 3, x_9); -lean_closure_set(x_151, 4, x_149); -lean_closure_set(x_151, 5, x_150); -lean_closure_set(x_151, 6, x_4); -lean_closure_set(x_151, 7, x_5); -lean_closure_set(x_151, 8, x_146); -lean_closure_set(x_151, 9, x_6); -lean_closure_set(x_151, 10, x_49); -x_152 = lean_nat_sub(x_147, x_5); -lean_dec(x_147); +lean_inc_ref(x_2); +lean_inc_ref(x_144); +x_148 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_148, 0, x_143); +lean_closure_set(x_148, 1, x_141); +lean_closure_set(x_148, 2, x_144); +lean_closure_set(x_148, 3, x_2); +lean_closure_set(x_148, 4, x_9); +lean_closure_set(x_148, 5, x_145); +lean_closure_set(x_148, 6, x_146); +lean_closure_set(x_148, 7, x_5); +lean_closure_set(x_148, 8, x_6); +lean_closure_set(x_148, 9, x_147); +lean_closure_set(x_148, 10, x_57); lean_inc(x_15); lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_153 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(x_145, x_152, x_6, x_151, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_153) == 0) +x_149 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_142, x_127, x_148, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_149) == 0) { -lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; uint8_t x_160; -x_154 = lean_ctor_get(x_153, 0); +lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +lean_dec_ref(x_149); +x_151 = lean_nat_add(x_86, x_57); +lean_dec(x_86); +x_152 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_152, 0, x_85); +lean_ctor_set(x_152, 1, x_151); +lean_ctor_set(x_152, 2, x_87); +x_153 = lean_array_push(x_43, x_150); +lean_ctor_set(x_28, 1, x_153); +lean_ctor_set(x_8, 0, x_152); +x_17 = x_8; +x_18 = lean_box(0); +goto block_24; +} +else +{ +lean_object* x_154; lean_object* x_155; lean_object* x_156; +lean_dec_ref(x_34); +lean_dec(x_87); +lean_dec(x_86); +lean_dec_ref(x_85); +lean_dec_ref(x_37); +lean_dec_ref(x_40); +lean_dec_ref(x_29); +lean_free_object(x_28); +lean_dec(x_43); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_154 = lean_ctor_get(x_149, 0); lean_inc(x_154); -if (lean_is_exclusive(x_153)) { - lean_ctor_release(x_153, 0); - x_155 = x_153; +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + x_155 = x_149; } else { - lean_dec_ref(x_153); + lean_dec_ref(x_149); x_155 = lean_box(0); } -x_156 = lean_nat_add(x_137, x_49); -lean_dec(x_137); -if (lean_is_scalar(x_143)) { - x_157 = lean_alloc_ctor(0, 3, 0); -} else { - x_157 = x_143; -} -lean_ctor_set(x_157, 0, x_136); -lean_ctor_set(x_157, 1, x_156); -lean_ctor_set(x_157, 2, x_138); -x_158 = lean_array_push(x_35, x_154); -lean_ctor_set(x_20, 1, x_158); -lean_ctor_set(x_17, 0, x_140); -lean_ctor_set(x_8, 0, x_157); -x_159 = lean_nat_add(x_9, x_49); -lean_dec(x_9); -x_160 = lean_nat_dec_lt(x_159, x_7); -if (x_160 == 0) -{ -lean_object* x_161; -lean_dec(x_159); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); if (lean_is_scalar(x_155)) { - x_161 = lean_alloc_ctor(0, 1, 0); + x_156 = lean_alloc_ctor(1, 1, 0); } else { - x_161 = x_155; + x_156 = x_155; +} +lean_ctor_set(x_156, 0, x_154); +return x_156; +} } -lean_ctor_set(x_161, 0, x_8); -return x_161; } -else -{ -lean_dec(x_155); -x_9 = x_159; -goto _start; } } else { -lean_object* x_163; lean_object* x_164; lean_object* x_165; -lean_dec(x_143); -lean_dec_ref(x_140); -lean_dec(x_138); -lean_dec(x_137); -lean_dec_ref(x_136); -lean_dec_ref(x_29); -lean_dec_ref(x_32); -lean_dec_ref(x_21); -lean_free_object(x_20); -lean_dec(x_35); -lean_free_object(x_19); -lean_free_object(x_18); -lean_free_object(x_17); -lean_free_object(x_8); +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; uint8_t x_162; +lean_dec(x_34); +x_157 = lean_ctor_get(x_31, 0); +x_158 = lean_ctor_get(x_31, 1); +x_159 = lean_ctor_get(x_31, 2); +x_160 = lean_nat_add(x_76, x_57); +lean_inc_ref(x_75); +x_161 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_161, 0, x_75); +lean_ctor_set(x_161, 1, x_160); +lean_ctor_set(x_161, 2, x_77); +x_162 = lean_nat_dec_lt(x_158, x_159); +if (x_162 == 0) +{ +lean_object* x_163; +lean_dec(x_76); +lean_dec_ref(x_75); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_46); +lean_dec_ref(x_45); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -37275,259 +38340,280 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_163 = lean_ctor_get(x_153, 0); -lean_inc(x_163); -if (lean_is_exclusive(x_153)) { - lean_ctor_release(x_153, 0); - x_164 = x_153; +lean_dec_ref(x_2); +lean_ctor_set(x_25, 0, x_161); +x_163 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_163, 0, x_8); +return x_163; +} +else +{ +lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; uint8_t x_168; +lean_inc(x_159); +lean_inc(x_158); +lean_inc_ref(x_157); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + lean_ctor_release(x_31, 2); + x_164 = x_31; } else { - lean_dec_ref(x_153); + lean_dec_ref(x_31); x_164 = lean_box(0); } -if (lean_is_scalar(x_164)) { - x_165 = lean_alloc_ctor(1, 1, 0); -} else { - x_165 = x_164; -} -lean_ctor_set(x_165, 0, x_163); -return x_165; -} -} -} -} -} -else +x_165 = lean_array_fget(x_75, x_76); +lean_dec(x_76); +lean_dec_ref(x_75); +x_166 = lean_ctor_get(x_165, 1); +x_167 = lean_ctor_get_uint8(x_165, sizeof(void*)*2); +x_168 = lean_nat_dec_eq(x_166, x_1); +if (x_168 == 0) { -lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; uint8_t x_171; -lean_dec(x_29); -x_166 = lean_ctor_get(x_26, 0); -x_167 = lean_ctor_get(x_26, 1); -x_168 = lean_ctor_get(x_26, 2); -x_169 = lean_nat_add(x_58, x_49); -lean_inc_ref(x_57); -x_170 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_170, 0, x_57); -lean_ctor_set(x_170, 1, x_169); -lean_ctor_set(x_170, 2, x_59); -x_171 = lean_nat_dec_lt(x_167, x_168); -if (x_171 == 0) -{ -lean_object* x_172; -lean_dec(x_58); -lean_dec_ref(x_57); -lean_dec(x_47); -lean_dec_ref(x_46); -lean_dec(x_38); +lean_object* x_169; lean_object* x_170; +lean_dec_ref(x_165); +lean_dec(x_164); +lean_dec_ref(x_161); +lean_dec(x_159); +lean_dec(x_158); +lean_dec_ref(x_157); lean_dec_ref(x_37); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_18, 0, x_170); -x_172 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_172, 0, x_8); -return x_172; -} -else -{ -lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; uint8_t x_179; -lean_inc(x_168); -lean_inc(x_167); -lean_inc_ref(x_166); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - lean_ctor_release(x_26, 1); - lean_ctor_release(x_26, 2); - x_173 = x_26; -} else { - lean_dec_ref(x_26); - x_173 = lean_box(0); -} -x_174 = lean_ctor_get(x_23, 0); -x_175 = lean_ctor_get(x_23, 1); -x_176 = lean_ctor_get(x_23, 2); -x_177 = lean_nat_add(x_167, x_49); -lean_inc_ref(x_166); -if (lean_is_scalar(x_173)) { - x_178 = lean_alloc_ctor(0, 3, 0); -} else { - x_178 = x_173; -} -lean_ctor_set(x_178, 0, x_166); -lean_ctor_set(x_178, 1, x_177); -lean_ctor_set(x_178, 2, x_168); -x_179 = lean_nat_dec_lt(x_175, x_176); -if (x_179 == 0) -{ -lean_object* x_180; -lean_dec(x_167); -lean_dec_ref(x_166); -lean_dec(x_58); -lean_dec_ref(x_57); -lean_dec(x_47); -lean_dec_ref(x_46); -lean_dec(x_38); -lean_dec_ref(x_37); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_18, 0, x_170); -lean_ctor_set(x_17, 0, x_178); -x_180 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_180, 0, x_8); -return x_180; -} -else -{ -lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; -lean_inc(x_176); -lean_inc(x_175); -lean_inc_ref(x_174); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - lean_ctor_release(x_23, 2); - x_181 = x_23; -} else { - lean_dec_ref(x_23); - x_181 = lean_box(0); -} -x_182 = lean_array_fget(x_37, x_38); -lean_dec(x_38); -lean_dec_ref(x_37); -x_183 = lean_array_fget(x_46, x_47); -lean_dec(x_47); -lean_dec_ref(x_46); -x_184 = lean_array_fget(x_57, x_58); -lean_dec(x_58); -lean_dec_ref(x_57); -x_185 = lean_array_fget(x_166, x_167); -lean_dec(x_167); -lean_dec_ref(x_166); -x_186 = lean_array_fget_borrowed(x_174, x_175); -x_187 = lean_box(x_2); -x_188 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_9); -lean_inc_ref(x_1); -lean_inc_ref(x_186); -x_189 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___boxed), 20, 11); -lean_closure_set(x_189, 0, x_182); -lean_closure_set(x_189, 1, x_186); -lean_closure_set(x_189, 2, x_1); -lean_closure_set(x_189, 3, x_9); -lean_closure_set(x_189, 4, x_187); -lean_closure_set(x_189, 5, x_188); -lean_closure_set(x_189, 6, x_4); -lean_closure_set(x_189, 7, x_5); -lean_closure_set(x_189, 8, x_184); -lean_closure_set(x_189, 9, x_6); -lean_closure_set(x_189, 10, x_49); -x_190 = lean_nat_sub(x_185, x_5); -lean_dec(x_185); +lean_dec_ref(x_40); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec_ref(x_29); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_46); +lean_dec_ref(x_45); +lean_free_object(x_28); +lean_dec(x_43); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_8); +x_169 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; lean_inc(x_15); lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_191 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(x_183, x_190, x_6, x_189, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_191) == 0) +x_170 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_169, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_170) == 0) { -lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; -x_192 = lean_ctor_get(x_191, 0); -lean_inc(x_192); -if (lean_is_exclusive(x_191)) { - lean_ctor_release(x_191, 0); - x_193 = x_191; +lean_object* x_171; lean_object* x_172; +x_171 = lean_ctor_get(x_170, 0); +lean_inc(x_171); +if (lean_is_exclusive(x_170)) { + lean_ctor_release(x_170, 0); + x_172 = x_170; } else { - lean_dec_ref(x_191); + lean_dec_ref(x_170); + x_172 = lean_box(0); +} +if (lean_obj_tag(x_171) == 0) +{ +lean_object* x_173; lean_object* x_174; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_173 = lean_ctor_get(x_171, 0); +lean_inc(x_173); +lean_dec_ref(x_171); +if (lean_is_scalar(x_172)) { + x_174 = lean_alloc_ctor(0, 1, 0); +} else { + x_174 = x_172; +} +lean_ctor_set(x_174, 0, x_173); +return x_174; +} +else +{ +lean_object* x_175; +lean_dec(x_172); +x_175 = lean_ctor_get(x_171, 0); +lean_inc(x_175); +lean_dec_ref(x_171); +x_17 = x_175; +x_18 = lean_box(0); +goto block_24; +} +} +else +{ +lean_object* x_176; lean_object* x_177; lean_object* x_178; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_176 = lean_ctor_get(x_170, 0); +lean_inc(x_176); +if (lean_is_exclusive(x_170)) { + lean_ctor_release(x_170, 0); + x_177 = x_170; +} else { + lean_dec_ref(x_170); + x_177 = lean_box(0); +} +if (lean_is_scalar(x_177)) { + x_178 = lean_alloc_ctor(1, 1, 0); +} else { + x_178 = x_177; +} +lean_ctor_set(x_178, 0, x_176); +return x_178; +} +} +else +{ +lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; +x_179 = lean_array_fget(x_45, x_46); +lean_dec(x_46); +lean_dec_ref(x_45); +x_180 = lean_array_fget(x_54, x_55); +lean_dec(x_55); +lean_dec_ref(x_54); +x_181 = lean_array_fget(x_65, x_66); +lean_dec(x_66); +lean_dec_ref(x_65); +x_182 = lean_array_fget_borrowed(x_157, x_158); +x_183 = lean_box(x_3); +x_184 = lean_box(x_4); +x_185 = lean_box(x_167); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_9); +lean_inc_ref(x_2); +lean_inc_ref(x_182); +x_186 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_186, 0, x_181); +lean_closure_set(x_186, 1, x_179); +lean_closure_set(x_186, 2, x_182); +lean_closure_set(x_186, 3, x_2); +lean_closure_set(x_186, 4, x_9); +lean_closure_set(x_186, 5, x_183); +lean_closure_set(x_186, 6, x_184); +lean_closure_set(x_186, 7, x_5); +lean_closure_set(x_186, 8, x_6); +lean_closure_set(x_186, 9, x_185); +lean_closure_set(x_186, 10, x_57); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_187 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_180, x_165, x_186, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_187) == 0) +{ +lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; +x_188 = lean_ctor_get(x_187, 0); +lean_inc(x_188); +lean_dec_ref(x_187); +x_189 = lean_nat_add(x_158, x_57); +lean_dec(x_158); +if (lean_is_scalar(x_164)) { + x_190 = lean_alloc_ctor(0, 3, 0); +} else { + x_190 = x_164; +} +lean_ctor_set(x_190, 0, x_157); +lean_ctor_set(x_190, 1, x_189); +lean_ctor_set(x_190, 2, x_159); +x_191 = lean_array_push(x_43, x_188); +lean_ctor_set(x_28, 1, x_191); +lean_ctor_set(x_25, 0, x_161); +lean_ctor_set(x_8, 0, x_190); +x_17 = x_8; +x_18 = lean_box(0); +goto block_24; +} +else +{ +lean_object* x_192; lean_object* x_193; lean_object* x_194; +lean_dec(x_164); +lean_dec_ref(x_161); +lean_dec(x_159); +lean_dec(x_158); +lean_dec_ref(x_157); +lean_dec_ref(x_37); +lean_dec_ref(x_40); +lean_dec_ref(x_29); +lean_free_object(x_28); +lean_dec(x_43); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_192 = lean_ctor_get(x_187, 0); +lean_inc(x_192); +if (lean_is_exclusive(x_187)) { + lean_ctor_release(x_187, 0); + x_193 = x_187; +} else { + lean_dec_ref(x_187); x_193 = lean_box(0); } -x_194 = lean_nat_add(x_175, x_49); -lean_dec(x_175); -if (lean_is_scalar(x_181)) { - x_195 = lean_alloc_ctor(0, 3, 0); -} else { - x_195 = x_181; -} -lean_ctor_set(x_195, 0, x_174); -lean_ctor_set(x_195, 1, x_194); -lean_ctor_set(x_195, 2, x_176); -x_196 = lean_array_push(x_35, x_192); -lean_ctor_set(x_20, 1, x_196); -lean_ctor_set(x_18, 0, x_170); -lean_ctor_set(x_17, 0, x_178); -lean_ctor_set(x_8, 0, x_195); -x_197 = lean_nat_add(x_9, x_49); -lean_dec(x_9); -x_198 = lean_nat_dec_lt(x_197, x_7); -if (x_198 == 0) -{ -lean_object* x_199; -lean_dec(x_197); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); if (lean_is_scalar(x_193)) { - x_199 = lean_alloc_ctor(0, 1, 0); + x_194 = lean_alloc_ctor(1, 1, 0); } else { - x_199 = x_193; + x_194 = x_193; +} +lean_ctor_set(x_194, 0, x_192); +return x_194; +} +} } -lean_ctor_set(x_199, 0, x_8); -return x_199; } -else -{ -lean_dec(x_193); -x_9 = x_197; -goto _start; } } else { -lean_object* x_201; lean_object* x_202; lean_object* x_203; -lean_dec(x_181); -lean_dec_ref(x_178); -lean_dec(x_176); -lean_dec(x_175); -lean_dec_ref(x_174); -lean_dec_ref(x_170); -lean_dec_ref(x_32); -lean_dec_ref(x_21); -lean_free_object(x_20); -lean_dec(x_35); -lean_free_object(x_19); -lean_free_object(x_18); -lean_free_object(x_17); -lean_free_object(x_8); +lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; +lean_dec(x_37); +x_195 = lean_ctor_get(x_34, 0); +x_196 = lean_ctor_get(x_34, 1); +x_197 = lean_ctor_get(x_34, 2); +x_198 = lean_nat_add(x_66, x_57); +lean_inc_ref(x_65); +x_199 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_199, 0, x_65); +lean_ctor_set(x_199, 1, x_198); +lean_ctor_set(x_199, 2, x_67); +x_200 = lean_nat_dec_lt(x_196, x_197); +if (x_200 == 0) +{ +lean_object* x_201; +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_46); +lean_dec_ref(x_45); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -37537,51 +38623,52 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_201 = lean_ctor_get(x_191, 0); -lean_inc(x_201); -if (lean_is_exclusive(x_191)) { - lean_ctor_release(x_191, 0); - x_202 = x_191; +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_199); +x_201 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_201, 0, x_8); +return x_201; +} +else +{ +lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; uint8_t x_208; +lean_inc(x_197); +lean_inc(x_196); +lean_inc_ref(x_195); +if (lean_is_exclusive(x_34)) { + lean_ctor_release(x_34, 0); + lean_ctor_release(x_34, 1); + lean_ctor_release(x_34, 2); + x_202 = x_34; } else { - lean_dec_ref(x_191); + lean_dec_ref(x_34); x_202 = lean_box(0); } +x_203 = lean_ctor_get(x_31, 0); +x_204 = lean_ctor_get(x_31, 1); +x_205 = lean_ctor_get(x_31, 2); +x_206 = lean_nat_add(x_196, x_57); +lean_inc_ref(x_195); if (lean_is_scalar(x_202)) { - x_203 = lean_alloc_ctor(1, 1, 0); + x_207 = lean_alloc_ctor(0, 3, 0); } else { - x_203 = x_202; + x_207 = x_202; } -lean_ctor_set(x_203, 0, x_201); -return x_203; -} -} -} -} -} -} -else +lean_ctor_set(x_207, 0, x_195); +lean_ctor_set(x_207, 1, x_206); +lean_ctor_set(x_207, 2, x_197); +x_208 = lean_nat_dec_lt(x_204, x_205); +if (x_208 == 0) { -lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; uint8_t x_209; -lean_dec(x_32); -x_204 = lean_ctor_get(x_29, 0); -x_205 = lean_ctor_get(x_29, 1); -x_206 = lean_ctor_get(x_29, 2); -x_207 = lean_nat_add(x_47, x_49); -lean_inc_ref(x_46); -x_208 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_208, 0, x_46); -lean_ctor_set(x_208, 1, x_207); -lean_ctor_set(x_208, 2, x_48); -x_209 = lean_nat_dec_lt(x_205, x_206); -if (x_209 == 0) -{ -lean_object* x_210; -lean_dec(x_47); -lean_dec_ref(x_46); -lean_dec(x_38); -lean_dec_ref(x_37); +lean_object* x_209; +lean_dec(x_196); +lean_dec_ref(x_195); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_46); +lean_dec_ref(x_45); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -37591,261 +38678,281 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_19, 0, x_208); -x_210 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_210, 0, x_8); -return x_210; +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_199); +lean_ctor_set(x_25, 0, x_207); +x_209 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_209, 0, x_8); +return x_209; } else { -lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; uint8_t x_217; -lean_inc(x_206); +lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; uint8_t x_214; lean_inc(x_205); -lean_inc_ref(x_204); -if (lean_is_exclusive(x_29)) { - lean_ctor_release(x_29, 0); - lean_ctor_release(x_29, 1); - lean_ctor_release(x_29, 2); - x_211 = x_29; +lean_inc(x_204); +lean_inc_ref(x_203); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + lean_ctor_release(x_31, 2); + x_210 = x_31; } else { - lean_dec_ref(x_29); - x_211 = lean_box(0); + lean_dec_ref(x_31); + x_210 = lean_box(0); } -x_212 = lean_ctor_get(x_26, 0); -x_213 = lean_ctor_get(x_26, 1); -x_214 = lean_ctor_get(x_26, 2); -x_215 = lean_nat_add(x_205, x_49); -lean_inc_ref(x_204); -if (lean_is_scalar(x_211)) { - x_216 = lean_alloc_ctor(0, 3, 0); -} else { - x_216 = x_211; -} -lean_ctor_set(x_216, 0, x_204); -lean_ctor_set(x_216, 1, x_215); -lean_ctor_set(x_216, 2, x_206); -x_217 = lean_nat_dec_lt(x_213, x_214); -if (x_217 == 0) +x_211 = lean_array_fget(x_195, x_196); +lean_dec(x_196); +lean_dec_ref(x_195); +x_212 = lean_ctor_get(x_211, 1); +x_213 = lean_ctor_get_uint8(x_211, sizeof(void*)*2); +x_214 = lean_nat_dec_eq(x_212, x_1); +if (x_214 == 0) { -lean_object* x_218; +lean_object* x_215; lean_object* x_216; +lean_dec_ref(x_211); +lean_dec(x_210); +lean_dec_ref(x_207); lean_dec(x_205); -lean_dec_ref(x_204); -lean_dec(x_47); -lean_dec_ref(x_46); -lean_dec(x_38); -lean_dec_ref(x_37); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_19, 0, x_208); -lean_ctor_set(x_18, 0, x_216); -x_218 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_218, 0, x_8); -return x_218; -} -else -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; uint8_t x_225; -lean_inc(x_214); -lean_inc(x_213); -lean_inc_ref(x_212); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - lean_ctor_release(x_26, 1); - lean_ctor_release(x_26, 2); - x_219 = x_26; -} else { - lean_dec_ref(x_26); - x_219 = lean_box(0); -} -x_220 = lean_ctor_get(x_23, 0); -x_221 = lean_ctor_get(x_23, 1); -x_222 = lean_ctor_get(x_23, 2); -x_223 = lean_nat_add(x_213, x_49); -lean_inc_ref(x_212); -if (lean_is_scalar(x_219)) { - x_224 = lean_alloc_ctor(0, 3, 0); -} else { - x_224 = x_219; -} -lean_ctor_set(x_224, 0, x_212); -lean_ctor_set(x_224, 1, x_223); -lean_ctor_set(x_224, 2, x_214); -x_225 = lean_nat_dec_lt(x_221, x_222); -if (x_225 == 0) -{ -lean_object* x_226; -lean_dec(x_213); -lean_dec_ref(x_212); -lean_dec(x_205); -lean_dec_ref(x_204); -lean_dec(x_47); -lean_dec_ref(x_46); -lean_dec(x_38); -lean_dec_ref(x_37); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_19, 0, x_208); -lean_ctor_set(x_18, 0, x_216); -lean_ctor_set(x_17, 0, x_224); -x_226 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_226, 0, x_8); -return x_226; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; -lean_inc(x_222); -lean_inc(x_221); -lean_inc_ref(x_220); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - lean_ctor_release(x_23, 2); - x_227 = x_23; -} else { - lean_dec_ref(x_23); - x_227 = lean_box(0); -} -x_228 = lean_array_fget(x_37, x_38); -lean_dec(x_38); -lean_dec_ref(x_37); -x_229 = lean_array_fget(x_46, x_47); -lean_dec(x_47); -lean_dec_ref(x_46); -x_230 = lean_array_fget(x_204, x_205); -lean_dec(x_205); -lean_dec_ref(x_204); -x_231 = lean_array_fget(x_212, x_213); -lean_dec(x_213); -lean_dec_ref(x_212); -x_232 = lean_array_fget_borrowed(x_220, x_221); -x_233 = lean_box(x_2); -x_234 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_9); -lean_inc_ref(x_1); -lean_inc_ref(x_232); -x_235 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___boxed), 20, 11); -lean_closure_set(x_235, 0, x_228); -lean_closure_set(x_235, 1, x_232); -lean_closure_set(x_235, 2, x_1); -lean_closure_set(x_235, 3, x_9); -lean_closure_set(x_235, 4, x_233); -lean_closure_set(x_235, 5, x_234); -lean_closure_set(x_235, 6, x_4); -lean_closure_set(x_235, 7, x_5); -lean_closure_set(x_235, 8, x_230); -lean_closure_set(x_235, 9, x_6); -lean_closure_set(x_235, 10, x_49); -x_236 = lean_nat_sub(x_231, x_5); -lean_dec(x_231); +lean_dec(x_204); +lean_dec_ref(x_203); +lean_dec_ref(x_199); +lean_dec_ref(x_40); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec_ref(x_29); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_46); +lean_dec_ref(x_45); +lean_free_object(x_28); +lean_dec(x_43); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_8); +x_215 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; lean_inc(x_15); lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_237 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(x_229, x_236, x_6, x_235, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_237) == 0) +x_216 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_215, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_216) == 0) { -lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; uint8_t x_244; -x_238 = lean_ctor_get(x_237, 0); -lean_inc(x_238); -if (lean_is_exclusive(x_237)) { - lean_ctor_release(x_237, 0); - x_239 = x_237; +lean_object* x_217; lean_object* x_218; +x_217 = lean_ctor_get(x_216, 0); +lean_inc(x_217); +if (lean_is_exclusive(x_216)) { + lean_ctor_release(x_216, 0); + x_218 = x_216; } else { - lean_dec_ref(x_237); + lean_dec_ref(x_216); + x_218 = lean_box(0); +} +if (lean_obj_tag(x_217) == 0) +{ +lean_object* x_219; lean_object* x_220; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_219 = lean_ctor_get(x_217, 0); +lean_inc(x_219); +lean_dec_ref(x_217); +if (lean_is_scalar(x_218)) { + x_220 = lean_alloc_ctor(0, 1, 0); +} else { + x_220 = x_218; +} +lean_ctor_set(x_220, 0, x_219); +return x_220; +} +else +{ +lean_object* x_221; +lean_dec(x_218); +x_221 = lean_ctor_get(x_217, 0); +lean_inc(x_221); +lean_dec_ref(x_217); +x_17 = x_221; +x_18 = lean_box(0); +goto block_24; +} +} +else +{ +lean_object* x_222; lean_object* x_223; lean_object* x_224; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_222 = lean_ctor_get(x_216, 0); +lean_inc(x_222); +if (lean_is_exclusive(x_216)) { + lean_ctor_release(x_216, 0); + x_223 = x_216; +} else { + lean_dec_ref(x_216); + x_223 = lean_box(0); +} +if (lean_is_scalar(x_223)) { + x_224 = lean_alloc_ctor(1, 1, 0); +} else { + x_224 = x_223; +} +lean_ctor_set(x_224, 0, x_222); +return x_224; +} +} +else +{ +lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_225 = lean_array_fget(x_45, x_46); +lean_dec(x_46); +lean_dec_ref(x_45); +x_226 = lean_array_fget(x_54, x_55); +lean_dec(x_55); +lean_dec_ref(x_54); +x_227 = lean_array_fget(x_65, x_66); +lean_dec(x_66); +lean_dec_ref(x_65); +x_228 = lean_array_fget_borrowed(x_203, x_204); +x_229 = lean_box(x_3); +x_230 = lean_box(x_4); +x_231 = lean_box(x_213); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_9); +lean_inc_ref(x_2); +lean_inc_ref(x_228); +x_232 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_232, 0, x_227); +lean_closure_set(x_232, 1, x_225); +lean_closure_set(x_232, 2, x_228); +lean_closure_set(x_232, 3, x_2); +lean_closure_set(x_232, 4, x_9); +lean_closure_set(x_232, 5, x_229); +lean_closure_set(x_232, 6, x_230); +lean_closure_set(x_232, 7, x_5); +lean_closure_set(x_232, 8, x_6); +lean_closure_set(x_232, 9, x_231); +lean_closure_set(x_232, 10, x_57); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_233 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_226, x_211, x_232, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_233) == 0) +{ +lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; +x_234 = lean_ctor_get(x_233, 0); +lean_inc(x_234); +lean_dec_ref(x_233); +x_235 = lean_nat_add(x_204, x_57); +lean_dec(x_204); +if (lean_is_scalar(x_210)) { + x_236 = lean_alloc_ctor(0, 3, 0); +} else { + x_236 = x_210; +} +lean_ctor_set(x_236, 0, x_203); +lean_ctor_set(x_236, 1, x_235); +lean_ctor_set(x_236, 2, x_205); +x_237 = lean_array_push(x_43, x_234); +lean_ctor_set(x_28, 1, x_237); +lean_ctor_set(x_26, 0, x_199); +lean_ctor_set(x_25, 0, x_207); +lean_ctor_set(x_8, 0, x_236); +x_17 = x_8; +x_18 = lean_box(0); +goto block_24; +} +else +{ +lean_object* x_238; lean_object* x_239; lean_object* x_240; +lean_dec(x_210); +lean_dec_ref(x_207); +lean_dec(x_205); +lean_dec(x_204); +lean_dec_ref(x_203); +lean_dec_ref(x_199); +lean_dec_ref(x_40); +lean_dec_ref(x_29); +lean_free_object(x_28); +lean_dec(x_43); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_238 = lean_ctor_get(x_233, 0); +lean_inc(x_238); +if (lean_is_exclusive(x_233)) { + lean_ctor_release(x_233, 0); + x_239 = x_233; +} else { + lean_dec_ref(x_233); x_239 = lean_box(0); } -x_240 = lean_nat_add(x_221, x_49); -lean_dec(x_221); -if (lean_is_scalar(x_227)) { - x_241 = lean_alloc_ctor(0, 3, 0); -} else { - x_241 = x_227; -} -lean_ctor_set(x_241, 0, x_220); -lean_ctor_set(x_241, 1, x_240); -lean_ctor_set(x_241, 2, x_222); -x_242 = lean_array_push(x_35, x_238); -lean_ctor_set(x_20, 1, x_242); -lean_ctor_set(x_19, 0, x_208); -lean_ctor_set(x_18, 0, x_216); -lean_ctor_set(x_17, 0, x_224); -lean_ctor_set(x_8, 0, x_241); -x_243 = lean_nat_add(x_9, x_49); -lean_dec(x_9); -x_244 = lean_nat_dec_lt(x_243, x_7); -if (x_244 == 0) -{ -lean_object* x_245; -lean_dec(x_243); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); if (lean_is_scalar(x_239)) { - x_245 = lean_alloc_ctor(0, 1, 0); + x_240 = lean_alloc_ctor(1, 1, 0); } else { - x_245 = x_239; + x_240 = x_239; +} +lean_ctor_set(x_240, 0, x_238); +return x_240; +} +} +} } -lean_ctor_set(x_245, 0, x_8); -return x_245; } -else -{ -lean_dec(x_239); -x_9 = x_243; -goto _start; } } else { -lean_object* x_247; lean_object* x_248; lean_object* x_249; -lean_dec(x_227); -lean_dec_ref(x_224); -lean_dec(x_222); -lean_dec(x_221); -lean_dec_ref(x_220); -lean_dec_ref(x_216); -lean_dec_ref(x_208); -lean_dec_ref(x_21); -lean_free_object(x_20); -lean_dec(x_35); -lean_free_object(x_19); -lean_free_object(x_18); -lean_free_object(x_17); -lean_free_object(x_8); +lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; uint8_t x_246; +lean_dec(x_40); +x_241 = lean_ctor_get(x_37, 0); +x_242 = lean_ctor_get(x_37, 1); +x_243 = lean_ctor_get(x_37, 2); +x_244 = lean_nat_add(x_55, x_57); +lean_inc_ref(x_54); +x_245 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_245, 0, x_54); +lean_ctor_set(x_245, 1, x_244); +lean_ctor_set(x_245, 2, x_56); +x_246 = lean_nat_dec_lt(x_242, x_243); +if (x_246 == 0) +{ +lean_object* x_247; +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_46); +lean_dec_ref(x_45); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -37855,51 +38962,50 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_247 = lean_ctor_get(x_237, 0); -lean_inc(x_247); -if (lean_is_exclusive(x_237)) { - lean_ctor_release(x_237, 0); - x_248 = x_237; +lean_dec_ref(x_2); +lean_ctor_set(x_27, 0, x_245); +x_247 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_247, 0, x_8); +return x_247; +} +else +{ +lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint8_t x_254; +lean_inc(x_243); +lean_inc(x_242); +lean_inc_ref(x_241); +if (lean_is_exclusive(x_37)) { + lean_ctor_release(x_37, 0); + lean_ctor_release(x_37, 1); + lean_ctor_release(x_37, 2); + x_248 = x_37; } else { - lean_dec_ref(x_237); + lean_dec_ref(x_37); x_248 = lean_box(0); } +x_249 = lean_ctor_get(x_34, 0); +x_250 = lean_ctor_get(x_34, 1); +x_251 = lean_ctor_get(x_34, 2); +x_252 = lean_nat_add(x_242, x_57); +lean_inc_ref(x_241); if (lean_is_scalar(x_248)) { - x_249 = lean_alloc_ctor(1, 1, 0); + x_253 = lean_alloc_ctor(0, 3, 0); } else { - x_249 = x_248; + x_253 = x_248; } -lean_ctor_set(x_249, 0, x_247); -return x_249; -} -} -} -} -} -} -} -else +lean_ctor_set(x_253, 0, x_241); +lean_ctor_set(x_253, 1, x_252); +lean_ctor_set(x_253, 2, x_243); +x_254 = lean_nat_dec_lt(x_250, x_251); +if (x_254 == 0) { -lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint8_t x_256; -lean_dec(x_21); -x_250 = lean_ctor_get(x_32, 0); -x_251 = lean_ctor_get(x_32, 1); -x_252 = lean_ctor_get(x_32, 2); -x_253 = lean_unsigned_to_nat(1u); -x_254 = lean_nat_add(x_38, x_253); -lean_inc_ref(x_37); -x_255 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_255, 0, x_37); -lean_ctor_set(x_255, 1, x_254); -lean_ctor_set(x_255, 2, x_39); -x_256 = lean_nat_dec_lt(x_251, x_252); -if (x_256 == 0) -{ -lean_object* x_257; -lean_dec(x_38); -lean_dec_ref(x_37); +lean_object* x_255; +lean_dec(x_242); +lean_dec_ref(x_241); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_46); +lean_dec_ref(x_45); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -37909,49 +39015,53 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_20, 0, x_255); -x_257 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_257, 0, x_8); -return x_257; +lean_dec_ref(x_2); +lean_ctor_set(x_27, 0, x_245); +lean_ctor_set(x_26, 0, x_253); +x_255 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_255, 0, x_8); +return x_255; } else { -lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; uint8_t x_264; -lean_inc(x_252); +lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint8_t x_262; lean_inc(x_251); -lean_inc_ref(x_250); -if (lean_is_exclusive(x_32)) { - lean_ctor_release(x_32, 0); - lean_ctor_release(x_32, 1); - lean_ctor_release(x_32, 2); - x_258 = x_32; +lean_inc(x_250); +lean_inc_ref(x_249); +if (lean_is_exclusive(x_34)) { + lean_ctor_release(x_34, 0); + lean_ctor_release(x_34, 1); + lean_ctor_release(x_34, 2); + x_256 = x_34; } else { - lean_dec_ref(x_32); - x_258 = lean_box(0); + lean_dec_ref(x_34); + x_256 = lean_box(0); } -x_259 = lean_ctor_get(x_29, 0); -x_260 = lean_ctor_get(x_29, 1); -x_261 = lean_ctor_get(x_29, 2); -x_262 = lean_nat_add(x_251, x_253); -lean_inc_ref(x_250); -if (lean_is_scalar(x_258)) { - x_263 = lean_alloc_ctor(0, 3, 0); +x_257 = lean_ctor_get(x_31, 0); +x_258 = lean_ctor_get(x_31, 1); +x_259 = lean_ctor_get(x_31, 2); +x_260 = lean_nat_add(x_250, x_57); +lean_inc_ref(x_249); +if (lean_is_scalar(x_256)) { + x_261 = lean_alloc_ctor(0, 3, 0); } else { - x_263 = x_258; + x_261 = x_256; } -lean_ctor_set(x_263, 0, x_250); -lean_ctor_set(x_263, 1, x_262); -lean_ctor_set(x_263, 2, x_252); -x_264 = lean_nat_dec_lt(x_260, x_261); -if (x_264 == 0) +lean_ctor_set(x_261, 0, x_249); +lean_ctor_set(x_261, 1, x_260); +lean_ctor_set(x_261, 2, x_251); +x_262 = lean_nat_dec_lt(x_258, x_259); +if (x_262 == 0) { -lean_object* x_265; -lean_dec(x_251); -lean_dec_ref(x_250); -lean_dec(x_38); -lean_dec_ref(x_37); +lean_object* x_263; +lean_dec(x_250); +lean_dec_ref(x_249); +lean_dec(x_242); +lean_dec_ref(x_241); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_46); +lean_dec_ref(x_45); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -37961,264 +39071,228 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_20, 0, x_255); -lean_ctor_set(x_19, 0, x_263); -x_265 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_265, 0, x_8); -return x_265; +lean_dec_ref(x_2); +lean_ctor_set(x_27, 0, x_245); +lean_ctor_set(x_26, 0, x_253); +lean_ctor_set(x_25, 0, x_261); +x_263 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_263, 0, x_8); +return x_263; } else { -lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; uint8_t x_272; -lean_inc(x_261); -lean_inc(x_260); -lean_inc_ref(x_259); -if (lean_is_exclusive(x_29)) { - lean_ctor_release(x_29, 0); - lean_ctor_release(x_29, 1); - lean_ctor_release(x_29, 2); - x_266 = x_29; +lean_object* x_264; lean_object* x_265; lean_object* x_266; uint8_t x_267; uint8_t x_268; +lean_inc(x_259); +lean_inc(x_258); +lean_inc_ref(x_257); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + lean_ctor_release(x_31, 2); + x_264 = x_31; } else { - lean_dec_ref(x_29); - x_266 = lean_box(0); + lean_dec_ref(x_31); + x_264 = lean_box(0); } -x_267 = lean_ctor_get(x_26, 0); -x_268 = lean_ctor_get(x_26, 1); -x_269 = lean_ctor_get(x_26, 2); -x_270 = lean_nat_add(x_260, x_253); -lean_inc_ref(x_259); -if (lean_is_scalar(x_266)) { - x_271 = lean_alloc_ctor(0, 3, 0); -} else { - x_271 = x_266; -} -lean_ctor_set(x_271, 0, x_259); -lean_ctor_set(x_271, 1, x_270); -lean_ctor_set(x_271, 2, x_261); -x_272 = lean_nat_dec_lt(x_268, x_269); -if (x_272 == 0) +x_265 = lean_array_fget(x_249, x_250); +lean_dec(x_250); +lean_dec_ref(x_249); +x_266 = lean_ctor_get(x_265, 1); +x_267 = lean_ctor_get_uint8(x_265, sizeof(void*)*2); +x_268 = lean_nat_dec_eq(x_266, x_1); +if (x_268 == 0) { -lean_object* x_273; -lean_dec(x_260); -lean_dec_ref(x_259); -lean_dec(x_251); -lean_dec_ref(x_250); -lean_dec(x_38); -lean_dec_ref(x_37); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_20, 0, x_255); -lean_ctor_set(x_19, 0, x_263); -lean_ctor_set(x_18, 0, x_271); -x_273 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_273, 0, x_8); -return x_273; -} -else -{ -lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; uint8_t x_280; -lean_inc(x_269); -lean_inc(x_268); -lean_inc_ref(x_267); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - lean_ctor_release(x_26, 1); - lean_ctor_release(x_26, 2); - x_274 = x_26; -} else { - lean_dec_ref(x_26); - x_274 = lean_box(0); -} -x_275 = lean_ctor_get(x_23, 0); -x_276 = lean_ctor_get(x_23, 1); -x_277 = lean_ctor_get(x_23, 2); -x_278 = lean_nat_add(x_268, x_253); -lean_inc_ref(x_267); -if (lean_is_scalar(x_274)) { - x_279 = lean_alloc_ctor(0, 3, 0); -} else { - x_279 = x_274; -} -lean_ctor_set(x_279, 0, x_267); -lean_ctor_set(x_279, 1, x_278); -lean_ctor_set(x_279, 2, x_269); -x_280 = lean_nat_dec_lt(x_276, x_277); -if (x_280 == 0) -{ -lean_object* x_281; -lean_dec(x_268); -lean_dec_ref(x_267); -lean_dec(x_260); -lean_dec_ref(x_259); -lean_dec(x_251); -lean_dec_ref(x_250); -lean_dec(x_38); -lean_dec_ref(x_37); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_20, 0, x_255); -lean_ctor_set(x_19, 0, x_263); -lean_ctor_set(x_18, 0, x_271); -lean_ctor_set(x_17, 0, x_279); -x_281 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_281, 0, x_8); -return x_281; -} -else -{ -lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; -lean_inc(x_277); -lean_inc(x_276); -lean_inc_ref(x_275); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - lean_ctor_release(x_23, 2); - x_282 = x_23; -} else { - lean_dec_ref(x_23); - x_282 = lean_box(0); -} -x_283 = lean_array_fget(x_37, x_38); -lean_dec(x_38); -lean_dec_ref(x_37); -x_284 = lean_array_fget(x_250, x_251); -lean_dec(x_251); -lean_dec_ref(x_250); -x_285 = lean_array_fget(x_259, x_260); -lean_dec(x_260); -lean_dec_ref(x_259); -x_286 = lean_array_fget(x_267, x_268); -lean_dec(x_268); -lean_dec_ref(x_267); -x_287 = lean_array_fget_borrowed(x_275, x_276); -x_288 = lean_box(x_2); -x_289 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_9); -lean_inc_ref(x_1); -lean_inc_ref(x_287); -x_290 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___boxed), 20, 11); -lean_closure_set(x_290, 0, x_283); -lean_closure_set(x_290, 1, x_287); -lean_closure_set(x_290, 2, x_1); -lean_closure_set(x_290, 3, x_9); -lean_closure_set(x_290, 4, x_288); -lean_closure_set(x_290, 5, x_289); -lean_closure_set(x_290, 6, x_4); -lean_closure_set(x_290, 7, x_5); -lean_closure_set(x_290, 8, x_285); -lean_closure_set(x_290, 9, x_6); -lean_closure_set(x_290, 10, x_253); -x_291 = lean_nat_sub(x_286, x_5); -lean_dec(x_286); +lean_object* x_269; lean_object* x_270; +lean_dec_ref(x_265); +lean_dec(x_264); +lean_dec_ref(x_261); +lean_dec(x_259); +lean_dec(x_258); +lean_dec_ref(x_257); +lean_dec_ref(x_253); +lean_dec_ref(x_245); +lean_dec(x_242); +lean_dec_ref(x_241); +lean_dec_ref(x_29); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_46); +lean_dec_ref(x_45); +lean_free_object(x_28); +lean_dec(x_43); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_8); +x_269 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; lean_inc(x_15); lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_292 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(x_284, x_291, x_6, x_290, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_292) == 0) +x_270 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_269, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_270) == 0) { -lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; uint8_t x_299; -x_293 = lean_ctor_get(x_292, 0); -lean_inc(x_293); -if (lean_is_exclusive(x_292)) { - lean_ctor_release(x_292, 0); - x_294 = x_292; +lean_object* x_271; lean_object* x_272; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + x_272 = x_270; } else { - lean_dec_ref(x_292); - x_294 = lean_box(0); + lean_dec_ref(x_270); + x_272 = lean_box(0); } -x_295 = lean_nat_add(x_276, x_253); -lean_dec(x_276); -if (lean_is_scalar(x_282)) { - x_296 = lean_alloc_ctor(0, 3, 0); -} else { - x_296 = x_282; -} -lean_ctor_set(x_296, 0, x_275); -lean_ctor_set(x_296, 1, x_295); -lean_ctor_set(x_296, 2, x_277); -x_297 = lean_array_push(x_35, x_293); -lean_ctor_set(x_20, 1, x_297); -lean_ctor_set(x_20, 0, x_255); -lean_ctor_set(x_19, 0, x_263); -lean_ctor_set(x_18, 0, x_271); -lean_ctor_set(x_17, 0, x_279); -lean_ctor_set(x_8, 0, x_296); -x_298 = lean_nat_add(x_9, x_253); -lean_dec(x_9); -x_299 = lean_nat_dec_lt(x_298, x_7); -if (x_299 == 0) +if (lean_obj_tag(x_271) == 0) { -lean_object* x_300; -lean_dec(x_298); +lean_object* x_273; lean_object* x_274; lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_294)) { - x_300 = lean_alloc_ctor(0, 1, 0); -} else { - x_300 = x_294; -} -lean_ctor_set(x_300, 0, x_8); -return x_300; -} -else -{ -lean_dec(x_294); -x_9 = x_298; -goto _start; -} -} -else -{ -lean_object* x_302; lean_object* x_303; lean_object* x_304; -lean_dec(x_282); -lean_dec_ref(x_279); -lean_dec(x_277); -lean_dec(x_276); -lean_dec_ref(x_275); +lean_dec_ref(x_2); +x_273 = lean_ctor_get(x_271, 0); +lean_inc(x_273); lean_dec_ref(x_271); -lean_dec_ref(x_263); -lean_dec_ref(x_255); -lean_free_object(x_20); -lean_dec(x_35); -lean_free_object(x_19); -lean_free_object(x_18); -lean_free_object(x_17); +if (lean_is_scalar(x_272)) { + x_274 = lean_alloc_ctor(0, 1, 0); +} else { + x_274 = x_272; +} +lean_ctor_set(x_274, 0, x_273); +return x_274; +} +else +{ +lean_object* x_275; +lean_dec(x_272); +x_275 = lean_ctor_get(x_271, 0); +lean_inc(x_275); +lean_dec_ref(x_271); +x_17 = x_275; +x_18 = lean_box(0); +goto block_24; +} +} +else +{ +lean_object* x_276; lean_object* x_277; lean_object* x_278; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_276 = lean_ctor_get(x_270, 0); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 1, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_276); +return x_278; +} +} +else +{ +lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; +x_279 = lean_array_fget(x_45, x_46); +lean_dec(x_46); +lean_dec_ref(x_45); +x_280 = lean_array_fget(x_54, x_55); +lean_dec(x_55); +lean_dec_ref(x_54); +x_281 = lean_array_fget(x_241, x_242); +lean_dec(x_242); +lean_dec_ref(x_241); +x_282 = lean_array_fget_borrowed(x_257, x_258); +x_283 = lean_box(x_3); +x_284 = lean_box(x_4); +x_285 = lean_box(x_267); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_9); +lean_inc_ref(x_2); +lean_inc_ref(x_282); +x_286 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_286, 0, x_281); +lean_closure_set(x_286, 1, x_279); +lean_closure_set(x_286, 2, x_282); +lean_closure_set(x_286, 3, x_2); +lean_closure_set(x_286, 4, x_9); +lean_closure_set(x_286, 5, x_283); +lean_closure_set(x_286, 6, x_284); +lean_closure_set(x_286, 7, x_5); +lean_closure_set(x_286, 8, x_6); +lean_closure_set(x_286, 9, x_285); +lean_closure_set(x_286, 10, x_57); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_287 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_280, x_265, x_286, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_287) == 0) +{ +lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; +x_288 = lean_ctor_get(x_287, 0); +lean_inc(x_288); +lean_dec_ref(x_287); +x_289 = lean_nat_add(x_258, x_57); +lean_dec(x_258); +if (lean_is_scalar(x_264)) { + x_290 = lean_alloc_ctor(0, 3, 0); +} else { + x_290 = x_264; +} +lean_ctor_set(x_290, 0, x_257); +lean_ctor_set(x_290, 1, x_289); +lean_ctor_set(x_290, 2, x_259); +x_291 = lean_array_push(x_43, x_288); +lean_ctor_set(x_28, 1, x_291); +lean_ctor_set(x_27, 0, x_245); +lean_ctor_set(x_26, 0, x_253); +lean_ctor_set(x_25, 0, x_261); +lean_ctor_set(x_8, 0, x_290); +x_17 = x_8; +x_18 = lean_box(0); +goto block_24; +} +else +{ +lean_object* x_292; lean_object* x_293; lean_object* x_294; +lean_dec(x_264); +lean_dec_ref(x_261); +lean_dec(x_259); +lean_dec(x_258); +lean_dec_ref(x_257); +lean_dec_ref(x_253); +lean_dec_ref(x_245); +lean_dec_ref(x_29); +lean_free_object(x_28); +lean_dec(x_43); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_25); lean_free_object(x_8); lean_dec(x_15); lean_dec_ref(x_14); @@ -38229,45 +39303,102 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_302 = lean_ctor_get(x_292, 0); -lean_inc(x_302); -if (lean_is_exclusive(x_292)) { - lean_ctor_release(x_292, 0); - x_303 = x_292; +lean_dec_ref(x_2); +x_292 = lean_ctor_get(x_287, 0); +lean_inc(x_292); +if (lean_is_exclusive(x_287)) { + lean_ctor_release(x_287, 0); + x_293 = x_287; } else { - lean_dec_ref(x_292); + lean_dec_ref(x_287); + x_293 = lean_box(0); +} +if (lean_is_scalar(x_293)) { + x_294 = lean_alloc_ctor(1, 1, 0); +} else { + x_294 = x_293; +} +lean_ctor_set(x_294, 0, x_292); +return x_294; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; uint8_t x_301; +lean_dec(x_29); +x_295 = lean_ctor_get(x_40, 0); +x_296 = lean_ctor_get(x_40, 1); +x_297 = lean_ctor_get(x_40, 2); +x_298 = lean_unsigned_to_nat(1u); +x_299 = lean_nat_add(x_46, x_298); +lean_inc_ref(x_45); +x_300 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_300, 0, x_45); +lean_ctor_set(x_300, 1, x_299); +lean_ctor_set(x_300, 2, x_47); +x_301 = lean_nat_dec_lt(x_296, x_297); +if (x_301 == 0) +{ +lean_object* x_302; +lean_dec(x_46); +lean_dec_ref(x_45); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_28, 0, x_300); +x_302 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_302, 0, x_8); +return x_302; +} +else +{ +lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; uint8_t x_309; +lean_inc(x_297); +lean_inc(x_296); +lean_inc_ref(x_295); +if (lean_is_exclusive(x_40)) { + lean_ctor_release(x_40, 0); + lean_ctor_release(x_40, 1); + lean_ctor_release(x_40, 2); + x_303 = x_40; +} else { + lean_dec_ref(x_40); x_303 = lean_box(0); } +x_304 = lean_ctor_get(x_37, 0); +x_305 = lean_ctor_get(x_37, 1); +x_306 = lean_ctor_get(x_37, 2); +x_307 = lean_nat_add(x_296, x_298); +lean_inc_ref(x_295); if (lean_is_scalar(x_303)) { - x_304 = lean_alloc_ctor(1, 1, 0); + x_308 = lean_alloc_ctor(0, 3, 0); } else { - x_304 = x_303; + x_308 = x_303; } -lean_ctor_set(x_304, 0, x_302); -return x_304; -} -} -} -} -} -} -} -} -else -{ -lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; uint8_t x_309; -x_305 = lean_ctor_get(x_20, 1); -lean_inc(x_305); -lean_dec(x_20); -x_306 = lean_ctor_get(x_21, 0); -x_307 = lean_ctor_get(x_21, 1); -x_308 = lean_ctor_get(x_21, 2); -x_309 = lean_nat_dec_lt(x_307, x_308); +lean_ctor_set(x_308, 0, x_295); +lean_ctor_set(x_308, 1, x_307); +lean_ctor_set(x_308, 2, x_297); +x_309 = lean_nat_dec_lt(x_305, x_306); if (x_309 == 0) { -lean_object* x_310; lean_object* x_311; +lean_object* x_310; +lean_dec(x_296); +lean_dec_ref(x_295); +lean_dec(x_46); +lean_dec_ref(x_45); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -38277,51 +39408,51 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_310 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_310, 0, x_21); -lean_ctor_set(x_310, 1, x_305); -lean_ctor_set(x_19, 1, x_310); -x_311 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_311, 0, x_8); -return x_311; +lean_dec_ref(x_2); +lean_ctor_set(x_28, 0, x_300); +lean_ctor_set(x_27, 0, x_308); +x_310 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_310, 0, x_8); +return x_310; } else { -lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; uint8_t x_319; -lean_inc(x_308); -lean_inc(x_307); -lean_inc_ref(x_306); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_312 = x_21; +lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; uint8_t x_317; +lean_inc(x_306); +lean_inc(x_305); +lean_inc_ref(x_304); +if (lean_is_exclusive(x_37)) { + lean_ctor_release(x_37, 0); + lean_ctor_release(x_37, 1); + lean_ctor_release(x_37, 2); + x_311 = x_37; } else { - lean_dec_ref(x_21); - x_312 = lean_box(0); + lean_dec_ref(x_37); + x_311 = lean_box(0); } -x_313 = lean_ctor_get(x_32, 0); -x_314 = lean_ctor_get(x_32, 1); -x_315 = lean_ctor_get(x_32, 2); -x_316 = lean_unsigned_to_nat(1u); -x_317 = lean_nat_add(x_307, x_316); -lean_inc_ref(x_306); -if (lean_is_scalar(x_312)) { - x_318 = lean_alloc_ctor(0, 3, 0); +x_312 = lean_ctor_get(x_34, 0); +x_313 = lean_ctor_get(x_34, 1); +x_314 = lean_ctor_get(x_34, 2); +x_315 = lean_nat_add(x_305, x_298); +lean_inc_ref(x_304); +if (lean_is_scalar(x_311)) { + x_316 = lean_alloc_ctor(0, 3, 0); } else { - x_318 = x_312; + x_316 = x_311; } -lean_ctor_set(x_318, 0, x_306); -lean_ctor_set(x_318, 1, x_317); -lean_ctor_set(x_318, 2, x_308); -x_319 = lean_nat_dec_lt(x_314, x_315); -if (x_319 == 0) +lean_ctor_set(x_316, 0, x_304); +lean_ctor_set(x_316, 1, x_315); +lean_ctor_set(x_316, 2, x_306); +x_317 = lean_nat_dec_lt(x_313, x_314); +if (x_317 == 0) { -lean_object* x_320; lean_object* x_321; -lean_dec(x_307); -lean_dec_ref(x_306); +lean_object* x_318; +lean_dec(x_305); +lean_dec_ref(x_304); +lean_dec(x_296); +lean_dec_ref(x_295); +lean_dec(x_46); +lean_dec_ref(x_45); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -38331,52 +39462,54 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_320 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_320, 0, x_318); -lean_ctor_set(x_320, 1, x_305); -lean_ctor_set(x_19, 1, x_320); -x_321 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_321, 0, x_8); -return x_321; +lean_dec_ref(x_2); +lean_ctor_set(x_28, 0, x_300); +lean_ctor_set(x_27, 0, x_308); +lean_ctor_set(x_26, 0, x_316); +x_318 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_318, 0, x_8); +return x_318; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; uint8_t x_328; -lean_inc(x_315); +lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; uint8_t x_325; lean_inc(x_314); -lean_inc_ref(x_313); -if (lean_is_exclusive(x_32)) { - lean_ctor_release(x_32, 0); - lean_ctor_release(x_32, 1); - lean_ctor_release(x_32, 2); - x_322 = x_32; +lean_inc(x_313); +lean_inc_ref(x_312); +if (lean_is_exclusive(x_34)) { + lean_ctor_release(x_34, 0); + lean_ctor_release(x_34, 1); + lean_ctor_release(x_34, 2); + x_319 = x_34; } else { - lean_dec_ref(x_32); - x_322 = lean_box(0); + lean_dec_ref(x_34); + x_319 = lean_box(0); } -x_323 = lean_ctor_get(x_29, 0); -x_324 = lean_ctor_get(x_29, 1); -x_325 = lean_ctor_get(x_29, 2); -x_326 = lean_nat_add(x_314, x_316); -lean_inc_ref(x_313); -if (lean_is_scalar(x_322)) { - x_327 = lean_alloc_ctor(0, 3, 0); +x_320 = lean_ctor_get(x_31, 0); +x_321 = lean_ctor_get(x_31, 1); +x_322 = lean_ctor_get(x_31, 2); +x_323 = lean_nat_add(x_313, x_298); +lean_inc_ref(x_312); +if (lean_is_scalar(x_319)) { + x_324 = lean_alloc_ctor(0, 3, 0); } else { - x_327 = x_322; + x_324 = x_319; } -lean_ctor_set(x_327, 0, x_313); -lean_ctor_set(x_327, 1, x_326); -lean_ctor_set(x_327, 2, x_315); -x_328 = lean_nat_dec_lt(x_324, x_325); -if (x_328 == 0) +lean_ctor_set(x_324, 0, x_312); +lean_ctor_set(x_324, 1, x_323); +lean_ctor_set(x_324, 2, x_314); +x_325 = lean_nat_dec_lt(x_321, x_322); +if (x_325 == 0) { -lean_object* x_329; lean_object* x_330; -lean_dec(x_314); -lean_dec_ref(x_313); -lean_dec(x_307); -lean_dec_ref(x_306); +lean_object* x_326; +lean_dec(x_313); +lean_dec_ref(x_312); +lean_dec(x_305); +lean_dec_ref(x_304); +lean_dec(x_296); +lean_dec_ref(x_295); +lean_dec(x_46); +lean_dec_ref(x_45); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -38386,274 +39519,230 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_329 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_329, 0, x_318); -lean_ctor_set(x_329, 1, x_305); -lean_ctor_set(x_19, 1, x_329); -lean_ctor_set(x_19, 0, x_327); -x_330 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_330, 0, x_8); -return x_330; +lean_dec_ref(x_2); +lean_ctor_set(x_28, 0, x_300); +lean_ctor_set(x_27, 0, x_308); +lean_ctor_set(x_26, 0, x_316); +lean_ctor_set(x_25, 0, x_324); +x_326 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_326, 0, x_8); +return x_326; } else { -lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; -lean_inc(x_325); -lean_inc(x_324); -lean_inc_ref(x_323); -if (lean_is_exclusive(x_29)) { - lean_ctor_release(x_29, 0); - lean_ctor_release(x_29, 1); - lean_ctor_release(x_29, 2); - x_331 = x_29; +lean_object* x_327; lean_object* x_328; lean_object* x_329; uint8_t x_330; uint8_t x_331; +lean_inc(x_322); +lean_inc(x_321); +lean_inc_ref(x_320); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + lean_ctor_release(x_31, 2); + x_327 = x_31; } else { - lean_dec_ref(x_29); - x_331 = lean_box(0); + lean_dec_ref(x_31); + x_327 = lean_box(0); } -x_332 = lean_ctor_get(x_26, 0); -x_333 = lean_ctor_get(x_26, 1); -x_334 = lean_ctor_get(x_26, 2); -x_335 = lean_nat_add(x_324, x_316); -lean_inc_ref(x_323); -if (lean_is_scalar(x_331)) { - x_336 = lean_alloc_ctor(0, 3, 0); -} else { - x_336 = x_331; -} -lean_ctor_set(x_336, 0, x_323); -lean_ctor_set(x_336, 1, x_335); -lean_ctor_set(x_336, 2, x_325); -x_337 = lean_nat_dec_lt(x_333, x_334); -if (x_337 == 0) +x_328 = lean_array_fget(x_312, x_313); +lean_dec(x_313); +lean_dec_ref(x_312); +x_329 = lean_ctor_get(x_328, 1); +x_330 = lean_ctor_get_uint8(x_328, sizeof(void*)*2); +x_331 = lean_nat_dec_eq(x_329, x_1); +if (x_331 == 0) { -lean_object* x_338; lean_object* x_339; -lean_dec(x_324); -lean_dec_ref(x_323); -lean_dec(x_314); -lean_dec_ref(x_313); -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_338 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_338, 0, x_318); -lean_ctor_set(x_338, 1, x_305); -lean_ctor_set(x_19, 1, x_338); -lean_ctor_set(x_19, 0, x_327); -lean_ctor_set(x_18, 0, x_336); -x_339 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_339, 0, x_8); -return x_339; -} -else -{ -lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; uint8_t x_346; -lean_inc(x_334); -lean_inc(x_333); -lean_inc_ref(x_332); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - lean_ctor_release(x_26, 1); - lean_ctor_release(x_26, 2); - x_340 = x_26; -} else { - lean_dec_ref(x_26); - x_340 = lean_box(0); -} -x_341 = lean_ctor_get(x_23, 0); -x_342 = lean_ctor_get(x_23, 1); -x_343 = lean_ctor_get(x_23, 2); -x_344 = lean_nat_add(x_333, x_316); -lean_inc_ref(x_332); -if (lean_is_scalar(x_340)) { - x_345 = lean_alloc_ctor(0, 3, 0); -} else { - x_345 = x_340; -} -lean_ctor_set(x_345, 0, x_332); -lean_ctor_set(x_345, 1, x_344); -lean_ctor_set(x_345, 2, x_334); -x_346 = lean_nat_dec_lt(x_342, x_343); -if (x_346 == 0) -{ -lean_object* x_347; lean_object* x_348; -lean_dec(x_333); -lean_dec_ref(x_332); -lean_dec(x_324); -lean_dec_ref(x_323); -lean_dec(x_314); -lean_dec_ref(x_313); -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_347 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_347, 0, x_318); -lean_ctor_set(x_347, 1, x_305); -lean_ctor_set(x_19, 1, x_347); -lean_ctor_set(x_19, 0, x_327); -lean_ctor_set(x_18, 0, x_336); -lean_ctor_set(x_17, 0, x_345); -x_348 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_348, 0, x_8); -return x_348; -} -else -{ -lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -lean_inc(x_343); -lean_inc(x_342); -lean_inc_ref(x_341); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - lean_ctor_release(x_23, 2); - x_349 = x_23; -} else { - lean_dec_ref(x_23); - x_349 = lean_box(0); -} -x_350 = lean_array_fget(x_306, x_307); -lean_dec(x_307); -lean_dec_ref(x_306); -x_351 = lean_array_fget(x_313, x_314); -lean_dec(x_314); -lean_dec_ref(x_313); -x_352 = lean_array_fget(x_323, x_324); -lean_dec(x_324); -lean_dec_ref(x_323); -x_353 = lean_array_fget(x_332, x_333); -lean_dec(x_333); -lean_dec_ref(x_332); -x_354 = lean_array_fget_borrowed(x_341, x_342); -x_355 = lean_box(x_2); -x_356 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_9); -lean_inc_ref(x_1); -lean_inc_ref(x_354); -x_357 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___boxed), 20, 11); -lean_closure_set(x_357, 0, x_350); -lean_closure_set(x_357, 1, x_354); -lean_closure_set(x_357, 2, x_1); -lean_closure_set(x_357, 3, x_9); -lean_closure_set(x_357, 4, x_355); -lean_closure_set(x_357, 5, x_356); -lean_closure_set(x_357, 6, x_4); -lean_closure_set(x_357, 7, x_5); -lean_closure_set(x_357, 8, x_352); -lean_closure_set(x_357, 9, x_6); -lean_closure_set(x_357, 10, x_316); -x_358 = lean_nat_sub(x_353, x_5); -lean_dec(x_353); +lean_object* x_332; lean_object* x_333; +lean_dec_ref(x_328); +lean_dec(x_327); +lean_dec_ref(x_324); +lean_dec(x_322); +lean_dec(x_321); +lean_dec_ref(x_320); +lean_dec_ref(x_316); +lean_dec_ref(x_308); +lean_dec(x_305); +lean_dec_ref(x_304); +lean_dec_ref(x_300); +lean_dec(x_296); +lean_dec_ref(x_295); +lean_dec(x_46); +lean_dec_ref(x_45); +lean_free_object(x_28); +lean_dec(x_43); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_8); +x_332 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; lean_inc(x_15); lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_359 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(x_351, x_358, x_6, x_357, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_359) == 0) +x_333 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_332, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_333) == 0) { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; -x_360 = lean_ctor_get(x_359, 0); -lean_inc(x_360); -if (lean_is_exclusive(x_359)) { - lean_ctor_release(x_359, 0); - x_361 = x_359; +lean_object* x_334; lean_object* x_335; +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + x_335 = x_333; } else { - lean_dec_ref(x_359); - x_361 = lean_box(0); + lean_dec_ref(x_333); + x_335 = lean_box(0); } -x_362 = lean_nat_add(x_342, x_316); -lean_dec(x_342); -if (lean_is_scalar(x_349)) { - x_363 = lean_alloc_ctor(0, 3, 0); -} else { - x_363 = x_349; -} -lean_ctor_set(x_363, 0, x_341); -lean_ctor_set(x_363, 1, x_362); -lean_ctor_set(x_363, 2, x_343); -x_364 = lean_array_push(x_305, x_360); -x_365 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_365, 0, x_318); -lean_ctor_set(x_365, 1, x_364); -lean_ctor_set(x_19, 1, x_365); -lean_ctor_set(x_19, 0, x_327); -lean_ctor_set(x_18, 0, x_336); -lean_ctor_set(x_17, 0, x_345); -lean_ctor_set(x_8, 0, x_363); -x_366 = lean_nat_add(x_9, x_316); -lean_dec(x_9); -x_367 = lean_nat_dec_lt(x_366, x_7); -if (x_367 == 0) +if (lean_obj_tag(x_334) == 0) { -lean_object* x_368; -lean_dec(x_366); +lean_object* x_336; lean_object* x_337; lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_361)) { - x_368 = lean_alloc_ctor(0, 1, 0); +lean_dec_ref(x_2); +x_336 = lean_ctor_get(x_334, 0); +lean_inc(x_336); +lean_dec_ref(x_334); +if (lean_is_scalar(x_335)) { + x_337 = lean_alloc_ctor(0, 1, 0); } else { - x_368 = x_361; + x_337 = x_335; } -lean_ctor_set(x_368, 0, x_8); -return x_368; +lean_ctor_set(x_337, 0, x_336); +return x_337; } else { -lean_dec(x_361); -x_9 = x_366; -goto _start; +lean_object* x_338; +lean_dec(x_335); +x_338 = lean_ctor_get(x_334, 0); +lean_inc(x_338); +lean_dec_ref(x_334); +x_17 = x_338; +x_18 = lean_box(0); +goto block_24; } } else { -lean_object* x_370; lean_object* x_371; lean_object* x_372; -lean_dec(x_349); -lean_dec_ref(x_345); -lean_dec(x_343); -lean_dec(x_342); -lean_dec_ref(x_341); -lean_dec_ref(x_336); -lean_dec_ref(x_327); -lean_dec_ref(x_318); +lean_object* x_339; lean_object* x_340; lean_object* x_341; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_339 = lean_ctor_get(x_333, 0); +lean_inc(x_339); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + x_340 = x_333; +} else { + lean_dec_ref(x_333); + x_340 = lean_box(0); +} +if (lean_is_scalar(x_340)) { + x_341 = lean_alloc_ctor(1, 1, 0); +} else { + x_341 = x_340; +} +lean_ctor_set(x_341, 0, x_339); +return x_341; +} +} +else +{ +lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; +x_342 = lean_array_fget(x_45, x_46); +lean_dec(x_46); +lean_dec_ref(x_45); +x_343 = lean_array_fget(x_295, x_296); +lean_dec(x_296); +lean_dec_ref(x_295); +x_344 = lean_array_fget(x_304, x_305); lean_dec(x_305); -lean_free_object(x_19); -lean_free_object(x_18); -lean_free_object(x_17); +lean_dec_ref(x_304); +x_345 = lean_array_fget_borrowed(x_320, x_321); +x_346 = lean_box(x_3); +x_347 = lean_box(x_4); +x_348 = lean_box(x_330); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_9); +lean_inc_ref(x_2); +lean_inc_ref(x_345); +x_349 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_349, 0, x_344); +lean_closure_set(x_349, 1, x_342); +lean_closure_set(x_349, 2, x_345); +lean_closure_set(x_349, 3, x_2); +lean_closure_set(x_349, 4, x_9); +lean_closure_set(x_349, 5, x_346); +lean_closure_set(x_349, 6, x_347); +lean_closure_set(x_349, 7, x_5); +lean_closure_set(x_349, 8, x_6); +lean_closure_set(x_349, 9, x_348); +lean_closure_set(x_349, 10, x_298); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_350 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_343, x_328, x_349, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_350) == 0) +{ +lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; +x_351 = lean_ctor_get(x_350, 0); +lean_inc(x_351); +lean_dec_ref(x_350); +x_352 = lean_nat_add(x_321, x_298); +lean_dec(x_321); +if (lean_is_scalar(x_327)) { + x_353 = lean_alloc_ctor(0, 3, 0); +} else { + x_353 = x_327; +} +lean_ctor_set(x_353, 0, x_320); +lean_ctor_set(x_353, 1, x_352); +lean_ctor_set(x_353, 2, x_322); +x_354 = lean_array_push(x_43, x_351); +lean_ctor_set(x_28, 1, x_354); +lean_ctor_set(x_28, 0, x_300); +lean_ctor_set(x_27, 0, x_308); +lean_ctor_set(x_26, 0, x_316); +lean_ctor_set(x_25, 0, x_324); +lean_ctor_set(x_8, 0, x_353); +x_17 = x_8; +x_18 = lean_box(0); +goto block_24; +} +else +{ +lean_object* x_355; lean_object* x_356; lean_object* x_357; +lean_dec(x_327); +lean_dec_ref(x_324); +lean_dec(x_322); +lean_dec(x_321); +lean_dec_ref(x_320); +lean_dec_ref(x_316); +lean_dec_ref(x_308); +lean_dec_ref(x_300); +lean_free_object(x_28); +lean_dec(x_43); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_25); lean_free_object(x_8); lean_dec(x_15); lean_dec_ref(x_14); @@ -38664,24 +39753,24 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_370 = lean_ctor_get(x_359, 0); -lean_inc(x_370); -if (lean_is_exclusive(x_359)) { - lean_ctor_release(x_359, 0); - x_371 = x_359; +lean_dec_ref(x_2); +x_355 = lean_ctor_get(x_350, 0); +lean_inc(x_355); +if (lean_is_exclusive(x_350)) { + lean_ctor_release(x_350, 0); + x_356 = x_350; } else { - lean_dec_ref(x_359); - x_371 = lean_box(0); + lean_dec_ref(x_350); + x_356 = lean_box(0); } -if (lean_is_scalar(x_371)) { - x_372 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_356)) { + x_357 = lean_alloc_ctor(1, 1, 0); } else { - x_372 = x_371; + x_357 = x_356; +} +lean_ctor_set(x_357, 0, x_355); +return x_357; } -lean_ctor_set(x_372, 0, x_370); -return x_372; } } } @@ -38692,27 +39781,17 @@ return x_372; } else { -lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; uint8_t x_379; -x_373 = lean_ctor_get(x_19, 0); -lean_inc(x_373); -lean_dec(x_19); -x_374 = lean_ctor_get(x_20, 1); -lean_inc(x_374); -if (lean_is_exclusive(x_20)) { - lean_ctor_release(x_20, 0); - lean_ctor_release(x_20, 1); - x_375 = x_20; -} else { - lean_dec_ref(x_20); - x_375 = lean_box(0); -} -x_376 = lean_ctor_get(x_21, 0); -x_377 = lean_ctor_get(x_21, 1); -x_378 = lean_ctor_get(x_21, 2); -x_379 = lean_nat_dec_lt(x_377, x_378); -if (x_379 == 0) +lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; uint8_t x_362; +x_358 = lean_ctor_get(x_28, 1); +lean_inc(x_358); +lean_dec(x_28); +x_359 = lean_ctor_get(x_29, 0); +x_360 = lean_ctor_get(x_29, 1); +x_361 = lean_ctor_get(x_29, 2); +x_362 = lean_nat_dec_lt(x_360, x_361); +if (x_362 == 0) { -lean_object* x_380; lean_object* x_381; lean_object* x_382; +lean_object* x_363; lean_object* x_364; lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -38722,58 +39801,161 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); +lean_dec_ref(x_2); +x_363 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_363, 0, x_29); +lean_ctor_set(x_363, 1, x_358); +lean_ctor_set(x_27, 1, x_363); +x_364 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_364, 0, x_8); +return x_364; +} +else +{ +lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; uint8_t x_372; +lean_inc(x_361); +lean_inc(x_360); +lean_inc_ref(x_359); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_365 = x_29; +} else { + lean_dec_ref(x_29); + x_365 = lean_box(0); +} +x_366 = lean_ctor_get(x_40, 0); +x_367 = lean_ctor_get(x_40, 1); +x_368 = lean_ctor_get(x_40, 2); +x_369 = lean_unsigned_to_nat(1u); +x_370 = lean_nat_add(x_360, x_369); +lean_inc_ref(x_359); +if (lean_is_scalar(x_365)) { + x_371 = lean_alloc_ctor(0, 3, 0); +} else { + x_371 = x_365; +} +lean_ctor_set(x_371, 0, x_359); +lean_ctor_set(x_371, 1, x_370); +lean_ctor_set(x_371, 2, x_361); +x_372 = lean_nat_dec_lt(x_367, x_368); +if (x_372 == 0) +{ +lean_object* x_373; lean_object* x_374; +lean_dec(x_360); +lean_dec_ref(x_359); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_373 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_373, 0, x_371); +lean_ctor_set(x_373, 1, x_358); +lean_ctor_set(x_27, 1, x_373); +x_374 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_374, 0, x_8); +return x_374; +} +else +{ +lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; uint8_t x_381; +lean_inc(x_368); +lean_inc(x_367); +lean_inc_ref(x_366); +if (lean_is_exclusive(x_40)) { + lean_ctor_release(x_40, 0); + lean_ctor_release(x_40, 1); + lean_ctor_release(x_40, 2); + x_375 = x_40; +} else { + lean_dec_ref(x_40); + x_375 = lean_box(0); +} +x_376 = lean_ctor_get(x_37, 0); +x_377 = lean_ctor_get(x_37, 1); +x_378 = lean_ctor_get(x_37, 2); +x_379 = lean_nat_add(x_367, x_369); +lean_inc_ref(x_366); if (lean_is_scalar(x_375)) { - x_380 = lean_alloc_ctor(0, 2, 0); + x_380 = lean_alloc_ctor(0, 3, 0); } else { x_380 = x_375; } -lean_ctor_set(x_380, 0, x_21); -lean_ctor_set(x_380, 1, x_374); -x_381 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_381, 0, x_373); -lean_ctor_set(x_381, 1, x_380); -lean_ctor_set(x_18, 1, x_381); -x_382 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_382, 0, x_8); -return x_382; +lean_ctor_set(x_380, 0, x_366); +lean_ctor_set(x_380, 1, x_379); +lean_ctor_set(x_380, 2, x_368); +x_381 = lean_nat_dec_lt(x_377, x_378); +if (x_381 == 0) +{ +lean_object* x_382; lean_object* x_383; +lean_dec(x_367); +lean_dec_ref(x_366); +lean_dec(x_360); +lean_dec_ref(x_359); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_371); +lean_ctor_set(x_382, 1, x_358); +lean_ctor_set(x_27, 1, x_382); +lean_ctor_set(x_27, 0, x_380); +x_383 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_383, 0, x_8); +return x_383; } else { -lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; uint8_t x_390; +lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; uint8_t x_390; lean_inc(x_378); lean_inc(x_377); lean_inc_ref(x_376); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_383 = x_21; +if (lean_is_exclusive(x_37)) { + lean_ctor_release(x_37, 0); + lean_ctor_release(x_37, 1); + lean_ctor_release(x_37, 2); + x_384 = x_37; } else { - lean_dec_ref(x_21); - x_383 = lean_box(0); + lean_dec_ref(x_37); + x_384 = lean_box(0); } -x_384 = lean_ctor_get(x_373, 0); -x_385 = lean_ctor_get(x_373, 1); -x_386 = lean_ctor_get(x_373, 2); -x_387 = lean_unsigned_to_nat(1u); -x_388 = lean_nat_add(x_377, x_387); +x_385 = lean_ctor_get(x_34, 0); +x_386 = lean_ctor_get(x_34, 1); +x_387 = lean_ctor_get(x_34, 2); +x_388 = lean_nat_add(x_377, x_369); lean_inc_ref(x_376); -if (lean_is_scalar(x_383)) { +if (lean_is_scalar(x_384)) { x_389 = lean_alloc_ctor(0, 3, 0); } else { - x_389 = x_383; + x_389 = x_384; } lean_ctor_set(x_389, 0, x_376); lean_ctor_set(x_389, 1, x_388); lean_ctor_set(x_389, 2, x_378); -x_390 = lean_nat_dec_lt(x_385, x_386); +x_390 = lean_nat_dec_lt(x_386, x_387); if (x_390 == 0) { -lean_object* x_391; lean_object* x_392; lean_object* x_393; +lean_object* x_391; lean_object* x_392; lean_dec(x_377); lean_dec_ref(x_376); +lean_dec(x_367); +lean_dec_ref(x_366); +lean_dec(x_360); +lean_dec_ref(x_359); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -38783,59 +39965,57 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_375)) { - x_391 = lean_alloc_ctor(0, 2, 0); -} else { - x_391 = x_375; -} -lean_ctor_set(x_391, 0, x_389); -lean_ctor_set(x_391, 1, x_374); -x_392 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_392, 0, x_373); -lean_ctor_set(x_392, 1, x_391); -lean_ctor_set(x_18, 1, x_392); -x_393 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_393, 0, x_8); -return x_393; +lean_dec_ref(x_2); +x_391 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_391, 0, x_371); +lean_ctor_set(x_391, 1, x_358); +lean_ctor_set(x_27, 1, x_391); +lean_ctor_set(x_27, 0, x_380); +lean_ctor_set(x_26, 0, x_389); +x_392 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_392, 0, x_8); +return x_392; } else { -lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; uint8_t x_400; +lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; uint8_t x_399; +lean_inc(x_387); lean_inc(x_386); -lean_inc(x_385); -lean_inc_ref(x_384); -if (lean_is_exclusive(x_373)) { - lean_ctor_release(x_373, 0); - lean_ctor_release(x_373, 1); - lean_ctor_release(x_373, 2); - x_394 = x_373; +lean_inc_ref(x_385); +if (lean_is_exclusive(x_34)) { + lean_ctor_release(x_34, 0); + lean_ctor_release(x_34, 1); + lean_ctor_release(x_34, 2); + x_393 = x_34; } else { - lean_dec_ref(x_373); - x_394 = lean_box(0); + lean_dec_ref(x_34); + x_393 = lean_box(0); } -x_395 = lean_ctor_get(x_29, 0); -x_396 = lean_ctor_get(x_29, 1); -x_397 = lean_ctor_get(x_29, 2); -x_398 = lean_nat_add(x_385, x_387); -lean_inc_ref(x_384); -if (lean_is_scalar(x_394)) { - x_399 = lean_alloc_ctor(0, 3, 0); +x_394 = lean_ctor_get(x_31, 0); +x_395 = lean_ctor_get(x_31, 1); +x_396 = lean_ctor_get(x_31, 2); +x_397 = lean_nat_add(x_386, x_369); +lean_inc_ref(x_385); +if (lean_is_scalar(x_393)) { + x_398 = lean_alloc_ctor(0, 3, 0); } else { - x_399 = x_394; + x_398 = x_393; } -lean_ctor_set(x_399, 0, x_384); -lean_ctor_set(x_399, 1, x_398); -lean_ctor_set(x_399, 2, x_386); -x_400 = lean_nat_dec_lt(x_396, x_397); -if (x_400 == 0) +lean_ctor_set(x_398, 0, x_385); +lean_ctor_set(x_398, 1, x_397); +lean_ctor_set(x_398, 2, x_387); +x_399 = lean_nat_dec_lt(x_395, x_396); +if (x_399 == 0) { -lean_object* x_401; lean_object* x_402; lean_object* x_403; -lean_dec(x_385); -lean_dec_ref(x_384); +lean_object* x_400; lean_object* x_401; +lean_dec(x_386); +lean_dec_ref(x_385); lean_dec(x_377); lean_dec_ref(x_376); +lean_dec(x_367); +lean_dec_ref(x_366); +lean_dec(x_360); +lean_dec_ref(x_359); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -38845,298 +40025,233 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_375)) { - x_401 = lean_alloc_ctor(0, 2, 0); -} else { - x_401 = x_375; -} -lean_ctor_set(x_401, 0, x_389); -lean_ctor_set(x_401, 1, x_374); -x_402 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_402, 0, x_399); -lean_ctor_set(x_402, 1, x_401); -lean_ctor_set(x_18, 1, x_402); -x_403 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_403, 0, x_8); -return x_403; +lean_dec_ref(x_2); +x_400 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_400, 0, x_371); +lean_ctor_set(x_400, 1, x_358); +lean_ctor_set(x_27, 1, x_400); +lean_ctor_set(x_27, 0, x_380); +lean_ctor_set(x_26, 0, x_389); +lean_ctor_set(x_25, 0, x_398); +x_401 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_401, 0, x_8); +return x_401; } else { -lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; uint8_t x_410; -lean_inc(x_397); +lean_object* x_402; lean_object* x_403; lean_object* x_404; uint8_t x_405; uint8_t x_406; lean_inc(x_396); -lean_inc_ref(x_395); -if (lean_is_exclusive(x_29)) { - lean_ctor_release(x_29, 0); - lean_ctor_release(x_29, 1); - lean_ctor_release(x_29, 2); - x_404 = x_29; +lean_inc(x_395); +lean_inc_ref(x_394); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + lean_ctor_release(x_31, 2); + x_402 = x_31; } else { - lean_dec_ref(x_29); - x_404 = lean_box(0); + lean_dec_ref(x_31); + x_402 = lean_box(0); } -x_405 = lean_ctor_get(x_26, 0); -x_406 = lean_ctor_get(x_26, 1); -x_407 = lean_ctor_get(x_26, 2); -x_408 = lean_nat_add(x_396, x_387); -lean_inc_ref(x_395); -if (lean_is_scalar(x_404)) { - x_409 = lean_alloc_ctor(0, 3, 0); -} else { - x_409 = x_404; -} -lean_ctor_set(x_409, 0, x_395); -lean_ctor_set(x_409, 1, x_408); -lean_ctor_set(x_409, 2, x_397); -x_410 = lean_nat_dec_lt(x_406, x_407); -if (x_410 == 0) +x_403 = lean_array_fget(x_385, x_386); +lean_dec(x_386); +lean_dec_ref(x_385); +x_404 = lean_ctor_get(x_403, 1); +x_405 = lean_ctor_get_uint8(x_403, sizeof(void*)*2); +x_406 = lean_nat_dec_eq(x_404, x_1); +if (x_406 == 0) { -lean_object* x_411; lean_object* x_412; lean_object* x_413; +lean_object* x_407; lean_object* x_408; +lean_dec_ref(x_403); +lean_dec(x_402); +lean_dec_ref(x_398); lean_dec(x_396); -lean_dec_ref(x_395); -lean_dec(x_385); -lean_dec_ref(x_384); +lean_dec(x_395); +lean_dec_ref(x_394); +lean_dec_ref(x_389); +lean_dec_ref(x_380); lean_dec(x_377); lean_dec_ref(x_376); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_375)) { - x_411 = lean_alloc_ctor(0, 2, 0); -} else { - x_411 = x_375; -} -lean_ctor_set(x_411, 0, x_389); -lean_ctor_set(x_411, 1, x_374); -x_412 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_412, 0, x_399); -lean_ctor_set(x_412, 1, x_411); -lean_ctor_set(x_18, 1, x_412); -lean_ctor_set(x_18, 0, x_409); -x_413 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_413, 0, x_8); -return x_413; -} -else -{ -lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; uint8_t x_420; -lean_inc(x_407); -lean_inc(x_406); -lean_inc_ref(x_405); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - lean_ctor_release(x_26, 1); - lean_ctor_release(x_26, 2); - x_414 = x_26; -} else { - lean_dec_ref(x_26); - x_414 = lean_box(0); -} -x_415 = lean_ctor_get(x_23, 0); -x_416 = lean_ctor_get(x_23, 1); -x_417 = lean_ctor_get(x_23, 2); -x_418 = lean_nat_add(x_406, x_387); -lean_inc_ref(x_405); -if (lean_is_scalar(x_414)) { - x_419 = lean_alloc_ctor(0, 3, 0); -} else { - x_419 = x_414; -} -lean_ctor_set(x_419, 0, x_405); -lean_ctor_set(x_419, 1, x_418); -lean_ctor_set(x_419, 2, x_407); -x_420 = lean_nat_dec_lt(x_416, x_417); -if (x_420 == 0) -{ -lean_object* x_421; lean_object* x_422; lean_object* x_423; -lean_dec(x_406); -lean_dec_ref(x_405); -lean_dec(x_396); -lean_dec_ref(x_395); -lean_dec(x_385); -lean_dec_ref(x_384); -lean_dec(x_377); -lean_dec_ref(x_376); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_375)) { - x_421 = lean_alloc_ctor(0, 2, 0); -} else { - x_421 = x_375; -} -lean_ctor_set(x_421, 0, x_389); -lean_ctor_set(x_421, 1, x_374); -x_422 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_422, 0, x_399); -lean_ctor_set(x_422, 1, x_421); -lean_ctor_set(x_18, 1, x_422); -lean_ctor_set(x_18, 0, x_409); -lean_ctor_set(x_17, 0, x_419); -x_423 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_423, 0, x_8); -return x_423; -} -else -{ -lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; -lean_inc(x_417); -lean_inc(x_416); -lean_inc_ref(x_415); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - lean_ctor_release(x_23, 2); - x_424 = x_23; -} else { - lean_dec_ref(x_23); - x_424 = lean_box(0); -} -x_425 = lean_array_fget(x_376, x_377); -lean_dec(x_377); -lean_dec_ref(x_376); -x_426 = lean_array_fget(x_384, x_385); -lean_dec(x_385); -lean_dec_ref(x_384); -x_427 = lean_array_fget(x_395, x_396); -lean_dec(x_396); -lean_dec_ref(x_395); -x_428 = lean_array_fget(x_405, x_406); -lean_dec(x_406); -lean_dec_ref(x_405); -x_429 = lean_array_fget_borrowed(x_415, x_416); -x_430 = lean_box(x_2); -x_431 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_9); -lean_inc_ref(x_1); -lean_inc_ref(x_429); -x_432 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___boxed), 20, 11); -lean_closure_set(x_432, 0, x_425); -lean_closure_set(x_432, 1, x_429); -lean_closure_set(x_432, 2, x_1); -lean_closure_set(x_432, 3, x_9); -lean_closure_set(x_432, 4, x_430); -lean_closure_set(x_432, 5, x_431); -lean_closure_set(x_432, 6, x_4); -lean_closure_set(x_432, 7, x_5); -lean_closure_set(x_432, 8, x_427); -lean_closure_set(x_432, 9, x_6); -lean_closure_set(x_432, 10, x_387); -x_433 = lean_nat_sub(x_428, x_5); -lean_dec(x_428); +lean_dec_ref(x_371); +lean_dec(x_367); +lean_dec_ref(x_366); +lean_dec(x_360); +lean_dec_ref(x_359); +lean_dec(x_358); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_8); +x_407 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; lean_inc(x_15); lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_434 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(x_426, x_433, x_6, x_432, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_434) == 0) +x_408 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_407, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_408) == 0) { -lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; uint8_t x_443; -x_435 = lean_ctor_get(x_434, 0); -lean_inc(x_435); -if (lean_is_exclusive(x_434)) { - lean_ctor_release(x_434, 0); - x_436 = x_434; +lean_object* x_409; lean_object* x_410; +x_409 = lean_ctor_get(x_408, 0); +lean_inc(x_409); +if (lean_is_exclusive(x_408)) { + lean_ctor_release(x_408, 0); + x_410 = x_408; } else { - lean_dec_ref(x_434); - x_436 = lean_box(0); + lean_dec_ref(x_408); + x_410 = lean_box(0); } -x_437 = lean_nat_add(x_416, x_387); -lean_dec(x_416); -if (lean_is_scalar(x_424)) { - x_438 = lean_alloc_ctor(0, 3, 0); -} else { - x_438 = x_424; -} -lean_ctor_set(x_438, 0, x_415); -lean_ctor_set(x_438, 1, x_437); -lean_ctor_set(x_438, 2, x_417); -x_439 = lean_array_push(x_374, x_435); -if (lean_is_scalar(x_375)) { - x_440 = lean_alloc_ctor(0, 2, 0); -} else { - x_440 = x_375; -} -lean_ctor_set(x_440, 0, x_389); -lean_ctor_set(x_440, 1, x_439); -x_441 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_441, 0, x_399); -lean_ctor_set(x_441, 1, x_440); -lean_ctor_set(x_18, 1, x_441); -lean_ctor_set(x_18, 0, x_409); -lean_ctor_set(x_17, 0, x_419); -lean_ctor_set(x_8, 0, x_438); -x_442 = lean_nat_add(x_9, x_387); -lean_dec(x_9); -x_443 = lean_nat_dec_lt(x_442, x_7); -if (x_443 == 0) +if (lean_obj_tag(x_409) == 0) { -lean_object* x_444; -lean_dec(x_442); +lean_object* x_411; lean_object* x_412; lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_436)) { - x_444 = lean_alloc_ctor(0, 1, 0); -} else { - x_444 = x_436; -} -lean_ctor_set(x_444, 0, x_8); -return x_444; -} -else -{ -lean_dec(x_436); -x_9 = x_442; -goto _start; -} -} -else -{ -lean_object* x_446; lean_object* x_447; lean_object* x_448; -lean_dec(x_424); -lean_dec_ref(x_419); -lean_dec(x_417); -lean_dec(x_416); -lean_dec_ref(x_415); +lean_dec_ref(x_2); +x_411 = lean_ctor_get(x_409, 0); +lean_inc(x_411); lean_dec_ref(x_409); -lean_dec_ref(x_399); +if (lean_is_scalar(x_410)) { + x_412 = lean_alloc_ctor(0, 1, 0); +} else { + x_412 = x_410; +} +lean_ctor_set(x_412, 0, x_411); +return x_412; +} +else +{ +lean_object* x_413; +lean_dec(x_410); +x_413 = lean_ctor_get(x_409, 0); +lean_inc(x_413); +lean_dec_ref(x_409); +x_17 = x_413; +x_18 = lean_box(0); +goto block_24; +} +} +else +{ +lean_object* x_414; lean_object* x_415; lean_object* x_416; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_414 = lean_ctor_get(x_408, 0); +lean_inc(x_414); +if (lean_is_exclusive(x_408)) { + lean_ctor_release(x_408, 0); + x_415 = x_408; +} else { + lean_dec_ref(x_408); + x_415 = lean_box(0); +} +if (lean_is_scalar(x_415)) { + x_416 = lean_alloc_ctor(1, 1, 0); +} else { + x_416 = x_415; +} +lean_ctor_set(x_416, 0, x_414); +return x_416; +} +} +else +{ +lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; +x_417 = lean_array_fget(x_359, x_360); +lean_dec(x_360); +lean_dec_ref(x_359); +x_418 = lean_array_fget(x_366, x_367); +lean_dec(x_367); +lean_dec_ref(x_366); +x_419 = lean_array_fget(x_376, x_377); +lean_dec(x_377); +lean_dec_ref(x_376); +x_420 = lean_array_fget_borrowed(x_394, x_395); +x_421 = lean_box(x_3); +x_422 = lean_box(x_4); +x_423 = lean_box(x_405); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_9); +lean_inc_ref(x_2); +lean_inc_ref(x_420); +x_424 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_424, 0, x_419); +lean_closure_set(x_424, 1, x_417); +lean_closure_set(x_424, 2, x_420); +lean_closure_set(x_424, 3, x_2); +lean_closure_set(x_424, 4, x_9); +lean_closure_set(x_424, 5, x_421); +lean_closure_set(x_424, 6, x_422); +lean_closure_set(x_424, 7, x_5); +lean_closure_set(x_424, 8, x_6); +lean_closure_set(x_424, 9, x_423); +lean_closure_set(x_424, 10, x_369); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_425 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_418, x_403, x_424, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_425) == 0) +{ +lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; +x_426 = lean_ctor_get(x_425, 0); +lean_inc(x_426); +lean_dec_ref(x_425); +x_427 = lean_nat_add(x_395, x_369); +lean_dec(x_395); +if (lean_is_scalar(x_402)) { + x_428 = lean_alloc_ctor(0, 3, 0); +} else { + x_428 = x_402; +} +lean_ctor_set(x_428, 0, x_394); +lean_ctor_set(x_428, 1, x_427); +lean_ctor_set(x_428, 2, x_396); +x_429 = lean_array_push(x_358, x_426); +x_430 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_430, 0, x_371); +lean_ctor_set(x_430, 1, x_429); +lean_ctor_set(x_27, 1, x_430); +lean_ctor_set(x_27, 0, x_380); +lean_ctor_set(x_26, 0, x_389); +lean_ctor_set(x_25, 0, x_398); +lean_ctor_set(x_8, 0, x_428); +x_17 = x_8; +x_18 = lean_box(0); +goto block_24; +} +else +{ +lean_object* x_431; lean_object* x_432; lean_object* x_433; +lean_dec(x_402); +lean_dec_ref(x_398); +lean_dec(x_396); +lean_dec(x_395); +lean_dec_ref(x_394); lean_dec_ref(x_389); -lean_dec(x_375); -lean_dec(x_374); -lean_free_object(x_18); -lean_free_object(x_17); +lean_dec_ref(x_380); +lean_dec_ref(x_371); +lean_dec(x_358); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_25); lean_free_object(x_8); lean_dec(x_15); lean_dec_ref(x_14); @@ -39147,133 +40262,176 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_446 = lean_ctor_get(x_434, 0); +lean_dec_ref(x_2); +x_431 = lean_ctor_get(x_425, 0); +lean_inc(x_431); +if (lean_is_exclusive(x_425)) { + lean_ctor_release(x_425, 0); + x_432 = x_425; +} else { + lean_dec_ref(x_425); + x_432 = lean_box(0); +} +if (lean_is_scalar(x_432)) { + x_433 = lean_alloc_ctor(1, 1, 0); +} else { + x_433 = x_432; +} +lean_ctor_set(x_433, 0, x_431); +return x_433; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; uint8_t x_440; +x_434 = lean_ctor_get(x_27, 0); +lean_inc(x_434); +lean_dec(x_27); +x_435 = lean_ctor_get(x_28, 1); +lean_inc(x_435); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_436 = x_28; +} else { + lean_dec_ref(x_28); + x_436 = lean_box(0); +} +x_437 = lean_ctor_get(x_29, 0); +x_438 = lean_ctor_get(x_29, 1); +x_439 = lean_ctor_get(x_29, 2); +x_440 = lean_nat_dec_lt(x_438, x_439); +if (x_440 == 0) +{ +lean_object* x_441; lean_object* x_442; lean_object* x_443; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_436)) { + x_441 = lean_alloc_ctor(0, 2, 0); +} else { + x_441 = x_436; +} +lean_ctor_set(x_441, 0, x_29); +lean_ctor_set(x_441, 1, x_435); +x_442 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_442, 0, x_434); +lean_ctor_set(x_442, 1, x_441); +lean_ctor_set(x_26, 1, x_442); +x_443 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_443, 0, x_8); +return x_443; +} +else +{ +lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; uint8_t x_451; +lean_inc(x_439); +lean_inc(x_438); +lean_inc_ref(x_437); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_444 = x_29; +} else { + lean_dec_ref(x_29); + x_444 = lean_box(0); +} +x_445 = lean_ctor_get(x_434, 0); +x_446 = lean_ctor_get(x_434, 1); +x_447 = lean_ctor_get(x_434, 2); +x_448 = lean_unsigned_to_nat(1u); +x_449 = lean_nat_add(x_438, x_448); +lean_inc_ref(x_437); +if (lean_is_scalar(x_444)) { + x_450 = lean_alloc_ctor(0, 3, 0); +} else { + x_450 = x_444; +} +lean_ctor_set(x_450, 0, x_437); +lean_ctor_set(x_450, 1, x_449); +lean_ctor_set(x_450, 2, x_439); +x_451 = lean_nat_dec_lt(x_446, x_447); +if (x_451 == 0) +{ +lean_object* x_452; lean_object* x_453; lean_object* x_454; +lean_dec(x_438); +lean_dec_ref(x_437); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_436)) { + x_452 = lean_alloc_ctor(0, 2, 0); +} else { + x_452 = x_436; +} +lean_ctor_set(x_452, 0, x_450); +lean_ctor_set(x_452, 1, x_435); +x_453 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_453, 0, x_434); +lean_ctor_set(x_453, 1, x_452); +lean_ctor_set(x_26, 1, x_453); +x_454 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_454, 0, x_8); +return x_454; +} +else +{ +lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; uint8_t x_461; +lean_inc(x_447); lean_inc(x_446); +lean_inc_ref(x_445); if (lean_is_exclusive(x_434)) { lean_ctor_release(x_434, 0); - x_447 = x_434; + lean_ctor_release(x_434, 1); + lean_ctor_release(x_434, 2); + x_455 = x_434; } else { lean_dec_ref(x_434); - x_447 = lean_box(0); + x_455 = lean_box(0); } -if (lean_is_scalar(x_447)) { - x_448 = lean_alloc_ctor(1, 1, 0); +x_456 = lean_ctor_get(x_37, 0); +x_457 = lean_ctor_get(x_37, 1); +x_458 = lean_ctor_get(x_37, 2); +x_459 = lean_nat_add(x_446, x_448); +lean_inc_ref(x_445); +if (lean_is_scalar(x_455)) { + x_460 = lean_alloc_ctor(0, 3, 0); } else { - x_448 = x_447; + x_460 = x_455; } -lean_ctor_set(x_448, 0, x_446); -return x_448; -} -} -} -} -} -} -} -} -else -{ -lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; uint8_t x_457; -x_449 = lean_ctor_get(x_18, 0); -lean_inc(x_449); -lean_dec(x_18); -x_450 = lean_ctor_get(x_19, 0); -lean_inc(x_450); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_451 = x_19; -} else { - lean_dec_ref(x_19); - x_451 = lean_box(0); -} -x_452 = lean_ctor_get(x_20, 1); -lean_inc(x_452); -if (lean_is_exclusive(x_20)) { - lean_ctor_release(x_20, 0); - lean_ctor_release(x_20, 1); - x_453 = x_20; -} else { - lean_dec_ref(x_20); - x_453 = lean_box(0); -} -x_454 = lean_ctor_get(x_21, 0); -x_455 = lean_ctor_get(x_21, 1); -x_456 = lean_ctor_get(x_21, 2); -x_457 = lean_nat_dec_lt(x_455, x_456); -if (x_457 == 0) -{ -lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_453)) { - x_458 = lean_alloc_ctor(0, 2, 0); -} else { - x_458 = x_453; -} -lean_ctor_set(x_458, 0, x_21); -lean_ctor_set(x_458, 1, x_452); -if (lean_is_scalar(x_451)) { - x_459 = lean_alloc_ctor(0, 2, 0); -} else { - x_459 = x_451; -} -lean_ctor_set(x_459, 0, x_450); -lean_ctor_set(x_459, 1, x_458); -x_460 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_460, 0, x_449); +lean_ctor_set(x_460, 0, x_445); lean_ctor_set(x_460, 1, x_459); -lean_ctor_set(x_17, 1, x_460); -x_461 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_461, 0, x_8); -return x_461; -} -else +lean_ctor_set(x_460, 2, x_447); +x_461 = lean_nat_dec_lt(x_457, x_458); +if (x_461 == 0) { -lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; uint8_t x_469; -lean_inc(x_456); -lean_inc(x_455); -lean_inc_ref(x_454); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_462 = x_21; -} else { - lean_dec_ref(x_21); - x_462 = lean_box(0); -} -x_463 = lean_ctor_get(x_450, 0); -x_464 = lean_ctor_get(x_450, 1); -x_465 = lean_ctor_get(x_450, 2); -x_466 = lean_unsigned_to_nat(1u); -x_467 = lean_nat_add(x_455, x_466); -lean_inc_ref(x_454); -if (lean_is_scalar(x_462)) { - x_468 = lean_alloc_ctor(0, 3, 0); -} else { - x_468 = x_462; -} -lean_ctor_set(x_468, 0, x_454); -lean_ctor_set(x_468, 1, x_467); -lean_ctor_set(x_468, 2, x_456); -x_469 = lean_nat_dec_lt(x_464, x_465); -if (x_469 == 0) -{ -lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; -lean_dec(x_455); -lean_dec_ref(x_454); +lean_object* x_462; lean_object* x_463; lean_object* x_464; +lean_dec(x_446); +lean_dec_ref(x_445); +lean_dec(x_438); +lean_dec_ref(x_437); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -39283,66 +40441,60 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_453)) { - x_470 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_436)) { + x_462 = lean_alloc_ctor(0, 2, 0); } else { - x_470 = x_453; + x_462 = x_436; } -lean_ctor_set(x_470, 0, x_468); -lean_ctor_set(x_470, 1, x_452); -if (lean_is_scalar(x_451)) { - x_471 = lean_alloc_ctor(0, 2, 0); -} else { - x_471 = x_451; -} -lean_ctor_set(x_471, 0, x_450); -lean_ctor_set(x_471, 1, x_470); -x_472 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_472, 0, x_449); -lean_ctor_set(x_472, 1, x_471); -lean_ctor_set(x_17, 1, x_472); -x_473 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_473, 0, x_8); -return x_473; +lean_ctor_set(x_462, 0, x_450); +lean_ctor_set(x_462, 1, x_435); +x_463 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_463, 0, x_460); +lean_ctor_set(x_463, 1, x_462); +lean_ctor_set(x_26, 1, x_463); +x_464 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_464, 0, x_8); +return x_464; } else { -lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; uint8_t x_480; -lean_inc(x_465); -lean_inc(x_464); -lean_inc_ref(x_463); -if (lean_is_exclusive(x_450)) { - lean_ctor_release(x_450, 0); - lean_ctor_release(x_450, 1); - lean_ctor_release(x_450, 2); - x_474 = x_450; +lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; uint8_t x_471; +lean_inc(x_458); +lean_inc(x_457); +lean_inc_ref(x_456); +if (lean_is_exclusive(x_37)) { + lean_ctor_release(x_37, 0); + lean_ctor_release(x_37, 1); + lean_ctor_release(x_37, 2); + x_465 = x_37; } else { - lean_dec_ref(x_450); - x_474 = lean_box(0); + lean_dec_ref(x_37); + x_465 = lean_box(0); } -x_475 = lean_ctor_get(x_449, 0); -x_476 = lean_ctor_get(x_449, 1); -x_477 = lean_ctor_get(x_449, 2); -x_478 = lean_nat_add(x_464, x_466); -lean_inc_ref(x_463); -if (lean_is_scalar(x_474)) { - x_479 = lean_alloc_ctor(0, 3, 0); +x_466 = lean_ctor_get(x_34, 0); +x_467 = lean_ctor_get(x_34, 1); +x_468 = lean_ctor_get(x_34, 2); +x_469 = lean_nat_add(x_457, x_448); +lean_inc_ref(x_456); +if (lean_is_scalar(x_465)) { + x_470 = lean_alloc_ctor(0, 3, 0); } else { - x_479 = x_474; + x_470 = x_465; } -lean_ctor_set(x_479, 0, x_463); -lean_ctor_set(x_479, 1, x_478); -lean_ctor_set(x_479, 2, x_465); -x_480 = lean_nat_dec_lt(x_476, x_477); -if (x_480 == 0) +lean_ctor_set(x_470, 0, x_456); +lean_ctor_set(x_470, 1, x_469); +lean_ctor_set(x_470, 2, x_458); +x_471 = lean_nat_dec_lt(x_467, x_468); +if (x_471 == 0) { -lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; -lean_dec(x_464); -lean_dec_ref(x_463); -lean_dec(x_455); -lean_dec_ref(x_454); +lean_object* x_472; lean_object* x_473; lean_object* x_474; +lean_dec(x_457); +lean_dec_ref(x_456); +lean_dec(x_446); +lean_dec_ref(x_445); +lean_dec(x_438); +lean_dec_ref(x_437); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -39352,68 +40504,157 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_453)) { - x_481 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_436)) { + x_472 = lean_alloc_ctor(0, 2, 0); } else { - x_481 = x_453; + x_472 = x_436; } -lean_ctor_set(x_481, 0, x_468); -lean_ctor_set(x_481, 1, x_452); -if (lean_is_scalar(x_451)) { +lean_ctor_set(x_472, 0, x_450); +lean_ctor_set(x_472, 1, x_435); +x_473 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_473, 0, x_460); +lean_ctor_set(x_473, 1, x_472); +lean_ctor_set(x_26, 1, x_473); +lean_ctor_set(x_26, 0, x_470); +x_474 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_474, 0, x_8); +return x_474; +} +else +{ +lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; uint8_t x_481; +lean_inc(x_468); +lean_inc(x_467); +lean_inc_ref(x_466); +if (lean_is_exclusive(x_34)) { + lean_ctor_release(x_34, 0); + lean_ctor_release(x_34, 1); + lean_ctor_release(x_34, 2); + x_475 = x_34; +} else { + lean_dec_ref(x_34); + x_475 = lean_box(0); +} +x_476 = lean_ctor_get(x_31, 0); +x_477 = lean_ctor_get(x_31, 1); +x_478 = lean_ctor_get(x_31, 2); +x_479 = lean_nat_add(x_467, x_448); +lean_inc_ref(x_466); +if (lean_is_scalar(x_475)) { + x_480 = lean_alloc_ctor(0, 3, 0); +} else { + x_480 = x_475; +} +lean_ctor_set(x_480, 0, x_466); +lean_ctor_set(x_480, 1, x_479); +lean_ctor_set(x_480, 2, x_468); +x_481 = lean_nat_dec_lt(x_477, x_478); +if (x_481 == 0) +{ +lean_object* x_482; lean_object* x_483; lean_object* x_484; +lean_dec(x_467); +lean_dec_ref(x_466); +lean_dec(x_457); +lean_dec_ref(x_456); +lean_dec(x_446); +lean_dec_ref(x_445); +lean_dec(x_438); +lean_dec_ref(x_437); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_436)) { x_482 = lean_alloc_ctor(0, 2, 0); } else { - x_482 = x_451; + x_482 = x_436; } -lean_ctor_set(x_482, 0, x_479); -lean_ctor_set(x_482, 1, x_481); +lean_ctor_set(x_482, 0, x_450); +lean_ctor_set(x_482, 1, x_435); x_483 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_483, 0, x_449); +lean_ctor_set(x_483, 0, x_460); lean_ctor_set(x_483, 1, x_482); -lean_ctor_set(x_17, 1, x_483); +lean_ctor_set(x_26, 1, x_483); +lean_ctor_set(x_26, 0, x_470); +lean_ctor_set(x_25, 0, x_480); x_484 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_484, 0, x_8); return x_484; } else { -lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; uint8_t x_491; +lean_object* x_485; lean_object* x_486; lean_object* x_487; uint8_t x_488; uint8_t x_489; +lean_inc(x_478); lean_inc(x_477); -lean_inc(x_476); -lean_inc_ref(x_475); -if (lean_is_exclusive(x_449)) { - lean_ctor_release(x_449, 0); - lean_ctor_release(x_449, 1); - lean_ctor_release(x_449, 2); - x_485 = x_449; +lean_inc_ref(x_476); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + lean_ctor_release(x_31, 2); + x_485 = x_31; } else { - lean_dec_ref(x_449); + lean_dec_ref(x_31); x_485 = lean_box(0); } -x_486 = lean_ctor_get(x_26, 0); -x_487 = lean_ctor_get(x_26, 1); -x_488 = lean_ctor_get(x_26, 2); -x_489 = lean_nat_add(x_476, x_466); -lean_inc_ref(x_475); -if (lean_is_scalar(x_485)) { - x_490 = lean_alloc_ctor(0, 3, 0); -} else { - x_490 = x_485; -} -lean_ctor_set(x_490, 0, x_475); -lean_ctor_set(x_490, 1, x_489); -lean_ctor_set(x_490, 2, x_477); -x_491 = lean_nat_dec_lt(x_487, x_488); -if (x_491 == 0) +x_486 = lean_array_fget(x_466, x_467); +lean_dec(x_467); +lean_dec_ref(x_466); +x_487 = lean_ctor_get(x_486, 1); +x_488 = lean_ctor_get_uint8(x_486, sizeof(void*)*2); +x_489 = lean_nat_dec_eq(x_487, x_1); +if (x_489 == 0) { -lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; -lean_dec(x_476); -lean_dec_ref(x_475); -lean_dec(x_464); -lean_dec_ref(x_463); -lean_dec(x_455); -lean_dec_ref(x_454); +lean_object* x_490; lean_object* x_491; +lean_dec_ref(x_486); +lean_dec(x_485); +lean_dec_ref(x_480); +lean_dec(x_478); +lean_dec(x_477); +lean_dec_ref(x_476); +lean_dec_ref(x_470); +lean_dec_ref(x_460); +lean_dec(x_457); +lean_dec_ref(x_456); +lean_dec_ref(x_450); +lean_dec(x_446); +lean_dec_ref(x_445); +lean_dec(x_438); +lean_dec_ref(x_437); +lean_dec(x_436); +lean_dec(x_435); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_8); +x_490 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_491 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_490, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_491) == 0) +{ +lean_object* x_492; lean_object* x_493; +x_492 = lean_ctor_get(x_491, 0); +lean_inc(x_492); +if (lean_is_exclusive(x_491)) { + lean_ctor_release(x_491, 0); + x_493 = x_491; +} else { + lean_dec_ref(x_491); + x_493 = lean_box(0); +} +if (lean_obj_tag(x_492) == 0) +{ +lean_object* x_494; lean_object* x_495; lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -39423,70 +40664,836 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_453)) { - x_492 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +x_494 = lean_ctor_get(x_492, 0); +lean_inc(x_494); +lean_dec_ref(x_492); +if (lean_is_scalar(x_493)) { + x_495 = lean_alloc_ctor(0, 1, 0); } else { - x_492 = x_453; + x_495 = x_493; } -lean_ctor_set(x_492, 0, x_468); -lean_ctor_set(x_492, 1, x_452); -if (lean_is_scalar(x_451)) { - x_493 = lean_alloc_ctor(0, 2, 0); -} else { - x_493 = x_451; -} -lean_ctor_set(x_493, 0, x_479); -lean_ctor_set(x_493, 1, x_492); -x_494 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_494, 0, x_490); -lean_ctor_set(x_494, 1, x_493); -lean_ctor_set(x_17, 1, x_494); -x_495 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_495, 0, x_8); +lean_ctor_set(x_495, 0, x_494); return x_495; } else { -lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; uint8_t x_502; -lean_inc(x_488); -lean_inc(x_487); -lean_inc_ref(x_486); +lean_object* x_496; +lean_dec(x_493); +x_496 = lean_ctor_get(x_492, 0); +lean_inc(x_496); +lean_dec_ref(x_492); +x_17 = x_496; +x_18 = lean_box(0); +goto block_24; +} +} +else +{ +lean_object* x_497; lean_object* x_498; lean_object* x_499; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_497 = lean_ctor_get(x_491, 0); +lean_inc(x_497); +if (lean_is_exclusive(x_491)) { + lean_ctor_release(x_491, 0); + x_498 = x_491; +} else { + lean_dec_ref(x_491); + x_498 = lean_box(0); +} +if (lean_is_scalar(x_498)) { + x_499 = lean_alloc_ctor(1, 1, 0); +} else { + x_499 = x_498; +} +lean_ctor_set(x_499, 0, x_497); +return x_499; +} +} +else +{ +lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; +x_500 = lean_array_fget(x_437, x_438); +lean_dec(x_438); +lean_dec_ref(x_437); +x_501 = lean_array_fget(x_445, x_446); +lean_dec(x_446); +lean_dec_ref(x_445); +x_502 = lean_array_fget(x_456, x_457); +lean_dec(x_457); +lean_dec_ref(x_456); +x_503 = lean_array_fget_borrowed(x_476, x_477); +x_504 = lean_box(x_3); +x_505 = lean_box(x_4); +x_506 = lean_box(x_488); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_9); +lean_inc_ref(x_2); +lean_inc_ref(x_503); +x_507 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_507, 0, x_502); +lean_closure_set(x_507, 1, x_500); +lean_closure_set(x_507, 2, x_503); +lean_closure_set(x_507, 3, x_2); +lean_closure_set(x_507, 4, x_9); +lean_closure_set(x_507, 5, x_504); +lean_closure_set(x_507, 6, x_505); +lean_closure_set(x_507, 7, x_5); +lean_closure_set(x_507, 8, x_6); +lean_closure_set(x_507, 9, x_506); +lean_closure_set(x_507, 10, x_448); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_508 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_501, x_486, x_507, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_508) == 0) +{ +lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; +x_509 = lean_ctor_get(x_508, 0); +lean_inc(x_509); +lean_dec_ref(x_508); +x_510 = lean_nat_add(x_477, x_448); +lean_dec(x_477); +if (lean_is_scalar(x_485)) { + x_511 = lean_alloc_ctor(0, 3, 0); +} else { + x_511 = x_485; +} +lean_ctor_set(x_511, 0, x_476); +lean_ctor_set(x_511, 1, x_510); +lean_ctor_set(x_511, 2, x_478); +x_512 = lean_array_push(x_435, x_509); +if (lean_is_scalar(x_436)) { + x_513 = lean_alloc_ctor(0, 2, 0); +} else { + x_513 = x_436; +} +lean_ctor_set(x_513, 0, x_450); +lean_ctor_set(x_513, 1, x_512); +x_514 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_514, 0, x_460); +lean_ctor_set(x_514, 1, x_513); +lean_ctor_set(x_26, 1, x_514); +lean_ctor_set(x_26, 0, x_470); +lean_ctor_set(x_25, 0, x_480); +lean_ctor_set(x_8, 0, x_511); +x_17 = x_8; +x_18 = lean_box(0); +goto block_24; +} +else +{ +lean_object* x_515; lean_object* x_516; lean_object* x_517; +lean_dec(x_485); +lean_dec_ref(x_480); +lean_dec(x_478); +lean_dec(x_477); +lean_dec_ref(x_476); +lean_dec_ref(x_470); +lean_dec_ref(x_460); +lean_dec_ref(x_450); +lean_dec(x_436); +lean_dec(x_435); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_515 = lean_ctor_get(x_508, 0); +lean_inc(x_515); +if (lean_is_exclusive(x_508)) { + lean_ctor_release(x_508, 0); + x_516 = x_508; +} else { + lean_dec_ref(x_508); + x_516 = lean_box(0); +} +if (lean_is_scalar(x_516)) { + x_517 = lean_alloc_ctor(1, 1, 0); +} else { + x_517 = x_516; +} +lean_ctor_set(x_517, 0, x_515); +return x_517; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; uint8_t x_526; +x_518 = lean_ctor_get(x_26, 0); +lean_inc(x_518); +lean_dec(x_26); +x_519 = lean_ctor_get(x_27, 0); +lean_inc(x_519); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_520 = x_27; +} else { + lean_dec_ref(x_27); + x_520 = lean_box(0); +} +x_521 = lean_ctor_get(x_28, 1); +lean_inc(x_521); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_522 = x_28; +} else { + lean_dec_ref(x_28); + x_522 = lean_box(0); +} +x_523 = lean_ctor_get(x_29, 0); +x_524 = lean_ctor_get(x_29, 1); +x_525 = lean_ctor_get(x_29, 2); +x_526 = lean_nat_dec_lt(x_524, x_525); +if (x_526 == 0) +{ +lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_522)) { + x_527 = lean_alloc_ctor(0, 2, 0); +} else { + x_527 = x_522; +} +lean_ctor_set(x_527, 0, x_29); +lean_ctor_set(x_527, 1, x_521); +if (lean_is_scalar(x_520)) { + x_528 = lean_alloc_ctor(0, 2, 0); +} else { + x_528 = x_520; +} +lean_ctor_set(x_528, 0, x_519); +lean_ctor_set(x_528, 1, x_527); +x_529 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_529, 0, x_518); +lean_ctor_set(x_529, 1, x_528); +lean_ctor_set(x_25, 1, x_529); +x_530 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_530, 0, x_8); +return x_530; +} +else +{ +lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; uint8_t x_538; +lean_inc(x_525); +lean_inc(x_524); +lean_inc_ref(x_523); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_531 = x_29; +} else { + lean_dec_ref(x_29); + x_531 = lean_box(0); +} +x_532 = lean_ctor_get(x_519, 0); +x_533 = lean_ctor_get(x_519, 1); +x_534 = lean_ctor_get(x_519, 2); +x_535 = lean_unsigned_to_nat(1u); +x_536 = lean_nat_add(x_524, x_535); +lean_inc_ref(x_523); +if (lean_is_scalar(x_531)) { + x_537 = lean_alloc_ctor(0, 3, 0); +} else { + x_537 = x_531; +} +lean_ctor_set(x_537, 0, x_523); +lean_ctor_set(x_537, 1, x_536); +lean_ctor_set(x_537, 2, x_525); +x_538 = lean_nat_dec_lt(x_533, x_534); +if (x_538 == 0) +{ +lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; +lean_dec(x_524); +lean_dec_ref(x_523); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_522)) { + x_539 = lean_alloc_ctor(0, 2, 0); +} else { + x_539 = x_522; +} +lean_ctor_set(x_539, 0, x_537); +lean_ctor_set(x_539, 1, x_521); +if (lean_is_scalar(x_520)) { + x_540 = lean_alloc_ctor(0, 2, 0); +} else { + x_540 = x_520; +} +lean_ctor_set(x_540, 0, x_519); +lean_ctor_set(x_540, 1, x_539); +x_541 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_541, 0, x_518); +lean_ctor_set(x_541, 1, x_540); +lean_ctor_set(x_25, 1, x_541); +x_542 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_542, 0, x_8); +return x_542; +} +else +{ +lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; uint8_t x_549; +lean_inc(x_534); +lean_inc(x_533); +lean_inc_ref(x_532); +if (lean_is_exclusive(x_519)) { + lean_ctor_release(x_519, 0); + lean_ctor_release(x_519, 1); + lean_ctor_release(x_519, 2); + x_543 = x_519; +} else { + lean_dec_ref(x_519); + x_543 = lean_box(0); +} +x_544 = lean_ctor_get(x_518, 0); +x_545 = lean_ctor_get(x_518, 1); +x_546 = lean_ctor_get(x_518, 2); +x_547 = lean_nat_add(x_533, x_535); +lean_inc_ref(x_532); +if (lean_is_scalar(x_543)) { + x_548 = lean_alloc_ctor(0, 3, 0); +} else { + x_548 = x_543; +} +lean_ctor_set(x_548, 0, x_532); +lean_ctor_set(x_548, 1, x_547); +lean_ctor_set(x_548, 2, x_534); +x_549 = lean_nat_dec_lt(x_545, x_546); +if (x_549 == 0) +{ +lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; +lean_dec(x_533); +lean_dec_ref(x_532); +lean_dec(x_524); +lean_dec_ref(x_523); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_522)) { + x_550 = lean_alloc_ctor(0, 2, 0); +} else { + x_550 = x_522; +} +lean_ctor_set(x_550, 0, x_537); +lean_ctor_set(x_550, 1, x_521); +if (lean_is_scalar(x_520)) { + x_551 = lean_alloc_ctor(0, 2, 0); +} else { + x_551 = x_520; +} +lean_ctor_set(x_551, 0, x_548); +lean_ctor_set(x_551, 1, x_550); +x_552 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_552, 0, x_518); +lean_ctor_set(x_552, 1, x_551); +lean_ctor_set(x_25, 1, x_552); +x_553 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_553, 0, x_8); +return x_553; +} +else +{ +lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; uint8_t x_560; +lean_inc(x_546); +lean_inc(x_545); +lean_inc_ref(x_544); +if (lean_is_exclusive(x_518)) { + lean_ctor_release(x_518, 0); + lean_ctor_release(x_518, 1); + lean_ctor_release(x_518, 2); + x_554 = x_518; +} else { + lean_dec_ref(x_518); + x_554 = lean_box(0); +} +x_555 = lean_ctor_get(x_34, 0); +x_556 = lean_ctor_get(x_34, 1); +x_557 = lean_ctor_get(x_34, 2); +x_558 = lean_nat_add(x_545, x_535); +lean_inc_ref(x_544); +if (lean_is_scalar(x_554)) { + x_559 = lean_alloc_ctor(0, 3, 0); +} else { + x_559 = x_554; +} +lean_ctor_set(x_559, 0, x_544); +lean_ctor_set(x_559, 1, x_558); +lean_ctor_set(x_559, 2, x_546); +x_560 = lean_nat_dec_lt(x_556, x_557); +if (x_560 == 0) +{ +lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; +lean_dec(x_545); +lean_dec_ref(x_544); +lean_dec(x_533); +lean_dec_ref(x_532); +lean_dec(x_524); +lean_dec_ref(x_523); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_522)) { + x_561 = lean_alloc_ctor(0, 2, 0); +} else { + x_561 = x_522; +} +lean_ctor_set(x_561, 0, x_537); +lean_ctor_set(x_561, 1, x_521); +if (lean_is_scalar(x_520)) { + x_562 = lean_alloc_ctor(0, 2, 0); +} else { + x_562 = x_520; +} +lean_ctor_set(x_562, 0, x_548); +lean_ctor_set(x_562, 1, x_561); +x_563 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_563, 0, x_559); +lean_ctor_set(x_563, 1, x_562); +lean_ctor_set(x_25, 1, x_563); +x_564 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_564, 0, x_8); +return x_564; +} +else +{ +lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; uint8_t x_571; +lean_inc(x_557); +lean_inc(x_556); +lean_inc_ref(x_555); +if (lean_is_exclusive(x_34)) { + lean_ctor_release(x_34, 0); + lean_ctor_release(x_34, 1); + lean_ctor_release(x_34, 2); + x_565 = x_34; +} else { + lean_dec_ref(x_34); + x_565 = lean_box(0); +} +x_566 = lean_ctor_get(x_31, 0); +x_567 = lean_ctor_get(x_31, 1); +x_568 = lean_ctor_get(x_31, 2); +x_569 = lean_nat_add(x_556, x_535); +lean_inc_ref(x_555); +if (lean_is_scalar(x_565)) { + x_570 = lean_alloc_ctor(0, 3, 0); +} else { + x_570 = x_565; +} +lean_ctor_set(x_570, 0, x_555); +lean_ctor_set(x_570, 1, x_569); +lean_ctor_set(x_570, 2, x_557); +x_571 = lean_nat_dec_lt(x_567, x_568); +if (x_571 == 0) +{ +lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; +lean_dec(x_556); +lean_dec_ref(x_555); +lean_dec(x_545); +lean_dec_ref(x_544); +lean_dec(x_533); +lean_dec_ref(x_532); +lean_dec(x_524); +lean_dec_ref(x_523); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_522)) { + x_572 = lean_alloc_ctor(0, 2, 0); +} else { + x_572 = x_522; +} +lean_ctor_set(x_572, 0, x_537); +lean_ctor_set(x_572, 1, x_521); +if (lean_is_scalar(x_520)) { + x_573 = lean_alloc_ctor(0, 2, 0); +} else { + x_573 = x_520; +} +lean_ctor_set(x_573, 0, x_548); +lean_ctor_set(x_573, 1, x_572); +x_574 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_574, 0, x_559); +lean_ctor_set(x_574, 1, x_573); +lean_ctor_set(x_25, 1, x_574); +lean_ctor_set(x_25, 0, x_570); +x_575 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_575, 0, x_8); +return x_575; +} +else +{ +lean_object* x_576; lean_object* x_577; lean_object* x_578; uint8_t x_579; uint8_t x_580; +lean_inc(x_568); +lean_inc(x_567); +lean_inc_ref(x_566); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + lean_ctor_release(x_31, 2); + x_576 = x_31; +} else { + lean_dec_ref(x_31); + x_576 = lean_box(0); +} +x_577 = lean_array_fget(x_555, x_556); +lean_dec(x_556); +lean_dec_ref(x_555); +x_578 = lean_ctor_get(x_577, 1); +x_579 = lean_ctor_get_uint8(x_577, sizeof(void*)*2); +x_580 = lean_nat_dec_eq(x_578, x_1); +if (x_580 == 0) +{ +lean_object* x_581; lean_object* x_582; +lean_dec_ref(x_577); +lean_dec(x_576); +lean_dec_ref(x_570); +lean_dec(x_568); +lean_dec(x_567); +lean_dec_ref(x_566); +lean_dec_ref(x_559); +lean_dec_ref(x_548); +lean_dec(x_545); +lean_dec_ref(x_544); +lean_dec_ref(x_537); +lean_dec(x_533); +lean_dec_ref(x_532); +lean_dec(x_524); +lean_dec_ref(x_523); +lean_dec(x_522); +lean_dec(x_521); +lean_dec(x_520); +lean_free_object(x_25); +lean_free_object(x_8); +x_581 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_582 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_581, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_582) == 0) +{ +lean_object* x_583; lean_object* x_584; +x_583 = lean_ctor_get(x_582, 0); +lean_inc(x_583); +if (lean_is_exclusive(x_582)) { + lean_ctor_release(x_582, 0); + x_584 = x_582; +} else { + lean_dec_ref(x_582); + x_584 = lean_box(0); +} +if (lean_obj_tag(x_583) == 0) +{ +lean_object* x_585; lean_object* x_586; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_585 = lean_ctor_get(x_583, 0); +lean_inc(x_585); +lean_dec_ref(x_583); +if (lean_is_scalar(x_584)) { + x_586 = lean_alloc_ctor(0, 1, 0); +} else { + x_586 = x_584; +} +lean_ctor_set(x_586, 0, x_585); +return x_586; +} +else +{ +lean_object* x_587; +lean_dec(x_584); +x_587 = lean_ctor_get(x_583, 0); +lean_inc(x_587); +lean_dec_ref(x_583); +x_17 = x_587; +x_18 = lean_box(0); +goto block_24; +} +} +else +{ +lean_object* x_588; lean_object* x_589; lean_object* x_590; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_588 = lean_ctor_get(x_582, 0); +lean_inc(x_588); +if (lean_is_exclusive(x_582)) { + lean_ctor_release(x_582, 0); + x_589 = x_582; +} else { + lean_dec_ref(x_582); + x_589 = lean_box(0); +} +if (lean_is_scalar(x_589)) { + x_590 = lean_alloc_ctor(1, 1, 0); +} else { + x_590 = x_589; +} +lean_ctor_set(x_590, 0, x_588); +return x_590; +} +} +else +{ +lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; +x_591 = lean_array_fget(x_523, x_524); +lean_dec(x_524); +lean_dec_ref(x_523); +x_592 = lean_array_fget(x_532, x_533); +lean_dec(x_533); +lean_dec_ref(x_532); +x_593 = lean_array_fget(x_544, x_545); +lean_dec(x_545); +lean_dec_ref(x_544); +x_594 = lean_array_fget_borrowed(x_566, x_567); +x_595 = lean_box(x_3); +x_596 = lean_box(x_4); +x_597 = lean_box(x_579); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_9); +lean_inc_ref(x_2); +lean_inc_ref(x_594); +x_598 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_598, 0, x_593); +lean_closure_set(x_598, 1, x_591); +lean_closure_set(x_598, 2, x_594); +lean_closure_set(x_598, 3, x_2); +lean_closure_set(x_598, 4, x_9); +lean_closure_set(x_598, 5, x_595); +lean_closure_set(x_598, 6, x_596); +lean_closure_set(x_598, 7, x_5); +lean_closure_set(x_598, 8, x_6); +lean_closure_set(x_598, 9, x_597); +lean_closure_set(x_598, 10, x_535); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_599 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_592, x_577, x_598, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_599) == 0) +{ +lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; +x_600 = lean_ctor_get(x_599, 0); +lean_inc(x_600); +lean_dec_ref(x_599); +x_601 = lean_nat_add(x_567, x_535); +lean_dec(x_567); +if (lean_is_scalar(x_576)) { + x_602 = lean_alloc_ctor(0, 3, 0); +} else { + x_602 = x_576; +} +lean_ctor_set(x_602, 0, x_566); +lean_ctor_set(x_602, 1, x_601); +lean_ctor_set(x_602, 2, x_568); +x_603 = lean_array_push(x_521, x_600); +if (lean_is_scalar(x_522)) { + x_604 = lean_alloc_ctor(0, 2, 0); +} else { + x_604 = x_522; +} +lean_ctor_set(x_604, 0, x_537); +lean_ctor_set(x_604, 1, x_603); +if (lean_is_scalar(x_520)) { + x_605 = lean_alloc_ctor(0, 2, 0); +} else { + x_605 = x_520; +} +lean_ctor_set(x_605, 0, x_548); +lean_ctor_set(x_605, 1, x_604); +x_606 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_606, 0, x_559); +lean_ctor_set(x_606, 1, x_605); +lean_ctor_set(x_25, 1, x_606); +lean_ctor_set(x_25, 0, x_570); +lean_ctor_set(x_8, 0, x_602); +x_17 = x_8; +x_18 = lean_box(0); +goto block_24; +} +else +{ +lean_object* x_607; lean_object* x_608; lean_object* x_609; +lean_dec(x_576); +lean_dec_ref(x_570); +lean_dec(x_568); +lean_dec(x_567); +lean_dec_ref(x_566); +lean_dec_ref(x_559); +lean_dec_ref(x_548); +lean_dec_ref(x_537); +lean_dec(x_522); +lean_dec(x_521); +lean_dec(x_520); +lean_free_object(x_25); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_607 = lean_ctor_get(x_599, 0); +lean_inc(x_607); +if (lean_is_exclusive(x_599)) { + lean_ctor_release(x_599, 0); + x_608 = x_599; +} else { + lean_dec_ref(x_599); + x_608 = lean_box(0); +} +if (lean_is_scalar(x_608)) { + x_609 = lean_alloc_ctor(1, 1, 0); +} else { + x_609 = x_608; +} +lean_ctor_set(x_609, 0, x_607); +return x_609; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; uint8_t x_620; +x_610 = lean_ctor_get(x_25, 0); +lean_inc(x_610); +lean_dec(x_25); +x_611 = lean_ctor_get(x_26, 0); +lean_inc(x_611); if (lean_is_exclusive(x_26)) { lean_ctor_release(x_26, 0); lean_ctor_release(x_26, 1); - lean_ctor_release(x_26, 2); - x_496 = x_26; + x_612 = x_26; } else { lean_dec_ref(x_26); - x_496 = lean_box(0); + x_612 = lean_box(0); } -x_497 = lean_ctor_get(x_23, 0); -x_498 = lean_ctor_get(x_23, 1); -x_499 = lean_ctor_get(x_23, 2); -x_500 = lean_nat_add(x_487, x_466); -lean_inc_ref(x_486); -if (lean_is_scalar(x_496)) { - x_501 = lean_alloc_ctor(0, 3, 0); +x_613 = lean_ctor_get(x_27, 0); +lean_inc(x_613); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_614 = x_27; } else { - x_501 = x_496; + lean_dec_ref(x_27); + x_614 = lean_box(0); } -lean_ctor_set(x_501, 0, x_486); -lean_ctor_set(x_501, 1, x_500); -lean_ctor_set(x_501, 2, x_488); -x_502 = lean_nat_dec_lt(x_498, x_499); -if (x_502 == 0) +x_615 = lean_ctor_get(x_28, 1); +lean_inc(x_615); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_616 = x_28; +} else { + lean_dec_ref(x_28); + x_616 = lean_box(0); +} +x_617 = lean_ctor_get(x_29, 0); +x_618 = lean_ctor_get(x_29, 1); +x_619 = lean_ctor_get(x_29, 2); +x_620 = lean_nat_dec_lt(x_618, x_619); +if (x_620 == 0) { -lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; -lean_dec(x_487); -lean_dec_ref(x_486); -lean_dec(x_476); -lean_dec_ref(x_475); -lean_dec(x_464); -lean_dec_ref(x_463); -lean_dec(x_455); -lean_dec_ref(x_454); +lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -39496,761 +41503,574 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_453)) { - x_503 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_616)) { + x_621 = lean_alloc_ctor(0, 2, 0); } else { - x_503 = x_453; + x_621 = x_616; } -lean_ctor_set(x_503, 0, x_468); -lean_ctor_set(x_503, 1, x_452); -if (lean_is_scalar(x_451)) { - x_504 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_621, 0, x_29); +lean_ctor_set(x_621, 1, x_615); +if (lean_is_scalar(x_614)) { + x_622 = lean_alloc_ctor(0, 2, 0); } else { - x_504 = x_451; + x_622 = x_614; } -lean_ctor_set(x_504, 0, x_479); -lean_ctor_set(x_504, 1, x_503); -x_505 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_505, 0, x_490); -lean_ctor_set(x_505, 1, x_504); -lean_ctor_set(x_17, 1, x_505); -lean_ctor_set(x_17, 0, x_501); -x_506 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_506, 0, x_8); -return x_506; +lean_ctor_set(x_622, 0, x_613); +lean_ctor_set(x_622, 1, x_621); +if (lean_is_scalar(x_612)) { + x_623 = lean_alloc_ctor(0, 2, 0); +} else { + x_623 = x_612; +} +lean_ctor_set(x_623, 0, x_611); +lean_ctor_set(x_623, 1, x_622); +x_624 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_624, 0, x_610); +lean_ctor_set(x_624, 1, x_623); +lean_ctor_set(x_8, 1, x_624); +x_625 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_625, 0, x_8); +return x_625; } else { -lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; -lean_inc(x_499); -lean_inc(x_498); -lean_inc_ref(x_497); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - lean_ctor_release(x_23, 2); - x_507 = x_23; +lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; uint8_t x_633; +lean_inc(x_619); +lean_inc(x_618); +lean_inc_ref(x_617); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_626 = x_29; } else { - lean_dec_ref(x_23); - x_507 = lean_box(0); + lean_dec_ref(x_29); + x_626 = lean_box(0); } -x_508 = lean_array_fget(x_454, x_455); -lean_dec(x_455); -lean_dec_ref(x_454); -x_509 = lean_array_fget(x_463, x_464); -lean_dec(x_464); -lean_dec_ref(x_463); -x_510 = lean_array_fget(x_475, x_476); -lean_dec(x_476); -lean_dec_ref(x_475); -x_511 = lean_array_fget(x_486, x_487); -lean_dec(x_487); -lean_dec_ref(x_486); -x_512 = lean_array_fget_borrowed(x_497, x_498); -x_513 = lean_box(x_2); -x_514 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_9); -lean_inc_ref(x_1); -lean_inc_ref(x_512); -x_515 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___boxed), 20, 11); -lean_closure_set(x_515, 0, x_508); -lean_closure_set(x_515, 1, x_512); -lean_closure_set(x_515, 2, x_1); -lean_closure_set(x_515, 3, x_9); -lean_closure_set(x_515, 4, x_513); -lean_closure_set(x_515, 5, x_514); -lean_closure_set(x_515, 6, x_4); -lean_closure_set(x_515, 7, x_5); -lean_closure_set(x_515, 8, x_510); -lean_closure_set(x_515, 9, x_6); -lean_closure_set(x_515, 10, x_466); -x_516 = lean_nat_sub(x_511, x_5); -lean_dec(x_511); -lean_inc(x_15); -lean_inc_ref(x_14); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_6); -x_517 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(x_509, x_516, x_6, x_515, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_517) == 0) +x_627 = lean_ctor_get(x_613, 0); +x_628 = lean_ctor_get(x_613, 1); +x_629 = lean_ctor_get(x_613, 2); +x_630 = lean_unsigned_to_nat(1u); +x_631 = lean_nat_add(x_618, x_630); +lean_inc_ref(x_617); +if (lean_is_scalar(x_626)) { + x_632 = lean_alloc_ctor(0, 3, 0); +} else { + x_632 = x_626; +} +lean_ctor_set(x_632, 0, x_617); +lean_ctor_set(x_632, 1, x_631); +lean_ctor_set(x_632, 2, x_619); +x_633 = lean_nat_dec_lt(x_628, x_629); +if (x_633 == 0) { -lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; uint8_t x_527; -x_518 = lean_ctor_get(x_517, 0); -lean_inc(x_518); -if (lean_is_exclusive(x_517)) { - lean_ctor_release(x_517, 0); - x_519 = x_517; -} else { - lean_dec_ref(x_517); - x_519 = lean_box(0); -} -x_520 = lean_nat_add(x_498, x_466); -lean_dec(x_498); -if (lean_is_scalar(x_507)) { - x_521 = lean_alloc_ctor(0, 3, 0); -} else { - x_521 = x_507; -} -lean_ctor_set(x_521, 0, x_497); -lean_ctor_set(x_521, 1, x_520); -lean_ctor_set(x_521, 2, x_499); -x_522 = lean_array_push(x_452, x_518); -if (lean_is_scalar(x_453)) { - x_523 = lean_alloc_ctor(0, 2, 0); -} else { - x_523 = x_453; -} -lean_ctor_set(x_523, 0, x_468); -lean_ctor_set(x_523, 1, x_522); -if (lean_is_scalar(x_451)) { - x_524 = lean_alloc_ctor(0, 2, 0); -} else { - x_524 = x_451; -} -lean_ctor_set(x_524, 0, x_479); -lean_ctor_set(x_524, 1, x_523); -x_525 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_525, 0, x_490); -lean_ctor_set(x_525, 1, x_524); -lean_ctor_set(x_17, 1, x_525); -lean_ctor_set(x_17, 0, x_501); -lean_ctor_set(x_8, 0, x_521); -x_526 = lean_nat_add(x_9, x_466); -lean_dec(x_9); -x_527 = lean_nat_dec_lt(x_526, x_7); -if (x_527 == 0) -{ -lean_object* x_528; -lean_dec(x_526); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_519)) { - x_528 = lean_alloc_ctor(0, 1, 0); -} else { - x_528 = x_519; -} -lean_ctor_set(x_528, 0, x_8); -return x_528; -} -else -{ -lean_dec(x_519); -x_9 = x_526; -goto _start; -} -} -else -{ -lean_object* x_530; lean_object* x_531; lean_object* x_532; -lean_dec(x_507); -lean_dec_ref(x_501); -lean_dec(x_499); -lean_dec(x_498); -lean_dec_ref(x_497); -lean_dec_ref(x_490); -lean_dec_ref(x_479); -lean_dec_ref(x_468); -lean_dec(x_453); -lean_dec(x_452); -lean_dec(x_451); -lean_free_object(x_17); -lean_free_object(x_8); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_530 = lean_ctor_get(x_517, 0); -lean_inc(x_530); -if (lean_is_exclusive(x_517)) { - lean_ctor_release(x_517, 0); - x_531 = x_517; -} else { - lean_dec_ref(x_517); - x_531 = lean_box(0); -} -if (lean_is_scalar(x_531)) { - x_532 = lean_alloc_ctor(1, 1, 0); -} else { - x_532 = x_531; -} -lean_ctor_set(x_532, 0, x_530); -return x_532; -} -} -} -} -} -} -} -} -else -{ -lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; uint8_t x_543; -x_533 = lean_ctor_get(x_17, 0); -lean_inc(x_533); -lean_dec(x_17); -x_534 = lean_ctor_get(x_18, 0); -lean_inc(x_534); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_535 = x_18; -} else { - lean_dec_ref(x_18); - x_535 = lean_box(0); -} -x_536 = lean_ctor_get(x_19, 0); -lean_inc(x_536); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_537 = x_19; -} else { - lean_dec_ref(x_19); - x_537 = lean_box(0); -} -x_538 = lean_ctor_get(x_20, 1); -lean_inc(x_538); -if (lean_is_exclusive(x_20)) { - lean_ctor_release(x_20, 0); - lean_ctor_release(x_20, 1); - x_539 = x_20; -} else { - lean_dec_ref(x_20); - x_539 = lean_box(0); -} -x_540 = lean_ctor_get(x_21, 0); -x_541 = lean_ctor_get(x_21, 1); -x_542 = lean_ctor_get(x_21, 2); -x_543 = lean_nat_dec_lt(x_541, x_542); -if (x_543 == 0) -{ -lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_539)) { - x_544 = lean_alloc_ctor(0, 2, 0); -} else { - x_544 = x_539; -} -lean_ctor_set(x_544, 0, x_21); -lean_ctor_set(x_544, 1, x_538); -if (lean_is_scalar(x_537)) { - x_545 = lean_alloc_ctor(0, 2, 0); -} else { - x_545 = x_537; -} -lean_ctor_set(x_545, 0, x_536); -lean_ctor_set(x_545, 1, x_544); -if (lean_is_scalar(x_535)) { - x_546 = lean_alloc_ctor(0, 2, 0); -} else { - x_546 = x_535; -} -lean_ctor_set(x_546, 0, x_534); -lean_ctor_set(x_546, 1, x_545); -x_547 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_547, 0, x_533); -lean_ctor_set(x_547, 1, x_546); -lean_ctor_set(x_8, 1, x_547); -x_548 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_548, 0, x_8); -return x_548; -} -else -{ -lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; uint8_t x_556; -lean_inc(x_542); -lean_inc(x_541); -lean_inc_ref(x_540); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_549 = x_21; -} else { - lean_dec_ref(x_21); - x_549 = lean_box(0); -} -x_550 = lean_ctor_get(x_536, 0); -x_551 = lean_ctor_get(x_536, 1); -x_552 = lean_ctor_get(x_536, 2); -x_553 = lean_unsigned_to_nat(1u); -x_554 = lean_nat_add(x_541, x_553); -lean_inc_ref(x_540); -if (lean_is_scalar(x_549)) { - x_555 = lean_alloc_ctor(0, 3, 0); -} else { - x_555 = x_549; -} -lean_ctor_set(x_555, 0, x_540); -lean_ctor_set(x_555, 1, x_554); -lean_ctor_set(x_555, 2, x_542); -x_556 = lean_nat_dec_lt(x_551, x_552); -if (x_556 == 0) -{ -lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; -lean_dec(x_541); -lean_dec_ref(x_540); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_539)) { - x_557 = lean_alloc_ctor(0, 2, 0); -} else { - x_557 = x_539; -} -lean_ctor_set(x_557, 0, x_555); -lean_ctor_set(x_557, 1, x_538); -if (lean_is_scalar(x_537)) { - x_558 = lean_alloc_ctor(0, 2, 0); -} else { - x_558 = x_537; -} -lean_ctor_set(x_558, 0, x_536); -lean_ctor_set(x_558, 1, x_557); -if (lean_is_scalar(x_535)) { - x_559 = lean_alloc_ctor(0, 2, 0); -} else { - x_559 = x_535; -} -lean_ctor_set(x_559, 0, x_534); -lean_ctor_set(x_559, 1, x_558); -x_560 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_560, 0, x_533); -lean_ctor_set(x_560, 1, x_559); -lean_ctor_set(x_8, 1, x_560); -x_561 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_561, 0, x_8); -return x_561; -} -else -{ -lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; uint8_t x_568; -lean_inc(x_552); -lean_inc(x_551); -lean_inc_ref(x_550); -if (lean_is_exclusive(x_536)) { - lean_ctor_release(x_536, 0); - lean_ctor_release(x_536, 1); - lean_ctor_release(x_536, 2); - x_562 = x_536; -} else { - lean_dec_ref(x_536); - x_562 = lean_box(0); -} -x_563 = lean_ctor_get(x_534, 0); -x_564 = lean_ctor_get(x_534, 1); -x_565 = lean_ctor_get(x_534, 2); -x_566 = lean_nat_add(x_551, x_553); -lean_inc_ref(x_550); -if (lean_is_scalar(x_562)) { - x_567 = lean_alloc_ctor(0, 3, 0); -} else { - x_567 = x_562; -} -lean_ctor_set(x_567, 0, x_550); -lean_ctor_set(x_567, 1, x_566); -lean_ctor_set(x_567, 2, x_552); -x_568 = lean_nat_dec_lt(x_564, x_565); -if (x_568 == 0) -{ -lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; -lean_dec(x_551); -lean_dec_ref(x_550); -lean_dec(x_541); -lean_dec_ref(x_540); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_539)) { - x_569 = lean_alloc_ctor(0, 2, 0); -} else { - x_569 = x_539; -} -lean_ctor_set(x_569, 0, x_555); -lean_ctor_set(x_569, 1, x_538); -if (lean_is_scalar(x_537)) { - x_570 = lean_alloc_ctor(0, 2, 0); -} else { - x_570 = x_537; -} -lean_ctor_set(x_570, 0, x_567); -lean_ctor_set(x_570, 1, x_569); -if (lean_is_scalar(x_535)) { - x_571 = lean_alloc_ctor(0, 2, 0); -} else { - x_571 = x_535; -} -lean_ctor_set(x_571, 0, x_534); -lean_ctor_set(x_571, 1, x_570); -x_572 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_572, 0, x_533); -lean_ctor_set(x_572, 1, x_571); -lean_ctor_set(x_8, 1, x_572); -x_573 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_573, 0, x_8); -return x_573; -} -else -{ -lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; uint8_t x_580; -lean_inc(x_565); -lean_inc(x_564); -lean_inc_ref(x_563); -if (lean_is_exclusive(x_534)) { - lean_ctor_release(x_534, 0); - lean_ctor_release(x_534, 1); - lean_ctor_release(x_534, 2); - x_574 = x_534; -} else { - lean_dec_ref(x_534); - x_574 = lean_box(0); -} -x_575 = lean_ctor_get(x_533, 0); -x_576 = lean_ctor_get(x_533, 1); -x_577 = lean_ctor_get(x_533, 2); -x_578 = lean_nat_add(x_564, x_553); -lean_inc_ref(x_563); -if (lean_is_scalar(x_574)) { - x_579 = lean_alloc_ctor(0, 3, 0); -} else { - x_579 = x_574; -} -lean_ctor_set(x_579, 0, x_563); -lean_ctor_set(x_579, 1, x_578); -lean_ctor_set(x_579, 2, x_565); -x_580 = lean_nat_dec_lt(x_576, x_577); -if (x_580 == 0) -{ -lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; -lean_dec(x_564); -lean_dec_ref(x_563); -lean_dec(x_551); -lean_dec_ref(x_550); -lean_dec(x_541); -lean_dec_ref(x_540); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_539)) { - x_581 = lean_alloc_ctor(0, 2, 0); -} else { - x_581 = x_539; -} -lean_ctor_set(x_581, 0, x_555); -lean_ctor_set(x_581, 1, x_538); -if (lean_is_scalar(x_537)) { - x_582 = lean_alloc_ctor(0, 2, 0); -} else { - x_582 = x_537; -} -lean_ctor_set(x_582, 0, x_567); -lean_ctor_set(x_582, 1, x_581); -if (lean_is_scalar(x_535)) { - x_583 = lean_alloc_ctor(0, 2, 0); -} else { - x_583 = x_535; -} -lean_ctor_set(x_583, 0, x_579); -lean_ctor_set(x_583, 1, x_582); -x_584 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_584, 0, x_533); -lean_ctor_set(x_584, 1, x_583); -lean_ctor_set(x_8, 1, x_584); -x_585 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_585, 0, x_8); -return x_585; -} -else -{ -lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; uint8_t x_592; -lean_inc(x_577); -lean_inc(x_576); -lean_inc_ref(x_575); -if (lean_is_exclusive(x_533)) { - lean_ctor_release(x_533, 0); - lean_ctor_release(x_533, 1); - lean_ctor_release(x_533, 2); - x_586 = x_533; -} else { - lean_dec_ref(x_533); - x_586 = lean_box(0); -} -x_587 = lean_ctor_get(x_23, 0); -x_588 = lean_ctor_get(x_23, 1); -x_589 = lean_ctor_get(x_23, 2); -x_590 = lean_nat_add(x_576, x_553); -lean_inc_ref(x_575); -if (lean_is_scalar(x_586)) { - x_591 = lean_alloc_ctor(0, 3, 0); -} else { - x_591 = x_586; -} -lean_ctor_set(x_591, 0, x_575); -lean_ctor_set(x_591, 1, x_590); -lean_ctor_set(x_591, 2, x_577); -x_592 = lean_nat_dec_lt(x_588, x_589); -if (x_592 == 0) -{ -lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; -lean_dec(x_576); -lean_dec_ref(x_575); -lean_dec(x_564); -lean_dec_ref(x_563); -lean_dec(x_551); -lean_dec_ref(x_550); -lean_dec(x_541); -lean_dec_ref(x_540); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_539)) { - x_593 = lean_alloc_ctor(0, 2, 0); -} else { - x_593 = x_539; -} -lean_ctor_set(x_593, 0, x_555); -lean_ctor_set(x_593, 1, x_538); -if (lean_is_scalar(x_537)) { - x_594 = lean_alloc_ctor(0, 2, 0); -} else { - x_594 = x_537; -} -lean_ctor_set(x_594, 0, x_567); -lean_ctor_set(x_594, 1, x_593); -if (lean_is_scalar(x_535)) { - x_595 = lean_alloc_ctor(0, 2, 0); -} else { - x_595 = x_535; -} -lean_ctor_set(x_595, 0, x_579); -lean_ctor_set(x_595, 1, x_594); -x_596 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_596, 0, x_591); -lean_ctor_set(x_596, 1, x_595); -lean_ctor_set(x_8, 1, x_596); -x_597 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_597, 0, x_8); -return x_597; -} -else -{ -lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; -lean_inc(x_589); -lean_inc(x_588); -lean_inc_ref(x_587); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - lean_ctor_release(x_23, 2); - x_598 = x_23; -} else { - lean_dec_ref(x_23); - x_598 = lean_box(0); -} -x_599 = lean_array_fget(x_540, x_541); -lean_dec(x_541); -lean_dec_ref(x_540); -x_600 = lean_array_fget(x_550, x_551); -lean_dec(x_551); -lean_dec_ref(x_550); -x_601 = lean_array_fget(x_563, x_564); -lean_dec(x_564); -lean_dec_ref(x_563); -x_602 = lean_array_fget(x_575, x_576); -lean_dec(x_576); -lean_dec_ref(x_575); -x_603 = lean_array_fget_borrowed(x_587, x_588); -x_604 = lean_box(x_2); -x_605 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_9); -lean_inc_ref(x_1); -lean_inc_ref(x_603); -x_606 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___boxed), 20, 11); -lean_closure_set(x_606, 0, x_599); -lean_closure_set(x_606, 1, x_603); -lean_closure_set(x_606, 2, x_1); -lean_closure_set(x_606, 3, x_9); -lean_closure_set(x_606, 4, x_604); -lean_closure_set(x_606, 5, x_605); -lean_closure_set(x_606, 6, x_4); -lean_closure_set(x_606, 7, x_5); -lean_closure_set(x_606, 8, x_601); -lean_closure_set(x_606, 9, x_6); -lean_closure_set(x_606, 10, x_553); -x_607 = lean_nat_sub(x_602, x_5); -lean_dec(x_602); -lean_inc(x_15); -lean_inc_ref(x_14); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_6); -x_608 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(x_600, x_607, x_6, x_606, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_608) == 0) -{ -lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; uint8_t x_619; -x_609 = lean_ctor_get(x_608, 0); -lean_inc(x_609); -if (lean_is_exclusive(x_608)) { - lean_ctor_release(x_608, 0); - x_610 = x_608; -} else { - lean_dec_ref(x_608); - x_610 = lean_box(0); -} -x_611 = lean_nat_add(x_588, x_553); -lean_dec(x_588); -if (lean_is_scalar(x_598)) { - x_612 = lean_alloc_ctor(0, 3, 0); -} else { - x_612 = x_598; -} -lean_ctor_set(x_612, 0, x_587); -lean_ctor_set(x_612, 1, x_611); -lean_ctor_set(x_612, 2, x_589); -x_613 = lean_array_push(x_538, x_609); -if (lean_is_scalar(x_539)) { - x_614 = lean_alloc_ctor(0, 2, 0); -} else { - x_614 = x_539; -} -lean_ctor_set(x_614, 0, x_555); -lean_ctor_set(x_614, 1, x_613); -if (lean_is_scalar(x_537)) { - x_615 = lean_alloc_ctor(0, 2, 0); -} else { - x_615 = x_537; -} -lean_ctor_set(x_615, 0, x_567); -lean_ctor_set(x_615, 1, x_614); -if (lean_is_scalar(x_535)) { - x_616 = lean_alloc_ctor(0, 2, 0); -} else { - x_616 = x_535; -} -lean_ctor_set(x_616, 0, x_579); -lean_ctor_set(x_616, 1, x_615); -x_617 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_617, 0, x_591); -lean_ctor_set(x_617, 1, x_616); -lean_ctor_set(x_8, 1, x_617); -lean_ctor_set(x_8, 0, x_612); -x_618 = lean_nat_add(x_9, x_553); -lean_dec(x_9); -x_619 = lean_nat_dec_lt(x_618, x_7); -if (x_619 == 0) -{ -lean_object* x_620; +lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_dec(x_618); +lean_dec_ref(x_617); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_610)) { - x_620 = lean_alloc_ctor(0, 1, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_616)) { + x_634 = lean_alloc_ctor(0, 2, 0); } else { - x_620 = x_610; + x_634 = x_616; } -lean_ctor_set(x_620, 0, x_8); -return x_620; +lean_ctor_set(x_634, 0, x_632); +lean_ctor_set(x_634, 1, x_615); +if (lean_is_scalar(x_614)) { + x_635 = lean_alloc_ctor(0, 2, 0); +} else { + x_635 = x_614; +} +lean_ctor_set(x_635, 0, x_613); +lean_ctor_set(x_635, 1, x_634); +if (lean_is_scalar(x_612)) { + x_636 = lean_alloc_ctor(0, 2, 0); +} else { + x_636 = x_612; +} +lean_ctor_set(x_636, 0, x_611); +lean_ctor_set(x_636, 1, x_635); +x_637 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_637, 0, x_610); +lean_ctor_set(x_637, 1, x_636); +lean_ctor_set(x_8, 1, x_637); +x_638 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_638, 0, x_8); +return x_638; } else { -lean_dec(x_610); -x_9 = x_618; -goto _start; +lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; uint8_t x_645; +lean_inc(x_629); +lean_inc(x_628); +lean_inc_ref(x_627); +if (lean_is_exclusive(x_613)) { + lean_ctor_release(x_613, 0); + lean_ctor_release(x_613, 1); + lean_ctor_release(x_613, 2); + x_639 = x_613; +} else { + lean_dec_ref(x_613); + x_639 = lean_box(0); +} +x_640 = lean_ctor_get(x_611, 0); +x_641 = lean_ctor_get(x_611, 1); +x_642 = lean_ctor_get(x_611, 2); +x_643 = lean_nat_add(x_628, x_630); +lean_inc_ref(x_627); +if (lean_is_scalar(x_639)) { + x_644 = lean_alloc_ctor(0, 3, 0); +} else { + x_644 = x_639; +} +lean_ctor_set(x_644, 0, x_627); +lean_ctor_set(x_644, 1, x_643); +lean_ctor_set(x_644, 2, x_629); +x_645 = lean_nat_dec_lt(x_641, x_642); +if (x_645 == 0) +{ +lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; +lean_dec(x_628); +lean_dec_ref(x_627); +lean_dec(x_618); +lean_dec_ref(x_617); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_616)) { + x_646 = lean_alloc_ctor(0, 2, 0); +} else { + x_646 = x_616; +} +lean_ctor_set(x_646, 0, x_632); +lean_ctor_set(x_646, 1, x_615); +if (lean_is_scalar(x_614)) { + x_647 = lean_alloc_ctor(0, 2, 0); +} else { + x_647 = x_614; +} +lean_ctor_set(x_647, 0, x_644); +lean_ctor_set(x_647, 1, x_646); +if (lean_is_scalar(x_612)) { + x_648 = lean_alloc_ctor(0, 2, 0); +} else { + x_648 = x_612; +} +lean_ctor_set(x_648, 0, x_611); +lean_ctor_set(x_648, 1, x_647); +x_649 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_649, 0, x_610); +lean_ctor_set(x_649, 1, x_648); +lean_ctor_set(x_8, 1, x_649); +x_650 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_650, 0, x_8); +return x_650; +} +else +{ +lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; uint8_t x_657; +lean_inc(x_642); +lean_inc(x_641); +lean_inc_ref(x_640); +if (lean_is_exclusive(x_611)) { + lean_ctor_release(x_611, 0); + lean_ctor_release(x_611, 1); + lean_ctor_release(x_611, 2); + x_651 = x_611; +} else { + lean_dec_ref(x_611); + x_651 = lean_box(0); +} +x_652 = lean_ctor_get(x_610, 0); +x_653 = lean_ctor_get(x_610, 1); +x_654 = lean_ctor_get(x_610, 2); +x_655 = lean_nat_add(x_641, x_630); +lean_inc_ref(x_640); +if (lean_is_scalar(x_651)) { + x_656 = lean_alloc_ctor(0, 3, 0); +} else { + x_656 = x_651; +} +lean_ctor_set(x_656, 0, x_640); +lean_ctor_set(x_656, 1, x_655); +lean_ctor_set(x_656, 2, x_642); +x_657 = lean_nat_dec_lt(x_653, x_654); +if (x_657 == 0) +{ +lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; +lean_dec(x_641); +lean_dec_ref(x_640); +lean_dec(x_628); +lean_dec_ref(x_627); +lean_dec(x_618); +lean_dec_ref(x_617); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_616)) { + x_658 = lean_alloc_ctor(0, 2, 0); +} else { + x_658 = x_616; +} +lean_ctor_set(x_658, 0, x_632); +lean_ctor_set(x_658, 1, x_615); +if (lean_is_scalar(x_614)) { + x_659 = lean_alloc_ctor(0, 2, 0); +} else { + x_659 = x_614; +} +lean_ctor_set(x_659, 0, x_644); +lean_ctor_set(x_659, 1, x_658); +if (lean_is_scalar(x_612)) { + x_660 = lean_alloc_ctor(0, 2, 0); +} else { + x_660 = x_612; +} +lean_ctor_set(x_660, 0, x_656); +lean_ctor_set(x_660, 1, x_659); +x_661 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_661, 0, x_610); +lean_ctor_set(x_661, 1, x_660); +lean_ctor_set(x_8, 1, x_661); +x_662 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_662, 0, x_8); +return x_662; +} +else +{ +lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; uint8_t x_669; +lean_inc(x_654); +lean_inc(x_653); +lean_inc_ref(x_652); +if (lean_is_exclusive(x_610)) { + lean_ctor_release(x_610, 0); + lean_ctor_release(x_610, 1); + lean_ctor_release(x_610, 2); + x_663 = x_610; +} else { + lean_dec_ref(x_610); + x_663 = lean_box(0); +} +x_664 = lean_ctor_get(x_31, 0); +x_665 = lean_ctor_get(x_31, 1); +x_666 = lean_ctor_get(x_31, 2); +x_667 = lean_nat_add(x_653, x_630); +lean_inc_ref(x_652); +if (lean_is_scalar(x_663)) { + x_668 = lean_alloc_ctor(0, 3, 0); +} else { + x_668 = x_663; +} +lean_ctor_set(x_668, 0, x_652); +lean_ctor_set(x_668, 1, x_667); +lean_ctor_set(x_668, 2, x_654); +x_669 = lean_nat_dec_lt(x_665, x_666); +if (x_669 == 0) +{ +lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; +lean_dec(x_653); +lean_dec_ref(x_652); +lean_dec(x_641); +lean_dec_ref(x_640); +lean_dec(x_628); +lean_dec_ref(x_627); +lean_dec(x_618); +lean_dec_ref(x_617); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_616)) { + x_670 = lean_alloc_ctor(0, 2, 0); +} else { + x_670 = x_616; +} +lean_ctor_set(x_670, 0, x_632); +lean_ctor_set(x_670, 1, x_615); +if (lean_is_scalar(x_614)) { + x_671 = lean_alloc_ctor(0, 2, 0); +} else { + x_671 = x_614; +} +lean_ctor_set(x_671, 0, x_644); +lean_ctor_set(x_671, 1, x_670); +if (lean_is_scalar(x_612)) { + x_672 = lean_alloc_ctor(0, 2, 0); +} else { + x_672 = x_612; +} +lean_ctor_set(x_672, 0, x_656); +lean_ctor_set(x_672, 1, x_671); +x_673 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_673, 0, x_668); +lean_ctor_set(x_673, 1, x_672); +lean_ctor_set(x_8, 1, x_673); +x_674 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_674, 0, x_8); +return x_674; +} +else +{ +lean_object* x_675; lean_object* x_676; lean_object* x_677; uint8_t x_678; uint8_t x_679; +lean_inc(x_666); +lean_inc(x_665); +lean_inc_ref(x_664); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + lean_ctor_release(x_31, 2); + x_675 = x_31; +} else { + lean_dec_ref(x_31); + x_675 = lean_box(0); +} +x_676 = lean_array_fget(x_652, x_653); +lean_dec(x_653); +lean_dec_ref(x_652); +x_677 = lean_ctor_get(x_676, 1); +x_678 = lean_ctor_get_uint8(x_676, sizeof(void*)*2); +x_679 = lean_nat_dec_eq(x_677, x_1); +if (x_679 == 0) +{ +lean_object* x_680; lean_object* x_681; +lean_dec_ref(x_676); +lean_dec(x_675); +lean_dec_ref(x_668); +lean_dec(x_666); +lean_dec(x_665); +lean_dec_ref(x_664); +lean_dec_ref(x_656); +lean_dec_ref(x_644); +lean_dec(x_641); +lean_dec_ref(x_640); +lean_dec_ref(x_632); +lean_dec(x_628); +lean_dec_ref(x_627); +lean_dec(x_618); +lean_dec_ref(x_617); +lean_dec(x_616); +lean_dec(x_615); +lean_dec(x_614); +lean_dec(x_612); +lean_free_object(x_8); +x_680 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_681 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_680, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_681) == 0) +{ +lean_object* x_682; lean_object* x_683; +x_682 = lean_ctor_get(x_681, 0); +lean_inc(x_682); +if (lean_is_exclusive(x_681)) { + lean_ctor_release(x_681, 0); + x_683 = x_681; +} else { + lean_dec_ref(x_681); + x_683 = lean_box(0); +} +if (lean_obj_tag(x_682) == 0) +{ +lean_object* x_684; lean_object* x_685; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_684 = lean_ctor_get(x_682, 0); +lean_inc(x_684); +lean_dec_ref(x_682); +if (lean_is_scalar(x_683)) { + x_685 = lean_alloc_ctor(0, 1, 0); +} else { + x_685 = x_683; +} +lean_ctor_set(x_685, 0, x_684); +return x_685; +} +else +{ +lean_object* x_686; +lean_dec(x_683); +x_686 = lean_ctor_get(x_682, 0); +lean_inc(x_686); +lean_dec_ref(x_682); +x_17 = x_686; +x_18 = lean_box(0); +goto block_24; } } else { -lean_object* x_622; lean_object* x_623; lean_object* x_624; -lean_dec(x_598); -lean_dec_ref(x_591); -lean_dec(x_589); -lean_dec(x_588); -lean_dec_ref(x_587); -lean_dec_ref(x_579); -lean_dec_ref(x_567); -lean_dec_ref(x_555); -lean_dec(x_539); -lean_dec(x_538); -lean_dec(x_537); -lean_dec(x_535); +lean_object* x_687; lean_object* x_688; lean_object* x_689; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_687 = lean_ctor_get(x_681, 0); +lean_inc(x_687); +if (lean_is_exclusive(x_681)) { + lean_ctor_release(x_681, 0); + x_688 = x_681; +} else { + lean_dec_ref(x_681); + x_688 = lean_box(0); +} +if (lean_is_scalar(x_688)) { + x_689 = lean_alloc_ctor(1, 1, 0); +} else { + x_689 = x_688; +} +lean_ctor_set(x_689, 0, x_687); +return x_689; +} +} +else +{ +lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; +x_690 = lean_array_fget(x_617, x_618); +lean_dec(x_618); +lean_dec_ref(x_617); +x_691 = lean_array_fget(x_627, x_628); +lean_dec(x_628); +lean_dec_ref(x_627); +x_692 = lean_array_fget(x_640, x_641); +lean_dec(x_641); +lean_dec_ref(x_640); +x_693 = lean_array_fget_borrowed(x_664, x_665); +x_694 = lean_box(x_3); +x_695 = lean_box(x_4); +x_696 = lean_box(x_678); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_9); +lean_inc_ref(x_2); +lean_inc_ref(x_693); +x_697 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_697, 0, x_692); +lean_closure_set(x_697, 1, x_690); +lean_closure_set(x_697, 2, x_693); +lean_closure_set(x_697, 3, x_2); +lean_closure_set(x_697, 4, x_9); +lean_closure_set(x_697, 5, x_694); +lean_closure_set(x_697, 6, x_695); +lean_closure_set(x_697, 7, x_5); +lean_closure_set(x_697, 8, x_6); +lean_closure_set(x_697, 9, x_696); +lean_closure_set(x_697, 10, x_630); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_698 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_691, x_676, x_697, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_698) == 0) +{ +lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; +x_699 = lean_ctor_get(x_698, 0); +lean_inc(x_699); +lean_dec_ref(x_698); +x_700 = lean_nat_add(x_665, x_630); +lean_dec(x_665); +if (lean_is_scalar(x_675)) { + x_701 = lean_alloc_ctor(0, 3, 0); +} else { + x_701 = x_675; +} +lean_ctor_set(x_701, 0, x_664); +lean_ctor_set(x_701, 1, x_700); +lean_ctor_set(x_701, 2, x_666); +x_702 = lean_array_push(x_615, x_699); +if (lean_is_scalar(x_616)) { + x_703 = lean_alloc_ctor(0, 2, 0); +} else { + x_703 = x_616; +} +lean_ctor_set(x_703, 0, x_632); +lean_ctor_set(x_703, 1, x_702); +if (lean_is_scalar(x_614)) { + x_704 = lean_alloc_ctor(0, 2, 0); +} else { + x_704 = x_614; +} +lean_ctor_set(x_704, 0, x_644); +lean_ctor_set(x_704, 1, x_703); +if (lean_is_scalar(x_612)) { + x_705 = lean_alloc_ctor(0, 2, 0); +} else { + x_705 = x_612; +} +lean_ctor_set(x_705, 0, x_656); +lean_ctor_set(x_705, 1, x_704); +x_706 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_706, 0, x_668); +lean_ctor_set(x_706, 1, x_705); +lean_ctor_set(x_8, 1, x_706); +lean_ctor_set(x_8, 0, x_701); +x_17 = x_8; +x_18 = lean_box(0); +goto block_24; +} +else +{ +lean_object* x_707; lean_object* x_708; lean_object* x_709; +lean_dec(x_675); +lean_dec_ref(x_668); +lean_dec(x_666); +lean_dec(x_665); +lean_dec_ref(x_664); +lean_dec_ref(x_656); +lean_dec_ref(x_644); +lean_dec_ref(x_632); +lean_dec(x_616); +lean_dec(x_615); +lean_dec(x_614); +lean_dec(x_612); lean_free_object(x_8); lean_dec(x_15); lean_dec_ref(x_14); @@ -40261,24 +42081,24 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_622 = lean_ctor_get(x_608, 0); -lean_inc(x_622); -if (lean_is_exclusive(x_608)) { - lean_ctor_release(x_608, 0); - x_623 = x_608; +lean_dec_ref(x_2); +x_707 = lean_ctor_get(x_698, 0); +lean_inc(x_707); +if (lean_is_exclusive(x_698)) { + lean_ctor_release(x_698, 0); + x_708 = x_698; } else { - lean_dec_ref(x_608); - x_623 = lean_box(0); + lean_dec_ref(x_698); + x_708 = lean_box(0); } -if (lean_is_scalar(x_623)) { - x_624 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_708)) { + x_709 = lean_alloc_ctor(1, 1, 0); } else { - x_624 = x_623; + x_709 = x_708; +} +lean_ctor_set(x_709, 0, x_707); +return x_709; } -lean_ctor_set(x_624, 0, x_622); -return x_624; } } } @@ -40289,57 +42109,57 @@ return x_624; } else { -lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; uint8_t x_637; -x_625 = lean_ctor_get(x_8, 0); -lean_inc(x_625); +lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; uint8_t x_722; +x_710 = lean_ctor_get(x_8, 0); +lean_inc(x_710); lean_dec(x_8); -x_626 = lean_ctor_get(x_17, 0); -lean_inc(x_626); -if (lean_is_exclusive(x_17)) { - lean_ctor_release(x_17, 0); - lean_ctor_release(x_17, 1); - x_627 = x_17; +x_711 = lean_ctor_get(x_25, 0); +lean_inc(x_711); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + x_712 = x_25; } else { - lean_dec_ref(x_17); - x_627 = lean_box(0); + lean_dec_ref(x_25); + x_712 = lean_box(0); } -x_628 = lean_ctor_get(x_18, 0); -lean_inc(x_628); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_629 = x_18; +x_713 = lean_ctor_get(x_26, 0); +lean_inc(x_713); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_714 = x_26; } else { - lean_dec_ref(x_18); - x_629 = lean_box(0); + lean_dec_ref(x_26); + x_714 = lean_box(0); } -x_630 = lean_ctor_get(x_19, 0); -lean_inc(x_630); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_631 = x_19; +x_715 = lean_ctor_get(x_27, 0); +lean_inc(x_715); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_716 = x_27; } else { - lean_dec_ref(x_19); - x_631 = lean_box(0); + lean_dec_ref(x_27); + x_716 = lean_box(0); } -x_632 = lean_ctor_get(x_20, 1); -lean_inc(x_632); -if (lean_is_exclusive(x_20)) { - lean_ctor_release(x_20, 0); - lean_ctor_release(x_20, 1); - x_633 = x_20; +x_717 = lean_ctor_get(x_28, 1); +lean_inc(x_717); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_718 = x_28; } else { - lean_dec_ref(x_20); - x_633 = lean_box(0); + lean_dec_ref(x_28); + x_718 = lean_box(0); } -x_634 = lean_ctor_get(x_21, 0); -x_635 = lean_ctor_get(x_21, 1); -x_636 = lean_ctor_get(x_21, 2); -x_637 = lean_nat_dec_lt(x_635, x_636); -if (x_637 == 0) +x_719 = lean_ctor_get(x_29, 0); +x_720 = lean_ctor_get(x_29, 1); +x_721 = lean_ctor_get(x_29, 2); +x_722 = lean_nat_dec_lt(x_720, x_721); +if (x_722 == 0) { -lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; +lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -40349,78 +42169,77 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_633)) { - x_638 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_718)) { + x_723 = lean_alloc_ctor(0, 2, 0); } else { - x_638 = x_633; + x_723 = x_718; } -lean_ctor_set(x_638, 0, x_21); -lean_ctor_set(x_638, 1, x_632); -if (lean_is_scalar(x_631)) { - x_639 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_723, 0, x_29); +lean_ctor_set(x_723, 1, x_717); +if (lean_is_scalar(x_716)) { + x_724 = lean_alloc_ctor(0, 2, 0); } else { - x_639 = x_631; + x_724 = x_716; } -lean_ctor_set(x_639, 0, x_630); -lean_ctor_set(x_639, 1, x_638); -if (lean_is_scalar(x_629)) { - x_640 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_724, 0, x_715); +lean_ctor_set(x_724, 1, x_723); +if (lean_is_scalar(x_714)) { + x_725 = lean_alloc_ctor(0, 2, 0); } else { - x_640 = x_629; + x_725 = x_714; } -lean_ctor_set(x_640, 0, x_628); -lean_ctor_set(x_640, 1, x_639); -if (lean_is_scalar(x_627)) { - x_641 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_725, 0, x_713); +lean_ctor_set(x_725, 1, x_724); +if (lean_is_scalar(x_712)) { + x_726 = lean_alloc_ctor(0, 2, 0); } else { - x_641 = x_627; + x_726 = x_712; } -lean_ctor_set(x_641, 0, x_626); -lean_ctor_set(x_641, 1, x_640); -x_642 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_642, 0, x_625); -lean_ctor_set(x_642, 1, x_641); -x_643 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_643, 0, x_642); -return x_643; +lean_ctor_set(x_726, 0, x_711); +lean_ctor_set(x_726, 1, x_725); +x_727 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_727, 0, x_710); +lean_ctor_set(x_727, 1, x_726); +x_728 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_728, 0, x_727); +return x_728; } else { -lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; uint8_t x_651; -lean_inc(x_636); -lean_inc(x_635); -lean_inc_ref(x_634); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_644 = x_21; +lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; uint8_t x_736; +lean_inc(x_721); +lean_inc(x_720); +lean_inc_ref(x_719); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_729 = x_29; } else { - lean_dec_ref(x_21); - x_644 = lean_box(0); + lean_dec_ref(x_29); + x_729 = lean_box(0); } -x_645 = lean_ctor_get(x_630, 0); -x_646 = lean_ctor_get(x_630, 1); -x_647 = lean_ctor_get(x_630, 2); -x_648 = lean_unsigned_to_nat(1u); -x_649 = lean_nat_add(x_635, x_648); -lean_inc_ref(x_634); -if (lean_is_scalar(x_644)) { - x_650 = lean_alloc_ctor(0, 3, 0); +x_730 = lean_ctor_get(x_715, 0); +x_731 = lean_ctor_get(x_715, 1); +x_732 = lean_ctor_get(x_715, 2); +x_733 = lean_unsigned_to_nat(1u); +x_734 = lean_nat_add(x_720, x_733); +lean_inc_ref(x_719); +if (lean_is_scalar(x_729)) { + x_735 = lean_alloc_ctor(0, 3, 0); } else { - x_650 = x_644; + x_735 = x_729; } -lean_ctor_set(x_650, 0, x_634); -lean_ctor_set(x_650, 1, x_649); -lean_ctor_set(x_650, 2, x_636); -x_651 = lean_nat_dec_lt(x_646, x_647); -if (x_651 == 0) +lean_ctor_set(x_735, 0, x_719); +lean_ctor_set(x_735, 1, x_734); +lean_ctor_set(x_735, 2, x_721); +x_736 = lean_nat_dec_lt(x_731, x_732); +if (x_736 == 0) { -lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; -lean_dec(x_635); -lean_dec_ref(x_634); +lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; +lean_dec(x_720); +lean_dec_ref(x_719); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -40430,79 +42249,78 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_633)) { - x_652 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_718)) { + x_737 = lean_alloc_ctor(0, 2, 0); } else { - x_652 = x_633; + x_737 = x_718; } -lean_ctor_set(x_652, 0, x_650); -lean_ctor_set(x_652, 1, x_632); -if (lean_is_scalar(x_631)) { - x_653 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_737, 0, x_735); +lean_ctor_set(x_737, 1, x_717); +if (lean_is_scalar(x_716)) { + x_738 = lean_alloc_ctor(0, 2, 0); } else { - x_653 = x_631; + x_738 = x_716; } -lean_ctor_set(x_653, 0, x_630); -lean_ctor_set(x_653, 1, x_652); -if (lean_is_scalar(x_629)) { - x_654 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_738, 0, x_715); +lean_ctor_set(x_738, 1, x_737); +if (lean_is_scalar(x_714)) { + x_739 = lean_alloc_ctor(0, 2, 0); } else { - x_654 = x_629; + x_739 = x_714; } -lean_ctor_set(x_654, 0, x_628); -lean_ctor_set(x_654, 1, x_653); -if (lean_is_scalar(x_627)) { - x_655 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_739, 0, x_713); +lean_ctor_set(x_739, 1, x_738); +if (lean_is_scalar(x_712)) { + x_740 = lean_alloc_ctor(0, 2, 0); } else { - x_655 = x_627; + x_740 = x_712; } -lean_ctor_set(x_655, 0, x_626); -lean_ctor_set(x_655, 1, x_654); -x_656 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_656, 0, x_625); -lean_ctor_set(x_656, 1, x_655); -x_657 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_657, 0, x_656); -return x_657; +lean_ctor_set(x_740, 0, x_711); +lean_ctor_set(x_740, 1, x_739); +x_741 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_741, 0, x_710); +lean_ctor_set(x_741, 1, x_740); +x_742 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_742, 0, x_741); +return x_742; } else { -lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; uint8_t x_664; -lean_inc(x_647); -lean_inc(x_646); -lean_inc_ref(x_645); -if (lean_is_exclusive(x_630)) { - lean_ctor_release(x_630, 0); - lean_ctor_release(x_630, 1); - lean_ctor_release(x_630, 2); - x_658 = x_630; +lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; uint8_t x_749; +lean_inc(x_732); +lean_inc(x_731); +lean_inc_ref(x_730); +if (lean_is_exclusive(x_715)) { + lean_ctor_release(x_715, 0); + lean_ctor_release(x_715, 1); + lean_ctor_release(x_715, 2); + x_743 = x_715; } else { - lean_dec_ref(x_630); - x_658 = lean_box(0); + lean_dec_ref(x_715); + x_743 = lean_box(0); } -x_659 = lean_ctor_get(x_628, 0); -x_660 = lean_ctor_get(x_628, 1); -x_661 = lean_ctor_get(x_628, 2); -x_662 = lean_nat_add(x_646, x_648); -lean_inc_ref(x_645); -if (lean_is_scalar(x_658)) { - x_663 = lean_alloc_ctor(0, 3, 0); +x_744 = lean_ctor_get(x_713, 0); +x_745 = lean_ctor_get(x_713, 1); +x_746 = lean_ctor_get(x_713, 2); +x_747 = lean_nat_add(x_731, x_733); +lean_inc_ref(x_730); +if (lean_is_scalar(x_743)) { + x_748 = lean_alloc_ctor(0, 3, 0); } else { - x_663 = x_658; + x_748 = x_743; } -lean_ctor_set(x_663, 0, x_645); -lean_ctor_set(x_663, 1, x_662); -lean_ctor_set(x_663, 2, x_647); -x_664 = lean_nat_dec_lt(x_660, x_661); -if (x_664 == 0) +lean_ctor_set(x_748, 0, x_730); +lean_ctor_set(x_748, 1, x_747); +lean_ctor_set(x_748, 2, x_732); +x_749 = lean_nat_dec_lt(x_745, x_746); +if (x_749 == 0) { -lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; -lean_dec(x_646); -lean_dec_ref(x_645); -lean_dec(x_635); -lean_dec_ref(x_634); +lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; +lean_dec(x_731); +lean_dec_ref(x_730); +lean_dec(x_720); +lean_dec_ref(x_719); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -40512,81 +42330,80 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_633)) { - x_665 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_718)) { + x_750 = lean_alloc_ctor(0, 2, 0); } else { - x_665 = x_633; + x_750 = x_718; } -lean_ctor_set(x_665, 0, x_650); -lean_ctor_set(x_665, 1, x_632); -if (lean_is_scalar(x_631)) { - x_666 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_750, 0, x_735); +lean_ctor_set(x_750, 1, x_717); +if (lean_is_scalar(x_716)) { + x_751 = lean_alloc_ctor(0, 2, 0); } else { - x_666 = x_631; + x_751 = x_716; } -lean_ctor_set(x_666, 0, x_663); -lean_ctor_set(x_666, 1, x_665); -if (lean_is_scalar(x_629)) { - x_667 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_751, 0, x_748); +lean_ctor_set(x_751, 1, x_750); +if (lean_is_scalar(x_714)) { + x_752 = lean_alloc_ctor(0, 2, 0); } else { - x_667 = x_629; + x_752 = x_714; } -lean_ctor_set(x_667, 0, x_628); -lean_ctor_set(x_667, 1, x_666); -if (lean_is_scalar(x_627)) { - x_668 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_752, 0, x_713); +lean_ctor_set(x_752, 1, x_751); +if (lean_is_scalar(x_712)) { + x_753 = lean_alloc_ctor(0, 2, 0); } else { - x_668 = x_627; + x_753 = x_712; } -lean_ctor_set(x_668, 0, x_626); -lean_ctor_set(x_668, 1, x_667); -x_669 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_669, 0, x_625); -lean_ctor_set(x_669, 1, x_668); -x_670 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_670, 0, x_669); -return x_670; +lean_ctor_set(x_753, 0, x_711); +lean_ctor_set(x_753, 1, x_752); +x_754 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_754, 0, x_710); +lean_ctor_set(x_754, 1, x_753); +x_755 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_755, 0, x_754); +return x_755; } else { -lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; uint8_t x_677; -lean_inc(x_661); -lean_inc(x_660); -lean_inc_ref(x_659); -if (lean_is_exclusive(x_628)) { - lean_ctor_release(x_628, 0); - lean_ctor_release(x_628, 1); - lean_ctor_release(x_628, 2); - x_671 = x_628; +lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; uint8_t x_762; +lean_inc(x_746); +lean_inc(x_745); +lean_inc_ref(x_744); +if (lean_is_exclusive(x_713)) { + lean_ctor_release(x_713, 0); + lean_ctor_release(x_713, 1); + lean_ctor_release(x_713, 2); + x_756 = x_713; } else { - lean_dec_ref(x_628); - x_671 = lean_box(0); + lean_dec_ref(x_713); + x_756 = lean_box(0); } -x_672 = lean_ctor_get(x_626, 0); -x_673 = lean_ctor_get(x_626, 1); -x_674 = lean_ctor_get(x_626, 2); -x_675 = lean_nat_add(x_660, x_648); -lean_inc_ref(x_659); -if (lean_is_scalar(x_671)) { - x_676 = lean_alloc_ctor(0, 3, 0); +x_757 = lean_ctor_get(x_711, 0); +x_758 = lean_ctor_get(x_711, 1); +x_759 = lean_ctor_get(x_711, 2); +x_760 = lean_nat_add(x_745, x_733); +lean_inc_ref(x_744); +if (lean_is_scalar(x_756)) { + x_761 = lean_alloc_ctor(0, 3, 0); } else { - x_676 = x_671; + x_761 = x_756; } -lean_ctor_set(x_676, 0, x_659); -lean_ctor_set(x_676, 1, x_675); -lean_ctor_set(x_676, 2, x_661); -x_677 = lean_nat_dec_lt(x_673, x_674); -if (x_677 == 0) +lean_ctor_set(x_761, 0, x_744); +lean_ctor_set(x_761, 1, x_760); +lean_ctor_set(x_761, 2, x_746); +x_762 = lean_nat_dec_lt(x_758, x_759); +if (x_762 == 0) { -lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; -lean_dec(x_660); -lean_dec_ref(x_659); -lean_dec(x_646); -lean_dec_ref(x_645); -lean_dec(x_635); -lean_dec_ref(x_634); +lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; +lean_dec(x_745); +lean_dec_ref(x_744); +lean_dec(x_731); +lean_dec_ref(x_730); +lean_dec(x_720); +lean_dec_ref(x_719); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -40596,83 +42413,82 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_633)) { - x_678 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_718)) { + x_763 = lean_alloc_ctor(0, 2, 0); } else { - x_678 = x_633; + x_763 = x_718; } -lean_ctor_set(x_678, 0, x_650); -lean_ctor_set(x_678, 1, x_632); -if (lean_is_scalar(x_631)) { - x_679 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_763, 0, x_735); +lean_ctor_set(x_763, 1, x_717); +if (lean_is_scalar(x_716)) { + x_764 = lean_alloc_ctor(0, 2, 0); } else { - x_679 = x_631; + x_764 = x_716; } -lean_ctor_set(x_679, 0, x_663); -lean_ctor_set(x_679, 1, x_678); -if (lean_is_scalar(x_629)) { - x_680 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_764, 0, x_748); +lean_ctor_set(x_764, 1, x_763); +if (lean_is_scalar(x_714)) { + x_765 = lean_alloc_ctor(0, 2, 0); } else { - x_680 = x_629; + x_765 = x_714; } -lean_ctor_set(x_680, 0, x_676); -lean_ctor_set(x_680, 1, x_679); -if (lean_is_scalar(x_627)) { - x_681 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_765, 0, x_761); +lean_ctor_set(x_765, 1, x_764); +if (lean_is_scalar(x_712)) { + x_766 = lean_alloc_ctor(0, 2, 0); } else { - x_681 = x_627; + x_766 = x_712; } -lean_ctor_set(x_681, 0, x_626); -lean_ctor_set(x_681, 1, x_680); -x_682 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_682, 0, x_625); -lean_ctor_set(x_682, 1, x_681); -x_683 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_683, 0, x_682); -return x_683; +lean_ctor_set(x_766, 0, x_711); +lean_ctor_set(x_766, 1, x_765); +x_767 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_767, 0, x_710); +lean_ctor_set(x_767, 1, x_766); +x_768 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_768, 0, x_767); +return x_768; } else { -lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; uint8_t x_690; -lean_inc(x_674); -lean_inc(x_673); -lean_inc_ref(x_672); -if (lean_is_exclusive(x_626)) { - lean_ctor_release(x_626, 0); - lean_ctor_release(x_626, 1); - lean_ctor_release(x_626, 2); - x_684 = x_626; +lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; uint8_t x_775; +lean_inc(x_759); +lean_inc(x_758); +lean_inc_ref(x_757); +if (lean_is_exclusive(x_711)) { + lean_ctor_release(x_711, 0); + lean_ctor_release(x_711, 1); + lean_ctor_release(x_711, 2); + x_769 = x_711; } else { - lean_dec_ref(x_626); - x_684 = lean_box(0); + lean_dec_ref(x_711); + x_769 = lean_box(0); } -x_685 = lean_ctor_get(x_625, 0); -x_686 = lean_ctor_get(x_625, 1); -x_687 = lean_ctor_get(x_625, 2); -x_688 = lean_nat_add(x_673, x_648); -lean_inc_ref(x_672); -if (lean_is_scalar(x_684)) { - x_689 = lean_alloc_ctor(0, 3, 0); +x_770 = lean_ctor_get(x_710, 0); +x_771 = lean_ctor_get(x_710, 1); +x_772 = lean_ctor_get(x_710, 2); +x_773 = lean_nat_add(x_758, x_733); +lean_inc_ref(x_757); +if (lean_is_scalar(x_769)) { + x_774 = lean_alloc_ctor(0, 3, 0); } else { - x_689 = x_684; + x_774 = x_769; } -lean_ctor_set(x_689, 0, x_672); -lean_ctor_set(x_689, 1, x_688); -lean_ctor_set(x_689, 2, x_674); -x_690 = lean_nat_dec_lt(x_686, x_687); -if (x_690 == 0) +lean_ctor_set(x_774, 0, x_757); +lean_ctor_set(x_774, 1, x_773); +lean_ctor_set(x_774, 2, x_759); +x_775 = lean_nat_dec_lt(x_771, x_772); +if (x_775 == 0) { -lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; -lean_dec(x_673); -lean_dec_ref(x_672); -lean_dec(x_660); -lean_dec_ref(x_659); -lean_dec(x_646); -lean_dec_ref(x_645); -lean_dec(x_635); -lean_dec_ref(x_634); +lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; +lean_dec(x_758); +lean_dec_ref(x_757); +lean_dec(x_745); +lean_dec_ref(x_744); +lean_dec(x_731); +lean_dec_ref(x_730); +lean_dec(x_720); +lean_dec_ref(x_719); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -40682,162 +42498,326 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_633)) { - x_691 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_718)) { + x_776 = lean_alloc_ctor(0, 2, 0); } else { - x_691 = x_633; + x_776 = x_718; } -lean_ctor_set(x_691, 0, x_650); -lean_ctor_set(x_691, 1, x_632); -if (lean_is_scalar(x_631)) { - x_692 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_776, 0, x_735); +lean_ctor_set(x_776, 1, x_717); +if (lean_is_scalar(x_716)) { + x_777 = lean_alloc_ctor(0, 2, 0); } else { - x_692 = x_631; + x_777 = x_716; } -lean_ctor_set(x_692, 0, x_663); -lean_ctor_set(x_692, 1, x_691); -if (lean_is_scalar(x_629)) { - x_693 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_777, 0, x_748); +lean_ctor_set(x_777, 1, x_776); +if (lean_is_scalar(x_714)) { + x_778 = lean_alloc_ctor(0, 2, 0); } else { - x_693 = x_629; + x_778 = x_714; } -lean_ctor_set(x_693, 0, x_676); -lean_ctor_set(x_693, 1, x_692); -if (lean_is_scalar(x_627)) { - x_694 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_778, 0, x_761); +lean_ctor_set(x_778, 1, x_777); +if (lean_is_scalar(x_712)) { + x_779 = lean_alloc_ctor(0, 2, 0); } else { - x_694 = x_627; + x_779 = x_712; } -lean_ctor_set(x_694, 0, x_689); -lean_ctor_set(x_694, 1, x_693); -x_695 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_695, 0, x_625); -lean_ctor_set(x_695, 1, x_694); -x_696 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_696, 0, x_695); -return x_696; +lean_ctor_set(x_779, 0, x_774); +lean_ctor_set(x_779, 1, x_778); +x_780 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_780, 0, x_710); +lean_ctor_set(x_780, 1, x_779); +x_781 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_781, 0, x_780); +return x_781; } else { -lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; -lean_inc(x_687); -lean_inc(x_686); -lean_inc_ref(x_685); -if (lean_is_exclusive(x_625)) { - lean_ctor_release(x_625, 0); - lean_ctor_release(x_625, 1); - lean_ctor_release(x_625, 2); - x_697 = x_625; +lean_object* x_782; lean_object* x_783; lean_object* x_784; uint8_t x_785; uint8_t x_786; +lean_inc(x_772); +lean_inc(x_771); +lean_inc_ref(x_770); +if (lean_is_exclusive(x_710)) { + lean_ctor_release(x_710, 0); + lean_ctor_release(x_710, 1); + lean_ctor_release(x_710, 2); + x_782 = x_710; } else { - lean_dec_ref(x_625); - x_697 = lean_box(0); + lean_dec_ref(x_710); + x_782 = lean_box(0); } -x_698 = lean_array_fget(x_634, x_635); -lean_dec(x_635); -lean_dec_ref(x_634); -x_699 = lean_array_fget(x_645, x_646); -lean_dec(x_646); -lean_dec_ref(x_645); -x_700 = lean_array_fget(x_659, x_660); -lean_dec(x_660); -lean_dec_ref(x_659); -x_701 = lean_array_fget(x_672, x_673); -lean_dec(x_673); -lean_dec_ref(x_672); -x_702 = lean_array_fget_borrowed(x_685, x_686); -x_703 = lean_box(x_2); -x_704 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_9); -lean_inc_ref(x_1); -lean_inc_ref(x_702); -x_705 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___boxed), 20, 11); -lean_closure_set(x_705, 0, x_698); -lean_closure_set(x_705, 1, x_702); -lean_closure_set(x_705, 2, x_1); -lean_closure_set(x_705, 3, x_9); -lean_closure_set(x_705, 4, x_703); -lean_closure_set(x_705, 5, x_704); -lean_closure_set(x_705, 6, x_4); -lean_closure_set(x_705, 7, x_5); -lean_closure_set(x_705, 8, x_700); -lean_closure_set(x_705, 9, x_6); -lean_closure_set(x_705, 10, x_648); -x_706 = lean_nat_sub(x_701, x_5); -lean_dec(x_701); +x_783 = lean_array_fget(x_757, x_758); +lean_dec(x_758); +lean_dec_ref(x_757); +x_784 = lean_ctor_get(x_783, 1); +x_785 = lean_ctor_get_uint8(x_783, sizeof(void*)*2); +x_786 = lean_nat_dec_eq(x_784, x_1); +if (x_786 == 0) +{ +lean_object* x_787; lean_object* x_788; +lean_dec_ref(x_783); +lean_dec(x_782); +lean_dec_ref(x_774); +lean_dec(x_772); +lean_dec(x_771); +lean_dec_ref(x_770); +lean_dec_ref(x_761); +lean_dec_ref(x_748); +lean_dec(x_745); +lean_dec_ref(x_744); +lean_dec_ref(x_735); +lean_dec(x_731); +lean_dec_ref(x_730); +lean_dec(x_720); +lean_dec_ref(x_719); +lean_dec(x_718); +lean_dec(x_717); +lean_dec(x_716); +lean_dec(x_714); +lean_dec(x_712); +x_787 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; lean_inc(x_15); lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_707 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(x_699, x_706, x_6, x_705, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_707) == 0) +x_788 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_787, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_788) == 0) { -lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; uint8_t x_719; -x_708 = lean_ctor_get(x_707, 0); -lean_inc(x_708); -if (lean_is_exclusive(x_707)) { - lean_ctor_release(x_707, 0); - x_709 = x_707; +lean_object* x_789; lean_object* x_790; +x_789 = lean_ctor_get(x_788, 0); +lean_inc(x_789); +if (lean_is_exclusive(x_788)) { + lean_ctor_release(x_788, 0); + x_790 = x_788; } else { - lean_dec_ref(x_707); - x_709 = lean_box(0); + lean_dec_ref(x_788); + x_790 = lean_box(0); } -x_710 = lean_nat_add(x_686, x_648); -lean_dec(x_686); -if (lean_is_scalar(x_697)) { - x_711 = lean_alloc_ctor(0, 3, 0); -} else { - x_711 = x_697; -} -lean_ctor_set(x_711, 0, x_685); -lean_ctor_set(x_711, 1, x_710); -lean_ctor_set(x_711, 2, x_687); -x_712 = lean_array_push(x_632, x_708); -if (lean_is_scalar(x_633)) { - x_713 = lean_alloc_ctor(0, 2, 0); -} else { - x_713 = x_633; -} -lean_ctor_set(x_713, 0, x_650); -lean_ctor_set(x_713, 1, x_712); -if (lean_is_scalar(x_631)) { - x_714 = lean_alloc_ctor(0, 2, 0); -} else { - x_714 = x_631; -} -lean_ctor_set(x_714, 0, x_663); -lean_ctor_set(x_714, 1, x_713); -if (lean_is_scalar(x_629)) { - x_715 = lean_alloc_ctor(0, 2, 0); -} else { - x_715 = x_629; -} -lean_ctor_set(x_715, 0, x_676); -lean_ctor_set(x_715, 1, x_714); -if (lean_is_scalar(x_627)) { - x_716 = lean_alloc_ctor(0, 2, 0); -} else { - x_716 = x_627; -} -lean_ctor_set(x_716, 0, x_689); -lean_ctor_set(x_716, 1, x_715); -x_717 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_717, 0, x_711); -lean_ctor_set(x_717, 1, x_716); -x_718 = lean_nat_add(x_9, x_648); +if (lean_obj_tag(x_789) == 0) +{ +lean_object* x_791; lean_object* x_792; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); lean_dec(x_9); -x_719 = lean_nat_dec_lt(x_718, x_7); -if (x_719 == 0) +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_791 = lean_ctor_get(x_789, 0); +lean_inc(x_791); +lean_dec_ref(x_789); +if (lean_is_scalar(x_790)) { + x_792 = lean_alloc_ctor(0, 1, 0); +} else { + x_792 = x_790; +} +lean_ctor_set(x_792, 0, x_791); +return x_792; +} +else { -lean_object* x_720; +lean_object* x_793; +lean_dec(x_790); +x_793 = lean_ctor_get(x_789, 0); +lean_inc(x_793); +lean_dec_ref(x_789); +x_17 = x_793; +x_18 = lean_box(0); +goto block_24; +} +} +else +{ +lean_object* x_794; lean_object* x_795; lean_object* x_796; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_794 = lean_ctor_get(x_788, 0); +lean_inc(x_794); +if (lean_is_exclusive(x_788)) { + lean_ctor_release(x_788, 0); + x_795 = x_788; +} else { + lean_dec_ref(x_788); + x_795 = lean_box(0); +} +if (lean_is_scalar(x_795)) { + x_796 = lean_alloc_ctor(1, 1, 0); +} else { + x_796 = x_795; +} +lean_ctor_set(x_796, 0, x_794); +return x_796; +} +} +else +{ +lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; +x_797 = lean_array_fget(x_719, x_720); +lean_dec(x_720); +lean_dec_ref(x_719); +x_798 = lean_array_fget(x_730, x_731); +lean_dec(x_731); +lean_dec_ref(x_730); +x_799 = lean_array_fget(x_744, x_745); +lean_dec(x_745); +lean_dec_ref(x_744); +x_800 = lean_array_fget_borrowed(x_770, x_771); +x_801 = lean_box(x_3); +x_802 = lean_box(x_4); +x_803 = lean_box(x_785); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_9); +lean_inc_ref(x_2); +lean_inc_ref(x_800); +x_804 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_804, 0, x_799); +lean_closure_set(x_804, 1, x_797); +lean_closure_set(x_804, 2, x_800); +lean_closure_set(x_804, 3, x_2); +lean_closure_set(x_804, 4, x_9); +lean_closure_set(x_804, 5, x_801); +lean_closure_set(x_804, 6, x_802); +lean_closure_set(x_804, 7, x_5); +lean_closure_set(x_804, 8, x_6); +lean_closure_set(x_804, 9, x_803); +lean_closure_set(x_804, 10, x_733); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_805 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_798, x_783, x_804, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_805) == 0) +{ +lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; +x_806 = lean_ctor_get(x_805, 0); +lean_inc(x_806); +lean_dec_ref(x_805); +x_807 = lean_nat_add(x_771, x_733); +lean_dec(x_771); +if (lean_is_scalar(x_782)) { + x_808 = lean_alloc_ctor(0, 3, 0); +} else { + x_808 = x_782; +} +lean_ctor_set(x_808, 0, x_770); +lean_ctor_set(x_808, 1, x_807); +lean_ctor_set(x_808, 2, x_772); +x_809 = lean_array_push(x_717, x_806); +if (lean_is_scalar(x_718)) { + x_810 = lean_alloc_ctor(0, 2, 0); +} else { + x_810 = x_718; +} +lean_ctor_set(x_810, 0, x_735); +lean_ctor_set(x_810, 1, x_809); +if (lean_is_scalar(x_716)) { + x_811 = lean_alloc_ctor(0, 2, 0); +} else { + x_811 = x_716; +} +lean_ctor_set(x_811, 0, x_748); +lean_ctor_set(x_811, 1, x_810); +if (lean_is_scalar(x_714)) { + x_812 = lean_alloc_ctor(0, 2, 0); +} else { + x_812 = x_714; +} +lean_ctor_set(x_812, 0, x_761); +lean_ctor_set(x_812, 1, x_811); +if (lean_is_scalar(x_712)) { + x_813 = lean_alloc_ctor(0, 2, 0); +} else { + x_813 = x_712; +} +lean_ctor_set(x_813, 0, x_774); +lean_ctor_set(x_813, 1, x_812); +x_814 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_814, 0, x_808); +lean_ctor_set(x_814, 1, x_813); +x_17 = x_814; +x_18 = lean_box(0); +goto block_24; +} +else +{ +lean_object* x_815; lean_object* x_816; lean_object* x_817; +lean_dec(x_782); +lean_dec_ref(x_774); +lean_dec(x_772); +lean_dec(x_771); +lean_dec_ref(x_770); +lean_dec_ref(x_761); +lean_dec_ref(x_748); +lean_dec_ref(x_735); lean_dec(x_718); +lean_dec(x_717); +lean_dec(x_716); +lean_dec(x_714); +lean_dec(x_712); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_815 = lean_ctor_get(x_805, 0); +lean_inc(x_815); +if (lean_is_exclusive(x_805)) { + lean_ctor_release(x_805, 0); + x_816 = x_805; +} else { + lean_dec_ref(x_805); + x_816 = lean_box(0); +} +if (lean_is_scalar(x_816)) { + x_817 = lean_alloc_ctor(1, 1, 0); +} else { + x_817 = x_816; +} +lean_ctor_set(x_817, 0, x_815); +return x_817; +} +} +} +} +} +} +} +} +block_24: +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_unsigned_to_nat(1u); +x_20 = lean_nat_add(x_9, x_19); +lean_dec(x_9); +x_21 = lean_nat_dec_lt(x_20, x_7); +if (x_21 == 0) +{ +lean_object* x_22; +lean_dec(x_20); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); @@ -40846,85 +42826,5309 @@ lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_709)) { - x_720 = lean_alloc_ctor(0, 1, 0); -} else { - x_720 = x_709; -} -lean_ctor_set(x_720, 0, x_717); -return x_720; +lean_dec_ref(x_2); +x_22 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_22, 0, x_17); +return x_22; } else { -lean_dec(x_709); -x_8 = x_717; -x_9 = x_718; +x_8 = x_17; +x_9 = x_20; goto _start; } } -else -{ -lean_object* x_722; lean_object* x_723; lean_object* x_724; -lean_dec(x_697); -lean_dec_ref(x_689); -lean_dec(x_687); -lean_dec(x_686); -lean_dec_ref(x_685); -lean_dec_ref(x_676); -lean_dec_ref(x_663); -lean_dec_ref(x_650); -lean_dec(x_633); -lean_dec(x_632); -lean_dec(x_631); -lean_dec(x_629); -lean_dec(x_627); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_722 = lean_ctor_get(x_707, 0); -lean_inc(x_722); -if (lean_is_exclusive(x_707)) { - lean_ctor_release(x_707, 0); - x_723 = x_707; -} else { - lean_dec_ref(x_707); - x_723 = lean_box(0); -} -if (lean_is_scalar(x_723)) { - x_724 = lean_alloc_ctor(1, 1, 0); -} else { - x_724 = x_723; -} -lean_ctor_set(x_724, 0, x_722); -return x_724; } } -} -} -} -} -} -} -} -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { _start: { lean_object* x_23; -x_23 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_12, x_13, x_16, x_17, x_18, x_19, x_20, x_21); +x_23 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_12, x_13, x_16, x_17, x_18, x_19, x_20, x_21); return x_23; } } -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +lean_object* x_18; lean_object* x_19; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_26 = lean_ctor_get(x_9, 1); +lean_inc(x_26); +x_27 = lean_ctor_get(x_26, 1); +lean_inc(x_27); +x_28 = lean_ctor_get(x_27, 1); +lean_inc(x_28); +x_29 = lean_ctor_get(x_28, 1); +lean_inc(x_29); +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = !lean_is_exclusive(x_9); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; uint8_t x_34; +x_32 = lean_ctor_get(x_9, 0); +x_33 = lean_ctor_get(x_9, 1); +lean_dec(x_33); +x_34 = !lean_is_exclusive(x_26); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_35 = lean_ctor_get(x_26, 0); +x_36 = lean_ctor_get(x_26, 1); +lean_dec(x_36); +x_37 = !lean_is_exclusive(x_27); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; uint8_t x_40; +x_38 = lean_ctor_get(x_27, 0); +x_39 = lean_ctor_get(x_27, 1); +lean_dec(x_39); +x_40 = !lean_is_exclusive(x_28); +if (x_40 == 0) +{ +lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_41 = lean_ctor_get(x_28, 0); +x_42 = lean_ctor_get(x_28, 1); +lean_dec(x_42); +x_43 = !lean_is_exclusive(x_29); +if (x_43 == 0) +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; +x_44 = lean_ctor_get(x_29, 1); +x_45 = lean_ctor_get(x_29, 0); +lean_dec(x_45); +x_46 = lean_ctor_get(x_30, 0); +x_47 = lean_ctor_get(x_30, 1); +x_48 = lean_ctor_get(x_30, 2); +x_49 = lean_nat_dec_lt(x_47, x_48); +if (x_49 == 0) +{ +lean_object* x_50; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_50 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_50, 0, x_9); +return x_50; +} +else +{ +uint8_t x_51; +lean_inc(x_48); +lean_inc(x_47); +lean_inc_ref(x_46); +x_51 = !lean_is_exclusive(x_30); +if (x_51 == 0) +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; +x_52 = lean_ctor_get(x_30, 2); +lean_dec(x_52); +x_53 = lean_ctor_get(x_30, 1); +lean_dec(x_53); +x_54 = lean_ctor_get(x_30, 0); +lean_dec(x_54); +x_55 = lean_ctor_get(x_41, 0); +x_56 = lean_ctor_get(x_41, 1); +x_57 = lean_ctor_get(x_41, 2); +x_58 = lean_unsigned_to_nat(1u); +x_59 = lean_nat_add(x_47, x_58); +lean_inc_ref(x_46); +lean_ctor_set(x_30, 1, x_59); +x_60 = lean_nat_dec_lt(x_56, x_57); +if (x_60 == 0) +{ +lean_object* x_61; +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_61 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_61, 0, x_9); +return x_61; +} +else +{ +uint8_t x_62; +lean_inc(x_57); +lean_inc(x_56); +lean_inc_ref(x_55); +x_62 = !lean_is_exclusive(x_41); +if (x_62 == 0) +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_70; +x_63 = lean_ctor_get(x_41, 2); +lean_dec(x_63); +x_64 = lean_ctor_get(x_41, 1); +lean_dec(x_64); +x_65 = lean_ctor_get(x_41, 0); +lean_dec(x_65); +x_66 = lean_ctor_get(x_38, 0); +x_67 = lean_ctor_get(x_38, 1); +x_68 = lean_ctor_get(x_38, 2); +x_69 = lean_nat_add(x_56, x_58); +lean_inc_ref(x_55); +lean_ctor_set(x_41, 1, x_69); +x_70 = lean_nat_dec_lt(x_67, x_68); +if (x_70 == 0) +{ +lean_object* x_71; +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_71 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_71, 0, x_9); +return x_71; +} +else +{ +uint8_t x_72; +lean_inc(x_68); +lean_inc(x_67); +lean_inc_ref(x_66); +x_72 = !lean_is_exclusive(x_38); +if (x_72 == 0) +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_80; +x_73 = lean_ctor_get(x_38, 2); +lean_dec(x_73); +x_74 = lean_ctor_get(x_38, 1); +lean_dec(x_74); +x_75 = lean_ctor_get(x_38, 0); +lean_dec(x_75); +x_76 = lean_ctor_get(x_35, 0); +x_77 = lean_ctor_get(x_35, 1); +x_78 = lean_ctor_get(x_35, 2); +x_79 = lean_nat_add(x_67, x_58); +lean_inc_ref(x_66); +lean_ctor_set(x_38, 1, x_79); +x_80 = lean_nat_dec_lt(x_77, x_78); +if (x_80 == 0) +{ +lean_object* x_81; +lean_dec(x_67); +lean_dec_ref(x_66); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_81 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_81, 0, x_9); +return x_81; +} +else +{ +uint8_t x_82; +lean_inc(x_78); +lean_inc(x_77); +lean_inc_ref(x_76); +x_82 = !lean_is_exclusive(x_35); +if (x_82 == 0) +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; uint8_t x_90; +x_83 = lean_ctor_get(x_35, 2); +lean_dec(x_83); +x_84 = lean_ctor_get(x_35, 1); +lean_dec(x_84); +x_85 = lean_ctor_get(x_35, 0); +lean_dec(x_85); +x_86 = lean_ctor_get(x_32, 0); +x_87 = lean_ctor_get(x_32, 1); +x_88 = lean_ctor_get(x_32, 2); +x_89 = lean_nat_add(x_77, x_58); +lean_inc_ref(x_76); +lean_ctor_set(x_35, 1, x_89); +x_90 = lean_nat_dec_lt(x_87, x_88); +if (x_90 == 0) +{ +lean_object* x_91; +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_67); +lean_dec_ref(x_66); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_91 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_91, 0, x_9); +return x_91; +} +else +{ +uint8_t x_92; +lean_inc(x_88); +lean_inc(x_87); +lean_inc_ref(x_86); +x_92 = !lean_is_exclusive(x_32); +if (x_92 == 0) +{ +lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; uint8_t x_98; uint8_t x_99; +x_93 = lean_ctor_get(x_32, 2); +lean_dec(x_93); +x_94 = lean_ctor_get(x_32, 1); +lean_dec(x_94); +x_95 = lean_ctor_get(x_32, 0); +lean_dec(x_95); +x_96 = lean_array_fget(x_76, x_77); +lean_dec(x_77); +lean_dec_ref(x_76); +x_97 = lean_ctor_get(x_96, 1); +x_98 = lean_ctor_get_uint8(x_96, sizeof(void*)*2); +x_99 = lean_nat_dec_eq(x_97, x_1); +if (x_99 == 0) +{ +lean_object* x_100; lean_object* x_101; +lean_dec_ref(x_96); +lean_free_object(x_32); +lean_dec_ref(x_35); +lean_dec(x_88); +lean_dec(x_87); +lean_dec_ref(x_86); +lean_dec_ref(x_38); +lean_dec_ref(x_41); +lean_dec(x_67); +lean_dec_ref(x_66); +lean_dec_ref(x_30); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_free_object(x_29); +lean_dec(x_44); +lean_free_object(x_28); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +x_100 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_101 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_100, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_101) == 0) +{ +uint8_t x_102; +x_102 = !lean_is_exclusive(x_101); +if (x_102 == 0) +{ +lean_object* x_103; +x_103 = lean_ctor_get(x_101, 0); +if (lean_obj_tag(x_103) == 0) +{ +lean_object* x_104; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +lean_dec_ref(x_103); +lean_ctor_set(x_101, 0, x_104); +return x_101; +} +else +{ +lean_object* x_105; +lean_free_object(x_101); +x_105 = lean_ctor_get(x_103, 0); +lean_inc(x_105); +lean_dec_ref(x_103); +x_18 = x_105; +x_19 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_106; +x_106 = lean_ctor_get(x_101, 0); +lean_inc(x_106); +lean_dec(x_101); +if (lean_obj_tag(x_106) == 0) +{ +lean_object* x_107; lean_object* x_108; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_107 = lean_ctor_get(x_106, 0); +lean_inc(x_107); +lean_dec_ref(x_106); +x_108 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_108, 0, x_107); +return x_108; +} +else +{ +lean_object* x_109; +x_109 = lean_ctor_get(x_106, 0); +lean_inc(x_109); +lean_dec_ref(x_106); +x_18 = x_109; +x_19 = lean_box(0); +goto block_25; +} +} +} +else +{ +uint8_t x_110; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_110 = !lean_is_exclusive(x_101); +if (x_110 == 0) +{ +return x_101; +} +else +{ +lean_object* x_111; lean_object* x_112; +x_111 = lean_ctor_get(x_101, 0); +lean_inc(x_111); +lean_dec(x_101); +x_112 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_112, 0, x_111); +return x_112; +} +} +} +else +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; +x_113 = lean_array_fget(x_46, x_47); +lean_dec(x_47); +lean_dec_ref(x_46); +x_114 = lean_array_fget(x_55, x_56); +lean_dec(x_56); +lean_dec_ref(x_55); +x_115 = lean_array_fget(x_66, x_67); +lean_dec(x_67); +lean_dec_ref(x_66); +x_116 = lean_array_fget_borrowed(x_86, x_87); +x_117 = lean_box(x_3); +x_118 = lean_box(x_4); +x_119 = lean_box(x_98); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_10); +lean_inc_ref(x_2); +lean_inc_ref(x_116); +x_120 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_120, 0, x_115); +lean_closure_set(x_120, 1, x_113); +lean_closure_set(x_120, 2, x_116); +lean_closure_set(x_120, 3, x_2); +lean_closure_set(x_120, 4, x_10); +lean_closure_set(x_120, 5, x_117); +lean_closure_set(x_120, 6, x_118); +lean_closure_set(x_120, 7, x_5); +lean_closure_set(x_120, 8, x_6); +lean_closure_set(x_120, 9, x_119); +lean_closure_set(x_120, 10, x_58); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_121 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_114, x_96, x_120, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_121) == 0) +{ +lean_object* x_122; lean_object* x_123; lean_object* x_124; +x_122 = lean_ctor_get(x_121, 0); +lean_inc(x_122); +lean_dec_ref(x_121); +x_123 = lean_nat_add(x_87, x_58); +lean_dec(x_87); +lean_ctor_set(x_32, 1, x_123); +x_124 = lean_array_push(x_44, x_122); +lean_ctor_set(x_29, 1, x_124); +x_18 = x_9; +x_19 = lean_box(0); +goto block_25; +} +else +{ +uint8_t x_125; +lean_free_object(x_32); +lean_dec_ref(x_35); +lean_dec(x_88); +lean_dec(x_87); +lean_dec_ref(x_86); +lean_dec_ref(x_38); +lean_dec_ref(x_41); +lean_dec_ref(x_30); +lean_free_object(x_29); +lean_dec(x_44); +lean_free_object(x_28); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_125 = !lean_is_exclusive(x_121); +if (x_125 == 0) +{ +return x_121; +} +else +{ +lean_object* x_126; lean_object* x_127; +x_126 = lean_ctor_get(x_121, 0); +lean_inc(x_126); +lean_dec(x_121); +x_127 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_127, 0, x_126); +return x_127; +} +} +} +} +else +{ +lean_object* x_128; lean_object* x_129; uint8_t x_130; uint8_t x_131; +lean_dec(x_32); +x_128 = lean_array_fget(x_76, x_77); +lean_dec(x_77); +lean_dec_ref(x_76); +x_129 = lean_ctor_get(x_128, 1); +x_130 = lean_ctor_get_uint8(x_128, sizeof(void*)*2); +x_131 = lean_nat_dec_eq(x_129, x_1); +if (x_131 == 0) +{ +lean_object* x_132; lean_object* x_133; +lean_dec_ref(x_128); +lean_dec_ref(x_35); +lean_dec(x_88); +lean_dec(x_87); +lean_dec_ref(x_86); +lean_dec_ref(x_38); +lean_dec_ref(x_41); +lean_dec(x_67); +lean_dec_ref(x_66); +lean_dec_ref(x_30); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_free_object(x_29); +lean_dec(x_44); +lean_free_object(x_28); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +x_132 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_133 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_132, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_133) == 0) +{ +lean_object* x_134; lean_object* x_135; +x_134 = lean_ctor_get(x_133, 0); +lean_inc(x_134); +if (lean_is_exclusive(x_133)) { + lean_ctor_release(x_133, 0); + x_135 = x_133; +} else { + lean_dec_ref(x_133); + x_135 = lean_box(0); +} +if (lean_obj_tag(x_134) == 0) +{ +lean_object* x_136; lean_object* x_137; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_136 = lean_ctor_get(x_134, 0); +lean_inc(x_136); +lean_dec_ref(x_134); +if (lean_is_scalar(x_135)) { + x_137 = lean_alloc_ctor(0, 1, 0); +} else { + x_137 = x_135; +} +lean_ctor_set(x_137, 0, x_136); +return x_137; +} +else +{ +lean_object* x_138; +lean_dec(x_135); +x_138 = lean_ctor_get(x_134, 0); +lean_inc(x_138); +lean_dec_ref(x_134); +x_18 = x_138; +x_19 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_139 = lean_ctor_get(x_133, 0); +lean_inc(x_139); +if (lean_is_exclusive(x_133)) { + lean_ctor_release(x_133, 0); + x_140 = x_133; +} else { + lean_dec_ref(x_133); + x_140 = lean_box(0); +} +if (lean_is_scalar(x_140)) { + x_141 = lean_alloc_ctor(1, 1, 0); +} else { + x_141 = x_140; +} +lean_ctor_set(x_141, 0, x_139); +return x_141; +} +} +else +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; +x_142 = lean_array_fget(x_46, x_47); +lean_dec(x_47); +lean_dec_ref(x_46); +x_143 = lean_array_fget(x_55, x_56); +lean_dec(x_56); +lean_dec_ref(x_55); +x_144 = lean_array_fget(x_66, x_67); +lean_dec(x_67); +lean_dec_ref(x_66); +x_145 = lean_array_fget_borrowed(x_86, x_87); +x_146 = lean_box(x_3); +x_147 = lean_box(x_4); +x_148 = lean_box(x_130); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_10); +lean_inc_ref(x_2); +lean_inc_ref(x_145); +x_149 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_149, 0, x_144); +lean_closure_set(x_149, 1, x_142); +lean_closure_set(x_149, 2, x_145); +lean_closure_set(x_149, 3, x_2); +lean_closure_set(x_149, 4, x_10); +lean_closure_set(x_149, 5, x_146); +lean_closure_set(x_149, 6, x_147); +lean_closure_set(x_149, 7, x_5); +lean_closure_set(x_149, 8, x_6); +lean_closure_set(x_149, 9, x_148); +lean_closure_set(x_149, 10, x_58); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_150 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_143, x_128, x_149, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_150) == 0) +{ +lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; +x_151 = lean_ctor_get(x_150, 0); +lean_inc(x_151); +lean_dec_ref(x_150); +x_152 = lean_nat_add(x_87, x_58); +lean_dec(x_87); +x_153 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_153, 0, x_86); +lean_ctor_set(x_153, 1, x_152); +lean_ctor_set(x_153, 2, x_88); +x_154 = lean_array_push(x_44, x_151); +lean_ctor_set(x_29, 1, x_154); +lean_ctor_set(x_9, 0, x_153); +x_18 = x_9; +x_19 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_155; lean_object* x_156; lean_object* x_157; +lean_dec_ref(x_35); +lean_dec(x_88); +lean_dec(x_87); +lean_dec_ref(x_86); +lean_dec_ref(x_38); +lean_dec_ref(x_41); +lean_dec_ref(x_30); +lean_free_object(x_29); +lean_dec(x_44); +lean_free_object(x_28); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_155 = lean_ctor_get(x_150, 0); +lean_inc(x_155); +if (lean_is_exclusive(x_150)) { + lean_ctor_release(x_150, 0); + x_156 = x_150; +} else { + lean_dec_ref(x_150); + x_156 = lean_box(0); +} +if (lean_is_scalar(x_156)) { + x_157 = lean_alloc_ctor(1, 1, 0); +} else { + x_157 = x_156; +} +lean_ctor_set(x_157, 0, x_155); +return x_157; +} +} +} +} +} +else +{ +lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; +lean_dec(x_35); +x_158 = lean_ctor_get(x_32, 0); +x_159 = lean_ctor_get(x_32, 1); +x_160 = lean_ctor_get(x_32, 2); +x_161 = lean_nat_add(x_77, x_58); +lean_inc_ref(x_76); +x_162 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_162, 0, x_76); +lean_ctor_set(x_162, 1, x_161); +lean_ctor_set(x_162, 2, x_78); +x_163 = lean_nat_dec_lt(x_159, x_160); +if (x_163 == 0) +{ +lean_object* x_164; +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_67); +lean_dec_ref(x_66); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_162); +x_164 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_164, 0, x_9); +return x_164; +} +else +{ +lean_object* x_165; lean_object* x_166; lean_object* x_167; uint8_t x_168; uint8_t x_169; +lean_inc(x_160); +lean_inc(x_159); +lean_inc_ref(x_158); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_165 = x_32; +} else { + lean_dec_ref(x_32); + x_165 = lean_box(0); +} +x_166 = lean_array_fget(x_76, x_77); +lean_dec(x_77); +lean_dec_ref(x_76); +x_167 = lean_ctor_get(x_166, 1); +x_168 = lean_ctor_get_uint8(x_166, sizeof(void*)*2); +x_169 = lean_nat_dec_eq(x_167, x_1); +if (x_169 == 0) +{ +lean_object* x_170; lean_object* x_171; +lean_dec_ref(x_166); +lean_dec(x_165); +lean_dec_ref(x_162); +lean_dec(x_160); +lean_dec(x_159); +lean_dec_ref(x_158); +lean_dec_ref(x_38); +lean_dec_ref(x_41); +lean_dec(x_67); +lean_dec_ref(x_66); +lean_dec_ref(x_30); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_free_object(x_29); +lean_dec(x_44); +lean_free_object(x_28); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +x_170 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_171 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_170, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_171) == 0) +{ +lean_object* x_172; lean_object* x_173; +x_172 = lean_ctor_get(x_171, 0); +lean_inc(x_172); +if (lean_is_exclusive(x_171)) { + lean_ctor_release(x_171, 0); + x_173 = x_171; +} else { + lean_dec_ref(x_171); + x_173 = lean_box(0); +} +if (lean_obj_tag(x_172) == 0) +{ +lean_object* x_174; lean_object* x_175; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_174 = lean_ctor_get(x_172, 0); +lean_inc(x_174); +lean_dec_ref(x_172); +if (lean_is_scalar(x_173)) { + x_175 = lean_alloc_ctor(0, 1, 0); +} else { + x_175 = x_173; +} +lean_ctor_set(x_175, 0, x_174); +return x_175; +} +else +{ +lean_object* x_176; +lean_dec(x_173); +x_176 = lean_ctor_get(x_172, 0); +lean_inc(x_176); +lean_dec_ref(x_172); +x_18 = x_176; +x_19 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_177; lean_object* x_178; lean_object* x_179; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_177 = lean_ctor_get(x_171, 0); +lean_inc(x_177); +if (lean_is_exclusive(x_171)) { + lean_ctor_release(x_171, 0); + x_178 = x_171; +} else { + lean_dec_ref(x_171); + x_178 = lean_box(0); +} +if (lean_is_scalar(x_178)) { + x_179 = lean_alloc_ctor(1, 1, 0); +} else { + x_179 = x_178; +} +lean_ctor_set(x_179, 0, x_177); +return x_179; +} +} +else +{ +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; +x_180 = lean_array_fget(x_46, x_47); +lean_dec(x_47); +lean_dec_ref(x_46); +x_181 = lean_array_fget(x_55, x_56); +lean_dec(x_56); +lean_dec_ref(x_55); +x_182 = lean_array_fget(x_66, x_67); +lean_dec(x_67); +lean_dec_ref(x_66); +x_183 = lean_array_fget_borrowed(x_158, x_159); +x_184 = lean_box(x_3); +x_185 = lean_box(x_4); +x_186 = lean_box(x_168); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_10); +lean_inc_ref(x_2); +lean_inc_ref(x_183); +x_187 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_187, 0, x_182); +lean_closure_set(x_187, 1, x_180); +lean_closure_set(x_187, 2, x_183); +lean_closure_set(x_187, 3, x_2); +lean_closure_set(x_187, 4, x_10); +lean_closure_set(x_187, 5, x_184); +lean_closure_set(x_187, 6, x_185); +lean_closure_set(x_187, 7, x_5); +lean_closure_set(x_187, 8, x_6); +lean_closure_set(x_187, 9, x_186); +lean_closure_set(x_187, 10, x_58); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_188 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_181, x_166, x_187, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_188) == 0) +{ +lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_189 = lean_ctor_get(x_188, 0); +lean_inc(x_189); +lean_dec_ref(x_188); +x_190 = lean_nat_add(x_159, x_58); +lean_dec(x_159); +if (lean_is_scalar(x_165)) { + x_191 = lean_alloc_ctor(0, 3, 0); +} else { + x_191 = x_165; +} +lean_ctor_set(x_191, 0, x_158); +lean_ctor_set(x_191, 1, x_190); +lean_ctor_set(x_191, 2, x_160); +x_192 = lean_array_push(x_44, x_189); +lean_ctor_set(x_29, 1, x_192); +lean_ctor_set(x_26, 0, x_162); +lean_ctor_set(x_9, 0, x_191); +x_18 = x_9; +x_19 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_193; lean_object* x_194; lean_object* x_195; +lean_dec(x_165); +lean_dec_ref(x_162); +lean_dec(x_160); +lean_dec(x_159); +lean_dec_ref(x_158); +lean_dec_ref(x_38); +lean_dec_ref(x_41); +lean_dec_ref(x_30); +lean_free_object(x_29); +lean_dec(x_44); +lean_free_object(x_28); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_193 = lean_ctor_get(x_188, 0); +lean_inc(x_193); +if (lean_is_exclusive(x_188)) { + lean_ctor_release(x_188, 0); + x_194 = x_188; +} else { + lean_dec_ref(x_188); + x_194 = lean_box(0); +} +if (lean_is_scalar(x_194)) { + x_195 = lean_alloc_ctor(1, 1, 0); +} else { + x_195 = x_194; +} +lean_ctor_set(x_195, 0, x_193); +return x_195; +} +} +} +} +} +} +else +{ +lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; uint8_t x_201; +lean_dec(x_38); +x_196 = lean_ctor_get(x_35, 0); +x_197 = lean_ctor_get(x_35, 1); +x_198 = lean_ctor_get(x_35, 2); +x_199 = lean_nat_add(x_67, x_58); +lean_inc_ref(x_66); +x_200 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_200, 0, x_66); +lean_ctor_set(x_200, 1, x_199); +lean_ctor_set(x_200, 2, x_68); +x_201 = lean_nat_dec_lt(x_197, x_198); +if (x_201 == 0) +{ +lean_object* x_202; +lean_dec(x_67); +lean_dec_ref(x_66); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_27, 0, x_200); +x_202 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_202, 0, x_9); +return x_202; +} +else +{ +lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; uint8_t x_209; +lean_inc(x_198); +lean_inc(x_197); +lean_inc_ref(x_196); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + lean_ctor_release(x_35, 2); + x_203 = x_35; +} else { + lean_dec_ref(x_35); + x_203 = lean_box(0); +} +x_204 = lean_ctor_get(x_32, 0); +x_205 = lean_ctor_get(x_32, 1); +x_206 = lean_ctor_get(x_32, 2); +x_207 = lean_nat_add(x_197, x_58); +lean_inc_ref(x_196); +if (lean_is_scalar(x_203)) { + x_208 = lean_alloc_ctor(0, 3, 0); +} else { + x_208 = x_203; +} +lean_ctor_set(x_208, 0, x_196); +lean_ctor_set(x_208, 1, x_207); +lean_ctor_set(x_208, 2, x_198); +x_209 = lean_nat_dec_lt(x_205, x_206); +if (x_209 == 0) +{ +lean_object* x_210; +lean_dec(x_197); +lean_dec_ref(x_196); +lean_dec(x_67); +lean_dec_ref(x_66); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_27, 0, x_200); +lean_ctor_set(x_26, 0, x_208); +x_210 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_210, 0, x_9); +return x_210; +} +else +{ +lean_object* x_211; lean_object* x_212; lean_object* x_213; uint8_t x_214; uint8_t x_215; +lean_inc(x_206); +lean_inc(x_205); +lean_inc_ref(x_204); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_211 = x_32; +} else { + lean_dec_ref(x_32); + x_211 = lean_box(0); +} +x_212 = lean_array_fget(x_196, x_197); +lean_dec(x_197); +lean_dec_ref(x_196); +x_213 = lean_ctor_get(x_212, 1); +x_214 = lean_ctor_get_uint8(x_212, sizeof(void*)*2); +x_215 = lean_nat_dec_eq(x_213, x_1); +if (x_215 == 0) +{ +lean_object* x_216; lean_object* x_217; +lean_dec_ref(x_212); +lean_dec(x_211); +lean_dec_ref(x_208); +lean_dec(x_206); +lean_dec(x_205); +lean_dec_ref(x_204); +lean_dec_ref(x_200); +lean_dec_ref(x_41); +lean_dec(x_67); +lean_dec_ref(x_66); +lean_dec_ref(x_30); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_free_object(x_29); +lean_dec(x_44); +lean_free_object(x_28); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +x_216 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_217 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_216, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_217) == 0) +{ +lean_object* x_218; lean_object* x_219; +x_218 = lean_ctor_get(x_217, 0); +lean_inc(x_218); +if (lean_is_exclusive(x_217)) { + lean_ctor_release(x_217, 0); + x_219 = x_217; +} else { + lean_dec_ref(x_217); + x_219 = lean_box(0); +} +if (lean_obj_tag(x_218) == 0) +{ +lean_object* x_220; lean_object* x_221; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_220 = lean_ctor_get(x_218, 0); +lean_inc(x_220); +lean_dec_ref(x_218); +if (lean_is_scalar(x_219)) { + x_221 = lean_alloc_ctor(0, 1, 0); +} else { + x_221 = x_219; +} +lean_ctor_set(x_221, 0, x_220); +return x_221; +} +else +{ +lean_object* x_222; +lean_dec(x_219); +x_222 = lean_ctor_get(x_218, 0); +lean_inc(x_222); +lean_dec_ref(x_218); +x_18 = x_222; +x_19 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_223; lean_object* x_224; lean_object* x_225; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_223 = lean_ctor_get(x_217, 0); +lean_inc(x_223); +if (lean_is_exclusive(x_217)) { + lean_ctor_release(x_217, 0); + x_224 = x_217; +} else { + lean_dec_ref(x_217); + x_224 = lean_box(0); +} +if (lean_is_scalar(x_224)) { + x_225 = lean_alloc_ctor(1, 1, 0); +} else { + x_225 = x_224; +} +lean_ctor_set(x_225, 0, x_223); +return x_225; +} +} +else +{ +lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; +x_226 = lean_array_fget(x_46, x_47); +lean_dec(x_47); +lean_dec_ref(x_46); +x_227 = lean_array_fget(x_55, x_56); +lean_dec(x_56); +lean_dec_ref(x_55); +x_228 = lean_array_fget(x_66, x_67); +lean_dec(x_67); +lean_dec_ref(x_66); +x_229 = lean_array_fget_borrowed(x_204, x_205); +x_230 = lean_box(x_3); +x_231 = lean_box(x_4); +x_232 = lean_box(x_214); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_10); +lean_inc_ref(x_2); +lean_inc_ref(x_229); +x_233 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_233, 0, x_228); +lean_closure_set(x_233, 1, x_226); +lean_closure_set(x_233, 2, x_229); +lean_closure_set(x_233, 3, x_2); +lean_closure_set(x_233, 4, x_10); +lean_closure_set(x_233, 5, x_230); +lean_closure_set(x_233, 6, x_231); +lean_closure_set(x_233, 7, x_5); +lean_closure_set(x_233, 8, x_6); +lean_closure_set(x_233, 9, x_232); +lean_closure_set(x_233, 10, x_58); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_234 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_227, x_212, x_233, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_234) == 0) +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; +x_235 = lean_ctor_get(x_234, 0); +lean_inc(x_235); +lean_dec_ref(x_234); +x_236 = lean_nat_add(x_205, x_58); +lean_dec(x_205); +if (lean_is_scalar(x_211)) { + x_237 = lean_alloc_ctor(0, 3, 0); +} else { + x_237 = x_211; +} +lean_ctor_set(x_237, 0, x_204); +lean_ctor_set(x_237, 1, x_236); +lean_ctor_set(x_237, 2, x_206); +x_238 = lean_array_push(x_44, x_235); +lean_ctor_set(x_29, 1, x_238); +lean_ctor_set(x_27, 0, x_200); +lean_ctor_set(x_26, 0, x_208); +lean_ctor_set(x_9, 0, x_237); +x_18 = x_9; +x_19 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_239; lean_object* x_240; lean_object* x_241; +lean_dec(x_211); +lean_dec_ref(x_208); +lean_dec(x_206); +lean_dec(x_205); +lean_dec_ref(x_204); +lean_dec_ref(x_200); +lean_dec_ref(x_41); +lean_dec_ref(x_30); +lean_free_object(x_29); +lean_dec(x_44); +lean_free_object(x_28); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_239 = lean_ctor_get(x_234, 0); +lean_inc(x_239); +if (lean_is_exclusive(x_234)) { + lean_ctor_release(x_234, 0); + x_240 = x_234; +} else { + lean_dec_ref(x_234); + x_240 = lean_box(0); +} +if (lean_is_scalar(x_240)) { + x_241 = lean_alloc_ctor(1, 1, 0); +} else { + x_241 = x_240; +} +lean_ctor_set(x_241, 0, x_239); +return x_241; +} +} +} +} +} +} +} +else +{ +lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; uint8_t x_247; +lean_dec(x_41); +x_242 = lean_ctor_get(x_38, 0); +x_243 = lean_ctor_get(x_38, 1); +x_244 = lean_ctor_get(x_38, 2); +x_245 = lean_nat_add(x_56, x_58); +lean_inc_ref(x_55); +x_246 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_246, 0, x_55); +lean_ctor_set(x_246, 1, x_245); +lean_ctor_set(x_246, 2, x_57); +x_247 = lean_nat_dec_lt(x_243, x_244); +if (x_247 == 0) +{ +lean_object* x_248; +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_28, 0, x_246); +x_248 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_248, 0, x_9); +return x_248; +} +else +{ +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; uint8_t x_255; +lean_inc(x_244); +lean_inc(x_243); +lean_inc_ref(x_242); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + lean_ctor_release(x_38, 2); + x_249 = x_38; +} else { + lean_dec_ref(x_38); + x_249 = lean_box(0); +} +x_250 = lean_ctor_get(x_35, 0); +x_251 = lean_ctor_get(x_35, 1); +x_252 = lean_ctor_get(x_35, 2); +x_253 = lean_nat_add(x_243, x_58); +lean_inc_ref(x_242); +if (lean_is_scalar(x_249)) { + x_254 = lean_alloc_ctor(0, 3, 0); +} else { + x_254 = x_249; +} +lean_ctor_set(x_254, 0, x_242); +lean_ctor_set(x_254, 1, x_253); +lean_ctor_set(x_254, 2, x_244); +x_255 = lean_nat_dec_lt(x_251, x_252); +if (x_255 == 0) +{ +lean_object* x_256; +lean_dec(x_243); +lean_dec_ref(x_242); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_28, 0, x_246); +lean_ctor_set(x_27, 0, x_254); +x_256 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_256, 0, x_9); +return x_256; +} +else +{ +lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; uint8_t x_263; +lean_inc(x_252); +lean_inc(x_251); +lean_inc_ref(x_250); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + lean_ctor_release(x_35, 2); + x_257 = x_35; +} else { + lean_dec_ref(x_35); + x_257 = lean_box(0); +} +x_258 = lean_ctor_get(x_32, 0); +x_259 = lean_ctor_get(x_32, 1); +x_260 = lean_ctor_get(x_32, 2); +x_261 = lean_nat_add(x_251, x_58); +lean_inc_ref(x_250); +if (lean_is_scalar(x_257)) { + x_262 = lean_alloc_ctor(0, 3, 0); +} else { + x_262 = x_257; +} +lean_ctor_set(x_262, 0, x_250); +lean_ctor_set(x_262, 1, x_261); +lean_ctor_set(x_262, 2, x_252); +x_263 = lean_nat_dec_lt(x_259, x_260); +if (x_263 == 0) +{ +lean_object* x_264; +lean_dec(x_251); +lean_dec_ref(x_250); +lean_dec(x_243); +lean_dec_ref(x_242); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_28, 0, x_246); +lean_ctor_set(x_27, 0, x_254); +lean_ctor_set(x_26, 0, x_262); +x_264 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_264, 0, x_9); +return x_264; +} +else +{ +lean_object* x_265; lean_object* x_266; lean_object* x_267; uint8_t x_268; uint8_t x_269; +lean_inc(x_260); +lean_inc(x_259); +lean_inc_ref(x_258); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_265 = x_32; +} else { + lean_dec_ref(x_32); + x_265 = lean_box(0); +} +x_266 = lean_array_fget(x_250, x_251); +lean_dec(x_251); +lean_dec_ref(x_250); +x_267 = lean_ctor_get(x_266, 1); +x_268 = lean_ctor_get_uint8(x_266, sizeof(void*)*2); +x_269 = lean_nat_dec_eq(x_267, x_1); +if (x_269 == 0) +{ +lean_object* x_270; lean_object* x_271; +lean_dec_ref(x_266); +lean_dec(x_265); +lean_dec_ref(x_262); +lean_dec(x_260); +lean_dec(x_259); +lean_dec_ref(x_258); +lean_dec_ref(x_254); +lean_dec_ref(x_246); +lean_dec(x_243); +lean_dec_ref(x_242); +lean_dec_ref(x_30); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_free_object(x_29); +lean_dec(x_44); +lean_free_object(x_28); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +x_270 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_271 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_270, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_271) == 0) +{ +lean_object* x_272; lean_object* x_273; +x_272 = lean_ctor_get(x_271, 0); +lean_inc(x_272); +if (lean_is_exclusive(x_271)) { + lean_ctor_release(x_271, 0); + x_273 = x_271; +} else { + lean_dec_ref(x_271); + x_273 = lean_box(0); +} +if (lean_obj_tag(x_272) == 0) +{ +lean_object* x_274; lean_object* x_275; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_274 = lean_ctor_get(x_272, 0); +lean_inc(x_274); +lean_dec_ref(x_272); +if (lean_is_scalar(x_273)) { + x_275 = lean_alloc_ctor(0, 1, 0); +} else { + x_275 = x_273; +} +lean_ctor_set(x_275, 0, x_274); +return x_275; +} +else +{ +lean_object* x_276; +lean_dec(x_273); +x_276 = lean_ctor_get(x_272, 0); +lean_inc(x_276); +lean_dec_ref(x_272); +x_18 = x_276; +x_19 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_277; lean_object* x_278; lean_object* x_279; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_277 = lean_ctor_get(x_271, 0); +lean_inc(x_277); +if (lean_is_exclusive(x_271)) { + lean_ctor_release(x_271, 0); + x_278 = x_271; +} else { + lean_dec_ref(x_271); + x_278 = lean_box(0); +} +if (lean_is_scalar(x_278)) { + x_279 = lean_alloc_ctor(1, 1, 0); +} else { + x_279 = x_278; +} +lean_ctor_set(x_279, 0, x_277); +return x_279; +} +} +else +{ +lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; +x_280 = lean_array_fget(x_46, x_47); +lean_dec(x_47); +lean_dec_ref(x_46); +x_281 = lean_array_fget(x_55, x_56); +lean_dec(x_56); +lean_dec_ref(x_55); +x_282 = lean_array_fget(x_242, x_243); +lean_dec(x_243); +lean_dec_ref(x_242); +x_283 = lean_array_fget_borrowed(x_258, x_259); +x_284 = lean_box(x_3); +x_285 = lean_box(x_4); +x_286 = lean_box(x_268); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_10); +lean_inc_ref(x_2); +lean_inc_ref(x_283); +x_287 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_287, 0, x_282); +lean_closure_set(x_287, 1, x_280); +lean_closure_set(x_287, 2, x_283); +lean_closure_set(x_287, 3, x_2); +lean_closure_set(x_287, 4, x_10); +lean_closure_set(x_287, 5, x_284); +lean_closure_set(x_287, 6, x_285); +lean_closure_set(x_287, 7, x_5); +lean_closure_set(x_287, 8, x_6); +lean_closure_set(x_287, 9, x_286); +lean_closure_set(x_287, 10, x_58); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_288 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_281, x_266, x_287, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_288) == 0) +{ +lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; +x_289 = lean_ctor_get(x_288, 0); +lean_inc(x_289); +lean_dec_ref(x_288); +x_290 = lean_nat_add(x_259, x_58); +lean_dec(x_259); +if (lean_is_scalar(x_265)) { + x_291 = lean_alloc_ctor(0, 3, 0); +} else { + x_291 = x_265; +} +lean_ctor_set(x_291, 0, x_258); +lean_ctor_set(x_291, 1, x_290); +lean_ctor_set(x_291, 2, x_260); +x_292 = lean_array_push(x_44, x_289); +lean_ctor_set(x_29, 1, x_292); +lean_ctor_set(x_28, 0, x_246); +lean_ctor_set(x_27, 0, x_254); +lean_ctor_set(x_26, 0, x_262); +lean_ctor_set(x_9, 0, x_291); +x_18 = x_9; +x_19 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_293; lean_object* x_294; lean_object* x_295; +lean_dec(x_265); +lean_dec_ref(x_262); +lean_dec(x_260); +lean_dec(x_259); +lean_dec_ref(x_258); +lean_dec_ref(x_254); +lean_dec_ref(x_246); +lean_dec_ref(x_30); +lean_free_object(x_29); +lean_dec(x_44); +lean_free_object(x_28); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_293 = lean_ctor_get(x_288, 0); +lean_inc(x_293); +if (lean_is_exclusive(x_288)) { + lean_ctor_release(x_288, 0); + x_294 = x_288; +} else { + lean_dec_ref(x_288); + x_294 = lean_box(0); +} +if (lean_is_scalar(x_294)) { + x_295 = lean_alloc_ctor(1, 1, 0); +} else { + x_295 = x_294; +} +lean_ctor_set(x_295, 0, x_293); +return x_295; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; uint8_t x_302; +lean_dec(x_30); +x_296 = lean_ctor_get(x_41, 0); +x_297 = lean_ctor_get(x_41, 1); +x_298 = lean_ctor_get(x_41, 2); +x_299 = lean_unsigned_to_nat(1u); +x_300 = lean_nat_add(x_47, x_299); +lean_inc_ref(x_46); +x_301 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_301, 0, x_46); +lean_ctor_set(x_301, 1, x_300); +lean_ctor_set(x_301, 2, x_48); +x_302 = lean_nat_dec_lt(x_297, x_298); +if (x_302 == 0) +{ +lean_object* x_303; +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_29, 0, x_301); +x_303 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_303, 0, x_9); +return x_303; +} +else +{ +lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; uint8_t x_310; +lean_inc(x_298); +lean_inc(x_297); +lean_inc_ref(x_296); +if (lean_is_exclusive(x_41)) { + lean_ctor_release(x_41, 0); + lean_ctor_release(x_41, 1); + lean_ctor_release(x_41, 2); + x_304 = x_41; +} else { + lean_dec_ref(x_41); + x_304 = lean_box(0); +} +x_305 = lean_ctor_get(x_38, 0); +x_306 = lean_ctor_get(x_38, 1); +x_307 = lean_ctor_get(x_38, 2); +x_308 = lean_nat_add(x_297, x_299); +lean_inc_ref(x_296); +if (lean_is_scalar(x_304)) { + x_309 = lean_alloc_ctor(0, 3, 0); +} else { + x_309 = x_304; +} +lean_ctor_set(x_309, 0, x_296); +lean_ctor_set(x_309, 1, x_308); +lean_ctor_set(x_309, 2, x_298); +x_310 = lean_nat_dec_lt(x_306, x_307); +if (x_310 == 0) +{ +lean_object* x_311; +lean_dec(x_297); +lean_dec_ref(x_296); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_29, 0, x_301); +lean_ctor_set(x_28, 0, x_309); +x_311 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_311, 0, x_9); +return x_311; +} +else +{ +lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; uint8_t x_318; +lean_inc(x_307); +lean_inc(x_306); +lean_inc_ref(x_305); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + lean_ctor_release(x_38, 2); + x_312 = x_38; +} else { + lean_dec_ref(x_38); + x_312 = lean_box(0); +} +x_313 = lean_ctor_get(x_35, 0); +x_314 = lean_ctor_get(x_35, 1); +x_315 = lean_ctor_get(x_35, 2); +x_316 = lean_nat_add(x_306, x_299); +lean_inc_ref(x_305); +if (lean_is_scalar(x_312)) { + x_317 = lean_alloc_ctor(0, 3, 0); +} else { + x_317 = x_312; +} +lean_ctor_set(x_317, 0, x_305); +lean_ctor_set(x_317, 1, x_316); +lean_ctor_set(x_317, 2, x_307); +x_318 = lean_nat_dec_lt(x_314, x_315); +if (x_318 == 0) +{ +lean_object* x_319; +lean_dec(x_306); +lean_dec_ref(x_305); +lean_dec(x_297); +lean_dec_ref(x_296); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_29, 0, x_301); +lean_ctor_set(x_28, 0, x_309); +lean_ctor_set(x_27, 0, x_317); +x_319 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_319, 0, x_9); +return x_319; +} +else +{ +lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; uint8_t x_326; +lean_inc(x_315); +lean_inc(x_314); +lean_inc_ref(x_313); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + lean_ctor_release(x_35, 2); + x_320 = x_35; +} else { + lean_dec_ref(x_35); + x_320 = lean_box(0); +} +x_321 = lean_ctor_get(x_32, 0); +x_322 = lean_ctor_get(x_32, 1); +x_323 = lean_ctor_get(x_32, 2); +x_324 = lean_nat_add(x_314, x_299); +lean_inc_ref(x_313); +if (lean_is_scalar(x_320)) { + x_325 = lean_alloc_ctor(0, 3, 0); +} else { + x_325 = x_320; +} +lean_ctor_set(x_325, 0, x_313); +lean_ctor_set(x_325, 1, x_324); +lean_ctor_set(x_325, 2, x_315); +x_326 = lean_nat_dec_lt(x_322, x_323); +if (x_326 == 0) +{ +lean_object* x_327; +lean_dec(x_314); +lean_dec_ref(x_313); +lean_dec(x_306); +lean_dec_ref(x_305); +lean_dec(x_297); +lean_dec_ref(x_296); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_29, 0, x_301); +lean_ctor_set(x_28, 0, x_309); +lean_ctor_set(x_27, 0, x_317); +lean_ctor_set(x_26, 0, x_325); +x_327 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_327, 0, x_9); +return x_327; +} +else +{ +lean_object* x_328; lean_object* x_329; lean_object* x_330; uint8_t x_331; uint8_t x_332; +lean_inc(x_323); +lean_inc(x_322); +lean_inc_ref(x_321); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_328 = x_32; +} else { + lean_dec_ref(x_32); + x_328 = lean_box(0); +} +x_329 = lean_array_fget(x_313, x_314); +lean_dec(x_314); +lean_dec_ref(x_313); +x_330 = lean_ctor_get(x_329, 1); +x_331 = lean_ctor_get_uint8(x_329, sizeof(void*)*2); +x_332 = lean_nat_dec_eq(x_330, x_1); +if (x_332 == 0) +{ +lean_object* x_333; lean_object* x_334; +lean_dec_ref(x_329); +lean_dec(x_328); +lean_dec_ref(x_325); +lean_dec(x_323); +lean_dec(x_322); +lean_dec_ref(x_321); +lean_dec_ref(x_317); +lean_dec_ref(x_309); +lean_dec(x_306); +lean_dec_ref(x_305); +lean_dec_ref(x_301); +lean_dec(x_297); +lean_dec_ref(x_296); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_free_object(x_29); +lean_dec(x_44); +lean_free_object(x_28); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +x_333 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_334 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_333, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_334) == 0) +{ +lean_object* x_335; lean_object* x_336; +x_335 = lean_ctor_get(x_334, 0); +lean_inc(x_335); +if (lean_is_exclusive(x_334)) { + lean_ctor_release(x_334, 0); + x_336 = x_334; +} else { + lean_dec_ref(x_334); + x_336 = lean_box(0); +} +if (lean_obj_tag(x_335) == 0) +{ +lean_object* x_337; lean_object* x_338; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_337 = lean_ctor_get(x_335, 0); +lean_inc(x_337); +lean_dec_ref(x_335); +if (lean_is_scalar(x_336)) { + x_338 = lean_alloc_ctor(0, 1, 0); +} else { + x_338 = x_336; +} +lean_ctor_set(x_338, 0, x_337); +return x_338; +} +else +{ +lean_object* x_339; +lean_dec(x_336); +x_339 = lean_ctor_get(x_335, 0); +lean_inc(x_339); +lean_dec_ref(x_335); +x_18 = x_339; +x_19 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_340; lean_object* x_341; lean_object* x_342; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_340 = lean_ctor_get(x_334, 0); +lean_inc(x_340); +if (lean_is_exclusive(x_334)) { + lean_ctor_release(x_334, 0); + x_341 = x_334; +} else { + lean_dec_ref(x_334); + x_341 = lean_box(0); +} +if (lean_is_scalar(x_341)) { + x_342 = lean_alloc_ctor(1, 1, 0); +} else { + x_342 = x_341; +} +lean_ctor_set(x_342, 0, x_340); +return x_342; +} +} +else +{ +lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; +x_343 = lean_array_fget(x_46, x_47); +lean_dec(x_47); +lean_dec_ref(x_46); +x_344 = lean_array_fget(x_296, x_297); +lean_dec(x_297); +lean_dec_ref(x_296); +x_345 = lean_array_fget(x_305, x_306); +lean_dec(x_306); +lean_dec_ref(x_305); +x_346 = lean_array_fget_borrowed(x_321, x_322); +x_347 = lean_box(x_3); +x_348 = lean_box(x_4); +x_349 = lean_box(x_331); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_10); +lean_inc_ref(x_2); +lean_inc_ref(x_346); +x_350 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_350, 0, x_345); +lean_closure_set(x_350, 1, x_343); +lean_closure_set(x_350, 2, x_346); +lean_closure_set(x_350, 3, x_2); +lean_closure_set(x_350, 4, x_10); +lean_closure_set(x_350, 5, x_347); +lean_closure_set(x_350, 6, x_348); +lean_closure_set(x_350, 7, x_5); +lean_closure_set(x_350, 8, x_6); +lean_closure_set(x_350, 9, x_349); +lean_closure_set(x_350, 10, x_299); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_351 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_344, x_329, x_350, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_351) == 0) +{ +lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; +x_352 = lean_ctor_get(x_351, 0); +lean_inc(x_352); +lean_dec_ref(x_351); +x_353 = lean_nat_add(x_322, x_299); +lean_dec(x_322); +if (lean_is_scalar(x_328)) { + x_354 = lean_alloc_ctor(0, 3, 0); +} else { + x_354 = x_328; +} +lean_ctor_set(x_354, 0, x_321); +lean_ctor_set(x_354, 1, x_353); +lean_ctor_set(x_354, 2, x_323); +x_355 = lean_array_push(x_44, x_352); +lean_ctor_set(x_29, 1, x_355); +lean_ctor_set(x_29, 0, x_301); +lean_ctor_set(x_28, 0, x_309); +lean_ctor_set(x_27, 0, x_317); +lean_ctor_set(x_26, 0, x_325); +lean_ctor_set(x_9, 0, x_354); +x_18 = x_9; +x_19 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_356; lean_object* x_357; lean_object* x_358; +lean_dec(x_328); +lean_dec_ref(x_325); +lean_dec(x_323); +lean_dec(x_322); +lean_dec_ref(x_321); +lean_dec_ref(x_317); +lean_dec_ref(x_309); +lean_dec_ref(x_301); +lean_free_object(x_29); +lean_dec(x_44); +lean_free_object(x_28); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_356 = lean_ctor_get(x_351, 0); +lean_inc(x_356); +if (lean_is_exclusive(x_351)) { + lean_ctor_release(x_351, 0); + x_357 = x_351; +} else { + lean_dec_ref(x_351); + x_357 = lean_box(0); +} +if (lean_is_scalar(x_357)) { + x_358 = lean_alloc_ctor(1, 1, 0); +} else { + x_358 = x_357; +} +lean_ctor_set(x_358, 0, x_356); +return x_358; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; uint8_t x_363; +x_359 = lean_ctor_get(x_29, 1); +lean_inc(x_359); +lean_dec(x_29); +x_360 = lean_ctor_get(x_30, 0); +x_361 = lean_ctor_get(x_30, 1); +x_362 = lean_ctor_get(x_30, 2); +x_363 = lean_nat_dec_lt(x_361, x_362); +if (x_363 == 0) +{ +lean_object* x_364; lean_object* x_365; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_364 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_364, 0, x_30); +lean_ctor_set(x_364, 1, x_359); +lean_ctor_set(x_28, 1, x_364); +x_365 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_365, 0, x_9); +return x_365; +} +else +{ +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; +lean_inc(x_362); +lean_inc(x_361); +lean_inc_ref(x_360); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_366 = x_30; +} else { + lean_dec_ref(x_30); + x_366 = lean_box(0); +} +x_367 = lean_ctor_get(x_41, 0); +x_368 = lean_ctor_get(x_41, 1); +x_369 = lean_ctor_get(x_41, 2); +x_370 = lean_unsigned_to_nat(1u); +x_371 = lean_nat_add(x_361, x_370); +lean_inc_ref(x_360); +if (lean_is_scalar(x_366)) { + x_372 = lean_alloc_ctor(0, 3, 0); +} else { + x_372 = x_366; +} +lean_ctor_set(x_372, 0, x_360); +lean_ctor_set(x_372, 1, x_371); +lean_ctor_set(x_372, 2, x_362); +x_373 = lean_nat_dec_lt(x_368, x_369); +if (x_373 == 0) +{ +lean_object* x_374; lean_object* x_375; +lean_dec(x_361); +lean_dec_ref(x_360); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_374 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_374, 0, x_372); +lean_ctor_set(x_374, 1, x_359); +lean_ctor_set(x_28, 1, x_374); +x_375 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_375, 0, x_9); +return x_375; +} +else +{ +lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; uint8_t x_382; +lean_inc(x_369); +lean_inc(x_368); +lean_inc_ref(x_367); +if (lean_is_exclusive(x_41)) { + lean_ctor_release(x_41, 0); + lean_ctor_release(x_41, 1); + lean_ctor_release(x_41, 2); + x_376 = x_41; +} else { + lean_dec_ref(x_41); + x_376 = lean_box(0); +} +x_377 = lean_ctor_get(x_38, 0); +x_378 = lean_ctor_get(x_38, 1); +x_379 = lean_ctor_get(x_38, 2); +x_380 = lean_nat_add(x_368, x_370); +lean_inc_ref(x_367); +if (lean_is_scalar(x_376)) { + x_381 = lean_alloc_ctor(0, 3, 0); +} else { + x_381 = x_376; +} +lean_ctor_set(x_381, 0, x_367); +lean_ctor_set(x_381, 1, x_380); +lean_ctor_set(x_381, 2, x_369); +x_382 = lean_nat_dec_lt(x_378, x_379); +if (x_382 == 0) +{ +lean_object* x_383; lean_object* x_384; +lean_dec(x_368); +lean_dec_ref(x_367); +lean_dec(x_361); +lean_dec_ref(x_360); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_383 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_383, 0, x_372); +lean_ctor_set(x_383, 1, x_359); +lean_ctor_set(x_28, 1, x_383); +lean_ctor_set(x_28, 0, x_381); +x_384 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_384, 0, x_9); +return x_384; +} +else +{ +lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; uint8_t x_391; +lean_inc(x_379); +lean_inc(x_378); +lean_inc_ref(x_377); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + lean_ctor_release(x_38, 2); + x_385 = x_38; +} else { + lean_dec_ref(x_38); + x_385 = lean_box(0); +} +x_386 = lean_ctor_get(x_35, 0); +x_387 = lean_ctor_get(x_35, 1); +x_388 = lean_ctor_get(x_35, 2); +x_389 = lean_nat_add(x_378, x_370); +lean_inc_ref(x_377); +if (lean_is_scalar(x_385)) { + x_390 = lean_alloc_ctor(0, 3, 0); +} else { + x_390 = x_385; +} +lean_ctor_set(x_390, 0, x_377); +lean_ctor_set(x_390, 1, x_389); +lean_ctor_set(x_390, 2, x_379); +x_391 = lean_nat_dec_lt(x_387, x_388); +if (x_391 == 0) +{ +lean_object* x_392; lean_object* x_393; +lean_dec(x_378); +lean_dec_ref(x_377); +lean_dec(x_368); +lean_dec_ref(x_367); +lean_dec(x_361); +lean_dec_ref(x_360); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_392 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_392, 0, x_372); +lean_ctor_set(x_392, 1, x_359); +lean_ctor_set(x_28, 1, x_392); +lean_ctor_set(x_28, 0, x_381); +lean_ctor_set(x_27, 0, x_390); +x_393 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_393, 0, x_9); +return x_393; +} +else +{ +lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; uint8_t x_400; +lean_inc(x_388); +lean_inc(x_387); +lean_inc_ref(x_386); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + lean_ctor_release(x_35, 2); + x_394 = x_35; +} else { + lean_dec_ref(x_35); + x_394 = lean_box(0); +} +x_395 = lean_ctor_get(x_32, 0); +x_396 = lean_ctor_get(x_32, 1); +x_397 = lean_ctor_get(x_32, 2); +x_398 = lean_nat_add(x_387, x_370); +lean_inc_ref(x_386); +if (lean_is_scalar(x_394)) { + x_399 = lean_alloc_ctor(0, 3, 0); +} else { + x_399 = x_394; +} +lean_ctor_set(x_399, 0, x_386); +lean_ctor_set(x_399, 1, x_398); +lean_ctor_set(x_399, 2, x_388); +x_400 = lean_nat_dec_lt(x_396, x_397); +if (x_400 == 0) +{ +lean_object* x_401; lean_object* x_402; +lean_dec(x_387); +lean_dec_ref(x_386); +lean_dec(x_378); +lean_dec_ref(x_377); +lean_dec(x_368); +lean_dec_ref(x_367); +lean_dec(x_361); +lean_dec_ref(x_360); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_401 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_401, 0, x_372); +lean_ctor_set(x_401, 1, x_359); +lean_ctor_set(x_28, 1, x_401); +lean_ctor_set(x_28, 0, x_381); +lean_ctor_set(x_27, 0, x_390); +lean_ctor_set(x_26, 0, x_399); +x_402 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_402, 0, x_9); +return x_402; +} +else +{ +lean_object* x_403; lean_object* x_404; lean_object* x_405; uint8_t x_406; uint8_t x_407; +lean_inc(x_397); +lean_inc(x_396); +lean_inc_ref(x_395); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_403 = x_32; +} else { + lean_dec_ref(x_32); + x_403 = lean_box(0); +} +x_404 = lean_array_fget(x_386, x_387); +lean_dec(x_387); +lean_dec_ref(x_386); +x_405 = lean_ctor_get(x_404, 1); +x_406 = lean_ctor_get_uint8(x_404, sizeof(void*)*2); +x_407 = lean_nat_dec_eq(x_405, x_1); +if (x_407 == 0) +{ +lean_object* x_408; lean_object* x_409; +lean_dec_ref(x_404); +lean_dec(x_403); +lean_dec_ref(x_399); +lean_dec(x_397); +lean_dec(x_396); +lean_dec_ref(x_395); +lean_dec_ref(x_390); +lean_dec_ref(x_381); +lean_dec(x_378); +lean_dec_ref(x_377); +lean_dec_ref(x_372); +lean_dec(x_368); +lean_dec_ref(x_367); +lean_dec(x_361); +lean_dec_ref(x_360); +lean_dec(x_359); +lean_free_object(x_28); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +x_408 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_409 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_408, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_409) == 0) +{ +lean_object* x_410; lean_object* x_411; +x_410 = lean_ctor_get(x_409, 0); +lean_inc(x_410); +if (lean_is_exclusive(x_409)) { + lean_ctor_release(x_409, 0); + x_411 = x_409; +} else { + lean_dec_ref(x_409); + x_411 = lean_box(0); +} +if (lean_obj_tag(x_410) == 0) +{ +lean_object* x_412; lean_object* x_413; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_412 = lean_ctor_get(x_410, 0); +lean_inc(x_412); +lean_dec_ref(x_410); +if (lean_is_scalar(x_411)) { + x_413 = lean_alloc_ctor(0, 1, 0); +} else { + x_413 = x_411; +} +lean_ctor_set(x_413, 0, x_412); +return x_413; +} +else +{ +lean_object* x_414; +lean_dec(x_411); +x_414 = lean_ctor_get(x_410, 0); +lean_inc(x_414); +lean_dec_ref(x_410); +x_18 = x_414; +x_19 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_415; lean_object* x_416; lean_object* x_417; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_415 = lean_ctor_get(x_409, 0); +lean_inc(x_415); +if (lean_is_exclusive(x_409)) { + lean_ctor_release(x_409, 0); + x_416 = x_409; +} else { + lean_dec_ref(x_409); + x_416 = lean_box(0); +} +if (lean_is_scalar(x_416)) { + x_417 = lean_alloc_ctor(1, 1, 0); +} else { + x_417 = x_416; +} +lean_ctor_set(x_417, 0, x_415); +return x_417; +} +} +else +{ +lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; +x_418 = lean_array_fget(x_360, x_361); +lean_dec(x_361); +lean_dec_ref(x_360); +x_419 = lean_array_fget(x_367, x_368); +lean_dec(x_368); +lean_dec_ref(x_367); +x_420 = lean_array_fget(x_377, x_378); +lean_dec(x_378); +lean_dec_ref(x_377); +x_421 = lean_array_fget_borrowed(x_395, x_396); +x_422 = lean_box(x_3); +x_423 = lean_box(x_4); +x_424 = lean_box(x_406); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_10); +lean_inc_ref(x_2); +lean_inc_ref(x_421); +x_425 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_425, 0, x_420); +lean_closure_set(x_425, 1, x_418); +lean_closure_set(x_425, 2, x_421); +lean_closure_set(x_425, 3, x_2); +lean_closure_set(x_425, 4, x_10); +lean_closure_set(x_425, 5, x_422); +lean_closure_set(x_425, 6, x_423); +lean_closure_set(x_425, 7, x_5); +lean_closure_set(x_425, 8, x_6); +lean_closure_set(x_425, 9, x_424); +lean_closure_set(x_425, 10, x_370); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_426 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_419, x_404, x_425, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_426) == 0) +{ +lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; +x_427 = lean_ctor_get(x_426, 0); +lean_inc(x_427); +lean_dec_ref(x_426); +x_428 = lean_nat_add(x_396, x_370); +lean_dec(x_396); +if (lean_is_scalar(x_403)) { + x_429 = lean_alloc_ctor(0, 3, 0); +} else { + x_429 = x_403; +} +lean_ctor_set(x_429, 0, x_395); +lean_ctor_set(x_429, 1, x_428); +lean_ctor_set(x_429, 2, x_397); +x_430 = lean_array_push(x_359, x_427); +x_431 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_431, 0, x_372); +lean_ctor_set(x_431, 1, x_430); +lean_ctor_set(x_28, 1, x_431); +lean_ctor_set(x_28, 0, x_381); +lean_ctor_set(x_27, 0, x_390); +lean_ctor_set(x_26, 0, x_399); +lean_ctor_set(x_9, 0, x_429); +x_18 = x_9; +x_19 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_432; lean_object* x_433; lean_object* x_434; +lean_dec(x_403); +lean_dec_ref(x_399); +lean_dec(x_397); +lean_dec(x_396); +lean_dec_ref(x_395); +lean_dec_ref(x_390); +lean_dec_ref(x_381); +lean_dec_ref(x_372); +lean_dec(x_359); +lean_free_object(x_28); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_432 = lean_ctor_get(x_426, 0); +lean_inc(x_432); +if (lean_is_exclusive(x_426)) { + lean_ctor_release(x_426, 0); + x_433 = x_426; +} else { + lean_dec_ref(x_426); + x_433 = lean_box(0); +} +if (lean_is_scalar(x_433)) { + x_434 = lean_alloc_ctor(1, 1, 0); +} else { + x_434 = x_433; +} +lean_ctor_set(x_434, 0, x_432); +return x_434; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; uint8_t x_441; +x_435 = lean_ctor_get(x_28, 0); +lean_inc(x_435); +lean_dec(x_28); +x_436 = lean_ctor_get(x_29, 1); +lean_inc(x_436); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + x_437 = x_29; +} else { + lean_dec_ref(x_29); + x_437 = lean_box(0); +} +x_438 = lean_ctor_get(x_30, 0); +x_439 = lean_ctor_get(x_30, 1); +x_440 = lean_ctor_get(x_30, 2); +x_441 = lean_nat_dec_lt(x_439, x_440); +if (x_441 == 0) +{ +lean_object* x_442; lean_object* x_443; lean_object* x_444; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_437)) { + x_442 = lean_alloc_ctor(0, 2, 0); +} else { + x_442 = x_437; +} +lean_ctor_set(x_442, 0, x_30); +lean_ctor_set(x_442, 1, x_436); +x_443 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_443, 0, x_435); +lean_ctor_set(x_443, 1, x_442); +lean_ctor_set(x_27, 1, x_443); +x_444 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_444, 0, x_9); +return x_444; +} +else +{ +lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; uint8_t x_452; +lean_inc(x_440); +lean_inc(x_439); +lean_inc_ref(x_438); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_445 = x_30; +} else { + lean_dec_ref(x_30); + x_445 = lean_box(0); +} +x_446 = lean_ctor_get(x_435, 0); +x_447 = lean_ctor_get(x_435, 1); +x_448 = lean_ctor_get(x_435, 2); +x_449 = lean_unsigned_to_nat(1u); +x_450 = lean_nat_add(x_439, x_449); +lean_inc_ref(x_438); +if (lean_is_scalar(x_445)) { + x_451 = lean_alloc_ctor(0, 3, 0); +} else { + x_451 = x_445; +} +lean_ctor_set(x_451, 0, x_438); +lean_ctor_set(x_451, 1, x_450); +lean_ctor_set(x_451, 2, x_440); +x_452 = lean_nat_dec_lt(x_447, x_448); +if (x_452 == 0) +{ +lean_object* x_453; lean_object* x_454; lean_object* x_455; +lean_dec(x_439); +lean_dec_ref(x_438); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_437)) { + x_453 = lean_alloc_ctor(0, 2, 0); +} else { + x_453 = x_437; +} +lean_ctor_set(x_453, 0, x_451); +lean_ctor_set(x_453, 1, x_436); +x_454 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_454, 0, x_435); +lean_ctor_set(x_454, 1, x_453); +lean_ctor_set(x_27, 1, x_454); +x_455 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_455, 0, x_9); +return x_455; +} +else +{ +lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; uint8_t x_462; +lean_inc(x_448); +lean_inc(x_447); +lean_inc_ref(x_446); +if (lean_is_exclusive(x_435)) { + lean_ctor_release(x_435, 0); + lean_ctor_release(x_435, 1); + lean_ctor_release(x_435, 2); + x_456 = x_435; +} else { + lean_dec_ref(x_435); + x_456 = lean_box(0); +} +x_457 = lean_ctor_get(x_38, 0); +x_458 = lean_ctor_get(x_38, 1); +x_459 = lean_ctor_get(x_38, 2); +x_460 = lean_nat_add(x_447, x_449); +lean_inc_ref(x_446); +if (lean_is_scalar(x_456)) { + x_461 = lean_alloc_ctor(0, 3, 0); +} else { + x_461 = x_456; +} +lean_ctor_set(x_461, 0, x_446); +lean_ctor_set(x_461, 1, x_460); +lean_ctor_set(x_461, 2, x_448); +x_462 = lean_nat_dec_lt(x_458, x_459); +if (x_462 == 0) +{ +lean_object* x_463; lean_object* x_464; lean_object* x_465; +lean_dec(x_447); +lean_dec_ref(x_446); +lean_dec(x_439); +lean_dec_ref(x_438); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_437)) { + x_463 = lean_alloc_ctor(0, 2, 0); +} else { + x_463 = x_437; +} +lean_ctor_set(x_463, 0, x_451); +lean_ctor_set(x_463, 1, x_436); +x_464 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_464, 0, x_461); +lean_ctor_set(x_464, 1, x_463); +lean_ctor_set(x_27, 1, x_464); +x_465 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_465, 0, x_9); +return x_465; +} +else +{ +lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; uint8_t x_472; +lean_inc(x_459); +lean_inc(x_458); +lean_inc_ref(x_457); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + lean_ctor_release(x_38, 2); + x_466 = x_38; +} else { + lean_dec_ref(x_38); + x_466 = lean_box(0); +} +x_467 = lean_ctor_get(x_35, 0); +x_468 = lean_ctor_get(x_35, 1); +x_469 = lean_ctor_get(x_35, 2); +x_470 = lean_nat_add(x_458, x_449); +lean_inc_ref(x_457); +if (lean_is_scalar(x_466)) { + x_471 = lean_alloc_ctor(0, 3, 0); +} else { + x_471 = x_466; +} +lean_ctor_set(x_471, 0, x_457); +lean_ctor_set(x_471, 1, x_470); +lean_ctor_set(x_471, 2, x_459); +x_472 = lean_nat_dec_lt(x_468, x_469); +if (x_472 == 0) +{ +lean_object* x_473; lean_object* x_474; lean_object* x_475; +lean_dec(x_458); +lean_dec_ref(x_457); +lean_dec(x_447); +lean_dec_ref(x_446); +lean_dec(x_439); +lean_dec_ref(x_438); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_437)) { + x_473 = lean_alloc_ctor(0, 2, 0); +} else { + x_473 = x_437; +} +lean_ctor_set(x_473, 0, x_451); +lean_ctor_set(x_473, 1, x_436); +x_474 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_474, 0, x_461); +lean_ctor_set(x_474, 1, x_473); +lean_ctor_set(x_27, 1, x_474); +lean_ctor_set(x_27, 0, x_471); +x_475 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_475, 0, x_9); +return x_475; +} +else +{ +lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; uint8_t x_482; +lean_inc(x_469); +lean_inc(x_468); +lean_inc_ref(x_467); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + lean_ctor_release(x_35, 2); + x_476 = x_35; +} else { + lean_dec_ref(x_35); + x_476 = lean_box(0); +} +x_477 = lean_ctor_get(x_32, 0); +x_478 = lean_ctor_get(x_32, 1); +x_479 = lean_ctor_get(x_32, 2); +x_480 = lean_nat_add(x_468, x_449); +lean_inc_ref(x_467); +if (lean_is_scalar(x_476)) { + x_481 = lean_alloc_ctor(0, 3, 0); +} else { + x_481 = x_476; +} +lean_ctor_set(x_481, 0, x_467); +lean_ctor_set(x_481, 1, x_480); +lean_ctor_set(x_481, 2, x_469); +x_482 = lean_nat_dec_lt(x_478, x_479); +if (x_482 == 0) +{ +lean_object* x_483; lean_object* x_484; lean_object* x_485; +lean_dec(x_468); +lean_dec_ref(x_467); +lean_dec(x_458); +lean_dec_ref(x_457); +lean_dec(x_447); +lean_dec_ref(x_446); +lean_dec(x_439); +lean_dec_ref(x_438); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_437)) { + x_483 = lean_alloc_ctor(0, 2, 0); +} else { + x_483 = x_437; +} +lean_ctor_set(x_483, 0, x_451); +lean_ctor_set(x_483, 1, x_436); +x_484 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_484, 0, x_461); +lean_ctor_set(x_484, 1, x_483); +lean_ctor_set(x_27, 1, x_484); +lean_ctor_set(x_27, 0, x_471); +lean_ctor_set(x_26, 0, x_481); +x_485 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_485, 0, x_9); +return x_485; +} +else +{ +lean_object* x_486; lean_object* x_487; lean_object* x_488; uint8_t x_489; uint8_t x_490; +lean_inc(x_479); +lean_inc(x_478); +lean_inc_ref(x_477); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_486 = x_32; +} else { + lean_dec_ref(x_32); + x_486 = lean_box(0); +} +x_487 = lean_array_fget(x_467, x_468); +lean_dec(x_468); +lean_dec_ref(x_467); +x_488 = lean_ctor_get(x_487, 1); +x_489 = lean_ctor_get_uint8(x_487, sizeof(void*)*2); +x_490 = lean_nat_dec_eq(x_488, x_1); +if (x_490 == 0) +{ +lean_object* x_491; lean_object* x_492; +lean_dec_ref(x_487); +lean_dec(x_486); +lean_dec_ref(x_481); +lean_dec(x_479); +lean_dec(x_478); +lean_dec_ref(x_477); +lean_dec_ref(x_471); +lean_dec_ref(x_461); +lean_dec(x_458); +lean_dec_ref(x_457); +lean_dec_ref(x_451); +lean_dec(x_447); +lean_dec_ref(x_446); +lean_dec(x_439); +lean_dec_ref(x_438); +lean_dec(x_437); +lean_dec(x_436); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +x_491 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_492 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_491, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_492) == 0) +{ +lean_object* x_493; lean_object* x_494; +x_493 = lean_ctor_get(x_492, 0); +lean_inc(x_493); +if (lean_is_exclusive(x_492)) { + lean_ctor_release(x_492, 0); + x_494 = x_492; +} else { + lean_dec_ref(x_492); + x_494 = lean_box(0); +} +if (lean_obj_tag(x_493) == 0) +{ +lean_object* x_495; lean_object* x_496; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_495 = lean_ctor_get(x_493, 0); +lean_inc(x_495); +lean_dec_ref(x_493); +if (lean_is_scalar(x_494)) { + x_496 = lean_alloc_ctor(0, 1, 0); +} else { + x_496 = x_494; +} +lean_ctor_set(x_496, 0, x_495); +return x_496; +} +else +{ +lean_object* x_497; +lean_dec(x_494); +x_497 = lean_ctor_get(x_493, 0); +lean_inc(x_497); +lean_dec_ref(x_493); +x_18 = x_497; +x_19 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_498; lean_object* x_499; lean_object* x_500; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_498 = lean_ctor_get(x_492, 0); +lean_inc(x_498); +if (lean_is_exclusive(x_492)) { + lean_ctor_release(x_492, 0); + x_499 = x_492; +} else { + lean_dec_ref(x_492); + x_499 = lean_box(0); +} +if (lean_is_scalar(x_499)) { + x_500 = lean_alloc_ctor(1, 1, 0); +} else { + x_500 = x_499; +} +lean_ctor_set(x_500, 0, x_498); +return x_500; +} +} +else +{ +lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; +x_501 = lean_array_fget(x_438, x_439); +lean_dec(x_439); +lean_dec_ref(x_438); +x_502 = lean_array_fget(x_446, x_447); +lean_dec(x_447); +lean_dec_ref(x_446); +x_503 = lean_array_fget(x_457, x_458); +lean_dec(x_458); +lean_dec_ref(x_457); +x_504 = lean_array_fget_borrowed(x_477, x_478); +x_505 = lean_box(x_3); +x_506 = lean_box(x_4); +x_507 = lean_box(x_489); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_10); +lean_inc_ref(x_2); +lean_inc_ref(x_504); +x_508 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_508, 0, x_503); +lean_closure_set(x_508, 1, x_501); +lean_closure_set(x_508, 2, x_504); +lean_closure_set(x_508, 3, x_2); +lean_closure_set(x_508, 4, x_10); +lean_closure_set(x_508, 5, x_505); +lean_closure_set(x_508, 6, x_506); +lean_closure_set(x_508, 7, x_5); +lean_closure_set(x_508, 8, x_6); +lean_closure_set(x_508, 9, x_507); +lean_closure_set(x_508, 10, x_449); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_509 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_502, x_487, x_508, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_509) == 0) +{ +lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; +x_510 = lean_ctor_get(x_509, 0); +lean_inc(x_510); +lean_dec_ref(x_509); +x_511 = lean_nat_add(x_478, x_449); +lean_dec(x_478); +if (lean_is_scalar(x_486)) { + x_512 = lean_alloc_ctor(0, 3, 0); +} else { + x_512 = x_486; +} +lean_ctor_set(x_512, 0, x_477); +lean_ctor_set(x_512, 1, x_511); +lean_ctor_set(x_512, 2, x_479); +x_513 = lean_array_push(x_436, x_510); +if (lean_is_scalar(x_437)) { + x_514 = lean_alloc_ctor(0, 2, 0); +} else { + x_514 = x_437; +} +lean_ctor_set(x_514, 0, x_451); +lean_ctor_set(x_514, 1, x_513); +x_515 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_515, 0, x_461); +lean_ctor_set(x_515, 1, x_514); +lean_ctor_set(x_27, 1, x_515); +lean_ctor_set(x_27, 0, x_471); +lean_ctor_set(x_26, 0, x_481); +lean_ctor_set(x_9, 0, x_512); +x_18 = x_9; +x_19 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_516; lean_object* x_517; lean_object* x_518; +lean_dec(x_486); +lean_dec_ref(x_481); +lean_dec(x_479); +lean_dec(x_478); +lean_dec_ref(x_477); +lean_dec_ref(x_471); +lean_dec_ref(x_461); +lean_dec_ref(x_451); +lean_dec(x_437); +lean_dec(x_436); +lean_free_object(x_27); +lean_free_object(x_26); +lean_free_object(x_9); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_516 = lean_ctor_get(x_509, 0); +lean_inc(x_516); +if (lean_is_exclusive(x_509)) { + lean_ctor_release(x_509, 0); + x_517 = x_509; +} else { + lean_dec_ref(x_509); + x_517 = lean_box(0); +} +if (lean_is_scalar(x_517)) { + x_518 = lean_alloc_ctor(1, 1, 0); +} else { + x_518 = x_517; +} +lean_ctor_set(x_518, 0, x_516); +return x_518; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; uint8_t x_527; +x_519 = lean_ctor_get(x_27, 0); +lean_inc(x_519); +lean_dec(x_27); +x_520 = lean_ctor_get(x_28, 0); +lean_inc(x_520); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_521 = x_28; +} else { + lean_dec_ref(x_28); + x_521 = lean_box(0); +} +x_522 = lean_ctor_get(x_29, 1); +lean_inc(x_522); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + x_523 = x_29; +} else { + lean_dec_ref(x_29); + x_523 = lean_box(0); +} +x_524 = lean_ctor_get(x_30, 0); +x_525 = lean_ctor_get(x_30, 1); +x_526 = lean_ctor_get(x_30, 2); +x_527 = lean_nat_dec_lt(x_525, x_526); +if (x_527 == 0) +{ +lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_523)) { + x_528 = lean_alloc_ctor(0, 2, 0); +} else { + x_528 = x_523; +} +lean_ctor_set(x_528, 0, x_30); +lean_ctor_set(x_528, 1, x_522); +if (lean_is_scalar(x_521)) { + x_529 = lean_alloc_ctor(0, 2, 0); +} else { + x_529 = x_521; +} +lean_ctor_set(x_529, 0, x_520); +lean_ctor_set(x_529, 1, x_528); +x_530 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_530, 0, x_519); +lean_ctor_set(x_530, 1, x_529); +lean_ctor_set(x_26, 1, x_530); +x_531 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_531, 0, x_9); +return x_531; +} +else +{ +lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; uint8_t x_539; +lean_inc(x_526); +lean_inc(x_525); +lean_inc_ref(x_524); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_532 = x_30; +} else { + lean_dec_ref(x_30); + x_532 = lean_box(0); +} +x_533 = lean_ctor_get(x_520, 0); +x_534 = lean_ctor_get(x_520, 1); +x_535 = lean_ctor_get(x_520, 2); +x_536 = lean_unsigned_to_nat(1u); +x_537 = lean_nat_add(x_525, x_536); +lean_inc_ref(x_524); +if (lean_is_scalar(x_532)) { + x_538 = lean_alloc_ctor(0, 3, 0); +} else { + x_538 = x_532; +} +lean_ctor_set(x_538, 0, x_524); +lean_ctor_set(x_538, 1, x_537); +lean_ctor_set(x_538, 2, x_526); +x_539 = lean_nat_dec_lt(x_534, x_535); +if (x_539 == 0) +{ +lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; +lean_dec(x_525); +lean_dec_ref(x_524); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_523)) { + x_540 = lean_alloc_ctor(0, 2, 0); +} else { + x_540 = x_523; +} +lean_ctor_set(x_540, 0, x_538); +lean_ctor_set(x_540, 1, x_522); +if (lean_is_scalar(x_521)) { + x_541 = lean_alloc_ctor(0, 2, 0); +} else { + x_541 = x_521; +} +lean_ctor_set(x_541, 0, x_520); +lean_ctor_set(x_541, 1, x_540); +x_542 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_542, 0, x_519); +lean_ctor_set(x_542, 1, x_541); +lean_ctor_set(x_26, 1, x_542); +x_543 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_543, 0, x_9); +return x_543; +} +else +{ +lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; uint8_t x_550; +lean_inc(x_535); +lean_inc(x_534); +lean_inc_ref(x_533); +if (lean_is_exclusive(x_520)) { + lean_ctor_release(x_520, 0); + lean_ctor_release(x_520, 1); + lean_ctor_release(x_520, 2); + x_544 = x_520; +} else { + lean_dec_ref(x_520); + x_544 = lean_box(0); +} +x_545 = lean_ctor_get(x_519, 0); +x_546 = lean_ctor_get(x_519, 1); +x_547 = lean_ctor_get(x_519, 2); +x_548 = lean_nat_add(x_534, x_536); +lean_inc_ref(x_533); +if (lean_is_scalar(x_544)) { + x_549 = lean_alloc_ctor(0, 3, 0); +} else { + x_549 = x_544; +} +lean_ctor_set(x_549, 0, x_533); +lean_ctor_set(x_549, 1, x_548); +lean_ctor_set(x_549, 2, x_535); +x_550 = lean_nat_dec_lt(x_546, x_547); +if (x_550 == 0) +{ +lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; +lean_dec(x_534); +lean_dec_ref(x_533); +lean_dec(x_525); +lean_dec_ref(x_524); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_523)) { + x_551 = lean_alloc_ctor(0, 2, 0); +} else { + x_551 = x_523; +} +lean_ctor_set(x_551, 0, x_538); +lean_ctor_set(x_551, 1, x_522); +if (lean_is_scalar(x_521)) { + x_552 = lean_alloc_ctor(0, 2, 0); +} else { + x_552 = x_521; +} +lean_ctor_set(x_552, 0, x_549); +lean_ctor_set(x_552, 1, x_551); +x_553 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_553, 0, x_519); +lean_ctor_set(x_553, 1, x_552); +lean_ctor_set(x_26, 1, x_553); +x_554 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_554, 0, x_9); +return x_554; +} +else +{ +lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; uint8_t x_561; +lean_inc(x_547); +lean_inc(x_546); +lean_inc_ref(x_545); +if (lean_is_exclusive(x_519)) { + lean_ctor_release(x_519, 0); + lean_ctor_release(x_519, 1); + lean_ctor_release(x_519, 2); + x_555 = x_519; +} else { + lean_dec_ref(x_519); + x_555 = lean_box(0); +} +x_556 = lean_ctor_get(x_35, 0); +x_557 = lean_ctor_get(x_35, 1); +x_558 = lean_ctor_get(x_35, 2); +x_559 = lean_nat_add(x_546, x_536); +lean_inc_ref(x_545); +if (lean_is_scalar(x_555)) { + x_560 = lean_alloc_ctor(0, 3, 0); +} else { + x_560 = x_555; +} +lean_ctor_set(x_560, 0, x_545); +lean_ctor_set(x_560, 1, x_559); +lean_ctor_set(x_560, 2, x_547); +x_561 = lean_nat_dec_lt(x_557, x_558); +if (x_561 == 0) +{ +lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; +lean_dec(x_546); +lean_dec_ref(x_545); +lean_dec(x_534); +lean_dec_ref(x_533); +lean_dec(x_525); +lean_dec_ref(x_524); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_523)) { + x_562 = lean_alloc_ctor(0, 2, 0); +} else { + x_562 = x_523; +} +lean_ctor_set(x_562, 0, x_538); +lean_ctor_set(x_562, 1, x_522); +if (lean_is_scalar(x_521)) { + x_563 = lean_alloc_ctor(0, 2, 0); +} else { + x_563 = x_521; +} +lean_ctor_set(x_563, 0, x_549); +lean_ctor_set(x_563, 1, x_562); +x_564 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_564, 0, x_560); +lean_ctor_set(x_564, 1, x_563); +lean_ctor_set(x_26, 1, x_564); +x_565 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_565, 0, x_9); +return x_565; +} +else +{ +lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; uint8_t x_572; +lean_inc(x_558); +lean_inc(x_557); +lean_inc_ref(x_556); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + lean_ctor_release(x_35, 2); + x_566 = x_35; +} else { + lean_dec_ref(x_35); + x_566 = lean_box(0); +} +x_567 = lean_ctor_get(x_32, 0); +x_568 = lean_ctor_get(x_32, 1); +x_569 = lean_ctor_get(x_32, 2); +x_570 = lean_nat_add(x_557, x_536); +lean_inc_ref(x_556); +if (lean_is_scalar(x_566)) { + x_571 = lean_alloc_ctor(0, 3, 0); +} else { + x_571 = x_566; +} +lean_ctor_set(x_571, 0, x_556); +lean_ctor_set(x_571, 1, x_570); +lean_ctor_set(x_571, 2, x_558); +x_572 = lean_nat_dec_lt(x_568, x_569); +if (x_572 == 0) +{ +lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; +lean_dec(x_557); +lean_dec_ref(x_556); +lean_dec(x_546); +lean_dec_ref(x_545); +lean_dec(x_534); +lean_dec_ref(x_533); +lean_dec(x_525); +lean_dec_ref(x_524); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_523)) { + x_573 = lean_alloc_ctor(0, 2, 0); +} else { + x_573 = x_523; +} +lean_ctor_set(x_573, 0, x_538); +lean_ctor_set(x_573, 1, x_522); +if (lean_is_scalar(x_521)) { + x_574 = lean_alloc_ctor(0, 2, 0); +} else { + x_574 = x_521; +} +lean_ctor_set(x_574, 0, x_549); +lean_ctor_set(x_574, 1, x_573); +x_575 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_575, 0, x_560); +lean_ctor_set(x_575, 1, x_574); +lean_ctor_set(x_26, 1, x_575); +lean_ctor_set(x_26, 0, x_571); +x_576 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_576, 0, x_9); +return x_576; +} +else +{ +lean_object* x_577; lean_object* x_578; lean_object* x_579; uint8_t x_580; uint8_t x_581; +lean_inc(x_569); +lean_inc(x_568); +lean_inc_ref(x_567); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_577 = x_32; +} else { + lean_dec_ref(x_32); + x_577 = lean_box(0); +} +x_578 = lean_array_fget(x_556, x_557); +lean_dec(x_557); +lean_dec_ref(x_556); +x_579 = lean_ctor_get(x_578, 1); +x_580 = lean_ctor_get_uint8(x_578, sizeof(void*)*2); +x_581 = lean_nat_dec_eq(x_579, x_1); +if (x_581 == 0) +{ +lean_object* x_582; lean_object* x_583; +lean_dec_ref(x_578); +lean_dec(x_577); +lean_dec_ref(x_571); +lean_dec(x_569); +lean_dec(x_568); +lean_dec_ref(x_567); +lean_dec_ref(x_560); +lean_dec_ref(x_549); +lean_dec(x_546); +lean_dec_ref(x_545); +lean_dec_ref(x_538); +lean_dec(x_534); +lean_dec_ref(x_533); +lean_dec(x_525); +lean_dec_ref(x_524); +lean_dec(x_523); +lean_dec(x_522); +lean_dec(x_521); +lean_free_object(x_26); +lean_free_object(x_9); +x_582 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_583 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_582, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_583) == 0) +{ +lean_object* x_584; lean_object* x_585; +x_584 = lean_ctor_get(x_583, 0); +lean_inc(x_584); +if (lean_is_exclusive(x_583)) { + lean_ctor_release(x_583, 0); + x_585 = x_583; +} else { + lean_dec_ref(x_583); + x_585 = lean_box(0); +} +if (lean_obj_tag(x_584) == 0) +{ +lean_object* x_586; lean_object* x_587; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_586 = lean_ctor_get(x_584, 0); +lean_inc(x_586); +lean_dec_ref(x_584); +if (lean_is_scalar(x_585)) { + x_587 = lean_alloc_ctor(0, 1, 0); +} else { + x_587 = x_585; +} +lean_ctor_set(x_587, 0, x_586); +return x_587; +} +else +{ +lean_object* x_588; +lean_dec(x_585); +x_588 = lean_ctor_get(x_584, 0); +lean_inc(x_588); +lean_dec_ref(x_584); +x_18 = x_588; +x_19 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_589; lean_object* x_590; lean_object* x_591; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_589 = lean_ctor_get(x_583, 0); +lean_inc(x_589); +if (lean_is_exclusive(x_583)) { + lean_ctor_release(x_583, 0); + x_590 = x_583; +} else { + lean_dec_ref(x_583); + x_590 = lean_box(0); +} +if (lean_is_scalar(x_590)) { + x_591 = lean_alloc_ctor(1, 1, 0); +} else { + x_591 = x_590; +} +lean_ctor_set(x_591, 0, x_589); +return x_591; +} +} +else +{ +lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; +x_592 = lean_array_fget(x_524, x_525); +lean_dec(x_525); +lean_dec_ref(x_524); +x_593 = lean_array_fget(x_533, x_534); +lean_dec(x_534); +lean_dec_ref(x_533); +x_594 = lean_array_fget(x_545, x_546); +lean_dec(x_546); +lean_dec_ref(x_545); +x_595 = lean_array_fget_borrowed(x_567, x_568); +x_596 = lean_box(x_3); +x_597 = lean_box(x_4); +x_598 = lean_box(x_580); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_10); +lean_inc_ref(x_2); +lean_inc_ref(x_595); +x_599 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_599, 0, x_594); +lean_closure_set(x_599, 1, x_592); +lean_closure_set(x_599, 2, x_595); +lean_closure_set(x_599, 3, x_2); +lean_closure_set(x_599, 4, x_10); +lean_closure_set(x_599, 5, x_596); +lean_closure_set(x_599, 6, x_597); +lean_closure_set(x_599, 7, x_5); +lean_closure_set(x_599, 8, x_6); +lean_closure_set(x_599, 9, x_598); +lean_closure_set(x_599, 10, x_536); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_600 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_593, x_578, x_599, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_600) == 0) +{ +lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; +x_601 = lean_ctor_get(x_600, 0); +lean_inc(x_601); +lean_dec_ref(x_600); +x_602 = lean_nat_add(x_568, x_536); +lean_dec(x_568); +if (lean_is_scalar(x_577)) { + x_603 = lean_alloc_ctor(0, 3, 0); +} else { + x_603 = x_577; +} +lean_ctor_set(x_603, 0, x_567); +lean_ctor_set(x_603, 1, x_602); +lean_ctor_set(x_603, 2, x_569); +x_604 = lean_array_push(x_522, x_601); +if (lean_is_scalar(x_523)) { + x_605 = lean_alloc_ctor(0, 2, 0); +} else { + x_605 = x_523; +} +lean_ctor_set(x_605, 0, x_538); +lean_ctor_set(x_605, 1, x_604); +if (lean_is_scalar(x_521)) { + x_606 = lean_alloc_ctor(0, 2, 0); +} else { + x_606 = x_521; +} +lean_ctor_set(x_606, 0, x_549); +lean_ctor_set(x_606, 1, x_605); +x_607 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_607, 0, x_560); +lean_ctor_set(x_607, 1, x_606); +lean_ctor_set(x_26, 1, x_607); +lean_ctor_set(x_26, 0, x_571); +lean_ctor_set(x_9, 0, x_603); +x_18 = x_9; +x_19 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_608; lean_object* x_609; lean_object* x_610; +lean_dec(x_577); +lean_dec_ref(x_571); +lean_dec(x_569); +lean_dec(x_568); +lean_dec_ref(x_567); +lean_dec_ref(x_560); +lean_dec_ref(x_549); +lean_dec_ref(x_538); +lean_dec(x_523); +lean_dec(x_522); +lean_dec(x_521); +lean_free_object(x_26); +lean_free_object(x_9); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_608 = lean_ctor_get(x_600, 0); +lean_inc(x_608); +if (lean_is_exclusive(x_600)) { + lean_ctor_release(x_600, 0); + x_609 = x_600; +} else { + lean_dec_ref(x_600); + x_609 = lean_box(0); +} +if (lean_is_scalar(x_609)) { + x_610 = lean_alloc_ctor(1, 1, 0); +} else { + x_610 = x_609; +} +lean_ctor_set(x_610, 0, x_608); +return x_610; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; uint8_t x_621; +x_611 = lean_ctor_get(x_26, 0); +lean_inc(x_611); +lean_dec(x_26); +x_612 = lean_ctor_get(x_27, 0); +lean_inc(x_612); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_613 = x_27; +} else { + lean_dec_ref(x_27); + x_613 = lean_box(0); +} +x_614 = lean_ctor_get(x_28, 0); +lean_inc(x_614); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_615 = x_28; +} else { + lean_dec_ref(x_28); + x_615 = lean_box(0); +} +x_616 = lean_ctor_get(x_29, 1); +lean_inc(x_616); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + x_617 = x_29; +} else { + lean_dec_ref(x_29); + x_617 = lean_box(0); +} +x_618 = lean_ctor_get(x_30, 0); +x_619 = lean_ctor_get(x_30, 1); +x_620 = lean_ctor_get(x_30, 2); +x_621 = lean_nat_dec_lt(x_619, x_620); +if (x_621 == 0) +{ +lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_617)) { + x_622 = lean_alloc_ctor(0, 2, 0); +} else { + x_622 = x_617; +} +lean_ctor_set(x_622, 0, x_30); +lean_ctor_set(x_622, 1, x_616); +if (lean_is_scalar(x_615)) { + x_623 = lean_alloc_ctor(0, 2, 0); +} else { + x_623 = x_615; +} +lean_ctor_set(x_623, 0, x_614); +lean_ctor_set(x_623, 1, x_622); +if (lean_is_scalar(x_613)) { + x_624 = lean_alloc_ctor(0, 2, 0); +} else { + x_624 = x_613; +} +lean_ctor_set(x_624, 0, x_612); +lean_ctor_set(x_624, 1, x_623); +x_625 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_625, 0, x_611); +lean_ctor_set(x_625, 1, x_624); +lean_ctor_set(x_9, 1, x_625); +x_626 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_626, 0, x_9); +return x_626; +} +else +{ +lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; uint8_t x_634; +lean_inc(x_620); +lean_inc(x_619); +lean_inc_ref(x_618); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_627 = x_30; +} else { + lean_dec_ref(x_30); + x_627 = lean_box(0); +} +x_628 = lean_ctor_get(x_614, 0); +x_629 = lean_ctor_get(x_614, 1); +x_630 = lean_ctor_get(x_614, 2); +x_631 = lean_unsigned_to_nat(1u); +x_632 = lean_nat_add(x_619, x_631); +lean_inc_ref(x_618); +if (lean_is_scalar(x_627)) { + x_633 = lean_alloc_ctor(0, 3, 0); +} else { + x_633 = x_627; +} +lean_ctor_set(x_633, 0, x_618); +lean_ctor_set(x_633, 1, x_632); +lean_ctor_set(x_633, 2, x_620); +x_634 = lean_nat_dec_lt(x_629, x_630); +if (x_634 == 0) +{ +lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; +lean_dec(x_619); +lean_dec_ref(x_618); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_617)) { + x_635 = lean_alloc_ctor(0, 2, 0); +} else { + x_635 = x_617; +} +lean_ctor_set(x_635, 0, x_633); +lean_ctor_set(x_635, 1, x_616); +if (lean_is_scalar(x_615)) { + x_636 = lean_alloc_ctor(0, 2, 0); +} else { + x_636 = x_615; +} +lean_ctor_set(x_636, 0, x_614); +lean_ctor_set(x_636, 1, x_635); +if (lean_is_scalar(x_613)) { + x_637 = lean_alloc_ctor(0, 2, 0); +} else { + x_637 = x_613; +} +lean_ctor_set(x_637, 0, x_612); +lean_ctor_set(x_637, 1, x_636); +x_638 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_638, 0, x_611); +lean_ctor_set(x_638, 1, x_637); +lean_ctor_set(x_9, 1, x_638); +x_639 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_639, 0, x_9); +return x_639; +} +else +{ +lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; uint8_t x_646; +lean_inc(x_630); +lean_inc(x_629); +lean_inc_ref(x_628); +if (lean_is_exclusive(x_614)) { + lean_ctor_release(x_614, 0); + lean_ctor_release(x_614, 1); + lean_ctor_release(x_614, 2); + x_640 = x_614; +} else { + lean_dec_ref(x_614); + x_640 = lean_box(0); +} +x_641 = lean_ctor_get(x_612, 0); +x_642 = lean_ctor_get(x_612, 1); +x_643 = lean_ctor_get(x_612, 2); +x_644 = lean_nat_add(x_629, x_631); +lean_inc_ref(x_628); +if (lean_is_scalar(x_640)) { + x_645 = lean_alloc_ctor(0, 3, 0); +} else { + x_645 = x_640; +} +lean_ctor_set(x_645, 0, x_628); +lean_ctor_set(x_645, 1, x_644); +lean_ctor_set(x_645, 2, x_630); +x_646 = lean_nat_dec_lt(x_642, x_643); +if (x_646 == 0) +{ +lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; +lean_dec(x_629); +lean_dec_ref(x_628); +lean_dec(x_619); +lean_dec_ref(x_618); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_617)) { + x_647 = lean_alloc_ctor(0, 2, 0); +} else { + x_647 = x_617; +} +lean_ctor_set(x_647, 0, x_633); +lean_ctor_set(x_647, 1, x_616); +if (lean_is_scalar(x_615)) { + x_648 = lean_alloc_ctor(0, 2, 0); +} else { + x_648 = x_615; +} +lean_ctor_set(x_648, 0, x_645); +lean_ctor_set(x_648, 1, x_647); +if (lean_is_scalar(x_613)) { + x_649 = lean_alloc_ctor(0, 2, 0); +} else { + x_649 = x_613; +} +lean_ctor_set(x_649, 0, x_612); +lean_ctor_set(x_649, 1, x_648); +x_650 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_650, 0, x_611); +lean_ctor_set(x_650, 1, x_649); +lean_ctor_set(x_9, 1, x_650); +x_651 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_651, 0, x_9); +return x_651; +} +else +{ +lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; uint8_t x_658; +lean_inc(x_643); +lean_inc(x_642); +lean_inc_ref(x_641); +if (lean_is_exclusive(x_612)) { + lean_ctor_release(x_612, 0); + lean_ctor_release(x_612, 1); + lean_ctor_release(x_612, 2); + x_652 = x_612; +} else { + lean_dec_ref(x_612); + x_652 = lean_box(0); +} +x_653 = lean_ctor_get(x_611, 0); +x_654 = lean_ctor_get(x_611, 1); +x_655 = lean_ctor_get(x_611, 2); +x_656 = lean_nat_add(x_642, x_631); +lean_inc_ref(x_641); +if (lean_is_scalar(x_652)) { + x_657 = lean_alloc_ctor(0, 3, 0); +} else { + x_657 = x_652; +} +lean_ctor_set(x_657, 0, x_641); +lean_ctor_set(x_657, 1, x_656); +lean_ctor_set(x_657, 2, x_643); +x_658 = lean_nat_dec_lt(x_654, x_655); +if (x_658 == 0) +{ +lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; +lean_dec(x_642); +lean_dec_ref(x_641); +lean_dec(x_629); +lean_dec_ref(x_628); +lean_dec(x_619); +lean_dec_ref(x_618); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_617)) { + x_659 = lean_alloc_ctor(0, 2, 0); +} else { + x_659 = x_617; +} +lean_ctor_set(x_659, 0, x_633); +lean_ctor_set(x_659, 1, x_616); +if (lean_is_scalar(x_615)) { + x_660 = lean_alloc_ctor(0, 2, 0); +} else { + x_660 = x_615; +} +lean_ctor_set(x_660, 0, x_645); +lean_ctor_set(x_660, 1, x_659); +if (lean_is_scalar(x_613)) { + x_661 = lean_alloc_ctor(0, 2, 0); +} else { + x_661 = x_613; +} +lean_ctor_set(x_661, 0, x_657); +lean_ctor_set(x_661, 1, x_660); +x_662 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_662, 0, x_611); +lean_ctor_set(x_662, 1, x_661); +lean_ctor_set(x_9, 1, x_662); +x_663 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_663, 0, x_9); +return x_663; +} +else +{ +lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; uint8_t x_670; +lean_inc(x_655); +lean_inc(x_654); +lean_inc_ref(x_653); +if (lean_is_exclusive(x_611)) { + lean_ctor_release(x_611, 0); + lean_ctor_release(x_611, 1); + lean_ctor_release(x_611, 2); + x_664 = x_611; +} else { + lean_dec_ref(x_611); + x_664 = lean_box(0); +} +x_665 = lean_ctor_get(x_32, 0); +x_666 = lean_ctor_get(x_32, 1); +x_667 = lean_ctor_get(x_32, 2); +x_668 = lean_nat_add(x_654, x_631); +lean_inc_ref(x_653); +if (lean_is_scalar(x_664)) { + x_669 = lean_alloc_ctor(0, 3, 0); +} else { + x_669 = x_664; +} +lean_ctor_set(x_669, 0, x_653); +lean_ctor_set(x_669, 1, x_668); +lean_ctor_set(x_669, 2, x_655); +x_670 = lean_nat_dec_lt(x_666, x_667); +if (x_670 == 0) +{ +lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; +lean_dec(x_654); +lean_dec_ref(x_653); +lean_dec(x_642); +lean_dec_ref(x_641); +lean_dec(x_629); +lean_dec_ref(x_628); +lean_dec(x_619); +lean_dec_ref(x_618); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_617)) { + x_671 = lean_alloc_ctor(0, 2, 0); +} else { + x_671 = x_617; +} +lean_ctor_set(x_671, 0, x_633); +lean_ctor_set(x_671, 1, x_616); +if (lean_is_scalar(x_615)) { + x_672 = lean_alloc_ctor(0, 2, 0); +} else { + x_672 = x_615; +} +lean_ctor_set(x_672, 0, x_645); +lean_ctor_set(x_672, 1, x_671); +if (lean_is_scalar(x_613)) { + x_673 = lean_alloc_ctor(0, 2, 0); +} else { + x_673 = x_613; +} +lean_ctor_set(x_673, 0, x_657); +lean_ctor_set(x_673, 1, x_672); +x_674 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_674, 0, x_669); +lean_ctor_set(x_674, 1, x_673); +lean_ctor_set(x_9, 1, x_674); +x_675 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_675, 0, x_9); +return x_675; +} +else +{ +lean_object* x_676; lean_object* x_677; lean_object* x_678; uint8_t x_679; uint8_t x_680; +lean_inc(x_667); +lean_inc(x_666); +lean_inc_ref(x_665); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_676 = x_32; +} else { + lean_dec_ref(x_32); + x_676 = lean_box(0); +} +x_677 = lean_array_fget(x_653, x_654); +lean_dec(x_654); +lean_dec_ref(x_653); +x_678 = lean_ctor_get(x_677, 1); +x_679 = lean_ctor_get_uint8(x_677, sizeof(void*)*2); +x_680 = lean_nat_dec_eq(x_678, x_1); +if (x_680 == 0) +{ +lean_object* x_681; lean_object* x_682; +lean_dec_ref(x_677); +lean_dec(x_676); +lean_dec_ref(x_669); +lean_dec(x_667); +lean_dec(x_666); +lean_dec_ref(x_665); +lean_dec_ref(x_657); +lean_dec_ref(x_645); +lean_dec(x_642); +lean_dec_ref(x_641); +lean_dec_ref(x_633); +lean_dec(x_629); +lean_dec_ref(x_628); +lean_dec(x_619); +lean_dec_ref(x_618); +lean_dec(x_617); +lean_dec(x_616); +lean_dec(x_615); +lean_dec(x_613); +lean_free_object(x_9); +x_681 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_682 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_681, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_682) == 0) +{ +lean_object* x_683; lean_object* x_684; +x_683 = lean_ctor_get(x_682, 0); +lean_inc(x_683); +if (lean_is_exclusive(x_682)) { + lean_ctor_release(x_682, 0); + x_684 = x_682; +} else { + lean_dec_ref(x_682); + x_684 = lean_box(0); +} +if (lean_obj_tag(x_683) == 0) +{ +lean_object* x_685; lean_object* x_686; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_685 = lean_ctor_get(x_683, 0); +lean_inc(x_685); +lean_dec_ref(x_683); +if (lean_is_scalar(x_684)) { + x_686 = lean_alloc_ctor(0, 1, 0); +} else { + x_686 = x_684; +} +lean_ctor_set(x_686, 0, x_685); +return x_686; +} +else +{ +lean_object* x_687; +lean_dec(x_684); +x_687 = lean_ctor_get(x_683, 0); +lean_inc(x_687); +lean_dec_ref(x_683); +x_18 = x_687; +x_19 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_688; lean_object* x_689; lean_object* x_690; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_688 = lean_ctor_get(x_682, 0); +lean_inc(x_688); +if (lean_is_exclusive(x_682)) { + lean_ctor_release(x_682, 0); + x_689 = x_682; +} else { + lean_dec_ref(x_682); + x_689 = lean_box(0); +} +if (lean_is_scalar(x_689)) { + x_690 = lean_alloc_ctor(1, 1, 0); +} else { + x_690 = x_689; +} +lean_ctor_set(x_690, 0, x_688); +return x_690; +} +} +else +{ +lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; +x_691 = lean_array_fget(x_618, x_619); +lean_dec(x_619); +lean_dec_ref(x_618); +x_692 = lean_array_fget(x_628, x_629); +lean_dec(x_629); +lean_dec_ref(x_628); +x_693 = lean_array_fget(x_641, x_642); +lean_dec(x_642); +lean_dec_ref(x_641); +x_694 = lean_array_fget_borrowed(x_665, x_666); +x_695 = lean_box(x_3); +x_696 = lean_box(x_4); +x_697 = lean_box(x_679); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_10); +lean_inc_ref(x_2); +lean_inc_ref(x_694); +x_698 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_698, 0, x_693); +lean_closure_set(x_698, 1, x_691); +lean_closure_set(x_698, 2, x_694); +lean_closure_set(x_698, 3, x_2); +lean_closure_set(x_698, 4, x_10); +lean_closure_set(x_698, 5, x_695); +lean_closure_set(x_698, 6, x_696); +lean_closure_set(x_698, 7, x_5); +lean_closure_set(x_698, 8, x_6); +lean_closure_set(x_698, 9, x_697); +lean_closure_set(x_698, 10, x_631); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_699 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_692, x_677, x_698, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_699) == 0) +{ +lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; +x_700 = lean_ctor_get(x_699, 0); +lean_inc(x_700); +lean_dec_ref(x_699); +x_701 = lean_nat_add(x_666, x_631); +lean_dec(x_666); +if (lean_is_scalar(x_676)) { + x_702 = lean_alloc_ctor(0, 3, 0); +} else { + x_702 = x_676; +} +lean_ctor_set(x_702, 0, x_665); +lean_ctor_set(x_702, 1, x_701); +lean_ctor_set(x_702, 2, x_667); +x_703 = lean_array_push(x_616, x_700); +if (lean_is_scalar(x_617)) { + x_704 = lean_alloc_ctor(0, 2, 0); +} else { + x_704 = x_617; +} +lean_ctor_set(x_704, 0, x_633); +lean_ctor_set(x_704, 1, x_703); +if (lean_is_scalar(x_615)) { + x_705 = lean_alloc_ctor(0, 2, 0); +} else { + x_705 = x_615; +} +lean_ctor_set(x_705, 0, x_645); +lean_ctor_set(x_705, 1, x_704); +if (lean_is_scalar(x_613)) { + x_706 = lean_alloc_ctor(0, 2, 0); +} else { + x_706 = x_613; +} +lean_ctor_set(x_706, 0, x_657); +lean_ctor_set(x_706, 1, x_705); +x_707 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_707, 0, x_669); +lean_ctor_set(x_707, 1, x_706); +lean_ctor_set(x_9, 1, x_707); +lean_ctor_set(x_9, 0, x_702); +x_18 = x_9; +x_19 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_708; lean_object* x_709; lean_object* x_710; +lean_dec(x_676); +lean_dec_ref(x_669); +lean_dec(x_667); +lean_dec(x_666); +lean_dec_ref(x_665); +lean_dec_ref(x_657); +lean_dec_ref(x_645); +lean_dec_ref(x_633); +lean_dec(x_617); +lean_dec(x_616); +lean_dec(x_615); +lean_dec(x_613); +lean_free_object(x_9); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_708 = lean_ctor_get(x_699, 0); +lean_inc(x_708); +if (lean_is_exclusive(x_699)) { + lean_ctor_release(x_699, 0); + x_709 = x_699; +} else { + lean_dec_ref(x_699); + x_709 = lean_box(0); +} +if (lean_is_scalar(x_709)) { + x_710 = lean_alloc_ctor(1, 1, 0); +} else { + x_710 = x_709; +} +lean_ctor_set(x_710, 0, x_708); +return x_710; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; uint8_t x_723; +x_711 = lean_ctor_get(x_9, 0); +lean_inc(x_711); +lean_dec(x_9); +x_712 = lean_ctor_get(x_26, 0); +lean_inc(x_712); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_713 = x_26; +} else { + lean_dec_ref(x_26); + x_713 = lean_box(0); +} +x_714 = lean_ctor_get(x_27, 0); +lean_inc(x_714); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_715 = x_27; +} else { + lean_dec_ref(x_27); + x_715 = lean_box(0); +} +x_716 = lean_ctor_get(x_28, 0); +lean_inc(x_716); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_717 = x_28; +} else { + lean_dec_ref(x_28); + x_717 = lean_box(0); +} +x_718 = lean_ctor_get(x_29, 1); +lean_inc(x_718); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + x_719 = x_29; +} else { + lean_dec_ref(x_29); + x_719 = lean_box(0); +} +x_720 = lean_ctor_get(x_30, 0); +x_721 = lean_ctor_get(x_30, 1); +x_722 = lean_ctor_get(x_30, 2); +x_723 = lean_nat_dec_lt(x_721, x_722); +if (x_723 == 0) +{ +lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_719)) { + x_724 = lean_alloc_ctor(0, 2, 0); +} else { + x_724 = x_719; +} +lean_ctor_set(x_724, 0, x_30); +lean_ctor_set(x_724, 1, x_718); +if (lean_is_scalar(x_717)) { + x_725 = lean_alloc_ctor(0, 2, 0); +} else { + x_725 = x_717; +} +lean_ctor_set(x_725, 0, x_716); +lean_ctor_set(x_725, 1, x_724); +if (lean_is_scalar(x_715)) { + x_726 = lean_alloc_ctor(0, 2, 0); +} else { + x_726 = x_715; +} +lean_ctor_set(x_726, 0, x_714); +lean_ctor_set(x_726, 1, x_725); +if (lean_is_scalar(x_713)) { + x_727 = lean_alloc_ctor(0, 2, 0); +} else { + x_727 = x_713; +} +lean_ctor_set(x_727, 0, x_712); +lean_ctor_set(x_727, 1, x_726); +x_728 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_728, 0, x_711); +lean_ctor_set(x_728, 1, x_727); +x_729 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_729, 0, x_728); +return x_729; +} +else +{ +lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; uint8_t x_737; +lean_inc(x_722); +lean_inc(x_721); +lean_inc_ref(x_720); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_730 = x_30; +} else { + lean_dec_ref(x_30); + x_730 = lean_box(0); +} +x_731 = lean_ctor_get(x_716, 0); +x_732 = lean_ctor_get(x_716, 1); +x_733 = lean_ctor_get(x_716, 2); +x_734 = lean_unsigned_to_nat(1u); +x_735 = lean_nat_add(x_721, x_734); +lean_inc_ref(x_720); +if (lean_is_scalar(x_730)) { + x_736 = lean_alloc_ctor(0, 3, 0); +} else { + x_736 = x_730; +} +lean_ctor_set(x_736, 0, x_720); +lean_ctor_set(x_736, 1, x_735); +lean_ctor_set(x_736, 2, x_722); +x_737 = lean_nat_dec_lt(x_732, x_733); +if (x_737 == 0) +{ +lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; +lean_dec(x_721); +lean_dec_ref(x_720); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_719)) { + x_738 = lean_alloc_ctor(0, 2, 0); +} else { + x_738 = x_719; +} +lean_ctor_set(x_738, 0, x_736); +lean_ctor_set(x_738, 1, x_718); +if (lean_is_scalar(x_717)) { + x_739 = lean_alloc_ctor(0, 2, 0); +} else { + x_739 = x_717; +} +lean_ctor_set(x_739, 0, x_716); +lean_ctor_set(x_739, 1, x_738); +if (lean_is_scalar(x_715)) { + x_740 = lean_alloc_ctor(0, 2, 0); +} else { + x_740 = x_715; +} +lean_ctor_set(x_740, 0, x_714); +lean_ctor_set(x_740, 1, x_739); +if (lean_is_scalar(x_713)) { + x_741 = lean_alloc_ctor(0, 2, 0); +} else { + x_741 = x_713; +} +lean_ctor_set(x_741, 0, x_712); +lean_ctor_set(x_741, 1, x_740); +x_742 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_742, 0, x_711); +lean_ctor_set(x_742, 1, x_741); +x_743 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_743, 0, x_742); +return x_743; +} +else +{ +lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; uint8_t x_750; +lean_inc(x_733); +lean_inc(x_732); +lean_inc_ref(x_731); +if (lean_is_exclusive(x_716)) { + lean_ctor_release(x_716, 0); + lean_ctor_release(x_716, 1); + lean_ctor_release(x_716, 2); + x_744 = x_716; +} else { + lean_dec_ref(x_716); + x_744 = lean_box(0); +} +x_745 = lean_ctor_get(x_714, 0); +x_746 = lean_ctor_get(x_714, 1); +x_747 = lean_ctor_get(x_714, 2); +x_748 = lean_nat_add(x_732, x_734); +lean_inc_ref(x_731); +if (lean_is_scalar(x_744)) { + x_749 = lean_alloc_ctor(0, 3, 0); +} else { + x_749 = x_744; +} +lean_ctor_set(x_749, 0, x_731); +lean_ctor_set(x_749, 1, x_748); +lean_ctor_set(x_749, 2, x_733); +x_750 = lean_nat_dec_lt(x_746, x_747); +if (x_750 == 0) +{ +lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; +lean_dec(x_732); +lean_dec_ref(x_731); +lean_dec(x_721); +lean_dec_ref(x_720); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_719)) { + x_751 = lean_alloc_ctor(0, 2, 0); +} else { + x_751 = x_719; +} +lean_ctor_set(x_751, 0, x_736); +lean_ctor_set(x_751, 1, x_718); +if (lean_is_scalar(x_717)) { + x_752 = lean_alloc_ctor(0, 2, 0); +} else { + x_752 = x_717; +} +lean_ctor_set(x_752, 0, x_749); +lean_ctor_set(x_752, 1, x_751); +if (lean_is_scalar(x_715)) { + x_753 = lean_alloc_ctor(0, 2, 0); +} else { + x_753 = x_715; +} +lean_ctor_set(x_753, 0, x_714); +lean_ctor_set(x_753, 1, x_752); +if (lean_is_scalar(x_713)) { + x_754 = lean_alloc_ctor(0, 2, 0); +} else { + x_754 = x_713; +} +lean_ctor_set(x_754, 0, x_712); +lean_ctor_set(x_754, 1, x_753); +x_755 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_755, 0, x_711); +lean_ctor_set(x_755, 1, x_754); +x_756 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_756, 0, x_755); +return x_756; +} +else +{ +lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; uint8_t x_763; +lean_inc(x_747); +lean_inc(x_746); +lean_inc_ref(x_745); +if (lean_is_exclusive(x_714)) { + lean_ctor_release(x_714, 0); + lean_ctor_release(x_714, 1); + lean_ctor_release(x_714, 2); + x_757 = x_714; +} else { + lean_dec_ref(x_714); + x_757 = lean_box(0); +} +x_758 = lean_ctor_get(x_712, 0); +x_759 = lean_ctor_get(x_712, 1); +x_760 = lean_ctor_get(x_712, 2); +x_761 = lean_nat_add(x_746, x_734); +lean_inc_ref(x_745); +if (lean_is_scalar(x_757)) { + x_762 = lean_alloc_ctor(0, 3, 0); +} else { + x_762 = x_757; +} +lean_ctor_set(x_762, 0, x_745); +lean_ctor_set(x_762, 1, x_761); +lean_ctor_set(x_762, 2, x_747); +x_763 = lean_nat_dec_lt(x_759, x_760); +if (x_763 == 0) +{ +lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; +lean_dec(x_746); +lean_dec_ref(x_745); +lean_dec(x_732); +lean_dec_ref(x_731); +lean_dec(x_721); +lean_dec_ref(x_720); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_719)) { + x_764 = lean_alloc_ctor(0, 2, 0); +} else { + x_764 = x_719; +} +lean_ctor_set(x_764, 0, x_736); +lean_ctor_set(x_764, 1, x_718); +if (lean_is_scalar(x_717)) { + x_765 = lean_alloc_ctor(0, 2, 0); +} else { + x_765 = x_717; +} +lean_ctor_set(x_765, 0, x_749); +lean_ctor_set(x_765, 1, x_764); +if (lean_is_scalar(x_715)) { + x_766 = lean_alloc_ctor(0, 2, 0); +} else { + x_766 = x_715; +} +lean_ctor_set(x_766, 0, x_762); +lean_ctor_set(x_766, 1, x_765); +if (lean_is_scalar(x_713)) { + x_767 = lean_alloc_ctor(0, 2, 0); +} else { + x_767 = x_713; +} +lean_ctor_set(x_767, 0, x_712); +lean_ctor_set(x_767, 1, x_766); +x_768 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_768, 0, x_711); +lean_ctor_set(x_768, 1, x_767); +x_769 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_769, 0, x_768); +return x_769; +} +else +{ +lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; uint8_t x_776; +lean_inc(x_760); +lean_inc(x_759); +lean_inc_ref(x_758); +if (lean_is_exclusive(x_712)) { + lean_ctor_release(x_712, 0); + lean_ctor_release(x_712, 1); + lean_ctor_release(x_712, 2); + x_770 = x_712; +} else { + lean_dec_ref(x_712); + x_770 = lean_box(0); +} +x_771 = lean_ctor_get(x_711, 0); +x_772 = lean_ctor_get(x_711, 1); +x_773 = lean_ctor_get(x_711, 2); +x_774 = lean_nat_add(x_759, x_734); +lean_inc_ref(x_758); +if (lean_is_scalar(x_770)) { + x_775 = lean_alloc_ctor(0, 3, 0); +} else { + x_775 = x_770; +} +lean_ctor_set(x_775, 0, x_758); +lean_ctor_set(x_775, 1, x_774); +lean_ctor_set(x_775, 2, x_760); +x_776 = lean_nat_dec_lt(x_772, x_773); +if (x_776 == 0) +{ +lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; +lean_dec(x_759); +lean_dec_ref(x_758); +lean_dec(x_746); +lean_dec_ref(x_745); +lean_dec(x_732); +lean_dec_ref(x_731); +lean_dec(x_721); +lean_dec_ref(x_720); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_719)) { + x_777 = lean_alloc_ctor(0, 2, 0); +} else { + x_777 = x_719; +} +lean_ctor_set(x_777, 0, x_736); +lean_ctor_set(x_777, 1, x_718); +if (lean_is_scalar(x_717)) { + x_778 = lean_alloc_ctor(0, 2, 0); +} else { + x_778 = x_717; +} +lean_ctor_set(x_778, 0, x_749); +lean_ctor_set(x_778, 1, x_777); +if (lean_is_scalar(x_715)) { + x_779 = lean_alloc_ctor(0, 2, 0); +} else { + x_779 = x_715; +} +lean_ctor_set(x_779, 0, x_762); +lean_ctor_set(x_779, 1, x_778); +if (lean_is_scalar(x_713)) { + x_780 = lean_alloc_ctor(0, 2, 0); +} else { + x_780 = x_713; +} +lean_ctor_set(x_780, 0, x_775); +lean_ctor_set(x_780, 1, x_779); +x_781 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_781, 0, x_711); +lean_ctor_set(x_781, 1, x_780); +x_782 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_782, 0, x_781); +return x_782; +} +else +{ +lean_object* x_783; lean_object* x_784; lean_object* x_785; uint8_t x_786; uint8_t x_787; +lean_inc(x_773); +lean_inc(x_772); +lean_inc_ref(x_771); +if (lean_is_exclusive(x_711)) { + lean_ctor_release(x_711, 0); + lean_ctor_release(x_711, 1); + lean_ctor_release(x_711, 2); + x_783 = x_711; +} else { + lean_dec_ref(x_711); + x_783 = lean_box(0); +} +x_784 = lean_array_fget(x_758, x_759); +lean_dec(x_759); +lean_dec_ref(x_758); +x_785 = lean_ctor_get(x_784, 1); +x_786 = lean_ctor_get_uint8(x_784, sizeof(void*)*2); +x_787 = lean_nat_dec_eq(x_785, x_1); +if (x_787 == 0) +{ +lean_object* x_788; lean_object* x_789; +lean_dec_ref(x_784); +lean_dec(x_783); +lean_dec_ref(x_775); +lean_dec(x_773); +lean_dec(x_772); +lean_dec_ref(x_771); +lean_dec_ref(x_762); +lean_dec_ref(x_749); +lean_dec(x_746); +lean_dec_ref(x_745); +lean_dec_ref(x_736); +lean_dec(x_732); +lean_dec_ref(x_731); +lean_dec(x_721); +lean_dec_ref(x_720); +lean_dec(x_719); +lean_dec(x_718); +lean_dec(x_717); +lean_dec(x_715); +lean_dec(x_713); +x_788 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1; +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_789 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_788, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_789) == 0) +{ +lean_object* x_790; lean_object* x_791; +x_790 = lean_ctor_get(x_789, 0); +lean_inc(x_790); +if (lean_is_exclusive(x_789)) { + lean_ctor_release(x_789, 0); + x_791 = x_789; +} else { + lean_dec_ref(x_789); + x_791 = lean_box(0); +} +if (lean_obj_tag(x_790) == 0) +{ +lean_object* x_792; lean_object* x_793; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_792 = lean_ctor_get(x_790, 0); +lean_inc(x_792); +lean_dec_ref(x_790); +if (lean_is_scalar(x_791)) { + x_793 = lean_alloc_ctor(0, 1, 0); +} else { + x_793 = x_791; +} +lean_ctor_set(x_793, 0, x_792); +return x_793; +} +else +{ +lean_object* x_794; +lean_dec(x_791); +x_794 = lean_ctor_get(x_790, 0); +lean_inc(x_794); +lean_dec_ref(x_790); +x_18 = x_794; +x_19 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_795; lean_object* x_796; lean_object* x_797; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_795 = lean_ctor_get(x_789, 0); +lean_inc(x_795); +if (lean_is_exclusive(x_789)) { + lean_ctor_release(x_789, 0); + x_796 = x_789; +} else { + lean_dec_ref(x_789); + x_796 = lean_box(0); +} +if (lean_is_scalar(x_796)) { + x_797 = lean_alloc_ctor(1, 1, 0); +} else { + x_797 = x_796; +} +lean_ctor_set(x_797, 0, x_795); +return x_797; +} +} +else +{ +lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; +x_798 = lean_array_fget(x_720, x_721); +lean_dec(x_721); +lean_dec_ref(x_720); +x_799 = lean_array_fget(x_731, x_732); +lean_dec(x_732); +lean_dec_ref(x_731); +x_800 = lean_array_fget(x_745, x_746); +lean_dec(x_746); +lean_dec_ref(x_745); +x_801 = lean_array_fget_borrowed(x_771, x_772); +x_802 = lean_box(x_3); +x_803 = lean_box(x_4); +x_804 = lean_box(x_786); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_10); +lean_inc_ref(x_2); +lean_inc_ref(x_801); +x_805 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed), 20, 11); +lean_closure_set(x_805, 0, x_800); +lean_closure_set(x_805, 1, x_798); +lean_closure_set(x_805, 2, x_801); +lean_closure_set(x_805, 3, x_2); +lean_closure_set(x_805, 4, x_10); +lean_closure_set(x_805, 5, x_802); +lean_closure_set(x_805, 6, x_803); +lean_closure_set(x_805, 7, x_5); +lean_closure_set(x_805, 8, x_6); +lean_closure_set(x_805, 9, x_804); +lean_closure_set(x_805, 10, x_734); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_806 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_799, x_784, x_805, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_806) == 0) +{ +lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; +x_807 = lean_ctor_get(x_806, 0); +lean_inc(x_807); +lean_dec_ref(x_806); +x_808 = lean_nat_add(x_772, x_734); +lean_dec(x_772); +if (lean_is_scalar(x_783)) { + x_809 = lean_alloc_ctor(0, 3, 0); +} else { + x_809 = x_783; +} +lean_ctor_set(x_809, 0, x_771); +lean_ctor_set(x_809, 1, x_808); +lean_ctor_set(x_809, 2, x_773); +x_810 = lean_array_push(x_718, x_807); +if (lean_is_scalar(x_719)) { + x_811 = lean_alloc_ctor(0, 2, 0); +} else { + x_811 = x_719; +} +lean_ctor_set(x_811, 0, x_736); +lean_ctor_set(x_811, 1, x_810); +if (lean_is_scalar(x_717)) { + x_812 = lean_alloc_ctor(0, 2, 0); +} else { + x_812 = x_717; +} +lean_ctor_set(x_812, 0, x_749); +lean_ctor_set(x_812, 1, x_811); +if (lean_is_scalar(x_715)) { + x_813 = lean_alloc_ctor(0, 2, 0); +} else { + x_813 = x_715; +} +lean_ctor_set(x_813, 0, x_762); +lean_ctor_set(x_813, 1, x_812); +if (lean_is_scalar(x_713)) { + x_814 = lean_alloc_ctor(0, 2, 0); +} else { + x_814 = x_713; +} +lean_ctor_set(x_814, 0, x_775); +lean_ctor_set(x_814, 1, x_813); +x_815 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_815, 0, x_809); +lean_ctor_set(x_815, 1, x_814); +x_18 = x_815; +x_19 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_816; lean_object* x_817; lean_object* x_818; +lean_dec(x_783); +lean_dec_ref(x_775); +lean_dec(x_773); +lean_dec(x_772); +lean_dec_ref(x_771); +lean_dec_ref(x_762); +lean_dec_ref(x_749); +lean_dec_ref(x_736); +lean_dec(x_719); +lean_dec(x_718); +lean_dec(x_717); +lean_dec(x_715); +lean_dec(x_713); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_816 = lean_ctor_get(x_806, 0); +lean_inc(x_816); +if (lean_is_exclusive(x_806)) { + lean_ctor_release(x_806, 0); + x_817 = x_806; +} else { + lean_dec_ref(x_806); + x_817 = lean_box(0); +} +if (lean_is_scalar(x_817)) { + x_818 = lean_alloc_ctor(1, 1, 0); +} else { + x_818 = x_817; +} +lean_ctor_set(x_818, 0, x_816); +return x_818; +} +} +} +} +} +} +} +} +block_25: +{ +lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_add(x_10, x_20); +lean_dec(x_10); +x_22 = lean_nat_dec_lt(x_21, x_7); +if (x_22 == 0) +{ +lean_object* x_23; +lean_dec(x_21); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_23 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_23, 0, x_18); +return x_23; +} +else +{ +lean_object* x_24; +x_24 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_18, x_21, x_11, x_12, x_13, x_14, x_15, x_16); +return x_24; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +_start: +{ +lean_object* x_23; +x_23 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_11, x_12, x_13, x_16, x_17, x_18, x_19, x_20, x_21); +return x_23; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__18___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; @@ -40937,11 +48141,11 @@ lean_ctor_set(x_11, 0, x_10); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__18(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_9; lean_object* x_10; -x_9 = lean_alloc_closure((void*)(l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___lam__0___boxed), 8, 0); +x_9 = lean_alloc_closure((void*)(l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__18___lam__0___boxed), 8, 0); x_10 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_9, x_2, x_3, x_4, x_5, x_6, x_7); if (lean_obj_tag(x_10) == 0) { @@ -41992,7 +49196,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tac _start: { lean_object* x_15; lean_object* x_16; -x_15 = lean_alloc_closure((void*)(l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___lam__0___boxed), 8, 0); +x_15 = lean_alloc_closure((void*)(l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__18___lam__0___boxed), 8, 0); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); @@ -42001,13 +49205,14 @@ lean_inc_ref(x_8); x_16 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_15, x_8, x_9, x_10, x_11, x_12, x_13); if (lean_obj_tag(x_16) == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_172; uint8_t x_173; uint8_t x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_260; lean_object* x_261; uint8_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; uint8_t x_323; uint8_t x_324; lean_object* x_325; lean_object* x_326; size_t x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; uint8_t x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; uint8_t x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; uint8_t x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; uint8_t x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; uint8_t x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; size_t x_322; lean_object* x_323; uint8_t x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; x_17 = lean_ctor_get(x_16, 0); lean_inc(x_17); lean_dec_ref(x_16); x_18 = lean_ctor_get(x_1, 0); lean_inc_ref(x_18); x_19 = lean_ctor_get(x_1, 1); +lean_inc(x_19); x_20 = lean_ctor_get(x_1, 2); x_21 = lean_ctor_get(x_1, 3); x_22 = lean_ctor_get(x_1, 4); @@ -42016,89 +49221,89 @@ x_24 = lean_ctor_get(x_1, 6); x_25 = lean_ctor_get(x_1, 7); lean_inc_ref(x_25); lean_inc(x_19); -x_260 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__1___boxed), 9, 1); -lean_closure_set(x_260, 0, x_19); +x_254 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__1___boxed), 9, 1); +lean_closure_set(x_254, 0, x_19); lean_inc(x_19); -x_323 = l_Lean_isCasesOnRecursor(x_17, x_19); -if (x_323 == 0) +x_317 = l_Lean_isCasesOnRecursor(x_17, x_19); +if (x_317 == 0) { -lean_object* x_496; +lean_object* x_490; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); lean_inc_ref(x_8); lean_inc(x_19); -x_496 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15(x_19, x_8, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_496) == 0) +x_490 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__18(x_19, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_490) == 0) { -lean_object* x_497; -x_497 = lean_ctor_get(x_496, 0); -lean_inc(x_497); -lean_dec_ref(x_496); -if (lean_obj_tag(x_497) == 0) +lean_object* x_491; +x_491 = lean_ctor_get(x_490, 0); +lean_inc(x_491); +lean_dec_ref(x_490); +if (lean_obj_tag(x_491) == 0) { -lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; uint8_t x_504; -lean_dec_ref(x_260); +lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; uint8_t x_498; +lean_dec_ref(x_254); lean_dec_ref(x_25); -lean_inc(x_19); lean_dec_ref(x_18); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_498 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__10; -x_499 = l_Lean_MessageData_ofName(x_19); -x_500 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_500, 0, x_498); -lean_ctor_set(x_500, 1, x_499); -x_501 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__12; -x_502 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_502, 0, x_500); -lean_ctor_set(x_502, 1, x_501); -x_503 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_502, x_8, x_9, x_10, x_11, x_12, x_13); +x_492 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__10; +x_493 = l_Lean_MessageData_ofName(x_19); +x_494 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_494, 0, x_492); +lean_ctor_set(x_494, 1, x_493); +x_495 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__12; +x_496 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_496, 0, x_494); +lean_ctor_set(x_496, 1, x_495); +x_497 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_496, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_9); -x_504 = !lean_is_exclusive(x_503); -if (x_504 == 0) +x_498 = !lean_is_exclusive(x_497); +if (x_498 == 0) { -return x_503; +return x_497; } else { -lean_object* x_505; lean_object* x_506; -x_505 = lean_ctor_get(x_503, 0); -lean_inc(x_505); -lean_dec(x_503); -x_506 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_506, 0, x_505); -return x_506; +lean_object* x_499; lean_object* x_500; +x_499 = lean_ctor_get(x_497, 0); +lean_inc(x_499); +lean_dec(x_497); +x_500 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_500, 0, x_499); +return x_500; } } else { -lean_object* x_507; lean_object* x_508; -x_507 = lean_ctor_get(x_497, 0); -lean_inc(x_507); -lean_dec_ref(x_497); -x_508 = l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs(x_507); -lean_dec(x_507); -x_453 = x_508; -x_454 = x_8; -x_455 = x_9; -x_456 = x_10; -x_457 = x_11; -x_458 = x_12; -x_459 = x_13; -x_460 = lean_box(0); -goto block_495; +lean_object* x_501; lean_object* x_502; +x_501 = lean_ctor_get(x_491, 0); +lean_inc(x_501); +lean_dec_ref(x_491); +x_502 = l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs(x_501); +lean_dec(x_501); +x_447 = x_502; +x_448 = x_8; +x_449 = x_9; +x_450 = x_10; +x_451 = x_11; +x_452 = x_12; +x_453 = x_13; +x_454 = lean_box(0); +goto block_489; } } else { -uint8_t x_509; -lean_dec_ref(x_260); +uint8_t x_503; +lean_dec_ref(x_254); lean_dec_ref(x_25); +lean_dec(x_19); lean_dec_ref(x_18); lean_dec(x_13); lean_dec_ref(x_12); @@ -42111,485 +49316,218 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_509 = !lean_is_exclusive(x_496); -if (x_509 == 0) +x_503 = !lean_is_exclusive(x_490); +if (x_503 == 0) { -return x_496; +return x_490; } else { -lean_object* x_510; lean_object* x_511; -x_510 = lean_ctor_get(x_496, 0); -lean_inc(x_510); -lean_dec(x_496); -x_511 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_511, 0, x_510); -return x_511; +lean_object* x_504; lean_object* x_505; +x_504 = lean_ctor_get(x_490, 0); +lean_inc(x_504); +lean_dec(x_490); +x_505 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_505, 0, x_504); +return x_505; } } } else { -lean_object* x_512; -x_512 = lean_unsigned_to_nat(0u); -x_453 = x_512; -x_454 = x_8; -x_455 = x_9; -x_456 = x_10; -x_457 = x_11; -x_458 = x_12; -x_459 = x_13; -x_460 = lean_box(0); -goto block_495; +lean_object* x_506; +x_506 = lean_unsigned_to_nat(0u); +x_447 = x_506; +x_448 = x_8; +x_449 = x_9; +x_450 = x_10; +x_451 = x_11; +x_452 = x_12; +x_453 = x_13; +x_454 = lean_box(0); +goto block_489; } -block_71: +block_60: { -lean_object* x_41; -x_41 = lean_apply_8(x_7, x_25, x_34, x_35, x_36, x_37, x_38, x_39, lean_box(0)); -if (lean_obj_tag(x_41) == 0) +lean_object* x_46; +x_46 = lean_apply_8(x_7, x_25, x_39, x_40, x_41, x_42, x_43, x_44, lean_box(0)); +if (lean_obj_tag(x_46) == 0) { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_41); -if (x_42 == 0) +uint8_t x_47; +x_47 = !lean_is_exclusive(x_46); +if (x_47 == 0) { -uint8_t x_43; -x_43 = !lean_is_exclusive(x_18); -if (x_43 == 0) -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_44 = lean_ctor_get(x_41, 0); -x_45 = lean_ctor_get(x_18, 4); -lean_dec(x_45); -x_46 = l_Array_append___redArg(x_32, x_44); -lean_dec(x_44); -lean_ctor_set(x_18, 4, x_30); -x_47 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_47, 0, x_18); -lean_ctor_set(x_47, 1, x_31); -lean_ctor_set(x_47, 2, x_28); -lean_ctor_set(x_47, 3, x_29); -lean_ctor_set(x_47, 4, x_27); -lean_ctor_set(x_47, 5, x_26); -lean_ctor_set(x_47, 6, x_33); -lean_ctor_set(x_47, 7, x_46); -lean_ctor_set(x_41, 0, x_47); -return x_41; -} -else -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_48 = lean_ctor_get(x_41, 0); -x_49 = lean_ctor_get(x_18, 0); -x_50 = lean_ctor_get(x_18, 1); -x_51 = lean_ctor_get(x_18, 2); -x_52 = lean_ctor_get(x_18, 3); -x_53 = lean_ctor_get(x_18, 5); -lean_inc(x_53); -lean_inc(x_52); -lean_inc(x_51); -lean_inc(x_50); -lean_inc(x_49); -lean_dec(x_18); -x_54 = l_Array_append___redArg(x_32, x_48); +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_48 = lean_ctor_get(x_46, 0); +x_49 = l_Array_append___redArg(x_29, x_48); lean_dec(x_48); -x_55 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_55, 0, x_49); -lean_ctor_set(x_55, 1, x_50); -lean_ctor_set(x_55, 2, x_51); -lean_ctor_set(x_55, 3, x_52); -lean_ctor_set(x_55, 4, x_30); -lean_ctor_set(x_55, 5, x_53); -x_56 = lean_alloc_ctor(0, 8, 0); +x_50 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_50, 0, x_28); +lean_ctor_set(x_50, 1, x_31); +lean_ctor_set(x_50, 2, x_36); +lean_ctor_set(x_50, 3, x_35); +lean_ctor_set(x_50, 4, x_30); +lean_ctor_set(x_50, 5, x_27); +x_51 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_33); +lean_ctor_set(x_51, 2, x_26); +lean_ctor_set(x_51, 3, x_32); +lean_ctor_set(x_51, 4, x_34); +lean_ctor_set(x_51, 5, x_37); +lean_ctor_set(x_51, 6, x_38); +lean_ctor_set(x_51, 7, x_49); +lean_ctor_set(x_46, 0, x_51); +return x_46; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_52 = lean_ctor_get(x_46, 0); +lean_inc(x_52); +lean_dec(x_46); +x_53 = l_Array_append___redArg(x_29, x_52); +lean_dec(x_52); +x_54 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_54, 0, x_28); +lean_ctor_set(x_54, 1, x_31); +lean_ctor_set(x_54, 2, x_36); +lean_ctor_set(x_54, 3, x_35); +lean_ctor_set(x_54, 4, x_30); +lean_ctor_set(x_54, 5, x_27); +x_55 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set(x_55, 1, x_33); +lean_ctor_set(x_55, 2, x_26); +lean_ctor_set(x_55, 3, x_32); +lean_ctor_set(x_55, 4, x_34); +lean_ctor_set(x_55, 5, x_37); +lean_ctor_set(x_55, 6, x_38); +lean_ctor_set(x_55, 7, x_53); +x_56 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_56, 0, x_55); -lean_ctor_set(x_56, 1, x_31); -lean_ctor_set(x_56, 2, x_28); -lean_ctor_set(x_56, 3, x_29); -lean_ctor_set(x_56, 4, x_27); -lean_ctor_set(x_56, 5, x_26); -lean_ctor_set(x_56, 6, x_33); -lean_ctor_set(x_56, 7, x_54); -lean_ctor_set(x_41, 0, x_56); -return x_41; +return x_56; } } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_57 = lean_ctor_get(x_41, 0); -lean_inc(x_57); -lean_dec(x_41); -x_58 = lean_ctor_get(x_18, 0); -lean_inc(x_58); -x_59 = lean_ctor_get(x_18, 1); -lean_inc(x_59); -x_60 = lean_ctor_get(x_18, 2); -lean_inc_ref(x_60); -x_61 = lean_ctor_get(x_18, 3); -lean_inc(x_61); -x_62 = lean_ctor_get(x_18, 5); -lean_inc_ref(x_62); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - lean_ctor_release(x_18, 2); - lean_ctor_release(x_18, 3); - lean_ctor_release(x_18, 4); - lean_ctor_release(x_18, 5); - x_63 = x_18; -} else { - lean_dec_ref(x_18); - x_63 = lean_box(0); -} -x_64 = l_Array_append___redArg(x_32, x_57); -lean_dec(x_57); -if (lean_is_scalar(x_63)) { - x_65 = lean_alloc_ctor(0, 6, 0); -} else { - x_65 = x_63; -} -lean_ctor_set(x_65, 0, x_58); -lean_ctor_set(x_65, 1, x_59); -lean_ctor_set(x_65, 2, x_60); -lean_ctor_set(x_65, 3, x_61); -lean_ctor_set(x_65, 4, x_30); -lean_ctor_set(x_65, 5, x_62); -x_66 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_66, 0, x_65); -lean_ctor_set(x_66, 1, x_31); -lean_ctor_set(x_66, 2, x_28); -lean_ctor_set(x_66, 3, x_29); -lean_ctor_set(x_66, 4, x_27); -lean_ctor_set(x_66, 5, x_26); -lean_ctor_set(x_66, 6, x_33); -lean_ctor_set(x_66, 7, x_64); -x_67 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_67, 0, x_66); -return x_67; -} -} -else -{ -uint8_t x_68; -lean_dec_ref(x_33); +uint8_t x_57; +lean_dec_ref(x_38); +lean_dec_ref(x_37); +lean_dec_ref(x_36); +lean_dec(x_35); +lean_dec_ref(x_34); +lean_dec(x_33); lean_dec_ref(x_32); lean_dec(x_31); lean_dec_ref(x_30); lean_dec_ref(x_29); -lean_dec_ref(x_28); +lean_dec(x_28); lean_dec_ref(x_27); lean_dec_ref(x_26); -lean_dec_ref(x_18); -x_68 = !lean_is_exclusive(x_41); -if (x_68 == 0) +x_57 = !lean_is_exclusive(x_46); +if (x_57 == 0) { -return x_41; +return x_46; } else { -lean_object* x_69; lean_object* x_70; -x_69 = lean_ctor_get(x_41, 0); -lean_inc(x_69); -lean_dec(x_41); -x_70 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_70, 0, x_69); -return x_70; +lean_object* x_58; lean_object* x_59; +x_58 = lean_ctor_get(x_46, 0); +lean_inc(x_58); +lean_dec(x_46); +x_59 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_59, 0, x_58); +return x_59; } } } -block_126: +block_105: { -lean_object* x_95; -lean_inc(x_93); -lean_inc_ref(x_92); -lean_inc(x_91); -lean_inc_ref(x_90); -lean_inc_ref(x_88); -x_95 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_72, x_88, x_89, x_90, x_91, x_92, x_93); -if (lean_obj_tag(x_95) == 0) +lean_object* x_75; +x_75 = lean_apply_8(x_7, x_25, x_68, x_69, x_70, x_71, x_72, x_73, lean_box(0)); +if (lean_obj_tag(x_75) == 0) { -lean_object* x_96; uint8_t x_97; -x_96 = lean_ctor_get(x_95, 0); -lean_inc(x_96); -lean_dec_ref(x_95); -x_97 = lean_nat_dec_lt(x_78, x_82); -if (x_97 == 0) +uint8_t x_76; +x_76 = !lean_is_exclusive(x_75); +if (x_76 == 0) { -lean_dec(x_96); -lean_dec_ref(x_84); -lean_dec(x_82); +uint8_t x_77; +x_77 = !lean_is_exclusive(x_18); +if (x_77 == 0) +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_78 = lean_ctor_get(x_75, 0); +x_79 = lean_ctor_get(x_18, 4); +lean_dec(x_79); +x_80 = l_Array_append___redArg(x_63, x_78); lean_dec(x_78); -lean_dec(x_77); -lean_dec_ref(x_76); -lean_dec(x_75); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_26 = x_80; -x_27 = x_73; -x_28 = x_74; -x_29 = x_83; -x_30 = x_85; -x_31 = x_86; -x_32 = x_87; -x_33 = x_81; -x_34 = x_88; -x_35 = x_89; -x_36 = x_90; -x_37 = x_91; -x_38 = x_92; -x_39 = x_93; -x_40 = lean_box(0); -goto block_71; +lean_ctor_set(x_18, 4, x_62); +x_81 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_81, 0, x_18); +lean_ctor_set(x_81, 1, x_19); +lean_ctor_set(x_81, 2, x_61); +lean_ctor_set(x_81, 3, x_64); +lean_ctor_set(x_81, 4, x_65); +lean_ctor_set(x_81, 5, x_66); +lean_ctor_set(x_81, 6, x_67); +lean_ctor_set(x_81, 7, x_80); +lean_ctor_set(x_75, 0, x_81); +return x_75; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; -lean_inc(x_82); -lean_inc(x_78); -lean_inc_ref(x_24); -x_98 = l_Array_toSubarray___redArg(x_24, x_78, x_82); -x_99 = l_Lean_Meta_MatcherApp_altNumParams(x_1); -x_100 = lean_array_get_size(x_99); -lean_inc(x_78); -x_101 = l_Array_toSubarray___redArg(x_99, x_78, x_100); -x_102 = lean_array_get_size(x_84); -lean_inc(x_78); -x_103 = l_Array_toSubarray___redArg(x_84, x_78, x_102); -x_104 = lean_array_get_size(x_76); -lean_inc(x_78); -x_105 = l_Array_toSubarray___redArg(x_76, x_78, x_104); -x_106 = lean_array_get_size(x_96); -lean_inc(x_78); -x_107 = l_Array_toSubarray___redArg(x_96, x_78, x_106); -x_108 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_81); -x_109 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_109, 0, x_105); -lean_ctor_set(x_109, 1, x_108); -x_110 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_110, 0, x_103); -lean_ctor_set(x_110, 1, x_109); -x_111 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_111, 0, x_101); -lean_ctor_set(x_111, 1, x_110); -x_112 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_112, 0, x_98); -lean_ctor_set(x_112, 1, x_111); -lean_inc(x_93); -lean_inc_ref(x_92); -lean_inc(x_91); -lean_inc_ref(x_90); -lean_inc(x_89); -lean_inc_ref(x_88); -lean_inc(x_78); -x_113 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg(x_6, x_79, x_2, x_77, x_75, x_78, x_82, x_112, x_78, x_88, x_89, x_90, x_91, x_92, x_93); -lean_dec(x_82); -if (lean_obj_tag(x_113) == 0) -{ -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; -x_114 = lean_ctor_get(x_113, 0); -lean_inc(x_114); -lean_dec_ref(x_113); -x_115 = lean_ctor_get(x_114, 1); -lean_inc(x_115); -lean_dec(x_114); -x_116 = lean_ctor_get(x_115, 1); -lean_inc(x_116); -lean_dec(x_115); -x_117 = lean_ctor_get(x_116, 1); -lean_inc(x_117); -lean_dec(x_116); -x_118 = lean_ctor_get(x_117, 1); -lean_inc(x_118); -lean_dec(x_117); -x_119 = lean_ctor_get(x_118, 1); -lean_inc(x_119); -lean_dec(x_118); -x_26 = x_80; -x_27 = x_73; -x_28 = x_74; -x_29 = x_83; -x_30 = x_85; -x_31 = x_86; -x_32 = x_87; -x_33 = x_119; -x_34 = x_88; -x_35 = x_89; -x_36 = x_90; -x_37 = x_91; -x_38 = x_92; -x_39 = x_93; -x_40 = lean_box(0); -goto block_71; -} -else -{ -uint8_t x_120; -lean_dec(x_93); -lean_dec_ref(x_92); -lean_dec(x_91); -lean_dec_ref(x_90); -lean_dec(x_89); -lean_dec_ref(x_88); -lean_dec_ref(x_87); -lean_dec(x_86); -lean_dec_ref(x_85); -lean_dec_ref(x_83); -lean_dec_ref(x_80); -lean_dec_ref(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_25); -lean_dec_ref(x_18); -lean_dec_ref(x_7); -x_120 = !lean_is_exclusive(x_113); -if (x_120 == 0) -{ -return x_113; -} -else -{ -lean_object* x_121; lean_object* x_122; -x_121 = lean_ctor_get(x_113, 0); -lean_inc(x_121); -lean_dec(x_113); -x_122 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_122, 0, x_121); -return x_122; -} -} -} -} -else -{ -uint8_t x_123; -lean_dec(x_93); -lean_dec_ref(x_92); -lean_dec(x_91); -lean_dec_ref(x_90); -lean_dec(x_89); -lean_dec_ref(x_88); -lean_dec_ref(x_87); -lean_dec(x_86); -lean_dec_ref(x_85); -lean_dec_ref(x_84); -lean_dec_ref(x_83); -lean_dec(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_80); -lean_dec(x_78); -lean_dec(x_77); -lean_dec_ref(x_76); -lean_dec(x_75); -lean_dec_ref(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_25); -lean_dec_ref(x_18); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_123 = !lean_is_exclusive(x_95); -if (x_123 == 0) -{ -return x_95; -} -else -{ -lean_object* x_124; lean_object* x_125; -x_124 = lean_ctor_get(x_95, 0); -lean_inc(x_124); -lean_dec(x_95); -x_125 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_125, 0, x_124); -return x_125; -} -} -} -block_171: -{ -lean_object* x_141; -x_141 = lean_apply_8(x_7, x_25, x_134, x_135, x_136, x_137, x_138, x_139, lean_box(0)); -if (lean_obj_tag(x_141) == 0) -{ -uint8_t x_142; -x_142 = !lean_is_exclusive(x_141); -if (x_142 == 0) -{ -uint8_t x_143; -x_143 = !lean_is_exclusive(x_18); -if (x_143 == 0) -{ -lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; -x_144 = lean_ctor_get(x_141, 0); -x_145 = lean_ctor_get(x_18, 4); -lean_dec(x_145); -x_146 = l_Array_append___redArg(x_132, x_144); -lean_dec(x_144); -lean_ctor_set(x_18, 4, x_131); -x_147 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_147, 0, x_18); -lean_ctor_set(x_147, 1, x_19); -lean_ctor_set(x_147, 2, x_129); -lean_ctor_set(x_147, 3, x_130); -lean_ctor_set(x_147, 4, x_128); -lean_ctor_set(x_147, 5, x_127); -lean_ctor_set(x_147, 6, x_133); -lean_ctor_set(x_147, 7, x_146); -lean_ctor_set(x_141, 0, x_147); -return x_141; -} -else -{ -lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; -x_148 = lean_ctor_get(x_141, 0); -x_149 = lean_ctor_get(x_18, 0); -x_150 = lean_ctor_get(x_18, 1); -x_151 = lean_ctor_get(x_18, 2); -x_152 = lean_ctor_get(x_18, 3); -x_153 = lean_ctor_get(x_18, 5); -lean_inc(x_153); -lean_inc(x_152); -lean_inc(x_151); -lean_inc(x_150); -lean_inc(x_149); +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_82 = lean_ctor_get(x_75, 0); +x_83 = lean_ctor_get(x_18, 0); +x_84 = lean_ctor_get(x_18, 1); +x_85 = lean_ctor_get(x_18, 2); +x_86 = lean_ctor_get(x_18, 3); +x_87 = lean_ctor_get(x_18, 5); +lean_inc(x_87); +lean_inc(x_86); +lean_inc(x_85); +lean_inc(x_84); +lean_inc(x_83); lean_dec(x_18); -x_154 = l_Array_append___redArg(x_132, x_148); -lean_dec(x_148); -x_155 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_155, 0, x_149); -lean_ctor_set(x_155, 1, x_150); -lean_ctor_set(x_155, 2, x_151); -lean_ctor_set(x_155, 3, x_152); -lean_ctor_set(x_155, 4, x_131); -lean_ctor_set(x_155, 5, x_153); -x_156 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_156, 0, x_155); -lean_ctor_set(x_156, 1, x_19); -lean_ctor_set(x_156, 2, x_129); -lean_ctor_set(x_156, 3, x_130); -lean_ctor_set(x_156, 4, x_128); -lean_ctor_set(x_156, 5, x_127); -lean_ctor_set(x_156, 6, x_133); -lean_ctor_set(x_156, 7, x_154); -lean_ctor_set(x_141, 0, x_156); -return x_141; +x_88 = l_Array_append___redArg(x_63, x_82); +lean_dec(x_82); +x_89 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_89, 0, x_83); +lean_ctor_set(x_89, 1, x_84); +lean_ctor_set(x_89, 2, x_85); +lean_ctor_set(x_89, 3, x_86); +lean_ctor_set(x_89, 4, x_62); +lean_ctor_set(x_89, 5, x_87); +x_90 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_90, 0, x_89); +lean_ctor_set(x_90, 1, x_19); +lean_ctor_set(x_90, 2, x_61); +lean_ctor_set(x_90, 3, x_64); +lean_ctor_set(x_90, 4, x_65); +lean_ctor_set(x_90, 5, x_66); +lean_ctor_set(x_90, 6, x_67); +lean_ctor_set(x_90, 7, x_88); +lean_ctor_set(x_75, 0, x_90); +return x_75; } } else { -lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; -x_157 = lean_ctor_get(x_141, 0); -lean_inc(x_157); -lean_dec(x_141); -x_158 = lean_ctor_get(x_18, 0); -lean_inc(x_158); -x_159 = lean_ctor_get(x_18, 1); -lean_inc(x_159); -x_160 = lean_ctor_get(x_18, 2); -lean_inc_ref(x_160); -x_161 = lean_ctor_get(x_18, 3); -lean_inc(x_161); -x_162 = lean_ctor_get(x_18, 5); -lean_inc_ref(x_162); +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_91 = lean_ctor_get(x_75, 0); +lean_inc(x_91); +lean_dec(x_75); +x_92 = lean_ctor_get(x_18, 0); +lean_inc(x_92); +x_93 = lean_ctor_get(x_18, 1); +lean_inc(x_93); +x_94 = lean_ctor_get(x_18, 2); +lean_inc_ref(x_94); +x_95 = lean_ctor_get(x_18, 3); +lean_inc(x_95); +x_96 = lean_ctor_get(x_18, 5); +lean_inc_ref(x_96); if (lean_is_exclusive(x_18)) { lean_ctor_release(x_18, 0); lean_ctor_release(x_18, 1); @@ -42597,648 +49535,1005 @@ if (lean_is_exclusive(x_18)) { lean_ctor_release(x_18, 3); lean_ctor_release(x_18, 4); lean_ctor_release(x_18, 5); - x_163 = x_18; + x_97 = x_18; } else { lean_dec_ref(x_18); - x_163 = lean_box(0); + x_97 = lean_box(0); } -x_164 = l_Array_append___redArg(x_132, x_157); -lean_dec(x_157); -if (lean_is_scalar(x_163)) { - x_165 = lean_alloc_ctor(0, 6, 0); +x_98 = l_Array_append___redArg(x_63, x_91); +lean_dec(x_91); +if (lean_is_scalar(x_97)) { + x_99 = lean_alloc_ctor(0, 6, 0); } else { - x_165 = x_163; + x_99 = x_97; } -lean_ctor_set(x_165, 0, x_158); -lean_ctor_set(x_165, 1, x_159); -lean_ctor_set(x_165, 2, x_160); -lean_ctor_set(x_165, 3, x_161); -lean_ctor_set(x_165, 4, x_131); -lean_ctor_set(x_165, 5, x_162); -x_166 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_166, 0, x_165); -lean_ctor_set(x_166, 1, x_19); -lean_ctor_set(x_166, 2, x_129); -lean_ctor_set(x_166, 3, x_130); -lean_ctor_set(x_166, 4, x_128); -lean_ctor_set(x_166, 5, x_127); -lean_ctor_set(x_166, 6, x_133); -lean_ctor_set(x_166, 7, x_164); -x_167 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_167, 0, x_166); -return x_167; +lean_ctor_set(x_99, 0, x_92); +lean_ctor_set(x_99, 1, x_93); +lean_ctor_set(x_99, 2, x_94); +lean_ctor_set(x_99, 3, x_95); +lean_ctor_set(x_99, 4, x_62); +lean_ctor_set(x_99, 5, x_96); +x_100 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_100, 0, x_99); +lean_ctor_set(x_100, 1, x_19); +lean_ctor_set(x_100, 2, x_61); +lean_ctor_set(x_100, 3, x_64); +lean_ctor_set(x_100, 4, x_65); +lean_ctor_set(x_100, 5, x_66); +lean_ctor_set(x_100, 6, x_67); +lean_ctor_set(x_100, 7, x_98); +x_101 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_101, 0, x_100); +return x_101; } } else { -uint8_t x_168; -lean_dec_ref(x_133); -lean_dec_ref(x_132); -lean_dec_ref(x_131); -lean_dec_ref(x_130); -lean_dec_ref(x_129); -lean_dec_ref(x_128); +uint8_t x_102; +lean_dec_ref(x_67); +lean_dec_ref(x_66); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_63); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec(x_19); +lean_dec_ref(x_18); +x_102 = !lean_is_exclusive(x_75); +if (x_102 == 0) +{ +return x_75; +} +else +{ +lean_object* x_103; lean_object* x_104; +x_103 = lean_ctor_get(x_75, 0); +lean_inc(x_103); +lean_dec(x_75); +x_104 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_104, 0, x_103); +return x_104; +} +} +} +block_150: +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; +x_125 = lean_array_get_size(x_24); +lean_inc(x_125); +x_126 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__2___boxed), 10, 2); +lean_closure_set(x_126, 0, x_125); +lean_closure_set(x_126, 1, x_107); +lean_inc(x_123); +lean_inc_ref(x_122); +lean_inc(x_121); +lean_inc_ref(x_120); +lean_inc_ref(x_118); +x_127 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_126, x_118, x_119, x_120, x_121, x_122, x_123); +if (lean_obj_tag(x_127) == 0) +{ +lean_object* x_128; uint8_t x_129; +x_128 = lean_ctor_get(x_127, 0); +lean_inc(x_128); lean_dec_ref(x_127); -lean_dec(x_19); -lean_dec_ref(x_18); -x_168 = !lean_is_exclusive(x_141); -if (x_168 == 0) +x_129 = lean_nat_dec_lt(x_116, x_125); +if (x_129 == 0) { -return x_141; -} -else -{ -lean_object* x_169; lean_object* x_170; -x_169 = lean_ctor_get(x_141, 0); -lean_inc(x_169); -lean_dec(x_141); -x_170 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_170, 0, x_169); -return x_170; -} -} -} -block_216: -{ -lean_object* x_191; lean_object* x_192; lean_object* x_193; -x_191 = lean_array_get_size(x_24); -lean_inc(x_191); -x_192 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__2___boxed), 10, 2); -lean_closure_set(x_192, 0, x_191); -lean_closure_set(x_192, 1, x_172); -lean_inc(x_189); -lean_inc_ref(x_188); -lean_inc(x_187); -lean_inc_ref(x_186); -lean_inc_ref(x_184); -x_193 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_192, x_184, x_185, x_186, x_187, x_188, x_189); -if (lean_obj_tag(x_193) == 0) -{ -lean_object* x_194; uint8_t x_195; -x_194 = lean_ctor_get(x_193, 0); -lean_inc(x_194); -lean_dec_ref(x_193); -x_195 = lean_nat_dec_lt(x_175, x_191); -if (x_195 == 0) -{ -lean_dec(x_194); -lean_dec(x_191); -lean_dec(x_181); -lean_dec(x_175); +lean_dec(x_128); +lean_dec(x_125); +lean_dec(x_116); +lean_dec(x_112); lean_dec_ref(x_6); lean_dec_ref(x_1); -x_127 = x_177; -x_128 = x_176; -x_129 = x_178; -x_130 = x_180; -x_131 = x_182; -x_132 = x_183; -x_133 = x_179; -x_134 = x_184; -x_135 = x_185; -x_136 = x_186; -x_137 = x_187; -x_138 = x_188; -x_139 = x_189; -x_140 = lean_box(0); -goto block_171; +x_61 = x_108; +x_62 = x_109; +x_63 = x_117; +x_64 = x_110; +x_65 = x_111; +x_66 = x_115; +x_67 = x_113; +x_68 = x_118; +x_69 = x_119; +x_70 = x_120; +x_71 = x_121; +x_72 = x_122; +x_73 = x_123; +x_74 = lean_box(0); +goto block_105; } else { -lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; -lean_inc(x_191); -lean_inc(x_175); +lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; +lean_inc(x_125); +lean_inc(x_116); lean_inc_ref(x_24); -x_196 = l_Array_toSubarray___redArg(x_24, x_175, x_191); -x_197 = l_Lean_Meta_MatcherApp_altNumParams(x_1); -x_198 = lean_array_get_size(x_197); -lean_inc(x_175); -x_199 = l_Array_toSubarray___redArg(x_197, x_175, x_198); -x_200 = lean_array_get_size(x_194); -lean_inc(x_175); -x_201 = l_Array_toSubarray___redArg(x_194, x_175, x_200); -x_202 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_202, 0, x_201); -lean_ctor_set(x_202, 1, x_179); -x_203 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_203, 0, x_199); -lean_ctor_set(x_203, 1, x_202); -x_204 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_204, 0, x_196); -lean_ctor_set(x_204, 1, x_203); -lean_inc(x_189); -lean_inc_ref(x_188); -lean_inc(x_187); -lean_inc_ref(x_186); -lean_inc(x_185); -lean_inc_ref(x_184); -x_205 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg(x_174, x_6, x_173, x_181, x_191, x_204, x_175, x_184, x_185, x_186, x_187, x_188, x_189); -lean_dec(x_191); -if (lean_obj_tag(x_205) == 0) +x_130 = l_Array_toSubarray___redArg(x_24, x_116, x_125); +x_131 = l_Lean_Meta_MatcherApp_altNumParams(x_1); +x_132 = lean_array_get_size(x_131); +lean_inc(x_116); +x_133 = l_Array_toSubarray___redArg(x_131, x_116, x_132); +x_134 = lean_array_get_size(x_128); +lean_inc(x_116); +x_135 = l_Array_toSubarray___redArg(x_128, x_116, x_134); +x_136 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_136, 0, x_135); +lean_ctor_set(x_136, 1, x_113); +x_137 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_137, 0, x_133); +lean_ctor_set(x_137, 1, x_136); +x_138 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_138, 0, x_130); +lean_ctor_set(x_138, 1, x_137); +lean_inc(x_123); +lean_inc_ref(x_122); +lean_inc(x_121); +lean_inc_ref(x_120); +lean_inc(x_119); +lean_inc_ref(x_118); +x_139 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg(x_114, x_6, x_106, x_112, x_125, x_138, x_116, x_118, x_119, x_120, x_121, x_122, x_123); +lean_dec(x_125); +if (lean_obj_tag(x_139) == 0) { -lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; -x_206 = lean_ctor_get(x_205, 0); -lean_inc(x_206); -lean_dec_ref(x_205); -x_207 = lean_ctor_get(x_206, 1); -lean_inc(x_207); -lean_dec(x_206); -x_208 = lean_ctor_get(x_207, 1); -lean_inc(x_208); -lean_dec(x_207); -x_209 = lean_ctor_get(x_208, 1); -lean_inc(x_209); -lean_dec(x_208); -x_127 = x_177; -x_128 = x_176; -x_129 = x_178; -x_130 = x_180; -x_131 = x_182; -x_132 = x_183; -x_133 = x_209; -x_134 = x_184; -x_135 = x_185; -x_136 = x_186; -x_137 = x_187; -x_138 = x_188; -x_139 = x_189; -x_140 = lean_box(0); -goto block_171; +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_140 = lean_ctor_get(x_139, 0); +lean_inc(x_140); +lean_dec_ref(x_139); +x_141 = lean_ctor_get(x_140, 1); +lean_inc(x_141); +lean_dec(x_140); +x_142 = lean_ctor_get(x_141, 1); +lean_inc(x_142); +lean_dec(x_141); +x_143 = lean_ctor_get(x_142, 1); +lean_inc(x_143); +lean_dec(x_142); +x_61 = x_108; +x_62 = x_109; +x_63 = x_117; +x_64 = x_110; +x_65 = x_111; +x_66 = x_115; +x_67 = x_143; +x_68 = x_118; +x_69 = x_119; +x_70 = x_120; +x_71 = x_121; +x_72 = x_122; +x_73 = x_123; +x_74 = lean_box(0); +goto block_105; } else { -uint8_t x_210; -lean_dec(x_189); -lean_dec_ref(x_188); -lean_dec(x_187); -lean_dec_ref(x_186); -lean_dec(x_185); -lean_dec_ref(x_184); -lean_dec_ref(x_183); -lean_dec_ref(x_182); -lean_dec_ref(x_180); -lean_dec_ref(x_178); -lean_dec_ref(x_177); -lean_dec_ref(x_176); +uint8_t x_144; +lean_dec(x_123); +lean_dec_ref(x_122); +lean_dec(x_121); +lean_dec_ref(x_120); +lean_dec(x_119); +lean_dec_ref(x_118); +lean_dec_ref(x_117); +lean_dec_ref(x_115); +lean_dec_ref(x_111); +lean_dec_ref(x_110); +lean_dec_ref(x_109); +lean_dec_ref(x_108); lean_dec_ref(x_25); lean_dec(x_19); lean_dec_ref(x_18); lean_dec_ref(x_7); -x_210 = !lean_is_exclusive(x_205); -if (x_210 == 0) +x_144 = !lean_is_exclusive(x_139); +if (x_144 == 0) { -return x_205; +return x_139; } else { -lean_object* x_211; lean_object* x_212; -x_211 = lean_ctor_get(x_205, 0); -lean_inc(x_211); -lean_dec(x_205); -x_212 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_212, 0, x_211); -return x_212; +lean_object* x_145; lean_object* x_146; +x_145 = lean_ctor_get(x_139, 0); +lean_inc(x_145); +lean_dec(x_139); +x_146 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_146, 0, x_145); +return x_146; } } } } else { -uint8_t x_213; -lean_dec(x_191); -lean_dec(x_189); -lean_dec_ref(x_188); -lean_dec(x_187); -lean_dec_ref(x_186); -lean_dec(x_185); -lean_dec_ref(x_184); -lean_dec_ref(x_183); -lean_dec_ref(x_182); -lean_dec(x_181); -lean_dec_ref(x_180); -lean_dec_ref(x_179); -lean_dec_ref(x_178); -lean_dec_ref(x_177); -lean_dec_ref(x_176); -lean_dec(x_175); +uint8_t x_147; +lean_dec(x_125); +lean_dec(x_123); +lean_dec_ref(x_122); +lean_dec(x_121); +lean_dec_ref(x_120); +lean_dec(x_119); +lean_dec_ref(x_118); +lean_dec_ref(x_117); +lean_dec(x_116); +lean_dec_ref(x_115); +lean_dec_ref(x_113); +lean_dec(x_112); +lean_dec_ref(x_111); +lean_dec_ref(x_110); +lean_dec_ref(x_109); +lean_dec_ref(x_108); lean_dec_ref(x_25); lean_dec(x_19); lean_dec_ref(x_18); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_1); -x_213 = !lean_is_exclusive(x_193); -if (x_213 == 0) +x_147 = !lean_is_exclusive(x_127); +if (x_147 == 0) { -return x_193; +return x_127; } else { -lean_object* x_214; lean_object* x_215; -x_214 = lean_ctor_get(x_193, 0); -lean_inc(x_214); -lean_dec(x_193); -x_215 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_215, 0, x_214); -return x_215; +lean_object* x_148; lean_object* x_149; +x_148 = lean_ctor_get(x_127, 0); +lean_inc(x_148); +lean_dec(x_127); +x_149 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_149, 0, x_148); +return x_149; } } } -block_259: +block_193: { -lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -lean_inc_ref(x_221); -x_234 = lean_array_to_list(x_221); +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; +lean_inc_ref(x_160); +x_168 = lean_array_to_list(x_160); lean_inc(x_19); -x_235 = l_Lean_mkConst(x_19, x_234); -x_236 = l_Lean_mkAppN(x_235, x_231); -lean_inc_ref(x_218); -x_237 = l_Lean_Expr_app___override(x_236, x_218); -x_238 = l_Lean_mkAppN(x_237, x_226); -lean_inc_ref(x_238); -x_239 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__0___boxed), 9, 1); -lean_closure_set(x_239, 0, x_238); -lean_inc(x_217); -lean_inc_ref(x_229); +x_169 = l_Lean_mkConst(x_19, x_168); +x_170 = l_Lean_mkAppN(x_169, x_154); +lean_inc_ref(x_155); +x_171 = l_Lean_Expr_app___override(x_170, x_155); +x_172 = l_Lean_mkAppN(x_171, x_167); +lean_inc_ref(x_172); +x_173 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__0___boxed), 9, 1); +lean_closure_set(x_173, 0, x_172); +lean_inc(x_151); +lean_inc_ref(x_153); +lean_inc(x_163); +lean_inc_ref(x_161); +lean_inc_ref(x_152); +x_174 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_173, x_152, x_164, x_161, x_163, x_153, x_151); +if (lean_obj_tag(x_174) == 0) +{ +lean_object* x_175; uint8_t x_176; uint8_t x_177; +x_175 = lean_ctor_get(x_174, 0); +lean_inc(x_175); +lean_dec_ref(x_174); +x_176 = 1; +x_177 = lean_unbox(x_175); +lean_dec(x_175); +if (x_177 == 0) +{ +lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; +x_178 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__1; +lean_inc_ref(x_172); +x_179 = l_Lean_indentExpr(x_172); +x_180 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_180, 0, x_178); +lean_ctor_set(x_180, 1, x_179); +lean_inc(x_151); +lean_inc_ref(x_153); +lean_inc(x_163); +lean_inc_ref(x_161); +lean_inc_ref(x_152); +x_181 = l_Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10(x_180, x_152, x_164, x_161, x_163, x_153, x_151); +if (lean_obj_tag(x_181) == 0) +{ +lean_object* x_182; lean_object* x_183; +lean_dec_ref(x_181); +lean_inc_ref(x_172); +x_182 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__3___boxed), 9, 1); +lean_closure_set(x_182, 0, x_172); +lean_inc(x_151); +lean_inc_ref(x_153); +lean_inc(x_163); +lean_inc_ref(x_161); +lean_inc_ref(x_152); +x_183 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_182, x_152, x_164, x_161, x_163, x_153, x_151); +if (lean_obj_tag(x_183) == 0) +{ +lean_dec_ref(x_183); +x_106 = x_176; +x_107 = x_172; +x_108 = x_160; +x_109 = x_162; +x_110 = x_154; +x_111 = x_155; +x_112 = x_165; +x_113 = x_157; +x_114 = x_158; +x_115 = x_167; +x_116 = x_159; +x_117 = x_166; +x_118 = x_152; +x_119 = x_164; +x_120 = x_161; +x_121 = x_163; +x_122 = x_153; +x_123 = x_151; +x_124 = lean_box(0); +goto block_150; +} +else +{ +uint8_t x_184; +lean_dec_ref(x_172); +lean_dec_ref(x_167); +lean_dec_ref(x_166); +lean_dec(x_165); +lean_dec(x_164); +lean_dec(x_163); +lean_dec_ref(x_162); +lean_dec_ref(x_161); +lean_dec_ref(x_160); +lean_dec(x_159); +lean_dec_ref(x_157); +lean_dec_ref(x_155); +lean_dec_ref(x_154); +lean_dec_ref(x_153); +lean_dec_ref(x_152); +lean_dec(x_151); +lean_dec_ref(x_25); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_1); +x_184 = !lean_is_exclusive(x_183); +if (x_184 == 0) +{ +return x_183; +} +else +{ +lean_object* x_185; lean_object* x_186; +x_185 = lean_ctor_get(x_183, 0); +lean_inc(x_185); +lean_dec(x_183); +x_186 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_186, 0, x_185); +return x_186; +} +} +} +else +{ +uint8_t x_187; +lean_dec_ref(x_172); +lean_dec_ref(x_167); +lean_dec_ref(x_166); +lean_dec(x_165); +lean_dec(x_164); +lean_dec(x_163); +lean_dec_ref(x_162); +lean_dec_ref(x_161); +lean_dec_ref(x_160); +lean_dec(x_159); +lean_dec_ref(x_157); +lean_dec_ref(x_155); +lean_dec_ref(x_154); +lean_dec_ref(x_153); +lean_dec_ref(x_152); +lean_dec(x_151); +lean_dec_ref(x_25); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_1); +x_187 = !lean_is_exclusive(x_181); +if (x_187 == 0) +{ +return x_181; +} +else +{ +lean_object* x_188; lean_object* x_189; +x_188 = lean_ctor_get(x_181, 0); +lean_inc(x_188); +lean_dec(x_181); +x_189 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_189, 0, x_188); +return x_189; +} +} +} +else +{ +x_106 = x_176; +x_107 = x_172; +x_108 = x_160; +x_109 = x_162; +x_110 = x_154; +x_111 = x_155; +x_112 = x_165; +x_113 = x_157; +x_114 = x_158; +x_115 = x_167; +x_116 = x_159; +x_117 = x_166; +x_118 = x_152; +x_119 = x_164; +x_120 = x_161; +x_121 = x_163; +x_122 = x_153; +x_123 = x_151; +x_124 = lean_box(0); +goto block_150; +} +} +else +{ +uint8_t x_190; +lean_dec_ref(x_172); +lean_dec_ref(x_167); +lean_dec_ref(x_166); +lean_dec(x_165); +lean_dec(x_164); +lean_dec(x_163); +lean_dec_ref(x_162); +lean_dec_ref(x_161); +lean_dec_ref(x_160); +lean_dec(x_159); +lean_dec_ref(x_157); +lean_dec_ref(x_155); +lean_dec_ref(x_154); +lean_dec_ref(x_153); +lean_dec_ref(x_152); +lean_dec(x_151); +lean_dec_ref(x_25); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_1); +x_190 = !lean_is_exclusive(x_174); +if (x_190 == 0) +{ +return x_174; +} +else +{ +lean_object* x_191; lean_object* x_192; +x_191 = lean_ctor_get(x_174, 0); +lean_inc(x_191); +lean_dec(x_174); +x_192 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_192, 0, x_191); +return x_192; +} +} +} +block_253: +{ +lean_object* x_217; +lean_inc(x_215); +lean_inc_ref(x_214); +lean_inc(x_213); +lean_inc_ref(x_212); +lean_inc_ref(x_210); +x_217 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_194, x_210, x_211, x_212, x_213, x_214, x_215); +if (lean_obj_tag(x_217) == 0) +{ +lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; uint8_t x_225; +x_218 = lean_ctor_get(x_217, 0); +lean_inc(x_218); +lean_dec_ref(x_217); +x_219 = lean_ctor_get(x_18, 0); +lean_inc(x_219); +x_220 = lean_ctor_get(x_18, 1); +lean_inc(x_220); +x_221 = lean_ctor_get(x_18, 2); +lean_inc_ref(x_221); +x_222 = lean_ctor_get(x_18, 3); lean_inc(x_222); -lean_inc_ref(x_219); -lean_inc_ref(x_232); -x_240 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_239, x_232, x_230, x_219, x_222, x_229, x_217); +x_223 = lean_ctor_get(x_18, 5); +lean_inc_ref(x_223); +lean_dec_ref(x_18); +x_224 = lean_ctor_get(x_206, 2); +lean_inc_ref(x_224); +lean_dec_ref(x_206); +x_225 = lean_nat_dec_lt(x_202, x_195); +if (x_225 == 0) +{ +lean_dec_ref(x_224); +lean_dec(x_218); +lean_dec(x_207); +lean_dec(x_205); +lean_dec(x_202); +lean_dec_ref(x_198); +lean_dec(x_195); +lean_dec_ref(x_24); +lean_dec_ref(x_6); +x_26 = x_203; +x_27 = x_223; +x_28 = x_219; +x_29 = x_209; +x_30 = x_204; +x_31 = x_220; +x_32 = x_196; +x_33 = x_197; +x_34 = x_199; +x_35 = x_222; +x_36 = x_221; +x_37 = x_208; +x_38 = x_200; +x_39 = x_210; +x_40 = x_211; +x_41 = x_212; +x_42 = x_213; +x_43 = x_214; +x_44 = x_215; +x_45 = lean_box(0); +goto block_60; +} +else +{ +lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; +lean_inc(x_195); +lean_inc(x_202); +x_226 = l_Array_toSubarray___redArg(x_24, x_202, x_195); +x_227 = lean_array_get_size(x_221); +lean_inc(x_202); +lean_inc_ref(x_221); +x_228 = l_Array_toSubarray___redArg(x_221, x_202, x_227); +x_229 = lean_array_get_size(x_224); +lean_inc(x_202); +x_230 = l_Array_toSubarray___redArg(x_224, x_202, x_229); +x_231 = lean_array_get_size(x_198); +lean_inc(x_202); +x_232 = l_Array_toSubarray___redArg(x_198, x_202, x_231); +x_233 = lean_array_get_size(x_218); +lean_inc(x_202); +x_234 = l_Array_toSubarray___redArg(x_218, x_202, x_233); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_234); +lean_ctor_set(x_235, 1, x_200); +x_236 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_236, 0, x_232); +lean_ctor_set(x_236, 1, x_235); +x_237 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_237, 0, x_230); +lean_ctor_set(x_237, 1, x_236); +x_238 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_238, 0, x_228); +lean_ctor_set(x_238, 1, x_237); +x_239 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_239, 0, x_226); +lean_ctor_set(x_239, 1, x_238); +lean_inc(x_215); +lean_inc_ref(x_214); +lean_inc(x_213); +lean_inc_ref(x_212); +lean_inc(x_211); +lean_inc_ref(x_210); +lean_inc(x_202); +x_240 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg(x_202, x_6, x_201, x_2, x_205, x_207, x_195, x_202, x_239, x_202, x_210, x_211, x_212, x_213, x_214, x_215); +lean_dec(x_195); +lean_dec(x_202); if (lean_obj_tag(x_240) == 0) { -lean_object* x_241; uint8_t x_242; uint8_t x_243; +lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; x_241 = lean_ctor_get(x_240, 0); lean_inc(x_241); lean_dec_ref(x_240); -x_242 = 1; -x_243 = lean_unbox(x_241); +x_242 = lean_ctor_get(x_241, 1); +lean_inc(x_242); lean_dec(x_241); -if (x_243 == 0) +x_243 = lean_ctor_get(x_242, 1); +lean_inc(x_243); +lean_dec(x_242); +x_244 = lean_ctor_get(x_243, 1); +lean_inc(x_244); +lean_dec(x_243); +x_245 = lean_ctor_get(x_244, 1); +lean_inc(x_245); +lean_dec(x_244); +x_246 = lean_ctor_get(x_245, 1); +lean_inc(x_246); +lean_dec(x_245); +x_26 = x_203; +x_27 = x_223; +x_28 = x_219; +x_29 = x_209; +x_30 = x_204; +x_31 = x_220; +x_32 = x_196; +x_33 = x_197; +x_34 = x_199; +x_35 = x_222; +x_36 = x_221; +x_37 = x_208; +x_38 = x_246; +x_39 = x_210; +x_40 = x_211; +x_41 = x_212; +x_42 = x_213; +x_43 = x_214; +x_44 = x_215; +x_45 = lean_box(0); +goto block_60; +} +else { -lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; -x_244 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__1; -lean_inc_ref(x_238); -x_245 = l_Lean_indentExpr(x_238); -x_246 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_246, 0, x_244); -lean_ctor_set(x_246, 1, x_245); -lean_inc(x_217); -lean_inc_ref(x_229); -lean_inc(x_222); -lean_inc_ref(x_219); -lean_inc_ref(x_232); -x_247 = l_Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10(x_246, x_232, x_230, x_219, x_222, x_229, x_217); -if (lean_obj_tag(x_247) == 0) +uint8_t x_247; +lean_dec_ref(x_223); +lean_dec(x_222); +lean_dec_ref(x_221); +lean_dec(x_220); +lean_dec(x_219); +lean_dec(x_215); +lean_dec_ref(x_214); +lean_dec(x_213); +lean_dec_ref(x_212); +lean_dec(x_211); +lean_dec_ref(x_210); +lean_dec_ref(x_209); +lean_dec_ref(x_208); +lean_dec_ref(x_204); +lean_dec_ref(x_203); +lean_dec_ref(x_199); +lean_dec(x_197); +lean_dec_ref(x_196); +lean_dec_ref(x_25); +lean_dec_ref(x_7); +x_247 = !lean_is_exclusive(x_240); +if (x_247 == 0) +{ +return x_240; +} +else { lean_object* x_248; lean_object* x_249; -lean_dec_ref(x_247); -lean_inc_ref(x_238); -x_248 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__3___boxed), 9, 1); -lean_closure_set(x_248, 0, x_238); -lean_inc(x_217); -lean_inc_ref(x_229); -lean_inc(x_222); -lean_inc_ref(x_219); -lean_inc_ref(x_232); -x_249 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_248, x_232, x_230, x_219, x_222, x_229, x_217); -if (lean_obj_tag(x_249) == 0) -{ -lean_dec_ref(x_249); -x_172 = x_238; -x_173 = x_242; -x_174 = x_224; -x_175 = x_225; -x_176 = x_218; -x_177 = x_226; -x_178 = x_221; -x_179 = x_227; -x_180 = x_231; -x_181 = x_223; -x_182 = x_233; -x_183 = x_228; -x_184 = x_232; -x_185 = x_230; -x_186 = x_219; -x_187 = x_222; -x_188 = x_229; -x_189 = x_217; -x_190 = lean_box(0); -goto block_216; +x_248 = lean_ctor_get(x_240, 0); +lean_inc(x_248); +lean_dec(x_240); +x_249 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_249, 0, x_248); +return x_249; +} +} +} } else { uint8_t x_250; -lean_dec_ref(x_238); -lean_dec_ref(x_233); -lean_dec_ref(x_232); -lean_dec_ref(x_231); -lean_dec(x_230); -lean_dec_ref(x_229); -lean_dec_ref(x_228); -lean_dec_ref(x_227); -lean_dec_ref(x_226); -lean_dec(x_225); -lean_dec(x_223); -lean_dec(x_222); -lean_dec_ref(x_221); -lean_dec_ref(x_219); -lean_dec_ref(x_218); -lean_dec(x_217); +lean_dec(x_215); +lean_dec_ref(x_214); +lean_dec(x_213); +lean_dec_ref(x_212); +lean_dec(x_211); +lean_dec_ref(x_210); +lean_dec_ref(x_209); +lean_dec_ref(x_208); +lean_dec(x_207); +lean_dec_ref(x_206); +lean_dec(x_205); +lean_dec_ref(x_204); +lean_dec_ref(x_203); +lean_dec(x_202); +lean_dec_ref(x_200); +lean_dec_ref(x_199); +lean_dec_ref(x_198); +lean_dec(x_197); +lean_dec_ref(x_196); +lean_dec(x_195); lean_dec_ref(x_25); -lean_dec(x_19); +lean_dec_ref(x_24); lean_dec_ref(x_18); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_250 = !lean_is_exclusive(x_249); +x_250 = !lean_is_exclusive(x_217); if (x_250 == 0) { -return x_249; +return x_217; } else { lean_object* x_251; lean_object* x_252; -x_251 = lean_ctor_get(x_249, 0); +x_251 = lean_ctor_get(x_217, 0); lean_inc(x_251); -lean_dec(x_249); +lean_dec(x_217); x_252 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_252, 0, x_251); return x_252; } } } -else +block_316: { -uint8_t x_253; -lean_dec_ref(x_238); -lean_dec_ref(x_233); -lean_dec_ref(x_232); -lean_dec_ref(x_231); -lean_dec(x_230); -lean_dec_ref(x_229); -lean_dec_ref(x_228); -lean_dec_ref(x_227); -lean_dec_ref(x_226); -lean_dec(x_225); -lean_dec(x_223); -lean_dec(x_222); -lean_dec_ref(x_221); -lean_dec_ref(x_219); -lean_dec_ref(x_218); -lean_dec(x_217); -lean_dec_ref(x_25); -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_253 = !lean_is_exclusive(x_247); -if (x_253 == 0) -{ -return x_247; -} -else -{ -lean_object* x_254; lean_object* x_255; -x_254 = lean_ctor_get(x_247, 0); -lean_inc(x_254); -lean_dec(x_247); -x_255 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_255, 0, x_254); -return x_255; -} -} -} -else -{ -x_172 = x_238; -x_173 = x_242; -x_174 = x_224; -x_175 = x_225; -x_176 = x_218; -x_177 = x_226; -x_178 = x_221; -x_179 = x_227; -x_180 = x_231; -x_181 = x_223; -x_182 = x_233; -x_183 = x_228; -x_184 = x_232; -x_185 = x_230; -x_186 = x_219; -x_187 = x_222; -x_188 = x_229; -x_189 = x_217; -x_190 = lean_box(0); -goto block_216; -} -} -else -{ -uint8_t x_256; -lean_dec_ref(x_238); -lean_dec_ref(x_233); -lean_dec_ref(x_232); -lean_dec_ref(x_231); -lean_dec(x_230); -lean_dec_ref(x_229); -lean_dec_ref(x_228); -lean_dec_ref(x_227); -lean_dec_ref(x_226); -lean_dec(x_225); -lean_dec(x_223); -lean_dec(x_222); -lean_dec_ref(x_221); -lean_dec_ref(x_219); -lean_dec_ref(x_218); -lean_dec(x_217); -lean_dec_ref(x_25); -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_256 = !lean_is_exclusive(x_240); -if (x_256 == 0) -{ -return x_240; -} -else -{ -lean_object* x_257; lean_object* x_258; -x_257 = lean_ctor_get(x_240, 0); -lean_inc(x_257); -lean_dec(x_240); -x_258 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_258, 0, x_257); -return x_258; -} -} -} -block_322: -{ -lean_object* x_281; lean_object* x_282; lean_object* x_283; -x_281 = lean_array_get_size(x_24); -lean_inc(x_281); -x_282 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__5___boxed), 10, 2); -lean_closure_set(x_282, 0, x_281); -lean_closure_set(x_282, 1, x_261); -lean_inc(x_279); -lean_inc_ref(x_278); -lean_inc(x_277); -lean_inc_ref(x_276); -lean_inc_ref(x_274); -x_283 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_282, x_274, x_275, x_276, x_277, x_278, x_279); -if (lean_obj_tag(x_283) == 0) -{ -lean_object* x_284; lean_object* x_285; -x_284 = lean_ctor_get(x_283, 0); -lean_inc(x_284); -lean_dec_ref(x_283); -lean_inc(x_279); -lean_inc_ref(x_278); -lean_inc(x_277); -lean_inc_ref(x_276); -lean_inc_ref(x_274); -x_285 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_260, x_274, x_275, x_276, x_277, x_278, x_279); -if (lean_obj_tag(x_285) == 0) -{ -lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; -x_286 = lean_ctor_get(x_285, 0); -lean_inc(x_286); -lean_dec_ref(x_285); -x_287 = lean_ctor_get(x_286, 1); -lean_inc(x_287); -x_288 = lean_ctor_get(x_286, 2); -lean_inc_ref(x_288); -lean_dec(x_286); -lean_inc(x_287); -x_289 = l_Lean_mkConst(x_287, x_264); -x_290 = l_Lean_mkAppN(x_289, x_269); -lean_inc_ref(x_266); -x_291 = l_Lean_Expr_app___override(x_290, x_266); -x_292 = l_Lean_mkAppN(x_291, x_265); -lean_inc_ref(x_292); -x_293 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__6___boxed), 9, 1); -lean_closure_set(x_293, 0, x_292); -lean_inc(x_279); -lean_inc_ref(x_278); -lean_inc(x_277); -lean_inc_ref(x_276); -lean_inc_ref(x_274); -x_294 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_293, x_274, x_275, x_276, x_277, x_278, x_279); -if (lean_obj_tag(x_294) == 0) -{ -lean_object* x_295; lean_object* x_296; uint8_t x_297; -x_295 = lean_ctor_get(x_294, 0); -lean_inc(x_295); -lean_dec_ref(x_294); -lean_inc_ref(x_292); -lean_inc(x_281); -x_296 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__7___boxed), 10, 2); -lean_closure_set(x_296, 0, x_281); -lean_closure_set(x_296, 1, x_292); -x_297 = lean_unbox(x_295); -lean_dec(x_295); -if (x_297 == 0) -{ -lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; -lean_inc_ref(x_292); -x_298 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__8___boxed), 9, 1); -lean_closure_set(x_298, 0, x_292); +lean_object* x_275; lean_object* x_276; lean_object* x_277; +x_275 = lean_array_get_size(x_24); lean_inc(x_275); -lean_inc_ref(x_274); -x_299 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__9___boxed), 8, 3); +x_276 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__5___boxed), 10, 2); +lean_closure_set(x_276, 0, x_275); +lean_closure_set(x_276, 1, x_255); +lean_inc(x_273); +lean_inc_ref(x_272); +lean_inc(x_271); +lean_inc_ref(x_270); +lean_inc_ref(x_268); +x_277 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_276, x_268, x_269, x_270, x_271, x_272, x_273); +if (lean_obj_tag(x_277) == 0) +{ +lean_object* x_278; lean_object* x_279; +x_278 = lean_ctor_get(x_277, 0); +lean_inc(x_278); +lean_dec_ref(x_277); +lean_inc(x_273); +lean_inc_ref(x_272); +lean_inc(x_271); +lean_inc_ref(x_270); +lean_inc_ref(x_268); +x_279 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_254, x_268, x_269, x_270, x_271, x_272, x_273); +if (lean_obj_tag(x_279) == 0) +{ +lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; +x_280 = lean_ctor_get(x_279, 0); +lean_inc(x_280); +lean_dec_ref(x_279); +x_281 = lean_ctor_get(x_280, 1); +lean_inc(x_281); +x_282 = lean_ctor_get(x_280, 2); +lean_inc_ref(x_282); +lean_dec(x_280); +lean_inc(x_281); +x_283 = l_Lean_mkConst(x_281, x_265); +x_284 = l_Lean_mkAppN(x_283, x_258); +lean_inc_ref(x_259); +x_285 = l_Lean_Expr_app___override(x_284, x_259); +x_286 = l_Lean_mkAppN(x_285, x_264); +lean_inc_ref(x_286); +x_287 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__6___boxed), 9, 1); +lean_closure_set(x_287, 0, x_286); +lean_inc(x_273); +lean_inc_ref(x_272); +lean_inc(x_271); +lean_inc_ref(x_270); +lean_inc_ref(x_268); +x_288 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_287, x_268, x_269, x_270, x_271, x_272, x_273); +if (lean_obj_tag(x_288) == 0) +{ +lean_object* x_289; lean_object* x_290; uint8_t x_291; +x_289 = lean_ctor_get(x_288, 0); +lean_inc(x_289); +lean_dec_ref(x_288); +lean_inc_ref(x_286); +lean_inc(x_275); +x_290 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__7___boxed), 10, 2); +lean_closure_set(x_290, 0, x_275); +lean_closure_set(x_290, 1, x_286); +x_291 = lean_unbox(x_289); +lean_dec(x_289); +if (x_291 == 0) +{ +lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; +lean_inc_ref(x_286); +x_292 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__8___boxed), 9, 1); +lean_closure_set(x_292, 0, x_286); +lean_inc(x_269); +lean_inc_ref(x_268); +x_293 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__9___boxed), 8, 3); +lean_closure_set(x_293, 0, x_292); +lean_closure_set(x_293, 1, x_268); +lean_closure_set(x_293, 2, x_269); +x_294 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__3; +x_295 = l_Lean_indentExpr(x_286); +x_296 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_296, 0, x_294); +lean_ctor_set(x_296, 1, x_295); +x_297 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__5; +x_298 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_298, 0, x_296); +lean_ctor_set(x_298, 1, x_297); +x_299 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__10), 2, 1); lean_closure_set(x_299, 0, x_298); -lean_closure_set(x_299, 1, x_274); -lean_closure_set(x_299, 2, x_275); -x_300 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__3; -x_301 = l_Lean_indentExpr(x_292); -x_302 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_302, 0, x_300); -lean_ctor_set(x_302, 1, x_301); -x_303 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__5; -x_304 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_304, 0, x_302); -lean_ctor_set(x_304, 1, x_303); -x_305 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__10), 2, 1); -lean_closure_set(x_305, 0, x_304); -lean_inc(x_279); -lean_inc_ref(x_278); -lean_inc(x_277); -lean_inc_ref(x_276); -x_306 = l_Lean_Meta_mapErrorImp___redArg(x_299, x_305, x_276, x_277, x_278, x_279); -if (lean_obj_tag(x_306) == 0) +lean_inc(x_273); +lean_inc_ref(x_272); +lean_inc(x_271); +lean_inc_ref(x_270); +x_300 = l_Lean_Meta_mapErrorImp___redArg(x_293, x_299, x_270, x_271, x_272, x_273); +if (lean_obj_tag(x_300) == 0) { -if (lean_obj_tag(x_306) == 0) +if (lean_obj_tag(x_300) == 0) { -lean_dec_ref(x_306); -x_72 = x_296; -x_73 = x_266; -x_74 = x_267; -x_75 = x_270; -x_76 = x_284; -x_77 = x_272; -x_78 = x_263; -x_79 = x_262; -x_80 = x_265; -x_81 = x_268; -x_82 = x_281; -x_83 = x_269; -x_84 = x_288; -x_85 = x_271; -x_86 = x_287; -x_87 = x_273; -x_88 = x_274; -x_89 = x_275; -x_90 = x_276; -x_91 = x_277; -x_92 = x_278; -x_93 = x_279; -x_94 = lean_box(0); -goto block_126; +lean_dec_ref(x_300); +x_194 = x_290; +x_195 = x_275; +x_196 = x_258; +x_197 = x_281; +x_198 = x_278; +x_199 = x_259; +x_200 = x_261; +x_201 = x_263; +x_202 = x_266; +x_203 = x_256; +x_204 = x_257; +x_205 = x_260; +x_206 = x_282; +x_207 = x_262; +x_208 = x_264; +x_209 = x_267; +x_210 = x_268; +x_211 = x_269; +x_212 = x_270; +x_213 = x_271; +x_214 = x_272; +x_215 = x_273; +x_216 = lean_box(0); +goto block_253; +} +else +{ +uint8_t x_301; +lean_dec_ref(x_290); +lean_dec_ref(x_282); +lean_dec(x_281); +lean_dec(x_278); +lean_dec(x_275); +lean_dec(x_273); +lean_dec_ref(x_272); +lean_dec(x_271); +lean_dec_ref(x_270); +lean_dec(x_269); +lean_dec_ref(x_268); +lean_dec_ref(x_267); +lean_dec(x_266); +lean_dec_ref(x_264); +lean_dec(x_262); +lean_dec_ref(x_261); +lean_dec(x_260); +lean_dec_ref(x_259); +lean_dec_ref(x_258); +lean_dec_ref(x_257); +lean_dec_ref(x_256); +lean_dec_ref(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_18); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_301 = !lean_is_exclusive(x_300); +if (x_301 == 0) +{ +lean_ctor_set_tag(x_300, 1); +return x_300; +} +else +{ +lean_object* x_302; lean_object* x_303; +x_302 = lean_ctor_get(x_300, 0); +lean_inc(x_302); +lean_dec(x_300); +x_303 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_303, 0, x_302); +return x_303; +} +} +} +else +{ +uint8_t x_304; +lean_dec_ref(x_290); +lean_dec_ref(x_282); +lean_dec(x_281); +lean_dec(x_278); +lean_dec(x_275); +lean_dec(x_273); +lean_dec_ref(x_272); +lean_dec(x_271); +lean_dec_ref(x_270); +lean_dec(x_269); +lean_dec_ref(x_268); +lean_dec_ref(x_267); +lean_dec(x_266); +lean_dec_ref(x_264); +lean_dec(x_262); +lean_dec_ref(x_261); +lean_dec(x_260); +lean_dec_ref(x_259); +lean_dec_ref(x_258); +lean_dec_ref(x_257); +lean_dec_ref(x_256); +lean_dec_ref(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_18); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_304 = !lean_is_exclusive(x_300); +if (x_304 == 0) +{ +return x_300; +} +else +{ +lean_object* x_305; lean_object* x_306; +x_305 = lean_ctor_get(x_300, 0); +lean_inc(x_305); +lean_dec(x_300); +x_306 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_306, 0, x_305); +return x_306; +} +} +} +else +{ +lean_dec_ref(x_286); +x_194 = x_290; +x_195 = x_275; +x_196 = x_258; +x_197 = x_281; +x_198 = x_278; +x_199 = x_259; +x_200 = x_261; +x_201 = x_263; +x_202 = x_266; +x_203 = x_256; +x_204 = x_257; +x_205 = x_260; +x_206 = x_282; +x_207 = x_262; +x_208 = x_264; +x_209 = x_267; +x_210 = x_268; +x_211 = x_269; +x_212 = x_270; +x_213 = x_271; +x_214 = x_272; +x_215 = x_273; +x_216 = lean_box(0); +goto block_253; +} } else { uint8_t x_307; -lean_dec_ref(x_296); -lean_dec_ref(x_288); -lean_dec(x_287); -lean_dec(x_284); +lean_dec_ref(x_286); +lean_dec_ref(x_282); lean_dec(x_281); -lean_dec(x_279); -lean_dec_ref(x_278); -lean_dec(x_277); -lean_dec_ref(x_276); +lean_dec(x_278); lean_dec(x_275); -lean_dec_ref(x_274); -lean_dec_ref(x_273); -lean_dec(x_272); -lean_dec_ref(x_271); -lean_dec(x_270); -lean_dec_ref(x_269); +lean_dec(x_273); +lean_dec_ref(x_272); +lean_dec(x_271); +lean_dec_ref(x_270); +lean_dec(x_269); lean_dec_ref(x_268); lean_dec_ref(x_267); -lean_dec_ref(x_266); -lean_dec_ref(x_265); -lean_dec(x_263); +lean_dec(x_266); +lean_dec_ref(x_264); +lean_dec(x_262); +lean_dec_ref(x_261); +lean_dec(x_260); +lean_dec_ref(x_259); +lean_dec_ref(x_258); +lean_dec_ref(x_257); +lean_dec_ref(x_256); lean_dec_ref(x_25); +lean_dec_ref(x_24); lean_dec_ref(x_18); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_307 = !lean_is_exclusive(x_306); +x_307 = !lean_is_exclusive(x_288); if (x_307 == 0) { -lean_ctor_set_tag(x_306, 1); -return x_306; +return x_288; } else { lean_object* x_308; lean_object* x_309; -x_308 = lean_ctor_get(x_306, 0); +x_308 = lean_ctor_get(x_288, 0); lean_inc(x_308); -lean_dec(x_306); +lean_dec(x_288); x_309 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_309, 0, x_308); return x_309; @@ -43248,43 +50543,41 @@ return x_309; else { uint8_t x_310; -lean_dec_ref(x_296); -lean_dec_ref(x_288); -lean_dec(x_287); -lean_dec(x_284); -lean_dec(x_281); -lean_dec(x_279); -lean_dec_ref(x_278); -lean_dec(x_277); -lean_dec_ref(x_276); +lean_dec(x_278); lean_dec(x_275); -lean_dec_ref(x_274); -lean_dec_ref(x_273); -lean_dec(x_272); -lean_dec_ref(x_271); -lean_dec(x_270); -lean_dec_ref(x_269); +lean_dec(x_273); +lean_dec_ref(x_272); +lean_dec(x_271); +lean_dec_ref(x_270); +lean_dec(x_269); lean_dec_ref(x_268); lean_dec_ref(x_267); -lean_dec_ref(x_266); -lean_dec_ref(x_265); -lean_dec(x_263); +lean_dec(x_266); +lean_dec(x_265); +lean_dec_ref(x_264); +lean_dec(x_262); +lean_dec_ref(x_261); +lean_dec(x_260); +lean_dec_ref(x_259); +lean_dec_ref(x_258); +lean_dec_ref(x_257); +lean_dec_ref(x_256); lean_dec_ref(x_25); +lean_dec_ref(x_24); lean_dec_ref(x_18); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_310 = !lean_is_exclusive(x_306); +x_310 = !lean_is_exclusive(x_279); if (x_310 == 0) { -return x_306; +return x_279; } else { lean_object* x_311; lean_object* x_312; -x_311 = lean_ctor_get(x_306, 0); +x_311 = lean_ctor_get(x_279, 0); lean_inc(x_311); -lean_dec(x_306); +lean_dec(x_279); x_312 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_312, 0, x_311); return x_312; @@ -43293,363 +50586,357 @@ return x_312; } else { -lean_dec_ref(x_292); -x_72 = x_296; -x_73 = x_266; -x_74 = x_267; -x_75 = x_270; -x_76 = x_284; -x_77 = x_272; -x_78 = x_263; -x_79 = x_262; -x_80 = x_265; -x_81 = x_268; -x_82 = x_281; -x_83 = x_269; -x_84 = x_288; -x_85 = x_271; -x_86 = x_287; -x_87 = x_273; -x_88 = x_274; -x_89 = x_275; -x_90 = x_276; -x_91 = x_277; -x_92 = x_278; -x_93 = x_279; -x_94 = lean_box(0); -goto block_126; -} -} -else -{ uint8_t x_313; -lean_dec_ref(x_292); -lean_dec_ref(x_288); -lean_dec(x_287); -lean_dec(x_284); -lean_dec(x_281); -lean_dec(x_279); -lean_dec_ref(x_278); -lean_dec(x_277); -lean_dec_ref(x_276); lean_dec(x_275); -lean_dec_ref(x_274); -lean_dec_ref(x_273); -lean_dec(x_272); -lean_dec_ref(x_271); -lean_dec(x_270); -lean_dec_ref(x_269); +lean_dec(x_273); +lean_dec_ref(x_272); +lean_dec(x_271); +lean_dec_ref(x_270); +lean_dec(x_269); lean_dec_ref(x_268); lean_dec_ref(x_267); -lean_dec_ref(x_266); -lean_dec_ref(x_265); -lean_dec(x_263); +lean_dec(x_266); +lean_dec(x_265); +lean_dec_ref(x_264); +lean_dec(x_262); +lean_dec_ref(x_261); +lean_dec(x_260); +lean_dec_ref(x_259); +lean_dec_ref(x_258); +lean_dec_ref(x_257); +lean_dec_ref(x_256); +lean_dec_ref(x_254); lean_dec_ref(x_25); +lean_dec_ref(x_24); lean_dec_ref(x_18); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_313 = !lean_is_exclusive(x_294); +x_313 = !lean_is_exclusive(x_277); if (x_313 == 0) { -return x_294; +return x_277; } else { lean_object* x_314; lean_object* x_315; -x_314 = lean_ctor_get(x_294, 0); +x_314 = lean_ctor_get(x_277, 0); lean_inc(x_314); -lean_dec(x_294); +lean_dec(x_277); x_315 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_315, 0, x_314); return x_315; } } } -else +block_446: { -uint8_t x_316; -lean_dec(x_284); -lean_dec(x_281); -lean_dec(x_279); -lean_dec_ref(x_278); -lean_dec(x_277); -lean_dec_ref(x_276); -lean_dec(x_275); -lean_dec_ref(x_274); -lean_dec_ref(x_273); -lean_dec(x_272); -lean_dec_ref(x_271); -lean_dec(x_270); -lean_dec_ref(x_269); -lean_dec_ref(x_268); -lean_dec_ref(x_267); -lean_dec_ref(x_266); -lean_dec_ref(x_265); -lean_dec(x_264); -lean_dec(x_263); -lean_dec_ref(x_25); -lean_dec_ref(x_18); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_316 = !lean_is_exclusive(x_285); -if (x_316 == 0) +lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; size_t x_342; lean_object* x_343; +x_334 = lean_unsigned_to_nat(0u); +x_335 = l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32___redArg___closed__0; +x_336 = l_Array_reverse___redArg(x_318); +x_337 = lean_array_get_size(x_336); +x_338 = l_Array_toSubarray___redArg(x_336, x_334, x_337); +lean_inc_ref(x_325); +x_339 = l_Array_reverse___redArg(x_325); +x_340 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__6; +x_341 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_341, 0, x_338); +lean_ctor_set(x_341, 1, x_340); +x_342 = lean_array_size(x_339); +lean_inc(x_332); +lean_inc_ref(x_331); +lean_inc(x_330); +lean_inc_ref(x_329); +lean_inc_ref(x_327); +x_343 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7(x_339, x_342, x_322, x_341, x_327, x_328, x_329, x_330, x_331, x_332); +lean_dec_ref(x_339); +if (lean_obj_tag(x_343) == 0) { -return x_285; -} -else +lean_object* x_344; uint8_t x_345; +x_344 = lean_ctor_get(x_343, 0); +lean_inc(x_344); +lean_dec_ref(x_343); +x_345 = !lean_is_exclusive(x_344); +if (x_345 == 0) { -lean_object* x_317; lean_object* x_318; -x_317 = lean_ctor_get(x_285, 0); -lean_inc(x_317); -lean_dec(x_285); -x_318 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_318, 0, x_317); -return x_318; -} -} -} -else -{ -uint8_t x_319; -lean_dec(x_281); -lean_dec(x_279); -lean_dec_ref(x_278); -lean_dec(x_277); -lean_dec_ref(x_276); -lean_dec(x_275); -lean_dec_ref(x_274); -lean_dec_ref(x_273); -lean_dec(x_272); -lean_dec_ref(x_271); -lean_dec(x_270); -lean_dec_ref(x_269); -lean_dec_ref(x_268); -lean_dec_ref(x_267); -lean_dec_ref(x_266); -lean_dec_ref(x_265); -lean_dec(x_264); -lean_dec(x_263); -lean_dec_ref(x_260); -lean_dec_ref(x_25); -lean_dec_ref(x_18); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_319 = !lean_is_exclusive(x_283); -if (x_319 == 0) -{ -return x_283; -} -else -{ -lean_object* x_320; lean_object* x_321; -x_320 = lean_ctor_get(x_283, 0); -lean_inc(x_320); -lean_dec(x_283); -x_321 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_321, 0, x_320); -return x_321; -} -} -} -block_452: -{ -lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; size_t x_348; lean_object* x_349; -x_340 = lean_unsigned_to_nat(0u); -x_341 = l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__27_spec__30_spec__31_spec__32___redArg___closed__0; -x_342 = l_Array_reverse___redArg(x_328); -x_343 = lean_array_get_size(x_342); -x_344 = l_Array_toSubarray___redArg(x_342, x_340, x_343); -lean_inc_ref(x_326); -x_345 = l_Array_reverse___redArg(x_326); -x_346 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__6; -x_347 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_347, 0, x_344); -lean_ctor_set(x_347, 1, x_346); -x_348 = lean_array_size(x_345); -lean_inc(x_338); -lean_inc_ref(x_337); -lean_inc(x_336); -lean_inc_ref(x_335); -lean_inc_ref(x_333); -x_349 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7(x_345, x_348, x_327, x_347, x_333, x_334, x_335, x_336, x_337, x_338); -lean_dec_ref(x_345); -if (lean_obj_tag(x_349) == 0) -{ -lean_object* x_350; uint8_t x_351; -x_350 = lean_ctor_get(x_349, 0); -lean_inc(x_350); -lean_dec_ref(x_349); -x_351 = !lean_is_exclusive(x_350); -if (x_351 == 0) -{ -lean_object* x_352; lean_object* x_353; -x_352 = lean_ctor_get(x_350, 1); -x_353 = lean_ctor_get(x_350, 0); -lean_dec(x_353); +lean_object* x_346; lean_object* x_347; +x_346 = lean_ctor_get(x_344, 1); +x_347 = lean_ctor_get(x_344, 0); +lean_dec(x_347); if (x_2 == 0) { -lean_object* x_354; lean_object* x_355; -lean_free_object(x_350); -lean_dec(x_330); -lean_dec_ref(x_260); -lean_inc(x_19); -x_354 = lean_ctor_get(x_352, 0); -lean_inc(x_354); -x_355 = lean_ctor_get(x_352, 1); -lean_inc(x_355); -lean_dec(x_352); -x_217 = x_338; -x_218 = x_325; -x_219 = x_335; -x_220 = lean_box(0); -x_221 = x_332; -x_222 = x_336; -x_223 = x_354; -x_224 = x_324; -x_225 = x_340; -x_226 = x_326; -x_227 = x_341; -x_228 = x_355; -x_229 = x_337; -x_230 = x_334; -x_231 = x_329; -x_232 = x_333; -x_233 = x_331; -goto block_259; +lean_object* x_348; lean_object* x_349; +lean_free_object(x_344); +lean_dec(x_323); +lean_dec_ref(x_254); +x_348 = lean_ctor_get(x_346, 0); +lean_inc(x_348); +x_349 = lean_ctor_get(x_346, 1); +lean_inc(x_349); +lean_dec(x_346); +x_151 = x_332; +x_152 = x_327; +x_153 = x_331; +x_154 = x_320; +x_155 = x_321; +x_156 = lean_box(0); +x_157 = x_335; +x_158 = x_324; +x_159 = x_334; +x_160 = x_326; +x_161 = x_329; +x_162 = x_319; +x_163 = x_330; +x_164 = x_328; +x_165 = x_348; +x_166 = x_349; +x_167 = x_325; +goto block_193; } else { -if (x_323 == 0) +if (x_317 == 0) { -uint8_t x_356; -x_356 = !lean_is_exclusive(x_352); -if (x_356 == 0) +uint8_t x_350; +lean_inc_ref(x_24); +lean_dec_ref(x_1); +x_350 = !lean_is_exclusive(x_346); +if (x_350 == 0) { -lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; -x_357 = lean_ctor_get(x_352, 0); -x_358 = lean_ctor_get(x_352, 1); -lean_inc_ref(x_332); -x_359 = lean_array_to_list(x_332); -lean_inc(x_359); -lean_inc(x_19); -x_360 = l_Lean_mkConst(x_19, x_359); -x_361 = l_Lean_mkAppN(x_360, x_329); -lean_inc_ref(x_325); -x_362 = l_Lean_Expr_app___override(x_361, x_325); -x_363 = l_Lean_mkAppN(x_362, x_326); -lean_inc_ref(x_363); -x_364 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___boxed), 9, 1); -lean_closure_set(x_364, 0, x_363); -lean_inc(x_338); -lean_inc_ref(x_337); -lean_inc(x_336); -lean_inc_ref(x_335); -lean_inc_ref(x_333); -x_365 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_364, x_333, x_334, x_335, x_336, x_337, x_338); -if (lean_obj_tag(x_365) == 0) +lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; +x_351 = lean_ctor_get(x_346, 0); +x_352 = lean_ctor_get(x_346, 1); +lean_inc_ref(x_326); +x_353 = lean_array_to_list(x_326); +lean_inc(x_353); +x_354 = l_Lean_mkConst(x_19, x_353); +x_355 = l_Lean_mkAppN(x_354, x_320); +lean_inc_ref(x_321); +x_356 = l_Lean_Expr_app___override(x_355, x_321); +x_357 = l_Lean_mkAppN(x_356, x_325); +lean_inc_ref(x_357); +x_358 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___boxed), 9, 1); +lean_closure_set(x_358, 0, x_357); +lean_inc(x_332); +lean_inc_ref(x_331); +lean_inc(x_330); +lean_inc_ref(x_329); +lean_inc_ref(x_327); +x_359 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_358, x_327, x_328, x_329, x_330, x_331, x_332); +if (lean_obj_tag(x_359) == 0) { -lean_object* x_366; uint8_t x_367; -x_366 = lean_ctor_get(x_365, 0); -lean_inc(x_366); -lean_dec_ref(x_365); -x_367 = lean_unbox(x_366); -lean_dec(x_366); -if (x_367 == 0) +lean_object* x_360; uint8_t x_361; +x_360 = lean_ctor_get(x_359, 0); +lean_inc(x_360); +lean_dec_ref(x_359); +x_361 = lean_unbox(x_360); +lean_dec(x_360); +if (x_361 == 0) { -lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -lean_inc_ref(x_363); -x_368 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__11___boxed), 9, 1); -lean_closure_set(x_368, 0, x_363); -lean_inc(x_334); -lean_inc_ref(x_333); -x_369 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__9___boxed), 8, 3); -lean_closure_set(x_369, 0, x_368); -lean_closure_set(x_369, 1, x_333); -lean_closure_set(x_369, 2, x_334); -x_370 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__8; -lean_inc_ref(x_363); -x_371 = l_Lean_indentExpr(x_363); -lean_ctor_set_tag(x_352, 7); -lean_ctor_set(x_352, 1, x_371); -lean_ctor_set(x_352, 0, x_370); -x_372 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__5; -lean_ctor_set_tag(x_350, 7); -lean_ctor_set(x_350, 1, x_372); -lean_ctor_set(x_350, 0, x_352); -x_373 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__10), 2, 1); -lean_closure_set(x_373, 0, x_350); -lean_inc(x_338); -lean_inc_ref(x_337); -lean_inc(x_336); -lean_inc_ref(x_335); -x_374 = l_Lean_Meta_mapErrorImp___redArg(x_369, x_373, x_335, x_336, x_337, x_338); -if (lean_obj_tag(x_374) == 0) +lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; +lean_inc_ref(x_357); +x_362 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__11___boxed), 9, 1); +lean_closure_set(x_362, 0, x_357); +lean_inc(x_328); +lean_inc_ref(x_327); +x_363 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__9___boxed), 8, 3); +lean_closure_set(x_363, 0, x_362); +lean_closure_set(x_363, 1, x_327); +lean_closure_set(x_363, 2, x_328); +x_364 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__8; +lean_inc_ref(x_357); +x_365 = l_Lean_indentExpr(x_357); +lean_ctor_set_tag(x_346, 7); +lean_ctor_set(x_346, 1, x_365); +lean_ctor_set(x_346, 0, x_364); +x_366 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__5; +lean_ctor_set_tag(x_344, 7); +lean_ctor_set(x_344, 1, x_366); +lean_ctor_set(x_344, 0, x_346); +x_367 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__10), 2, 1); +lean_closure_set(x_367, 0, x_344); +lean_inc(x_332); +lean_inc_ref(x_331); +lean_inc(x_330); +lean_inc_ref(x_329); +x_368 = l_Lean_Meta_mapErrorImp___redArg(x_363, x_367, x_329, x_330, x_331, x_332); +if (lean_obj_tag(x_368) == 0) { -if (lean_obj_tag(x_374) == 0) +if (lean_obj_tag(x_368) == 0) { -lean_dec_ref(x_374); -x_261 = x_363; -x_262 = x_324; -x_263 = x_340; -x_264 = x_359; -x_265 = x_326; -x_266 = x_325; -x_267 = x_332; -x_268 = x_341; -x_269 = x_329; -x_270 = x_330; -x_271 = x_331; -x_272 = x_357; -x_273 = x_358; -x_274 = x_333; -x_275 = x_334; -x_276 = x_335; -x_277 = x_336; -x_278 = x_337; -x_279 = x_338; -x_280 = lean_box(0); -goto block_322; +lean_dec_ref(x_368); +x_255 = x_357; +x_256 = x_326; +x_257 = x_319; +x_258 = x_320; +x_259 = x_321; +x_260 = x_351; +x_261 = x_335; +x_262 = x_323; +x_263 = x_324; +x_264 = x_325; +x_265 = x_353; +x_266 = x_334; +x_267 = x_352; +x_268 = x_327; +x_269 = x_328; +x_270 = x_329; +x_271 = x_330; +x_272 = x_331; +x_273 = x_332; +x_274 = lean_box(0); +goto block_316; +} +else +{ +uint8_t x_369; +lean_dec_ref(x_357); +lean_dec(x_353); +lean_dec(x_352); +lean_dec(x_351); +lean_dec(x_332); +lean_dec_ref(x_331); +lean_dec(x_330); +lean_dec_ref(x_329); +lean_dec(x_328); +lean_dec_ref(x_327); +lean_dec_ref(x_326); +lean_dec_ref(x_325); +lean_dec(x_323); +lean_dec_ref(x_321); +lean_dec_ref(x_320); +lean_dec_ref(x_319); +lean_dec_ref(x_254); +lean_dec_ref(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_18); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_369 = !lean_is_exclusive(x_368); +if (x_369 == 0) +{ +lean_ctor_set_tag(x_368, 1); +return x_368; +} +else +{ +lean_object* x_370; lean_object* x_371; +x_370 = lean_ctor_get(x_368, 0); +lean_inc(x_370); +lean_dec(x_368); +x_371 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_371, 0, x_370); +return x_371; +} +} +} +else +{ +uint8_t x_372; +lean_dec_ref(x_357); +lean_dec(x_353); +lean_dec(x_352); +lean_dec(x_351); +lean_dec(x_332); +lean_dec_ref(x_331); +lean_dec(x_330); +lean_dec_ref(x_329); +lean_dec(x_328); +lean_dec_ref(x_327); +lean_dec_ref(x_326); +lean_dec_ref(x_325); +lean_dec(x_323); +lean_dec_ref(x_321); +lean_dec_ref(x_320); +lean_dec_ref(x_319); +lean_dec_ref(x_254); +lean_dec_ref(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_18); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_372 = !lean_is_exclusive(x_368); +if (x_372 == 0) +{ +return x_368; +} +else +{ +lean_object* x_373; lean_object* x_374; +x_373 = lean_ctor_get(x_368, 0); +lean_inc(x_373); +lean_dec(x_368); +x_374 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_374, 0, x_373); +return x_374; +} +} +} +else +{ +lean_free_object(x_346); +lean_free_object(x_344); +x_255 = x_357; +x_256 = x_326; +x_257 = x_319; +x_258 = x_320; +x_259 = x_321; +x_260 = x_351; +x_261 = x_335; +x_262 = x_323; +x_263 = x_324; +x_264 = x_325; +x_265 = x_353; +x_266 = x_334; +x_267 = x_352; +x_268 = x_327; +x_269 = x_328; +x_270 = x_329; +x_271 = x_330; +x_272 = x_331; +x_273 = x_332; +x_274 = lean_box(0); +goto block_316; +} } else { uint8_t x_375; -lean_dec_ref(x_363); -lean_dec(x_359); -lean_dec(x_358); -lean_dec(x_357); -lean_dec(x_338); -lean_dec_ref(x_337); -lean_dec(x_336); -lean_dec_ref(x_335); -lean_dec(x_334); -lean_dec_ref(x_333); -lean_dec_ref(x_332); +lean_dec_ref(x_357); +lean_dec(x_353); +lean_free_object(x_346); +lean_dec(x_352); +lean_dec(x_351); +lean_free_object(x_344); +lean_dec(x_332); lean_dec_ref(x_331); lean_dec(x_330); lean_dec_ref(x_329); +lean_dec(x_328); +lean_dec_ref(x_327); lean_dec_ref(x_326); lean_dec_ref(x_325); -lean_dec_ref(x_260); +lean_dec(x_323); +lean_dec_ref(x_321); +lean_dec_ref(x_320); +lean_dec_ref(x_319); +lean_dec_ref(x_254); lean_dec_ref(x_25); +lean_dec_ref(x_24); lean_dec_ref(x_18); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_375 = !lean_is_exclusive(x_374); +x_375 = !lean_is_exclusive(x_359); if (x_375 == 0) { -lean_ctor_set_tag(x_374, 1); -return x_374; +return x_359; } else { lean_object* x_376; lean_object* x_377; -x_376 = lean_ctor_get(x_374, 0); +x_376 = lean_ctor_get(x_359, 0); lean_inc(x_376); -lean_dec(x_374); +lean_dec(x_359); x_377 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_377, 0, x_376); return x_377; @@ -43658,577 +50945,575 @@ return x_377; } else { -uint8_t x_378; -lean_dec_ref(x_363); -lean_dec(x_359); -lean_dec(x_358); -lean_dec(x_357); -lean_dec(x_338); -lean_dec_ref(x_337); -lean_dec(x_336); -lean_dec_ref(x_335); -lean_dec(x_334); -lean_dec_ref(x_333); -lean_dec_ref(x_332); -lean_dec_ref(x_331); -lean_dec(x_330); -lean_dec_ref(x_329); -lean_dec_ref(x_326); -lean_dec_ref(x_325); -lean_dec_ref(x_260); -lean_dec_ref(x_25); -lean_dec_ref(x_18); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_378 = !lean_is_exclusive(x_374); -if (x_378 == 0) -{ -return x_374; -} -else -{ -lean_object* x_379; lean_object* x_380; -x_379 = lean_ctor_get(x_374, 0); +lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; +x_378 = lean_ctor_get(x_346, 0); +x_379 = lean_ctor_get(x_346, 1); lean_inc(x_379); -lean_dec(x_374); -x_380 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_380, 0, x_379); -return x_380; -} -} +lean_inc(x_378); +lean_dec(x_346); +lean_inc_ref(x_326); +x_380 = lean_array_to_list(x_326); +lean_inc(x_380); +x_381 = l_Lean_mkConst(x_19, x_380); +x_382 = l_Lean_mkAppN(x_381, x_320); +lean_inc_ref(x_321); +x_383 = l_Lean_Expr_app___override(x_382, x_321); +x_384 = l_Lean_mkAppN(x_383, x_325); +lean_inc_ref(x_384); +x_385 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___boxed), 9, 1); +lean_closure_set(x_385, 0, x_384); +lean_inc(x_332); +lean_inc_ref(x_331); +lean_inc(x_330); +lean_inc_ref(x_329); +lean_inc_ref(x_327); +x_386 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_385, x_327, x_328, x_329, x_330, x_331, x_332); +if (lean_obj_tag(x_386) == 0) +{ +lean_object* x_387; uint8_t x_388; +x_387 = lean_ctor_get(x_386, 0); +lean_inc(x_387); +lean_dec_ref(x_386); +x_388 = lean_unbox(x_387); +lean_dec(x_387); +if (x_388 == 0) +{ +lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; +lean_inc_ref(x_384); +x_389 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__11___boxed), 9, 1); +lean_closure_set(x_389, 0, x_384); +lean_inc(x_328); +lean_inc_ref(x_327); +x_390 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__9___boxed), 8, 3); +lean_closure_set(x_390, 0, x_389); +lean_closure_set(x_390, 1, x_327); +lean_closure_set(x_390, 2, x_328); +x_391 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__8; +lean_inc_ref(x_384); +x_392 = l_Lean_indentExpr(x_384); +x_393 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_393, 0, x_391); +lean_ctor_set(x_393, 1, x_392); +x_394 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__5; +lean_ctor_set_tag(x_344, 7); +lean_ctor_set(x_344, 1, x_394); +lean_ctor_set(x_344, 0, x_393); +x_395 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__10), 2, 1); +lean_closure_set(x_395, 0, x_344); +lean_inc(x_332); +lean_inc_ref(x_331); +lean_inc(x_330); +lean_inc_ref(x_329); +x_396 = l_Lean_Meta_mapErrorImp___redArg(x_390, x_395, x_329, x_330, x_331, x_332); +if (lean_obj_tag(x_396) == 0) +{ +if (lean_obj_tag(x_396) == 0) +{ +lean_dec_ref(x_396); +x_255 = x_384; +x_256 = x_326; +x_257 = x_319; +x_258 = x_320; +x_259 = x_321; +x_260 = x_378; +x_261 = x_335; +x_262 = x_323; +x_263 = x_324; +x_264 = x_325; +x_265 = x_380; +x_266 = x_334; +x_267 = x_379; +x_268 = x_327; +x_269 = x_328; +x_270 = x_329; +x_271 = x_330; +x_272 = x_331; +x_273 = x_332; +x_274 = lean_box(0); +goto block_316; } else { -lean_free_object(x_352); -lean_free_object(x_350); -x_261 = x_363; -x_262 = x_324; -x_263 = x_340; -x_264 = x_359; -x_265 = x_326; -x_266 = x_325; -x_267 = x_332; -x_268 = x_341; -x_269 = x_329; -x_270 = x_330; -x_271 = x_331; -x_272 = x_357; -x_273 = x_358; -x_274 = x_333; -x_275 = x_334; -x_276 = x_335; -x_277 = x_336; -x_278 = x_337; -x_279 = x_338; -x_280 = lean_box(0); -goto block_322; -} -} -else -{ -uint8_t x_381; -lean_dec_ref(x_363); -lean_dec(x_359); -lean_free_object(x_352); -lean_dec(x_358); -lean_dec(x_357); -lean_free_object(x_350); -lean_dec(x_338); -lean_dec_ref(x_337); -lean_dec(x_336); -lean_dec_ref(x_335); -lean_dec(x_334); -lean_dec_ref(x_333); -lean_dec_ref(x_332); +lean_object* x_397; lean_object* x_398; lean_object* x_399; +lean_dec_ref(x_384); +lean_dec(x_380); +lean_dec(x_379); +lean_dec(x_378); +lean_dec(x_332); lean_dec_ref(x_331); lean_dec(x_330); lean_dec_ref(x_329); +lean_dec(x_328); +lean_dec_ref(x_327); lean_dec_ref(x_326); lean_dec_ref(x_325); -lean_dec_ref(x_260); +lean_dec(x_323); +lean_dec_ref(x_321); +lean_dec_ref(x_320); +lean_dec_ref(x_319); +lean_dec_ref(x_254); lean_dec_ref(x_25); +lean_dec_ref(x_24); lean_dec_ref(x_18); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_381 = !lean_is_exclusive(x_365); -if (x_381 == 0) -{ -return x_365; +x_397 = lean_ctor_get(x_396, 0); +lean_inc(x_397); +if (lean_is_exclusive(x_396)) { + lean_ctor_release(x_396, 0); + x_398 = x_396; +} else { + lean_dec_ref(x_396); + x_398 = lean_box(0); } -else -{ -lean_object* x_382; lean_object* x_383; -x_382 = lean_ctor_get(x_365, 0); -lean_inc(x_382); -lean_dec(x_365); -x_383 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_383, 0, x_382); -return x_383; +if (lean_is_scalar(x_398)) { + x_399 = lean_alloc_ctor(1, 1, 0); +} else { + x_399 = x_398; + lean_ctor_set_tag(x_399, 1); } -} -} -else -{ -lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; -x_384 = lean_ctor_get(x_352, 0); -x_385 = lean_ctor_get(x_352, 1); -lean_inc(x_385); -lean_inc(x_384); -lean_dec(x_352); -lean_inc_ref(x_332); -x_386 = lean_array_to_list(x_332); -lean_inc(x_386); -lean_inc(x_19); -x_387 = l_Lean_mkConst(x_19, x_386); -x_388 = l_Lean_mkAppN(x_387, x_329); -lean_inc_ref(x_325); -x_389 = l_Lean_Expr_app___override(x_388, x_325); -x_390 = l_Lean_mkAppN(x_389, x_326); -lean_inc_ref(x_390); -x_391 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___boxed), 9, 1); -lean_closure_set(x_391, 0, x_390); -lean_inc(x_338); -lean_inc_ref(x_337); -lean_inc(x_336); -lean_inc_ref(x_335); -lean_inc_ref(x_333); -x_392 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_391, x_333, x_334, x_335, x_336, x_337, x_338); -if (lean_obj_tag(x_392) == 0) -{ -lean_object* x_393; uint8_t x_394; -x_393 = lean_ctor_get(x_392, 0); -lean_inc(x_393); -lean_dec_ref(x_392); -x_394 = lean_unbox(x_393); -lean_dec(x_393); -if (x_394 == 0) -{ -lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; -lean_inc_ref(x_390); -x_395 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__11___boxed), 9, 1); -lean_closure_set(x_395, 0, x_390); -lean_inc(x_334); -lean_inc_ref(x_333); -x_396 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__9___boxed), 8, 3); -lean_closure_set(x_396, 0, x_395); -lean_closure_set(x_396, 1, x_333); -lean_closure_set(x_396, 2, x_334); -x_397 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__8; -lean_inc_ref(x_390); -x_398 = l_Lean_indentExpr(x_390); -x_399 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_399, 0, x_397); -lean_ctor_set(x_399, 1, x_398); -x_400 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__5; -lean_ctor_set_tag(x_350, 7); -lean_ctor_set(x_350, 1, x_400); -lean_ctor_set(x_350, 0, x_399); -x_401 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__10), 2, 1); -lean_closure_set(x_401, 0, x_350); -lean_inc(x_338); -lean_inc_ref(x_337); -lean_inc(x_336); -lean_inc_ref(x_335); -x_402 = l_Lean_Meta_mapErrorImp___redArg(x_396, x_401, x_335, x_336, x_337, x_338); -if (lean_obj_tag(x_402) == 0) +return x_399; +} +} +else { -if (lean_obj_tag(x_402) == 0) +lean_object* x_400; lean_object* x_401; lean_object* x_402; +lean_dec_ref(x_384); +lean_dec(x_380); +lean_dec(x_379); +lean_dec(x_378); +lean_dec(x_332); +lean_dec_ref(x_331); +lean_dec(x_330); +lean_dec_ref(x_329); +lean_dec(x_328); +lean_dec_ref(x_327); +lean_dec_ref(x_326); +lean_dec_ref(x_325); +lean_dec(x_323); +lean_dec_ref(x_321); +lean_dec_ref(x_320); +lean_dec_ref(x_319); +lean_dec_ref(x_254); +lean_dec_ref(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_18); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_400 = lean_ctor_get(x_396, 0); +lean_inc(x_400); +if (lean_is_exclusive(x_396)) { + lean_ctor_release(x_396, 0); + x_401 = x_396; +} else { + lean_dec_ref(x_396); + x_401 = lean_box(0); +} +if (lean_is_scalar(x_401)) { + x_402 = lean_alloc_ctor(1, 1, 0); +} else { + x_402 = x_401; +} +lean_ctor_set(x_402, 0, x_400); +return x_402; +} +} +else { -lean_dec_ref(x_402); -x_261 = x_390; -x_262 = x_324; -x_263 = x_340; -x_264 = x_386; -x_265 = x_326; -x_266 = x_325; -x_267 = x_332; -x_268 = x_341; -x_269 = x_329; -x_270 = x_330; -x_271 = x_331; -x_272 = x_384; -x_273 = x_385; -x_274 = x_333; -x_275 = x_334; -x_276 = x_335; -x_277 = x_336; -x_278 = x_337; -x_279 = x_338; -x_280 = lean_box(0); -goto block_322; +lean_free_object(x_344); +x_255 = x_384; +x_256 = x_326; +x_257 = x_319; +x_258 = x_320; +x_259 = x_321; +x_260 = x_378; +x_261 = x_335; +x_262 = x_323; +x_263 = x_324; +x_264 = x_325; +x_265 = x_380; +x_266 = x_334; +x_267 = x_379; +x_268 = x_327; +x_269 = x_328; +x_270 = x_329; +x_271 = x_330; +x_272 = x_331; +x_273 = x_332; +x_274 = lean_box(0); +goto block_316; +} } else { lean_object* x_403; lean_object* x_404; lean_object* x_405; -lean_dec_ref(x_390); -lean_dec(x_386); -lean_dec(x_385); -lean_dec(x_384); -lean_dec(x_338); -lean_dec_ref(x_337); -lean_dec(x_336); -lean_dec_ref(x_335); -lean_dec(x_334); -lean_dec_ref(x_333); -lean_dec_ref(x_332); +lean_dec_ref(x_384); +lean_dec(x_380); +lean_dec(x_379); +lean_dec(x_378); +lean_free_object(x_344); +lean_dec(x_332); lean_dec_ref(x_331); lean_dec(x_330); lean_dec_ref(x_329); +lean_dec(x_328); +lean_dec_ref(x_327); lean_dec_ref(x_326); lean_dec_ref(x_325); -lean_dec_ref(x_260); +lean_dec(x_323); +lean_dec_ref(x_321); +lean_dec_ref(x_320); +lean_dec_ref(x_319); +lean_dec_ref(x_254); lean_dec_ref(x_25); +lean_dec_ref(x_24); lean_dec_ref(x_18); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_403 = lean_ctor_get(x_402, 0); +x_403 = lean_ctor_get(x_386, 0); lean_inc(x_403); -if (lean_is_exclusive(x_402)) { - lean_ctor_release(x_402, 0); - x_404 = x_402; +if (lean_is_exclusive(x_386)) { + lean_ctor_release(x_386, 0); + x_404 = x_386; } else { - lean_dec_ref(x_402); + lean_dec_ref(x_386); x_404 = lean_box(0); } if (lean_is_scalar(x_404)) { x_405 = lean_alloc_ctor(1, 1, 0); } else { x_405 = x_404; - lean_ctor_set_tag(x_405, 1); } lean_ctor_set(x_405, 0, x_403); return x_405; } } +} else { -lean_object* x_406; lean_object* x_407; lean_object* x_408; -lean_dec_ref(x_390); -lean_dec(x_386); -lean_dec(x_385); -lean_dec(x_384); -lean_dec(x_338); -lean_dec_ref(x_337); -lean_dec(x_336); -lean_dec_ref(x_335); -lean_dec(x_334); -lean_dec_ref(x_333); -lean_dec_ref(x_332); -lean_dec_ref(x_331); -lean_dec(x_330); -lean_dec_ref(x_329); -lean_dec_ref(x_326); -lean_dec_ref(x_325); -lean_dec_ref(x_260); -lean_dec_ref(x_25); -lean_dec_ref(x_18); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_406 = lean_ctor_get(x_402, 0); +lean_object* x_406; lean_object* x_407; +lean_free_object(x_344); +lean_dec(x_323); +lean_dec_ref(x_254); +x_406 = lean_ctor_get(x_346, 0); lean_inc(x_406); -if (lean_is_exclusive(x_402)) { - lean_ctor_release(x_402, 0); - x_407 = x_402; -} else { - lean_dec_ref(x_402); - x_407 = lean_box(0); -} -if (lean_is_scalar(x_407)) { - x_408 = lean_alloc_ctor(1, 1, 0); -} else { - x_408 = x_407; -} -lean_ctor_set(x_408, 0, x_406); -return x_408; -} -} -else -{ -lean_free_object(x_350); -x_261 = x_390; -x_262 = x_324; -x_263 = x_340; -x_264 = x_386; -x_265 = x_326; -x_266 = x_325; -x_267 = x_332; -x_268 = x_341; -x_269 = x_329; -x_270 = x_330; -x_271 = x_331; -x_272 = x_384; -x_273 = x_385; -x_274 = x_333; -x_275 = x_334; -x_276 = x_335; -x_277 = x_336; -x_278 = x_337; -x_279 = x_338; -x_280 = lean_box(0); -goto block_322; -} -} -else -{ -lean_object* x_409; lean_object* x_410; lean_object* x_411; -lean_dec_ref(x_390); -lean_dec(x_386); -lean_dec(x_385); -lean_dec(x_384); -lean_free_object(x_350); -lean_dec(x_338); -lean_dec_ref(x_337); -lean_dec(x_336); -lean_dec_ref(x_335); -lean_dec(x_334); -lean_dec_ref(x_333); -lean_dec_ref(x_332); -lean_dec_ref(x_331); -lean_dec(x_330); -lean_dec_ref(x_329); -lean_dec_ref(x_326); -lean_dec_ref(x_325); -lean_dec_ref(x_260); -lean_dec_ref(x_25); -lean_dec_ref(x_18); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_409 = lean_ctor_get(x_392, 0); -lean_inc(x_409); -if (lean_is_exclusive(x_392)) { - lean_ctor_release(x_392, 0); - x_410 = x_392; -} else { - lean_dec_ref(x_392); - x_410 = lean_box(0); -} -if (lean_is_scalar(x_410)) { - x_411 = lean_alloc_ctor(1, 1, 0); -} else { - x_411 = x_410; -} -lean_ctor_set(x_411, 0, x_409); -return x_411; +x_407 = lean_ctor_get(x_346, 1); +lean_inc(x_407); +lean_dec(x_346); +x_151 = x_332; +x_152 = x_327; +x_153 = x_331; +x_154 = x_320; +x_155 = x_321; +x_156 = lean_box(0); +x_157 = x_335; +x_158 = x_324; +x_159 = x_334; +x_160 = x_326; +x_161 = x_329; +x_162 = x_319; +x_163 = x_330; +x_164 = x_328; +x_165 = x_406; +x_166 = x_407; +x_167 = x_325; +goto block_193; } } } else { -lean_object* x_412; lean_object* x_413; -lean_free_object(x_350); -lean_dec(x_330); -lean_dec_ref(x_260); -lean_inc(x_19); -x_412 = lean_ctor_get(x_352, 0); -lean_inc(x_412); -x_413 = lean_ctor_get(x_352, 1); -lean_inc(x_413); -lean_dec(x_352); -x_217 = x_338; -x_218 = x_325; -x_219 = x_335; -x_220 = lean_box(0); -x_221 = x_332; -x_222 = x_336; -x_223 = x_412; -x_224 = x_324; -x_225 = x_340; -x_226 = x_326; -x_227 = x_341; -x_228 = x_413; -x_229 = x_337; -x_230 = x_334; -x_231 = x_329; -x_232 = x_333; -x_233 = x_331; -goto block_259; -} -} -} -else -{ -lean_object* x_414; -x_414 = lean_ctor_get(x_350, 1); -lean_inc(x_414); -lean_dec(x_350); +lean_object* x_408; +x_408 = lean_ctor_get(x_344, 1); +lean_inc(x_408); +lean_dec(x_344); if (x_2 == 0) { -lean_object* x_415; lean_object* x_416; -lean_dec(x_330); -lean_dec_ref(x_260); -lean_inc(x_19); -x_415 = lean_ctor_get(x_414, 0); -lean_inc(x_415); -x_416 = lean_ctor_get(x_414, 1); -lean_inc(x_416); -lean_dec(x_414); -x_217 = x_338; -x_218 = x_325; -x_219 = x_335; -x_220 = lean_box(0); -x_221 = x_332; -x_222 = x_336; -x_223 = x_415; -x_224 = x_324; -x_225 = x_340; -x_226 = x_326; -x_227 = x_341; -x_228 = x_416; -x_229 = x_337; -x_230 = x_334; -x_231 = x_329; -x_232 = x_333; -x_233 = x_331; -goto block_259; +lean_object* x_409; lean_object* x_410; +lean_dec(x_323); +lean_dec_ref(x_254); +x_409 = lean_ctor_get(x_408, 0); +lean_inc(x_409); +x_410 = lean_ctor_get(x_408, 1); +lean_inc(x_410); +lean_dec(x_408); +x_151 = x_332; +x_152 = x_327; +x_153 = x_331; +x_154 = x_320; +x_155 = x_321; +x_156 = lean_box(0); +x_157 = x_335; +x_158 = x_324; +x_159 = x_334; +x_160 = x_326; +x_161 = x_329; +x_162 = x_319; +x_163 = x_330; +x_164 = x_328; +x_165 = x_409; +x_166 = x_410; +x_167 = x_325; +goto block_193; } else { -if (x_323 == 0) +if (x_317 == 0) { -lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; -x_417 = lean_ctor_get(x_414, 0); -lean_inc(x_417); -x_418 = lean_ctor_get(x_414, 1); -lean_inc(x_418); -if (lean_is_exclusive(x_414)) { - lean_ctor_release(x_414, 0); - lean_ctor_release(x_414, 1); - x_419 = x_414; +lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; +lean_inc_ref(x_24); +lean_dec_ref(x_1); +x_411 = lean_ctor_get(x_408, 0); +lean_inc(x_411); +x_412 = lean_ctor_get(x_408, 1); +lean_inc(x_412); +if (lean_is_exclusive(x_408)) { + lean_ctor_release(x_408, 0); + lean_ctor_release(x_408, 1); + x_413 = x_408; } else { - lean_dec_ref(x_414); - x_419 = lean_box(0); + lean_dec_ref(x_408); + x_413 = lean_box(0); } -lean_inc_ref(x_332); -x_420 = lean_array_to_list(x_332); -lean_inc(x_420); -lean_inc(x_19); -x_421 = l_Lean_mkConst(x_19, x_420); -x_422 = l_Lean_mkAppN(x_421, x_329); -lean_inc_ref(x_325); -x_423 = l_Lean_Expr_app___override(x_422, x_325); -x_424 = l_Lean_mkAppN(x_423, x_326); -lean_inc_ref(x_424); -x_425 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___boxed), 9, 1); -lean_closure_set(x_425, 0, x_424); -lean_inc(x_338); -lean_inc_ref(x_337); -lean_inc(x_336); -lean_inc_ref(x_335); -lean_inc_ref(x_333); -x_426 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_425, x_333, x_334, x_335, x_336, x_337, x_338); -if (lean_obj_tag(x_426) == 0) +lean_inc_ref(x_326); +x_414 = lean_array_to_list(x_326); +lean_inc(x_414); +x_415 = l_Lean_mkConst(x_19, x_414); +x_416 = l_Lean_mkAppN(x_415, x_320); +lean_inc_ref(x_321); +x_417 = l_Lean_Expr_app___override(x_416, x_321); +x_418 = l_Lean_mkAppN(x_417, x_325); +lean_inc_ref(x_418); +x_419 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___boxed), 9, 1); +lean_closure_set(x_419, 0, x_418); +lean_inc(x_332); +lean_inc_ref(x_331); +lean_inc(x_330); +lean_inc_ref(x_329); +lean_inc_ref(x_327); +x_420 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_419, x_327, x_328, x_329, x_330, x_331, x_332); +if (lean_obj_tag(x_420) == 0) { -lean_object* x_427; uint8_t x_428; -x_427 = lean_ctor_get(x_426, 0); -lean_inc(x_427); -lean_dec_ref(x_426); -x_428 = lean_unbox(x_427); -lean_dec(x_427); -if (x_428 == 0) +lean_object* x_421; uint8_t x_422; +x_421 = lean_ctor_get(x_420, 0); +lean_inc(x_421); +lean_dec_ref(x_420); +x_422 = lean_unbox(x_421); +lean_dec(x_421); +if (x_422 == 0) { -lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; -lean_inc_ref(x_424); -x_429 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__11___boxed), 9, 1); -lean_closure_set(x_429, 0, x_424); -lean_inc(x_334); -lean_inc_ref(x_333); -x_430 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__9___boxed), 8, 3); +lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; +lean_inc_ref(x_418); +x_423 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__11___boxed), 9, 1); +lean_closure_set(x_423, 0, x_418); +lean_inc(x_328); +lean_inc_ref(x_327); +x_424 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__9___boxed), 8, 3); +lean_closure_set(x_424, 0, x_423); +lean_closure_set(x_424, 1, x_327); +lean_closure_set(x_424, 2, x_328); +x_425 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__8; +lean_inc_ref(x_418); +x_426 = l_Lean_indentExpr(x_418); +if (lean_is_scalar(x_413)) { + x_427 = lean_alloc_ctor(7, 2, 0); +} else { + x_427 = x_413; + lean_ctor_set_tag(x_427, 7); +} +lean_ctor_set(x_427, 0, x_425); +lean_ctor_set(x_427, 1, x_426); +x_428 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__5; +x_429 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_429, 0, x_427); +lean_ctor_set(x_429, 1, x_428); +x_430 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__10), 2, 1); lean_closure_set(x_430, 0, x_429); -lean_closure_set(x_430, 1, x_333); -lean_closure_set(x_430, 2, x_334); -x_431 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__8; -lean_inc_ref(x_424); -x_432 = l_Lean_indentExpr(x_424); -if (lean_is_scalar(x_419)) { - x_433 = lean_alloc_ctor(7, 2, 0); -} else { - x_433 = x_419; - lean_ctor_set_tag(x_433, 7); +lean_inc(x_332); +lean_inc_ref(x_331); +lean_inc(x_330); +lean_inc_ref(x_329); +x_431 = l_Lean_Meta_mapErrorImp___redArg(x_424, x_430, x_329, x_330, x_331, x_332); +if (lean_obj_tag(x_431) == 0) +{ +if (lean_obj_tag(x_431) == 0) +{ +lean_dec_ref(x_431); +x_255 = x_418; +x_256 = x_326; +x_257 = x_319; +x_258 = x_320; +x_259 = x_321; +x_260 = x_411; +x_261 = x_335; +x_262 = x_323; +x_263 = x_324; +x_264 = x_325; +x_265 = x_414; +x_266 = x_334; +x_267 = x_412; +x_268 = x_327; +x_269 = x_328; +x_270 = x_329; +x_271 = x_330; +x_272 = x_331; +x_273 = x_332; +x_274 = lean_box(0); +goto block_316; } -lean_ctor_set(x_433, 0, x_431); -lean_ctor_set(x_433, 1, x_432); -x_434 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__5; -x_435 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_435, 0, x_433); -lean_ctor_set(x_435, 1, x_434); -x_436 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__10), 2, 1); -lean_closure_set(x_436, 0, x_435); -lean_inc(x_338); -lean_inc_ref(x_337); -lean_inc(x_336); -lean_inc_ref(x_335); -x_437 = l_Lean_Meta_mapErrorImp___redArg(x_430, x_436, x_335, x_336, x_337, x_338); -if (lean_obj_tag(x_437) == 0) +else { -if (lean_obj_tag(x_437) == 0) +lean_object* x_432; lean_object* x_433; lean_object* x_434; +lean_dec_ref(x_418); +lean_dec(x_414); +lean_dec(x_412); +lean_dec(x_411); +lean_dec(x_332); +lean_dec_ref(x_331); +lean_dec(x_330); +lean_dec_ref(x_329); +lean_dec(x_328); +lean_dec_ref(x_327); +lean_dec_ref(x_326); +lean_dec_ref(x_325); +lean_dec(x_323); +lean_dec_ref(x_321); +lean_dec_ref(x_320); +lean_dec_ref(x_319); +lean_dec_ref(x_254); +lean_dec_ref(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_18); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_432 = lean_ctor_get(x_431, 0); +lean_inc(x_432); +if (lean_is_exclusive(x_431)) { + lean_ctor_release(x_431, 0); + x_433 = x_431; +} else { + lean_dec_ref(x_431); + x_433 = lean_box(0); +} +if (lean_is_scalar(x_433)) { + x_434 = lean_alloc_ctor(1, 1, 0); +} else { + x_434 = x_433; + lean_ctor_set_tag(x_434, 1); +} +lean_ctor_set(x_434, 0, x_432); +return x_434; +} +} +else { -lean_dec_ref(x_437); -x_261 = x_424; -x_262 = x_324; -x_263 = x_340; -x_264 = x_420; -x_265 = x_326; -x_266 = x_325; -x_267 = x_332; -x_268 = x_341; -x_269 = x_329; -x_270 = x_330; -x_271 = x_331; -x_272 = x_417; -x_273 = x_418; -x_274 = x_333; -x_275 = x_334; -x_276 = x_335; -x_277 = x_336; -x_278 = x_337; -x_279 = x_338; -x_280 = lean_box(0); -goto block_322; +lean_object* x_435; lean_object* x_436; lean_object* x_437; +lean_dec_ref(x_418); +lean_dec(x_414); +lean_dec(x_412); +lean_dec(x_411); +lean_dec(x_332); +lean_dec_ref(x_331); +lean_dec(x_330); +lean_dec_ref(x_329); +lean_dec(x_328); +lean_dec_ref(x_327); +lean_dec_ref(x_326); +lean_dec_ref(x_325); +lean_dec(x_323); +lean_dec_ref(x_321); +lean_dec_ref(x_320); +lean_dec_ref(x_319); +lean_dec_ref(x_254); +lean_dec_ref(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_18); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_435 = lean_ctor_get(x_431, 0); +lean_inc(x_435); +if (lean_is_exclusive(x_431)) { + lean_ctor_release(x_431, 0); + x_436 = x_431; +} else { + lean_dec_ref(x_431); + x_436 = lean_box(0); +} +if (lean_is_scalar(x_436)) { + x_437 = lean_alloc_ctor(1, 1, 0); +} else { + x_437 = x_436; +} +lean_ctor_set(x_437, 0, x_435); +return x_437; +} +} +else +{ +lean_dec(x_413); +x_255 = x_418; +x_256 = x_326; +x_257 = x_319; +x_258 = x_320; +x_259 = x_321; +x_260 = x_411; +x_261 = x_335; +x_262 = x_323; +x_263 = x_324; +x_264 = x_325; +x_265 = x_414; +x_266 = x_334; +x_267 = x_412; +x_268 = x_327; +x_269 = x_328; +x_270 = x_329; +x_271 = x_330; +x_272 = x_331; +x_273 = x_332; +x_274 = lean_box(0); +goto block_316; +} } else { lean_object* x_438; lean_object* x_439; lean_object* x_440; -lean_dec_ref(x_424); -lean_dec(x_420); -lean_dec(x_418); -lean_dec(x_417); -lean_dec(x_338); -lean_dec_ref(x_337); -lean_dec(x_336); -lean_dec_ref(x_335); -lean_dec(x_334); -lean_dec_ref(x_333); -lean_dec_ref(x_332); +lean_dec_ref(x_418); +lean_dec(x_414); +lean_dec(x_413); +lean_dec(x_412); +lean_dec(x_411); +lean_dec(x_332); lean_dec_ref(x_331); lean_dec(x_330); lean_dec_ref(x_329); +lean_dec(x_328); +lean_dec_ref(x_327); lean_dec_ref(x_326); lean_dec_ref(x_325); -lean_dec_ref(x_260); +lean_dec(x_323); +lean_dec_ref(x_321); +lean_dec_ref(x_320); +lean_dec_ref(x_319); +lean_dec_ref(x_254); lean_dec_ref(x_25); +lean_dec_ref(x_24); lean_dec_ref(x_18); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_438 = lean_ctor_get(x_437, 0); +x_438 = lean_ctor_get(x_420, 0); lean_inc(x_438); -if (lean_is_exclusive(x_437)) { - lean_ctor_release(x_437, 0); - x_439 = x_437; +if (lean_is_exclusive(x_420)) { + lean_ctor_release(x_420, 0); + x_439 = x_420; } else { - lean_dec_ref(x_437); + lean_dec_ref(x_420); x_439 = lean_box(0); } if (lean_is_scalar(x_439)) { x_440 = lean_alloc_ctor(1, 1, 0); } else { x_440 = x_439; - lean_ctor_set_tag(x_440, 1); } lean_ctor_set(x_440, 0, x_438); return x_440; @@ -44236,430 +51521,320 @@ return x_440; } else { -lean_object* x_441; lean_object* x_442; lean_object* x_443; -lean_dec_ref(x_424); -lean_dec(x_420); -lean_dec(x_418); -lean_dec(x_417); -lean_dec(x_338); -lean_dec_ref(x_337); -lean_dec(x_336); -lean_dec_ref(x_335); -lean_dec(x_334); -lean_dec_ref(x_333); -lean_dec_ref(x_332); -lean_dec_ref(x_331); -lean_dec(x_330); -lean_dec_ref(x_329); -lean_dec_ref(x_326); -lean_dec_ref(x_325); -lean_dec_ref(x_260); -lean_dec_ref(x_25); -lean_dec_ref(x_18); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_441 = lean_ctor_get(x_437, 0); +lean_object* x_441; lean_object* x_442; +lean_dec(x_323); +lean_dec_ref(x_254); +x_441 = lean_ctor_get(x_408, 0); lean_inc(x_441); -if (lean_is_exclusive(x_437)) { - lean_ctor_release(x_437, 0); - x_442 = x_437; -} else { - lean_dec_ref(x_437); - x_442 = lean_box(0); +x_442 = lean_ctor_get(x_408, 1); +lean_inc(x_442); +lean_dec(x_408); +x_151 = x_332; +x_152 = x_327; +x_153 = x_331; +x_154 = x_320; +x_155 = x_321; +x_156 = lean_box(0); +x_157 = x_335; +x_158 = x_324; +x_159 = x_334; +x_160 = x_326; +x_161 = x_329; +x_162 = x_319; +x_163 = x_330; +x_164 = x_328; +x_165 = x_441; +x_166 = x_442; +x_167 = x_325; +goto block_193; } -if (lean_is_scalar(x_442)) { - x_443 = lean_alloc_ctor(1, 1, 0); -} else { - x_443 = x_442; } -lean_ctor_set(x_443, 0, x_441); -return x_443; } } else { -lean_dec(x_419); -x_261 = x_424; -x_262 = x_324; -x_263 = x_340; -x_264 = x_420; -x_265 = x_326; -x_266 = x_325; -x_267 = x_332; -x_268 = x_341; -x_269 = x_329; -x_270 = x_330; -x_271 = x_331; -x_272 = x_417; -x_273 = x_418; -x_274 = x_333; -x_275 = x_334; -x_276 = x_335; -x_277 = x_336; -x_278 = x_337; -x_279 = x_338; -x_280 = lean_box(0); -goto block_322; -} -} -else -{ -lean_object* x_444; lean_object* x_445; lean_object* x_446; -lean_dec_ref(x_424); -lean_dec(x_420); -lean_dec(x_419); -lean_dec(x_418); -lean_dec(x_417); -lean_dec(x_338); -lean_dec_ref(x_337); -lean_dec(x_336); -lean_dec_ref(x_335); -lean_dec(x_334); -lean_dec_ref(x_333); -lean_dec_ref(x_332); +uint8_t x_443; +lean_dec(x_332); lean_dec_ref(x_331); lean_dec(x_330); lean_dec_ref(x_329); +lean_dec(x_328); +lean_dec_ref(x_327); lean_dec_ref(x_326); lean_dec_ref(x_325); -lean_dec_ref(x_260); +lean_dec(x_323); +lean_dec_ref(x_321); +lean_dec_ref(x_320); +lean_dec_ref(x_319); +lean_dec_ref(x_254); lean_dec_ref(x_25); +lean_dec(x_19); lean_dec_ref(x_18); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_1); -x_444 = lean_ctor_get(x_426, 0); +x_443 = !lean_is_exclusive(x_343); +if (x_443 == 0) +{ +return x_343; +} +else +{ +lean_object* x_444; lean_object* x_445; +x_444 = lean_ctor_get(x_343, 0); lean_inc(x_444); -if (lean_is_exclusive(x_426)) { - lean_ctor_release(x_426, 0); - x_445 = x_426; -} else { - lean_dec_ref(x_426); - x_445 = lean_box(0); -} -if (lean_is_scalar(x_445)) { - x_446 = lean_alloc_ctor(1, 1, 0); -} else { - x_446 = x_445; -} -lean_ctor_set(x_446, 0, x_444); -return x_446; +lean_dec(x_343); +x_445 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_445, 0, x_444); +return x_445; } } -else +} +block_489: { -lean_object* x_447; lean_object* x_448; -lean_dec(x_330); -lean_dec_ref(x_260); -lean_inc(x_19); -x_447 = lean_ctor_get(x_414, 0); -lean_inc(x_447); -x_448 = lean_ctor_get(x_414, 1); -lean_inc(x_448); -lean_dec(x_414); -x_217 = x_338; -x_218 = x_325; -x_219 = x_335; -x_220 = lean_box(0); -x_221 = x_332; -x_222 = x_336; -x_223 = x_447; -x_224 = x_324; -x_225 = x_340; -x_226 = x_326; -x_227 = x_341; -x_228 = x_448; -x_229 = x_337; -x_230 = x_334; -x_231 = x_329; -x_232 = x_333; -x_233 = x_331; -goto block_259; -} -} -} -} -else -{ -uint8_t x_449; -lean_dec(x_338); -lean_dec_ref(x_337); -lean_dec(x_336); -lean_dec_ref(x_335); -lean_dec(x_334); -lean_dec_ref(x_333); -lean_dec_ref(x_332); -lean_dec_ref(x_331); -lean_dec(x_330); -lean_dec_ref(x_329); -lean_dec_ref(x_326); -lean_dec_ref(x_325); -lean_dec_ref(x_260); -lean_dec_ref(x_25); -lean_dec_ref(x_18); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_449 = !lean_is_exclusive(x_349); -if (x_449 == 0) -{ -return x_349; -} -else -{ -lean_object* x_450; lean_object* x_451; -x_450 = lean_ctor_get(x_349, 0); -lean_inc(x_450); -lean_dec(x_349); -x_451 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_451, 0, x_450); -return x_451; -} -} -} -block_495: -{ -size_t x_461; size_t x_462; lean_object* x_463; -x_461 = lean_array_size(x_21); -x_462 = 0; -lean_inc(x_459); -lean_inc_ref(x_458); -lean_inc(x_457); -lean_inc_ref(x_456); -lean_inc(x_455); -lean_inc_ref(x_454); +size_t x_455; size_t x_456; lean_object* x_457; +x_455 = lean_array_size(x_21); +x_456 = 0; +lean_inc(x_453); +lean_inc_ref(x_452); +lean_inc(x_451); +lean_inc_ref(x_450); +lean_inc(x_449); +lean_inc_ref(x_448); lean_inc_ref(x_21); lean_inc_ref(x_4); -x_463 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__4(x_4, x_461, x_462, x_21, x_454, x_455, x_456, x_457, x_458, x_459); -if (lean_obj_tag(x_463) == 0) +x_457 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__4(x_4, x_455, x_456, x_21, x_448, x_449, x_450, x_451, x_452, x_453); +if (lean_obj_tag(x_457) == 0) { -lean_object* x_464; size_t x_465; lean_object* x_466; -x_464 = lean_ctor_get(x_463, 0); -lean_inc(x_464); -lean_dec_ref(x_463); -x_465 = lean_array_size(x_23); -lean_inc(x_459); -lean_inc_ref(x_458); -lean_inc(x_457); -lean_inc_ref(x_456); -lean_inc(x_455); -lean_inc_ref(x_454); +lean_object* x_458; size_t x_459; lean_object* x_460; +x_458 = lean_ctor_get(x_457, 0); +lean_inc(x_458); +lean_dec_ref(x_457); +x_459 = lean_array_size(x_23); +lean_inc(x_453); +lean_inc_ref(x_452); +lean_inc(x_451); +lean_inc_ref(x_450); +lean_inc(x_449); +lean_inc_ref(x_448); lean_inc_ref(x_23); -x_466 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__4(x_4, x_465, x_462, x_23, x_454, x_455, x_456, x_457, x_458, x_459); +x_460 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__4(x_4, x_459, x_456, x_23, x_448, x_449, x_450, x_451, x_452, x_453); +if (lean_obj_tag(x_460) == 0) +{ +lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; uint8_t x_465; lean_object* x_466; +x_461 = lean_ctor_get(x_460, 0); +lean_inc(x_461); +lean_dec_ref(x_460); +x_462 = lean_box(x_3); +x_463 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___boxed__const__1; +lean_inc_ref(x_23); +lean_inc(x_461); +lean_inc_ref(x_18); +x_464 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13___boxed), 15, 6); +lean_closure_set(x_464, 0, x_5); +lean_closure_set(x_464, 1, x_18); +lean_closure_set(x_464, 2, x_461); +lean_closure_set(x_464, 3, x_462); +lean_closure_set(x_464, 4, x_463); +lean_closure_set(x_464, 5, x_23); +x_465 = 0; +lean_inc(x_453); +lean_inc_ref(x_452); +lean_inc(x_451); +lean_inc_ref(x_450); +lean_inc(x_449); +lean_inc_ref(x_448); +lean_inc_ref(x_22); +x_466 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6___redArg(x_22, x_464, x_465, x_448, x_449, x_450, x_451, x_452, x_453); if (lean_obj_tag(x_466) == 0) { -lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; uint8_t x_471; lean_object* x_472; +lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; x_467 = lean_ctor_get(x_466, 0); lean_inc(x_467); lean_dec_ref(x_466); -x_468 = lean_box(x_3); -x_469 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___boxed__const__1; -lean_inc_ref(x_23); -lean_inc(x_467); -lean_inc_ref(x_18); -x_470 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13___boxed), 15, 6); -lean_closure_set(x_470, 0, x_5); -lean_closure_set(x_470, 1, x_18); -lean_closure_set(x_470, 2, x_467); -lean_closure_set(x_470, 3, x_468); -lean_closure_set(x_470, 4, x_469); -lean_closure_set(x_470, 5, x_23); -x_471 = 0; -lean_inc(x_459); -lean_inc_ref(x_458); -lean_inc(x_457); -lean_inc_ref(x_456); -lean_inc(x_455); -lean_inc_ref(x_454); -lean_inc_ref(x_22); -x_472 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6___redArg(x_22, x_470, x_471, x_454, x_455, x_456, x_457, x_458, x_459); -if (lean_obj_tag(x_472) == 0) +x_468 = lean_ctor_get(x_467, 1); +x_469 = lean_ctor_get(x_468, 1); +lean_inc(x_469); +x_470 = lean_ctor_get(x_18, 3); +if (lean_obj_tag(x_470) == 0) { -lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; -x_473 = lean_ctor_get(x_472, 0); -lean_inc(x_473); -lean_dec_ref(x_472); -x_474 = lean_ctor_get(x_473, 1); -x_475 = lean_ctor_get(x_474, 1); -lean_inc(x_475); -x_476 = lean_ctor_get(x_18, 3); -if (lean_obj_tag(x_476) == 0) -{ -lean_object* x_477; lean_object* x_478; lean_object* x_479; -x_477 = lean_ctor_get(x_473, 0); -lean_inc(x_477); -lean_dec(x_473); -x_478 = lean_ctor_get(x_475, 0); -lean_inc(x_478); -x_479 = lean_ctor_get(x_475, 1); -lean_inc(x_479); -lean_dec(x_475); -lean_inc_ref(x_20); -x_324 = x_471; -x_325 = x_477; -x_326 = x_467; -x_327 = x_462; -x_328 = x_478; -x_329 = x_464; -x_330 = x_453; -x_331 = x_479; -x_332 = x_20; -x_333 = x_454; -x_334 = x_455; -x_335 = x_456; -x_336 = x_457; -x_337 = x_458; -x_338 = x_459; -x_339 = lean_box(0); -goto block_452; -} -else -{ -lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; -lean_inc(x_474); -x_480 = lean_ctor_get(x_473, 0); -lean_inc(x_480); -lean_dec(x_473); -x_481 = lean_ctor_get(x_474, 0); -lean_inc(x_481); -lean_dec(x_474); -x_482 = lean_ctor_get(x_475, 0); -lean_inc(x_482); -x_483 = lean_ctor_get(x_475, 1); -lean_inc(x_483); -lean_dec(x_475); -x_484 = lean_ctor_get(x_476, 0); -lean_inc_ref(x_20); -x_485 = lean_array_set(x_20, x_484, x_481); -x_324 = x_471; -x_325 = x_480; -x_326 = x_467; -x_327 = x_462; -x_328 = x_482; -x_329 = x_464; -x_330 = x_453; -x_331 = x_483; -x_332 = x_485; -x_333 = x_454; -x_334 = x_455; -x_335 = x_456; -x_336 = x_457; -x_337 = x_458; -x_338 = x_459; -x_339 = lean_box(0); -goto block_452; -} -} -else -{ -uint8_t x_486; +lean_object* x_471; lean_object* x_472; lean_object* x_473; +x_471 = lean_ctor_get(x_467, 0); +lean_inc(x_471); lean_dec(x_467); -lean_dec(x_464); -lean_dec(x_459); -lean_dec_ref(x_458); -lean_dec(x_457); -lean_dec_ref(x_456); -lean_dec(x_455); -lean_dec_ref(x_454); -lean_dec(x_453); -lean_dec_ref(x_260); -lean_dec_ref(x_25); -lean_dec_ref(x_18); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_486 = !lean_is_exclusive(x_472); -if (x_486 == 0) -{ -return x_472; +x_472 = lean_ctor_get(x_469, 0); +lean_inc(x_472); +x_473 = lean_ctor_get(x_469, 1); +lean_inc(x_473); +lean_dec(x_469); +lean_inc_ref(x_20); +x_318 = x_472; +x_319 = x_473; +x_320 = x_458; +x_321 = x_471; +x_322 = x_456; +x_323 = x_447; +x_324 = x_465; +x_325 = x_461; +x_326 = x_20; +x_327 = x_448; +x_328 = x_449; +x_329 = x_450; +x_330 = x_451; +x_331 = x_452; +x_332 = x_453; +x_333 = lean_box(0); +goto block_446; } else { -lean_object* x_487; lean_object* x_488; -x_487 = lean_ctor_get(x_472, 0); -lean_inc(x_487); -lean_dec(x_472); -x_488 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_488, 0, x_487); -return x_488; -} +lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; +lean_inc(x_468); +x_474 = lean_ctor_get(x_467, 0); +lean_inc(x_474); +lean_dec(x_467); +x_475 = lean_ctor_get(x_468, 0); +lean_inc(x_475); +lean_dec(x_468); +x_476 = lean_ctor_get(x_469, 0); +lean_inc(x_476); +x_477 = lean_ctor_get(x_469, 1); +lean_inc(x_477); +lean_dec(x_469); +x_478 = lean_ctor_get(x_470, 0); +lean_inc_ref(x_20); +x_479 = lean_array_set(x_20, x_478, x_475); +x_318 = x_476; +x_319 = x_477; +x_320 = x_458; +x_321 = x_474; +x_322 = x_456; +x_323 = x_447; +x_324 = x_465; +x_325 = x_461; +x_326 = x_479; +x_327 = x_448; +x_328 = x_449; +x_329 = x_450; +x_330 = x_451; +x_331 = x_452; +x_332 = x_453; +x_333 = lean_box(0); +goto block_446; } } else { -uint8_t x_489; -lean_dec(x_464); -lean_dec(x_459); -lean_dec_ref(x_458); -lean_dec(x_457); -lean_dec_ref(x_456); -lean_dec(x_455); -lean_dec_ref(x_454); +uint8_t x_480; +lean_dec(x_461); +lean_dec(x_458); lean_dec(x_453); -lean_dec_ref(x_260); +lean_dec_ref(x_452); +lean_dec(x_451); +lean_dec_ref(x_450); +lean_dec(x_449); +lean_dec_ref(x_448); +lean_dec(x_447); +lean_dec_ref(x_254); lean_dec_ref(x_25); +lean_dec(x_19); lean_dec_ref(x_18); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); lean_dec_ref(x_1); -x_489 = !lean_is_exclusive(x_466); -if (x_489 == 0) +x_480 = !lean_is_exclusive(x_466); +if (x_480 == 0) { return x_466; } else { -lean_object* x_490; lean_object* x_491; -x_490 = lean_ctor_get(x_466, 0); -lean_inc(x_490); +lean_object* x_481; lean_object* x_482; +x_481 = lean_ctor_get(x_466, 0); +lean_inc(x_481); lean_dec(x_466); -x_491 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_491, 0, x_490); -return x_491; +x_482 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_482, 0, x_481); +return x_482; } } } else { -uint8_t x_492; -lean_dec(x_459); -lean_dec_ref(x_458); -lean_dec(x_457); -lean_dec_ref(x_456); -lean_dec(x_455); -lean_dec_ref(x_454); +uint8_t x_483; +lean_dec(x_458); lean_dec(x_453); -lean_dec_ref(x_260); +lean_dec_ref(x_452); +lean_dec(x_451); +lean_dec_ref(x_450); +lean_dec(x_449); +lean_dec_ref(x_448); +lean_dec(x_447); +lean_dec_ref(x_254); lean_dec_ref(x_25); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_1); +x_483 = !lean_is_exclusive(x_460); +if (x_483 == 0) +{ +return x_460; +} +else +{ +lean_object* x_484; lean_object* x_485; +x_484 = lean_ctor_get(x_460, 0); +lean_inc(x_484); +lean_dec(x_460); +x_485 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_485, 0, x_484); +return x_485; +} +} +} +else +{ +uint8_t x_486; +lean_dec(x_453); +lean_dec_ref(x_452); +lean_dec(x_451); +lean_dec_ref(x_450); +lean_dec(x_449); +lean_dec_ref(x_448); +lean_dec(x_447); +lean_dec_ref(x_254); +lean_dec_ref(x_25); +lean_dec(x_19); lean_dec_ref(x_18); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_492 = !lean_is_exclusive(x_463); -if (x_492 == 0) +x_486 = !lean_is_exclusive(x_457); +if (x_486 == 0) { -return x_463; +return x_457; } else { -lean_object* x_493; lean_object* x_494; -x_493 = lean_ctor_get(x_463, 0); -lean_inc(x_493); -lean_dec(x_463); -x_494 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_494, 0, x_493); -return x_494; +lean_object* x_487; lean_object* x_488; +x_487 = lean_ctor_get(x_457, 0); +lean_inc(x_487); +lean_dec(x_457); +x_488 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_488, 0, x_487); +return x_488; } } } } else { -uint8_t x_513; +uint8_t x_507; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -44671,20 +51846,20 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_513 = !lean_is_exclusive(x_16); -if (x_513 == 0) +x_507 = !lean_is_exclusive(x_16); +if (x_507 == 0) { return x_16; } else { -lean_object* x_514; lean_object* x_515; -x_514 = lean_ctor_get(x_16, 0); -lean_inc(x_514); +lean_object* x_508; lean_object* x_509; +x_508 = lean_ctor_get(x_16, 0); +lean_inc(x_508); lean_dec(x_16); -x_515 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_515, 0, x_514); -return x_515; +x_509 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_509, 0, x_508); +return x_509; } } } @@ -53360,37 +60535,53 @@ lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_7); lean_dec_ref(x_6); return x_13; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_12; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -53398,11 +60589,11 @@ lean_dec_ref(x_2); return x_11; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -53410,14 +60601,14 @@ lean_dec_ref(x_2); return x_11; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; x_14 = lean_unbox(x_3); x_15 = lean_unbox(x_4); x_16 = lean_unbox(x_5); -x_17 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__2(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__2(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); @@ -53429,7 +60620,7 @@ lean_dec_ref(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -53453,14 +60644,14 @@ _start: uint8_t x_19; uint8_t x_20; lean_object* x_21; x_19 = lean_unbox(x_8); x_20 = lean_unbox(x_9); -x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); lean_dec_ref(x_10); lean_dec_ref(x_7); lean_dec_ref(x_2); return x_21; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__4___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__4___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -53484,11 +60675,11 @@ _start: uint8_t x_19; uint8_t x_20; lean_object* x_21; x_19 = lean_unbox(x_7); x_20 = lean_unbox(x_8); -x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_19, x_20, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_19, x_20, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_21; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__5___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__5___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -53512,15 +60703,15 @@ _start: uint8_t x_19; uint8_t x_20; lean_object* x_21; x_19 = lean_unbox(x_6); x_20 = lean_unbox(x_7); -x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__5(x_1, x_2, x_3, x_4, x_5, x_19, x_20, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__5(x_1, x_2, x_3, x_4, x_5, x_19, x_20, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_21; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -53528,7 +60719,7 @@ lean_dec_ref(x_2); return x_11; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -53551,28 +60742,29 @@ lean_object* x_19 = _args[18]; lean_object* x_20 = _args[19]; _start: { -uint8_t x_21; uint8_t x_22; lean_object* x_23; -x_21 = lean_unbox(x_5); -x_22 = lean_unbox(x_6); -x_23 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6(x_1, x_2, x_3, x_4, x_21, x_22, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +uint8_t x_21; uint8_t x_22; uint8_t x_23; lean_object* x_24; +x_21 = lean_unbox(x_6); +x_22 = lean_unbox(x_7); +x_23 = lean_unbox(x_10); +x_24 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6(x_1, x_2, x_3, x_4, x_5, x_21, x_22, x_8, x_9, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -return x_23; +lean_dec_ref(x_1); +return x_24; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; -x_17 = lean_unbox(x_2); -x_18 = lean_unbox(x_3); -x_19 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg(x_1, x_17, x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_17 = lean_unbox(x_3); +x_18 = lean_unbox(x_4); +x_19 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg(x_1, x_2, x_17, x_18, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_7); +lean_dec(x_1); return x_19; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -53598,19 +60790,85 @@ lean_object* x_22 = _args[21]; _start: { uint8_t x_23; uint8_t x_24; lean_object* x_25; -x_23 = lean_unbox(x_2); -x_24 = lean_unbox(x_3); -x_25 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14(x_1, x_23, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +x_23 = lean_unbox(x_3); +x_24 = lean_unbox(x_4); +x_25 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16(x_1, x_2, x_23, x_24, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); lean_dec(x_11); lean_dec(x_10); +lean_dec(x_1); return x_25; } } -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +_start: +{ +uint8_t x_18; uint8_t x_19; lean_object* x_20; +x_18 = lean_unbox(x_3); +x_19 = lean_unbox(x_4); +x_20 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg(x_1, x_2, x_18, x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_1); +return x_20; +} +} +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; +_start: +{ +uint8_t x_23; uint8_t x_24; lean_object* x_25; +x_23 = lean_unbox(x_3); +x_24 = lean_unbox(x_4); +x_25 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16(x_1, x_2, x_23, x_24, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_1); +return x_25; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__18___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__18___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -53621,11 +60879,11 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__18(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_3); return x_9; } @@ -55575,7 +62833,7 @@ return x_11; LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_logErrorAt___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__1_spec__1___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_10; uint8_t x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; uint8_t x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_77; lean_object* x_78; uint8_t x_79; uint8_t x_80; uint8_t x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_88; lean_object* x_89; uint8_t x_90; uint8_t x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; uint8_t x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; +uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_50; uint8_t x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_77; uint8_t x_78; uint8_t x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; lean_object* x_88; lean_object* x_89; uint8_t x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; uint8_t x_94; uint8_t x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; x_100 = 2; x_125 = l_Lean_instBEqMessageSeverity_beq(x_3, x_100); if (x_125 == 0) @@ -55610,15 +62868,15 @@ lean_ctor_set(x_25, 0, x_21); lean_ctor_set(x_25, 1, x_22); x_26 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_13); +lean_ctor_set(x_26, 1, x_12); x_27 = lean_alloc_ctor(0, 5, 3); lean_ctor_set(x_27, 0, x_15); -lean_ctor_set(x_27, 1, x_16); +lean_ctor_set(x_27, 1, x_13); lean_ctor_set(x_27, 2, x_14); -lean_ctor_set(x_27, 3, x_10); +lean_ctor_set(x_27, 3, x_11); lean_ctor_set(x_27, 4, x_26); -lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_12); -lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_11); +lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_16); +lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_10); lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 2, x_4); x_28 = l_Lean_MessageLog_add(x_27, x_24); lean_ctor_set(x_20, 6, x_28); @@ -55655,15 +62913,15 @@ lean_ctor_set(x_41, 0, x_21); lean_ctor_set(x_41, 1, x_22); x_42 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_13); +lean_ctor_set(x_42, 1, x_12); x_43 = lean_alloc_ctor(0, 5, 3); lean_ctor_set(x_43, 0, x_15); -lean_ctor_set(x_43, 1, x_16); +lean_ctor_set(x_43, 1, x_13); lean_ctor_set(x_43, 2, x_14); -lean_ctor_set(x_43, 3, x_10); +lean_ctor_set(x_43, 3, x_11); lean_ctor_set(x_43, 4, x_42); -lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_12); -lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_11); +lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_16); +lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_10); lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 2, x_4); x_44 = l_Lean_MessageLog_add(x_43, x_38); x_45 = lean_alloc_ctor(0, 9, 0); @@ -55693,25 +62951,25 @@ if (x_60 == 0) { lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_61 = lean_ctor_get(x_59, 0); -lean_inc_ref(x_52); -x_62 = l_Lean_FileMap_toPosition(x_52, x_51); -lean_dec(x_51); -x_63 = l_Lean_FileMap_toPosition(x_52, x_57); +lean_inc_ref(x_54); +x_62 = l_Lean_FileMap_toPosition(x_54, x_53); +lean_dec(x_53); +x_63 = l_Lean_FileMap_toPosition(x_54, x_57); lean_dec(x_57); x_64 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_64, 0, x_63); x_65 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___lam__1___closed__1; -if (x_55 == 0) +if (x_52 == 0) { lean_free_object(x_59); lean_dec_ref(x_50); -x_10 = x_65; -x_11 = x_53; -x_12 = x_54; -x_13 = x_61; +x_10 = x_51; +x_11 = x_65; +x_12 = x_61; +x_13 = x_62; x_14 = x_64; -x_15 = x_56; -x_16 = x_62; +x_15 = x_55; +x_16 = x_56; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -55728,7 +62986,7 @@ lean_object* x_67; lean_dec_ref(x_64); lean_dec_ref(x_62); lean_dec(x_61); -lean_dec_ref(x_56); +lean_dec_ref(x_55); lean_dec_ref(x_7); x_67 = lean_box(0); lean_ctor_set(x_59, 0, x_67); @@ -55737,13 +62995,13 @@ return x_59; else { lean_free_object(x_59); -x_10 = x_65; -x_11 = x_53; -x_12 = x_54; -x_13 = x_61; +x_10 = x_51; +x_11 = x_65; +x_12 = x_61; +x_13 = x_62; x_14 = x_64; -x_15 = x_56; -x_16 = x_62; +x_15 = x_55; +x_16 = x_56; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -55757,24 +63015,24 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean x_68 = lean_ctor_get(x_59, 0); lean_inc(x_68); lean_dec(x_59); -lean_inc_ref(x_52); -x_69 = l_Lean_FileMap_toPosition(x_52, x_51); -lean_dec(x_51); -x_70 = l_Lean_FileMap_toPosition(x_52, x_57); +lean_inc_ref(x_54); +x_69 = l_Lean_FileMap_toPosition(x_54, x_53); +lean_dec(x_53); +x_70 = l_Lean_FileMap_toPosition(x_54, x_57); lean_dec(x_57); x_71 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_71, 0, x_70); x_72 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___lam__1___closed__1; -if (x_55 == 0) +if (x_52 == 0) { lean_dec_ref(x_50); -x_10 = x_72; -x_11 = x_53; -x_12 = x_54; -x_13 = x_68; +x_10 = x_51; +x_11 = x_72; +x_12 = x_68; +x_13 = x_69; x_14 = x_71; -x_15 = x_56; -x_16 = x_69; +x_15 = x_55; +x_16 = x_56; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -55791,7 +63049,7 @@ lean_object* x_74; lean_object* x_75; lean_dec_ref(x_71); lean_dec_ref(x_69); lean_dec(x_68); -lean_dec_ref(x_56); +lean_dec_ref(x_55); lean_dec_ref(x_7); x_74 = lean_box(0); x_75 = lean_alloc_ctor(0, 1, 0); @@ -55800,13 +63058,13 @@ return x_75; } else { -x_10 = x_72; -x_11 = x_53; -x_12 = x_54; -x_13 = x_68; +x_10 = x_51; +x_11 = x_72; +x_12 = x_68; +x_13 = x_69; x_14 = x_71; -x_15 = x_56; -x_16 = x_69; +x_15 = x_55; +x_16 = x_56; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -55818,18 +63076,18 @@ goto block_49; block_87: { lean_object* x_85; -x_85 = l_Lean_Syntax_getTailPos_x3f(x_83, x_80); -lean_dec(x_83); +x_85 = l_Lean_Syntax_getTailPos_x3f(x_80, x_83); +lean_dec(x_80); if (lean_obj_tag(x_85) == 0) { lean_inc(x_84); x_50 = x_77; -x_51 = x_84; -x_52 = x_78; -x_53 = x_79; -x_54 = x_80; -x_55 = x_81; -x_56 = x_82; +x_51 = x_78; +x_52 = x_79; +x_53 = x_84; +x_54 = x_81; +x_55 = x_82; +x_56 = x_83; x_57 = x_84; goto block_76; } @@ -55840,12 +63098,12 @@ x_86 = lean_ctor_get(x_85, 0); lean_inc(x_86); lean_dec_ref(x_85); x_50 = x_77; -x_51 = x_84; -x_52 = x_78; -x_53 = x_79; -x_54 = x_80; -x_55 = x_81; -x_56 = x_82; +x_51 = x_78; +x_52 = x_79; +x_53 = x_84; +x_54 = x_81; +x_55 = x_82; +x_56 = x_83; x_57 = x_86; goto block_76; } @@ -55853,20 +63111,20 @@ goto block_76; block_99: { lean_object* x_95; lean_object* x_96; -x_95 = l_Lean_replaceRef(x_1, x_93); -lean_dec(x_93); -x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_90); +x_95 = l_Lean_replaceRef(x_1, x_89); +lean_dec(x_89); +x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_93); if (lean_obj_tag(x_96) == 0) { lean_object* x_97; x_97 = lean_unsigned_to_nat(0u); x_77 = x_88; -x_78 = x_89; -x_79 = x_94; -x_80 = x_90; +x_78 = x_94; +x_79 = x_90; +x_80 = x_95; x_81 = x_91; x_82 = x_92; -x_83 = x_95; +x_83 = x_93; x_84 = x_97; goto block_87; } @@ -55877,12 +63135,12 @@ x_98 = lean_ctor_get(x_96, 0); lean_inc(x_98); lean_dec_ref(x_96); x_77 = x_88; -x_78 = x_89; -x_79 = x_94; -x_80 = x_90; +x_78 = x_94; +x_79 = x_90; +x_80 = x_95; x_81 = x_91; x_82 = x_92; -x_83 = x_95; +x_83 = x_93; x_84 = x_98; goto block_87; } @@ -55891,23 +63149,23 @@ block_108: { if (x_107 == 0) { -x_88 = x_104; +x_88 = x_105; x_89 = x_101; -x_90 = x_106; -x_91 = x_102; -x_92 = x_103; -x_93 = x_105; +x_90 = x_102; +x_91 = x_103; +x_92 = x_104; +x_93 = x_106; x_94 = x_3; goto block_99; } else { -x_88 = x_104; +x_88 = x_105; x_89 = x_101; -x_90 = x_106; -x_91 = x_102; -x_92 = x_103; -x_93 = x_105; +x_90 = x_102; +x_91 = x_103; +x_92 = x_104; +x_93 = x_106; x_94 = x_100; goto block_99; } @@ -55931,14 +63189,14 @@ x_118 = 1; x_119 = l_Lean_instBEqMessageSeverity_beq(x_3, x_118); if (x_119 == 0) { -lean_inc(x_113); lean_inc_ref(x_110); lean_inc_ref(x_111); -x_101 = x_111; +lean_inc(x_113); +x_101 = x_113; x_102 = x_114; -x_103 = x_110; -x_104 = x_117; -x_105 = x_113; +x_103 = x_111; +x_104 = x_110; +x_105 = x_117; x_106 = x_109; x_107 = x_119; goto block_108; @@ -55948,14 +63206,14 @@ else lean_object* x_120; uint8_t x_121; x_120 = l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10_spec__10_spec__10___closed__0; x_121 = l_Lean_Option_get___at___00Lean_withTraceNode___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__24_spec__25(x_112, x_120); -lean_inc(x_113); lean_inc_ref(x_110); lean_inc_ref(x_111); -x_101 = x_111; +lean_inc(x_113); +x_101 = x_113; x_102 = x_114; -x_103 = x_110; -x_104 = x_117; -x_105 = x_113; +x_103 = x_111; +x_104 = x_110; +x_105 = x_117; x_106 = x_109; x_107 = x_121; goto block_108; @@ -59300,7 +66558,7 @@ return x_27; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_137; lean_object* x_138; lean_object* x_147; lean_object* x_148; uint8_t x_149; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; uint8_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_137; lean_object* x_138; lean_object* x_147; lean_object* x_148; uint8_t x_149; x_28 = lean_box(0); x_29 = lean_unsigned_to_nat(0u); x_30 = l_Lean_Syntax_getArg(x_14, x_29); @@ -59434,7 +66692,7 @@ if (x_71 == 0) { lean_object* x_72; lean_object* x_73; lean_dec_ref(x_68); -lean_dec(x_66); +lean_dec(x_67); lean_dec_ref(x_35); lean_dec(x_23); x_72 = l_Lean_Elab_Tactic_Do_elabInvariants___closed__11; @@ -59463,7 +66721,7 @@ x_75 = 0; x_76 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__5___redArg(x_74, x_75, x_68); x_77 = l_Array_append___redArg(x_35, x_76); lean_dec_ref(x_76); -x_78 = l_Lean_SourceInfo_fromRef(x_23, x_67); +x_78 = l_Lean_SourceInfo_fromRef(x_23, x_66); lean_dec(x_23); x_79 = l_Lean_Elab_Tactic_Do_elabInvariants___closed__14; lean_inc(x_78); @@ -59471,7 +66729,7 @@ x_80 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_80, 0, x_78); lean_ctor_set(x_80, 1, x_79); lean_inc(x_78); -x_81 = l_Lean_Syntax_node1(x_78, x_66, x_80); +x_81 = l_Lean_Syntax_node1(x_78, x_67, x_80); lean_inc(x_78); x_82 = l_Lean_Syntax_node1(x_78, x_36, x_81); x_83 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13_spec__13___redArg___closed__11; @@ -59603,8 +66861,8 @@ if (x_113 == 0) lean_dec(x_111); lean_dec_ref(x_96); lean_dec_ref(x_3); -x_66 = x_109; -x_67 = x_110; +x_66 = x_110; +x_67 = x_109; x_68 = x_112; x_69 = lean_box(0); goto block_94; @@ -59629,8 +66887,8 @@ lean_object* x_115; x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); lean_dec_ref(x_114); -x_66 = x_109; -x_67 = x_110; +x_66 = x_110; +x_67 = x_109; x_68 = x_115; x_69 = lean_box(0); goto block_94; @@ -59922,7 +67180,7 @@ return x_181; } else { -lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; uint8_t x_191; lean_object* x_192; lean_object* x_193; lean_object* x_220; uint8_t x_221; lean_object* x_222; lean_object* x_223; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_291; lean_object* x_292; lean_object* x_301; lean_object* x_302; uint8_t x_303; +lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; uint8_t x_191; lean_object* x_192; lean_object* x_193; uint8_t x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_291; lean_object* x_292; lean_object* x_301; lean_object* x_302; uint8_t x_303; x_182 = lean_box(0); x_183 = lean_unsigned_to_nat(0u); x_184 = l_Lean_Syntax_getArg(x_14, x_183); @@ -60056,7 +67314,7 @@ if (x_225 == 0) { lean_object* x_226; lean_object* x_227; lean_dec_ref(x_222); -lean_dec(x_220); +lean_dec(x_221); lean_dec_ref(x_189); lean_dec(x_176); x_226 = l_Lean_Elab_Tactic_Do_elabInvariants___closed__11; @@ -60085,7 +67343,7 @@ x_229 = 0; x_230 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__5___redArg(x_228, x_229, x_222); x_231 = l_Array_append___redArg(x_189, x_230); lean_dec_ref(x_230); -x_232 = l_Lean_SourceInfo_fromRef(x_176, x_221); +x_232 = l_Lean_SourceInfo_fromRef(x_176, x_220); lean_dec(x_176); x_233 = l_Lean_Elab_Tactic_Do_elabInvariants___closed__14; lean_inc(x_232); @@ -60093,7 +67351,7 @@ x_234 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_234, 0, x_232); lean_ctor_set(x_234, 1, x_233); lean_inc(x_232); -x_235 = l_Lean_Syntax_node1(x_232, x_220, x_234); +x_235 = l_Lean_Syntax_node1(x_232, x_221, x_234); lean_inc(x_232); x_236 = l_Lean_Syntax_node1(x_232, x_190, x_235); x_237 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__13_spec__13___redArg___closed__11; @@ -60226,8 +67484,8 @@ if (x_267 == 0) lean_dec(x_265); lean_dec_ref(x_250); lean_dec_ref(x_3); -x_220 = x_263; -x_221 = x_264; +x_220 = x_264; +x_221 = x_263; x_222 = x_266; x_223 = lean_box(0); goto block_248; @@ -60252,8 +67510,8 @@ lean_object* x_269; x_269 = lean_ctor_get(x_268, 0); lean_inc(x_269); lean_dec_ref(x_268); -x_220 = x_263; -x_221 = x_264; +x_220 = x_264; +x_221 = x_263; x_222 = x_269; x_223 = lean_box(0); goto block_248; @@ -65677,22 +72935,38 @@ l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_Matcher lean_mark_persistent(l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10_spec__10_spec__10___lam__3___closed__2); l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10_spec__10_spec__10___closed__0 = _init_l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10_spec__10_spec__10___closed__0(); lean_mark_persistent(l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10_spec__10_spec__10___closed__0); -l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___closed__0 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___closed__0(); -lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___closed__0); -l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___closed__1 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___closed__1(); -lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__3___closed__1); -l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__0 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__0(); -lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__0); -l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__1 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__1(); -lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__1); -l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__2 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__2(); -lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__2); -l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__3 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__3(); -lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__3); -l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__4 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__4(); -lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__4); -l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__5 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__5(); -lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__14___redArg___lam__6___closed__5); +l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__0 = _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__0(); +lean_mark_persistent(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__0); +l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__1 = _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__1(); +lean_mark_persistent(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__13___closed__1); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___closed__0 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___closed__0(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___closed__0); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___closed__1 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___closed__1(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__3___closed__1); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__0 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__0(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__0); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__1 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__1(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__1); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__2 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__2(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__2); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__3 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__3(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__3); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__4 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__4(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__4); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__5 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__5(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__5); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__6 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__6(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__6); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__7 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__7(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__7); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__8 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__8(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__8); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__9 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__9(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___lam__6___closed__9); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__0 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__0(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__0); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16_spec__16___redArg___closed__1); l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13___closed__0 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13___closed__0(); lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13___closed__0); l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13___closed__1 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13___closed__1(); diff --git a/stage0/stdlib/Lean/Environment.c b/stage0/stdlib/Lean/Environment.c index 139e098c73..b2313b53d4 100644 --- a/stage0/stdlib/Lean/Environment.c +++ b/stage0/stdlib/Lean/Environment.c @@ -27185,7 +27185,7 @@ static lean_object* _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Un _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("cannot import non`-module` ", 27, 27); +x_1 = lean_mk_string_unchecked("cannot import non-`module` ", 27, 27); return x_1; } } diff --git a/stage0/stdlib/Lean/ErrorExplanation.c b/stage0/stdlib/Lean/ErrorExplanation.c index 733e04961d..03f3f95bce 100644 --- a/stage0/stdlib/Lean/ErrorExplanation.c +++ b/stage0/stdlib/Lean/ErrorExplanation.c @@ -2605,8 +2605,8 @@ uint32_t x_37; lean_object* x_38; lean_object* x_39; lean_dec_ref(x_29); lean_dec(x_12); x_37 = lean_string_utf8_get_fast(x_30, x_31); -lean_inc(x_30); x_38 = lean_string_utf8_next_fast(x_30, x_31); +lean_dec(x_31); x_39 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_39, 0, x_30); lean_ctor_set(x_39, 1, x_38); @@ -2711,8 +2711,6 @@ goto block_46; else { lean_object* x_72; lean_object* x_73; uint8_t x_74; -lean_inc(x_59); -lean_inc(x_58); x_72 = lean_string_utf8_next_fast(x_58, x_59); lean_inc(x_72); lean_inc(x_58); @@ -2760,8 +2758,8 @@ lean_object* x_80; lean_object* x_81; lean_dec_ref(x_73); lean_dec(x_59); lean_dec(x_12); -lean_inc(x_58); x_80 = lean_string_utf8_next_fast(x_58, x_72); +lean_dec(x_72); x_81 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_81, 0, x_58); lean_ctor_set(x_81, 1, x_80); @@ -3284,7 +3282,6 @@ if (x_3 == 0) lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; x_4 = lean_ctor_get(x_2, 0); x_5 = lean_ctor_get(x_2, 1); -lean_inc(x_4); x_6 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_4, x_5); lean_ctor_set(x_2, 1, x_6); x_7 = lean_box(0); @@ -3301,7 +3298,6 @@ x_10 = lean_ctor_get(x_2, 1); lean_inc(x_10); lean_inc(x_9); lean_dec(x_2); -lean_inc(x_9); x_11 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_9, x_10); x_12 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_12, 0, x_9); @@ -3429,10 +3425,7 @@ return x_19; else { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -lean_inc(x_12); -lean_inc(x_11); x_20 = lean_string_utf8_next_fast(x_11, x_12); -lean_inc(x_11); x_21 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_11, x_20); lean_inc(x_11); x_22 = lean_alloc_ctor(0, 2, 0); @@ -3453,7 +3446,6 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; x_27 = lean_ctor_get(x_24, 0); x_28 = lean_ctor_get(x_24, 1); -lean_inc(x_27); x_29 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_27, x_28); lean_ctor_set(x_24, 1, x_29); x_30 = l___private_Lean_ErrorExplanation_0__Lean_ErrorExplanation_CodeInfo_parse_namedAttr___closed__4; @@ -3516,8 +3508,8 @@ else { lean_object* x_47; lean_object* x_48; lean_free_object(x_34); -lean_inc(x_39); x_47 = lean_string_utf8_next_fast(x_39, x_40); +lean_dec(x_40); lean_ctor_set(x_36, 1, x_47); x_48 = l___private_Lean_ErrorExplanation_0__Lean_ErrorExplanation_CodeInfo_parse_stringContents(x_36); if (lean_obj_tag(x_48) == 0) @@ -3573,8 +3565,8 @@ else { lean_object* x_60; lean_object* x_61; uint8_t x_62; lean_free_object(x_48); -lean_inc(x_53); x_60 = lean_string_utf8_next_fast(x_53, x_54); +lean_dec(x_54); lean_ctor_set(x_50, 1, x_60); x_61 = l___private_Lean_ErrorExplanation_0__Lean_ErrorExplanation_CodeInfo_parse_namedAttr___lam__0(x_33, x_50); x_62 = !lean_is_exclusive(x_61); @@ -3636,8 +3628,8 @@ x_75 = lean_ctor_get(x_1, 1); lean_dec(x_75); x_76 = lean_ctor_get(x_1, 0); lean_dec(x_76); -lean_inc(x_66); x_77 = lean_string_utf8_next_fast(x_66, x_67); +lean_dec(x_67); lean_ctor_set(x_63, 1, x_77); lean_ctor_set(x_1, 1, x_52); lean_ctor_set(x_1, 0, x_25); @@ -3648,8 +3640,8 @@ else { lean_object* x_78; lean_object* x_79; lean_dec(x_1); -lean_inc(x_66); x_78 = lean_string_utf8_next_fast(x_66, x_67); +lean_dec(x_67); lean_ctor_set(x_63, 1, x_78); x_79 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_79, 0, x_25); @@ -3723,8 +3715,8 @@ if (lean_is_exclusive(x_1)) { lean_dec_ref(x_1); x_88 = lean_box(0); } -lean_inc(x_80); x_89 = lean_string_utf8_next_fast(x_80, x_81); +lean_dec(x_81); x_90 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_90, 0, x_80); lean_ctor_set(x_90, 1, x_89); @@ -3815,8 +3807,8 @@ if (lean_is_exclusive(x_1)) { lean_dec_ref(x_1); x_103 = lean_box(0); } -lean_inc(x_93); x_104 = lean_string_utf8_next_fast(x_93, x_94); +lean_dec(x_94); if (lean_is_scalar(x_95)) { x_105 = lean_alloc_ctor(0, 2, 0); } else { @@ -3907,8 +3899,8 @@ else { lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_free_object(x_48); -lean_inc(x_109); x_116 = lean_string_utf8_next_fast(x_109, x_110); +lean_dec(x_110); x_117 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_117, 0, x_109); lean_ctor_set(x_117, 1, x_116); @@ -3986,8 +3978,8 @@ if (lean_is_exclusive(x_1)) { lean_dec_ref(x_1); x_131 = lean_box(0); } -lean_inc(x_121); x_132 = lean_string_utf8_next_fast(x_121, x_122); +lean_dec(x_122); if (lean_is_scalar(x_123)) { x_133 = lean_alloc_ctor(0, 2, 0); } else { @@ -4093,8 +4085,8 @@ return x_146; else { lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; uint8_t x_156; -lean_inc(x_138); x_147 = lean_string_utf8_next_fast(x_138, x_139); +lean_dec(x_139); if (lean_is_scalar(x_140)) { x_148 = lean_alloc_ctor(0, 2, 0); } else { @@ -4176,8 +4168,8 @@ if (lean_is_exclusive(x_1)) { lean_dec_ref(x_1); x_162 = lean_box(0); } -lean_inc(x_152); x_163 = lean_string_utf8_next_fast(x_152, x_153); +lean_dec(x_153); if (lean_is_scalar(x_154)) { x_164 = lean_alloc_ctor(0, 2, 0); } else { @@ -4308,8 +4300,8 @@ else { lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_free_object(x_34); -lean_inc(x_171); x_179 = lean_string_utf8_next_fast(x_171, x_172); +lean_dec(x_172); x_180 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_180, 0, x_171); lean_ctor_set(x_180, 1, x_179); @@ -4384,8 +4376,8 @@ else { lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; uint8_t x_203; lean_dec(x_184); -lean_inc(x_185); x_194 = lean_string_utf8_next_fast(x_185, x_186); +lean_dec(x_186); if (lean_is_scalar(x_187)) { x_195 = lean_alloc_ctor(0, 2, 0); } else { @@ -4467,8 +4459,8 @@ if (lean_is_exclusive(x_1)) { lean_dec_ref(x_1); x_209 = lean_box(0); } -lean_inc(x_199); x_210 = lean_string_utf8_next_fast(x_199, x_200); +lean_dec(x_200); if (lean_is_scalar(x_201)) { x_211 = lean_alloc_ctor(0, 2, 0); } else { @@ -4607,8 +4599,8 @@ return x_227; else { lean_object* x_228; lean_object* x_229; lean_object* x_230; -lean_inc(x_218); x_228 = lean_string_utf8_next_fast(x_218, x_219); +lean_dec(x_219); if (lean_is_scalar(x_220)) { x_229 = lean_alloc_ctor(0, 2, 0); } else { @@ -4687,8 +4679,8 @@ else { lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; uint8_t x_252; lean_dec(x_233); -lean_inc(x_234); x_243 = lean_string_utf8_next_fast(x_234, x_235); +lean_dec(x_235); if (lean_is_scalar(x_236)) { x_244 = lean_alloc_ctor(0, 2, 0); } else { @@ -4770,8 +4762,8 @@ if (lean_is_exclusive(x_1)) { lean_dec_ref(x_1); x_258 = lean_box(0); } -lean_inc(x_248); x_259 = lean_string_utf8_next_fast(x_248, x_249); +lean_dec(x_249); if (lean_is_scalar(x_250)) { x_260 = lean_alloc_ctor(0, 2, 0); } else { @@ -4891,7 +4883,6 @@ x_271 = lean_ctor_get(x_24, 1); lean_inc(x_271); lean_inc(x_270); lean_dec(x_24); -lean_inc(x_270); x_272 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_270, x_271); x_273 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_273, 0, x_270); @@ -4970,8 +4961,8 @@ else { lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_dec(x_280); -lean_inc(x_281); x_291 = lean_string_utf8_next_fast(x_281, x_282); +lean_dec(x_282); if (lean_is_scalar(x_283)) { x_292 = lean_alloc_ctor(0, 2, 0); } else { @@ -5050,8 +5041,8 @@ else { lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_dec(x_296); -lean_inc(x_297); x_306 = lean_string_utf8_next_fast(x_297, x_298); +lean_dec(x_298); if (lean_is_scalar(x_299)) { x_307 = lean_alloc_ctor(0, 2, 0); } else { @@ -5133,8 +5124,8 @@ if (lean_is_exclusive(x_1)) { lean_dec_ref(x_1); x_321 = lean_box(0); } -lean_inc(x_311); x_322 = lean_string_utf8_next_fast(x_311, x_312); +lean_dec(x_312); if (lean_is_scalar(x_313)) { x_323 = lean_alloc_ctor(0, 2, 0); } else { @@ -5513,7 +5504,6 @@ x_3 = lean_ctor_get(x_2, 0); x_4 = lean_ctor_get(x_2, 1); lean_inc(x_4); lean_inc(x_4); -lean_inc(x_3); x_12 = l___private_Std_Internal_Parsec_String_0__Std_Internal_Parsec_String_skipWs(x_3, x_4); lean_inc(x_3); x_13 = lean_alloc_ctor(0, 2, 0); diff --git a/stage0/stdlib/Lean/Language/Lean.c b/stage0/stdlib/Lean/Language/Lean.c index 7b9a7d5741..9d44f6bd98 100644 --- a/stage0/stdlib/Lean/Language/Lean.c +++ b/stage0/stdlib/Lean/Language/Lean.c @@ -3340,7 +3340,6 @@ lean_dec(x_12); x_19 = lean_ctor_get(x_18, 0); lean_inc_ref(x_19); lean_dec_ref(x_18); -lean_inc_ref(x_19); x_20 = lean_string_validate_utf8(x_19); if (x_20 == 0) { diff --git a/stage0/stdlib/Lean/Meta/Basic.c b/stage0/stdlib/Lean/Meta/Basic.c index ffc30b961d..d9ef46ce3c 100644 --- a/stage0/stdlib/Lean/Meta/Basic.c +++ b/stage0/stdlib/Lean/Meta/Basic.c @@ -63611,7 +63611,6 @@ lean_dec(x_16); x_24 = lean_ctor_get(x_23, 0); lean_inc_ref(x_24); lean_dec_ref(x_23); -lean_inc_ref(x_24); x_25 = lean_string_validate_utf8(x_24); if (x_25 == 0) { diff --git a/stage0/stdlib/Lean/Meta/Match/MatchEqs.c b/stage0/stdlib/Lean/Meta/Match/MatchEqs.c index d70c66d888..ab599003fc 100644 --- a/stage0/stdlib/Lean/Meta/Match/MatchEqs.c +++ b/stage0/stdlib/Lean/Meta/Match/MatchEqs.c @@ -27,7 +27,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformW LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLet___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__7_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_proveCondEqThm___closed__2; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_Match_proveCondEqThm_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar_spec__1_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__13_spec__14___redArg(lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___closed__20_00___x40_Lean_Meta_Match_MatchEqs_3248161880____hygCtx___hyg_2_; @@ -62,7 +62,7 @@ lean_object* l_Lean_mkAppN(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitForall___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__5___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_Overlaps_overlapping(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_shift_right(size_t, size_t); uint8_t l_Lean_ExprStructEq_beq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -74,10 +74,10 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_Persis extern lean_object* l_Lean_Meta_Match_congrEqnThmSuffixBase; LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2___closed__0; -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_casesOnStuckLHS_findFVar_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__5_spec__5___redArg___lam__0___closed__0; @@ -111,7 +111,7 @@ extern lean_object* l_Lean_maxRecDepthErrorMessage; static lean_object* l_Lean_Meta_Match_getEquationsForImpl___closed__1; uint8_t lean_usize_dec_le(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_exprDependsOn___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitForall___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__5_spec__5___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwMaxRecDepthAt___at___00Lean_Meta_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__11_spec__11___redArg___closed__4; lean_object* l_Lean_ConstantInfo_levelParams(lean_object*); @@ -125,7 +125,6 @@ static lean_object* l_Lean_Meta_Match_proveCondEqThm___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLambda___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__6___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn_00___x40_Lean_Meta_Match_MatchEqs_1597551399____hygCtx___hyg_2____boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___boxed(lean_object**); @@ -156,6 +155,7 @@ LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Meta_ lean_object* lean_array_push(lean_object*, lean_object*); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__1; static lean_object* l_Lean_Meta_Match_getEquationsForImpl___closed__5; +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_Match_forallAltVarsTelescope_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__11; static lean_object* l_Lean_Meta_Match_initFn___closed__0_00___x40_Lean_Meta_Match_MatchEqs_3064840146____hygCtx___hyg_2_; @@ -163,7 +163,7 @@ size_t lean_usize_mul(size_t, size_t); LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_contains___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec_spec__0___redArg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_registerMatchEqns___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___00Lean_Meta_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__11_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_registerMatchCongrEqns___redArg___closed__2; static lean_object* l_panic___at___00Lean_Meta_Match_getEquationsForImpl_spec__3___closed__0; @@ -198,10 +198,9 @@ lean_object* lean_mk_array(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_Match_registerMatchCongrEqns_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtension___redArg(lean_object*, lean_object*, lean_object*); uint64_t l_Lean_ExprStructEq_hash(lean_object*); -static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_finIdxOf_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar_spec__1_spec__5_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); @@ -223,7 +222,7 @@ LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___00Lean_Meta_Match_proveC LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__13_spec__14_spec__14_spec__14___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0_spec__0_spec__0_spec__0_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_find_x3f(lean_object*, lean_object*, uint8_t); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkAppDiscrEqs_go_spec__0___boxed(lean_object**); lean_object* l_Lean_MVarId_refl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -231,7 +230,7 @@ static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknow static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___closed__11_00___x40_Lean_Meta_Match_MatchEqs_3248161880____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn_00___x40_Lean_Meta_Match_MatchEqs_2319336151____hygCtx___hyg_2____boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withSplitterAlts(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalContextImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLet___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__8_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withSplitterAlts___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -265,8 +264,7 @@ LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___00Std_ LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__4_spec__5_spec__6_spec__6___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__0___redArg(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__12; +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_note(lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___closed__22_00___x40_Lean_Meta_Match_MatchEqs_3248161880____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l_Lean_getProjectionFnInfo_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_casesOnStuckLHS_findFVar_x3f_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -287,17 +285,17 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Match_Ma static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Match_proveCondEqThm___lam__0(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLambda___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar_spec__8___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__15; LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec_spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___00Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLambda___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__6(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__13; lean_object* l_Lean_MVarId_heqOfEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__2_spec__2___redArg(lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__7; LEAN_EXPORT lean_object* l_Lean_Meta_Match_unfoldNamedPattern___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___00Lean_Meta_Match_proveCondEqThm_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_back_x21___redArg(lean_object*, lean_object*); @@ -305,7 +303,7 @@ LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tra LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instMonad___redArg(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_unfoldElimOffset___lam__0___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__7_spec__7(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -331,6 +329,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformW LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10___redArg___lam__0___boxed(lean_object**); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__13; lean_object* l_Lean_MVarId_contradiction(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__8; uint8_t l_Lean_Expr_isLambda(lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__3; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__0; @@ -359,12 +358,13 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformW static lean_object* l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__2___closed__0; static lean_object* l_Lean_Meta_Match_genMatchCongrEqns___closed__0; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar_spec__1_spec__5_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___closed__12_00___x40_Lean_Meta_Match_MatchEqs_3248161880____hygCtx___hyg_2_; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_trimFalseTrail(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_getEquationsForImpl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__2; LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec_spec__1_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitForall___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__5_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -374,7 +374,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___00__private_ LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___00Lean_Meta_Match_proveCondEqThm_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_registerMatchCongrEqns___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof___closed__0; -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec_spec__1_spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -393,7 +393,6 @@ static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkAp LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_unfoldElimOffset(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__4___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLet___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__8_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_Match_MatcherInfo_altNumParams(lean_object*); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__4; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12___redArg___lam__1___boxed__const__1; @@ -467,7 +466,7 @@ lean_object* l_Lean_MessageData_ofFormat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitForall___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__5_spec__5___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLet___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__8___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_MatcherInfo_numAlts(lean_object*); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -512,11 +511,10 @@ static lean_object* l_Lean_Meta_Match_getEquationsForImpl___closed__3; lean_object* l_Lean_Meta_mkEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__0___closed__1; LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__0(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__0___closed__4; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_mkMap_spec__0(lean_object*, size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___boxed(lean_object**); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__0___closed__0; @@ -540,11 +538,12 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_m LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__7___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__13_spec__14_spec__14___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_registerMatchCongrEqns___redArg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__0; lean_object* l_Subarray_get___redArg(lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_isNamedPatternProof(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkArrowN(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_constName_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitForall___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__4_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedExpr; @@ -552,7 +551,7 @@ LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_unfo LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withNewAlts_go___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__12; LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__0(lean_object*, lean_object*, uint8_t, uint8_t, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn_00___x40_Lean_Meta_Match_MatchEqs_3064840146____hygCtx___hyg_2_(); @@ -572,7 +571,7 @@ static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_init LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_exprDependsOn___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar_spec__0___redArg___lam__0___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__4_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLetFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__6; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_unfoldElimOffset___closed__1; @@ -584,6 +583,7 @@ lean_object* l_Lean_Core_instMonadCoreM___lam__1___boxed(lean_object*, lean_obje LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_Match_getEquationsForImpl_spec__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitForall___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__4_spec__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitForall___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withSplitterAlts_go___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_genMatchCongrEqns(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0___closed__4; @@ -593,15 +593,17 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_matchCongrEqnsExt; static lean_object* l_Lean_throwMaxRecDepthAt___at___00Lean_Meta_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__11_spec__11___redArg___closed__2; lean_object* l_Lean_Meta_simpIfTarget(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__2___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Std_DTreeMap_Internal_Impl_contains___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec_spec__0___redArg(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___closed__3_00___x40_Lean_Meta_Match_MatchEqs_3248161880____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__3; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_Match_getEquationsForImpl_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_Match_forallAltVarsTelescope_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___closed__1; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_insert___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__13(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_Match_getEquationsForImpl_spec__0_spec__0___redArg(lean_object*, size_t, lean_object*); @@ -609,18 +611,19 @@ static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSp LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLambda___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__7(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__12; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_Match_registerMatchCongrEqns_spec__0_spec__0___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___lam__0___closed__0_00___x40_Lean_Meta_Match_MatchEqs_2319336151____hygCtx___hyg_2_; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__1___closed__0; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_Match_registerMatchCongrEqns_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forInAux___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar_spec__1_spec__1_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__4_spec__4(size_t, size_t, lean_object*); static lean_object* l_Lean_Meta_Match_proveCondEqThm___lam__1___closed__3; -LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_getEquationsForImpl___closed__4; LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12___boxed(lean_object**); +lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_exprDependsOn___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar_spec__0___redArg___lam__1___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -645,7 +648,6 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_m static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_casesOnStuckLHS_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2___boxed(lean_object**); -static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__10; LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLet___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__7_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__2___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLet___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__7___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -667,7 +669,7 @@ lean_object* l_Lean_MessageData_ofExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__13_spec__13___redArg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_isNamedPattern_x3f(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at___00Lean_Meta_Match_genMatchCongrEqns_spec__0___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withNewAlts_go___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_cases(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -682,6 +684,7 @@ LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstInfo_ LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__13_spec__13(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLet___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__8_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___closed__23_00___x40_Lean_Meta_Match_MatchEqs_3248161880____hygCtx___hyg_2_; +static lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__5; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__2___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_proveCondEqThm___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -715,7 +718,6 @@ lean_object* l_Lean_Meta_introNCore(lean_object*, lean_object*, lean_object*, ui LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___00Lean_Meta_Match_proveCondEqThm_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_outOfBounds___redArg(lean_object*); -static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__11; LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__3___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___closed__6_00___x40_Lean_Meta_Match_MatchEqs_3248161880____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0___lam__1(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -726,19 +728,21 @@ static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_unfo static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___closed__4_00___x40_Lean_Meta_Match_MatchEqs_3248161880____hygCtx___hyg_2_; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__9; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withSplitterAlts_go___redArg___closed__0; -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forInAux___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar_spec__1_spec__1_spec__2_spec__2___closed__0; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Meta_isEqnReservedNameSuffix(lean_object*); static lean_object* l_Lean_Meta_casesOnStuckLHS___closed__1; static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__10; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___closed__18_00___x40_Lean_Meta_Match_MatchEqs_3248161880____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__3; lean_object* lean_array_fget(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withSplitterAlts___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__9; LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn___lam__0_00___x40_Lean_Meta_Match_MatchEqs_3064840146____hygCtx___hyg_2____boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___lam__0___boxed(lean_object**); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_instBEqFVarId_beq(lean_object*, lean_object*); @@ -760,10 +764,12 @@ static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___ static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__5_spec__5___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_Match_forallAltVarsTelescope_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instMonadMetaM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__3; static lean_object* l_Lean_Meta_Match_proveCondEqThm___lam__1___closed__0; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_Match_forallAltVarsTelescope_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0_spec__0_spec__0_spec__0_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_exprDependsOn___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar_spec__0___redArg(lean_object*, lean_object*, lean_object*); @@ -778,10 +784,10 @@ LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifie LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_Match_genMatchCongrEqns___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkCollisionNode___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitForall___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__4_spec__4___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forInAux___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar_spec__1_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -795,7 +801,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformW uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__1___closed__1; lean_object* l_Std_DTreeMap_Internal_Impl_insert___at___00Lean_FVarIdSet_insert_spec__1___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__0___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_Match_registerMatchCongrEqns_spec__0_spec__0_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___closed__10_00___x40_Lean_Meta_Match_MatchEqs_3248161880____hygCtx___hyg_2_; @@ -846,6 +852,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Met lean_object* l_Lean_Meta_instInhabitedMetaM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__10; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__5___redArg___boxed(lean_object**); +static lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__7; lean_object* l_Lean_LocalDecl_type(lean_object*); uint64_t lean_uint64_xor(uint64_t, uint64_t); static lean_object* l_Lean_Meta_Match_getEquationsForImpl___closed__2; @@ -858,6 +865,7 @@ static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___ static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___closed__0; lean_object* l_Lean_Meta_saveState___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn_00___x40_Lean_Meta_Match_MatchEqs_3248161880____hygCtx___hyg_2_(); +extern lean_object* l_Lean_Meta_Match_instInhabitedAltParamInfo_default; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___closed__5_00___x40_Lean_Meta_Match_MatchEqs_3248161880____hygCtx___hyg_2_; static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___lam__2___closed__0; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___closed__2_00___x40_Lean_Meta_Match_MatchEqs_3248161880____hygCtx___hyg_2_; @@ -867,7 +875,7 @@ lean_object* l_List_reverse___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__10_spec__10(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_casesOnStuckLHS(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__4; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_get_match_equations_for(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -886,7 +894,7 @@ static lean_object* l_Lean_throwMaxRecDepthAt___at___00Lean_Meta_withIncRecDepth static lean_object* l_Lean_Meta_Match_proveCondEqThm___closed__4; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___closed__24_00___x40_Lean_Meta_Match_MatchEqs_3248161880____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__10(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__0; @@ -905,7 +913,8 @@ LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00__private_L LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___00Lean_Meta_Match_proveCondEqThm_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_nextPowerOfTwo(lean_object*); lean_object* l_Lean_Meta_Match_solveOverlap(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__6; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withNewAlts___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); uint8_t l_Lean_LocalDecl_binderInfo(lean_object*); @@ -922,10 +931,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_Persist static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___lam__2___closed__2; lean_object* l_Subarray_size___redArg(lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_unfoldElimOffset___lam__0___closed__2; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___boxed(lean_object**); lean_object* lean_expr_instantiate_rev(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2___closed__2; lean_object* l_Lean_Meta_subst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_sub(size_t, size_t); @@ -940,10 +949,10 @@ lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(lean_object* lean_object* l_Lean_MVarId_tryClearMany(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_Match_registerMatchCongrEqns_spec__0_spec__0(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__14; +static lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__6; uint8_t l_Lean_Name_quickCmp(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__6; size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__3(lean_object*, lean_object*, uint8_t, uint8_t, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -970,14 +979,14 @@ static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_fora LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__0___redArg___boxed(lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__2; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_array_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_casesOnStuckLHS_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_idxOf_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__4___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn_00___x40_Lean_Meta_Match_MatchEqs_2319336151____hygCtx___hyg_2_(); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0_spec__0_spec__0_spec__0_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_exprDependsOn___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -986,7 +995,6 @@ lean_object* l_Lean_Name_mkStr1(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__14; size_t lean_usize_shift_left(size_t, size_t); -static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__4; lean_object* l_Lean_Expr_bindingBody_x21(lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withSplitterAlts_go___redArg___closed__1; lean_object* l_Lean_Meta_setInlineAttribute(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -996,7 +1004,7 @@ lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean lean_object* l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitForall___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__4___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_modifyTargetEqLHS(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1019,7 +1027,6 @@ lean_object* lean_find_expr(lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__5_spec__5___redArg___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___lam__0_00___x40_Lean_Meta_Match_MatchEqs_2319336151____hygCtx___hyg_2_(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__9; LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitForall___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3_spec__3_spec__5(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_mkMap(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_idxOfAux___at___00Array_finIdxOf_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__2_spec__2(lean_object*, lean_object*, lean_object*); @@ -1031,7 +1038,7 @@ static lean_object* l_Lean_Meta_Match_proveCondEqThm___closed__5; lean_object* l_Lean_Meta_intro1Core(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__0; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_initFn___lam__0___closed__2_00___x40_Lean_Meta_Match_MatchEqs_2319336151____hygCtx___hyg_2_; -LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitPost___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -5625,7 +5632,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__2; x_2 = lean_unsigned_to_nat(47u); -x_3 = lean_unsigned_to_nat(109u); +x_3 = lean_unsigned_to_nat(113u); x_4 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__1; x_5 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__0; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -5638,375 +5645,371 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__2; x_2 = lean_unsigned_to_nat(48u); -x_3 = lean_unsigned_to_nat(107u); +x_3 = lean_unsigned_to_nat(111u); x_4 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__1; x_5 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__0; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); return x_6; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, uint8_t x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_19; -lean_inc(x_17); -lean_inc_ref(x_16); +lean_object* x_17; lean_inc(x_15); lean_inc_ref(x_14); -x_19 = l_Lean_Meta_matchEq_x3f(x_1, x_14, x_15, x_16, x_17); -if (lean_obj_tag(x_19) == 0) +lean_inc(x_13); +lean_inc_ref(x_12); +x_17 = l_Lean_Meta_matchEq_x3f(x_1, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -lean_dec_ref(x_19); -x_21 = lean_expr_instantiate1(x_2, x_13); -if (lean_obj_tag(x_20) == 1) +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +lean_dec_ref(x_17); +x_19 = lean_expr_instantiate1(x_2, x_11); +if (lean_obj_tag(x_18) == 1) { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; uint8_t x_79; -x_35 = lean_ctor_get(x_20, 0); +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; uint8_t x_78; +x_33 = lean_ctor_get(x_18, 0); +lean_inc(x_33); +lean_dec_ref(x_18); +x_34 = lean_ctor_get(x_33, 1); +lean_inc(x_34); +lean_dec(x_33); +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec_ref(x_20); -x_36 = lean_ctor_get(x_35, 1); +x_36 = lean_ctor_get(x_34, 1); lean_inc(x_36); -lean_dec(x_35); -x_37 = lean_ctor_get(x_36, 0); -lean_inc(x_37); -x_38 = lean_ctor_get(x_36, 1); -lean_inc(x_38); -lean_dec(x_36); -x_79 = l_Lean_Expr_isFVar(x_37); -if (x_79 == 0) +lean_dec(x_34); +x_78 = l_Lean_Expr_isFVar(x_35); +if (x_78 == 0) { -x_39 = x_79; -goto block_78; +x_37 = x_78; +goto block_77; } else { -uint8_t x_80; -x_80 = l_Array_contains___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__0(x_3, x_37); -x_39 = x_80; -goto block_78; +uint8_t x_79; +x_79 = l_Array_contains___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__0(x_3, x_35); +x_37 = x_79; +goto block_77; } -block_78: +block_77: { +if (x_37 == 0) +{ +lean_dec(x_36); +lean_dec(x_35); +x_20 = x_12; +x_21 = x_13; +x_22 = x_14; +x_23 = x_15; +x_24 = lean_box(0); +goto block_32; +} +else +{ +uint8_t x_38; +x_38 = l_Array_contains___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__0(x_4, x_35); +if (x_38 == 0) +{ +lean_dec(x_36); +lean_dec(x_35); +x_20 = x_12; +x_21 = x_13; +x_22 = x_14; +x_23 = x_15; +x_24 = lean_box(0); +goto block_32; +} +else +{ +uint8_t x_39; +lean_inc_ref(x_11); +x_39 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_isNamedPatternProof(x_19, x_11); if (x_39 == 0) { -lean_dec(x_38); -lean_dec(x_37); +lean_dec(x_36); +lean_dec(x_35); +x_20 = x_12; +x_21 = x_13; x_22 = x_14; x_23 = x_15; -x_24 = x_16; -x_25 = x_17; -x_26 = lean_box(0); -goto block_34; +x_24 = lean_box(0); +goto block_32; } else { -uint8_t x_40; -x_40 = l_Array_contains___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__0(x_4, x_37); -if (x_40 == 0) +lean_object* x_40; +x_40 = l_Array_finIdxOf_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__2(x_3, x_35); +if (lean_obj_tag(x_40) == 1) { -lean_dec(x_38); -lean_dec(x_37); -x_22 = x_14; -x_23 = x_15; -x_24 = x_16; -x_25 = x_17; -x_26 = lean_box(0); -goto block_34; -} -else -{ -uint8_t x_41; -lean_inc_ref(x_13); -x_41 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_isNamedPatternProof(x_21, x_13); -if (x_41 == 0) -{ -lean_dec(x_38); -lean_dec(x_37); -x_22 = x_14; -x_23 = x_15; -x_24 = x_16; -x_25 = x_17; -x_26 = lean_box(0); -goto block_34; -} -else -{ -lean_object* x_42; -x_42 = l_Array_finIdxOf_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__2(x_3, x_37); +lean_object* x_41; lean_object* x_42; +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +lean_dec_ref(x_40); +x_42 = l_Array_idxOf_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__4(x_4, x_35); if (lean_obj_tag(x_42) == 1) { lean_object* x_43; lean_object* x_44; x_43 = lean_ctor_get(x_42, 0); lean_inc(x_43); lean_dec_ref(x_42); -x_44 = l_Array_idxOf_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__4(x_4, x_37); -if (lean_obj_tag(x_44) == 1) +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_36); +x_44 = l_Lean_Meta_mkEqRefl(x_36, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_44) == 0) { -lean_object* x_45; lean_object* x_46; +lean_object* x_45; lean_object* x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; size_t x_50; size_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; x_45 = lean_ctor_get(x_44, 0); lean_inc(x_45); lean_dec_ref(x_44); -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc(x_15); -lean_inc_ref(x_14); -lean_inc(x_38); -x_46 = l_Lean_Meta_mkEqRefl(x_38, x_14, x_15, x_16, x_17); -if (lean_obj_tag(x_46) == 0) -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; size_t x_51; size_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); -lean_dec_ref(x_46); -x_48 = l_Array_eraseIdx___redArg(x_3, x_43); -x_49 = lean_box(x_12); -x_50 = lean_array_set(x_5, x_45, x_49); -lean_dec(x_45); -x_51 = lean_array_size(x_4); -x_52 = 0; -lean_inc(x_38); -x_53 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__5(x_37, x_38, x_51, x_52, x_4); -lean_inc(x_37); -x_54 = l_Lean_Expr_replaceFVar(x_21, x_37, x_38); -lean_dec_ref(x_21); -x_55 = l_Lean_Expr_fvarId_x21(x_37); -lean_dec(x_37); -x_56 = l_Lean_Expr_fvarId_x21(x_13); -lean_dec_ref(x_13); -lean_inc(x_47); -x_57 = lean_array_push(x_53, x_47); -x_58 = lean_box(x_12); -x_59 = lean_array_push(x_50, x_58); -x_60 = lean_unsigned_to_nat(1u); -x_61 = lean_nat_add(x_7, x_60); -x_62 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___boxed), 14, 9); -lean_closure_set(x_62, 0, x_8); -lean_closure_set(x_62, 1, x_9); -lean_closure_set(x_62, 2, x_10); -lean_closure_set(x_62, 3, x_11); -lean_closure_set(x_62, 4, x_48); -lean_closure_set(x_62, 5, x_57); -lean_closure_set(x_62, 6, x_59); -lean_closure_set(x_62, 7, x_61); -lean_closure_set(x_62, 8, x_54); -x_63 = lean_alloc_closure((void*)(l_Lean_Meta_withReplaceFVarId___boxed), 9, 4); -lean_closure_set(x_63, 0, lean_box(0)); -lean_closure_set(x_63, 1, x_56); -lean_closure_set(x_63, 2, x_47); -lean_closure_set(x_63, 3, x_62); -x_64 = l_Lean_Meta_withReplaceFVarId___redArg(x_55, x_38, x_63, x_14, x_15, x_16, x_17); -return x_64; +x_46 = l_Array_eraseIdx___redArg(x_3, x_41); +x_47 = 0; +x_48 = lean_box(x_47); +x_49 = lean_array_set(x_5, x_43, x_48); +lean_dec(x_43); +x_50 = lean_array_size(x_4); +x_51 = 0; +lean_inc(x_36); +x_52 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__5(x_35, x_36, x_50, x_51, x_4); +lean_inc(x_35); +x_53 = l_Lean_Expr_replaceFVar(x_19, x_35, x_36); +lean_dec_ref(x_19); +x_54 = l_Lean_Expr_fvarId_x21(x_35); +lean_dec(x_35); +x_55 = l_Lean_Expr_fvarId_x21(x_11); +lean_dec_ref(x_11); +lean_inc(x_45); +x_56 = lean_array_push(x_52, x_45); +x_57 = lean_box(x_47); +x_58 = lean_array_push(x_49, x_57); +x_59 = lean_unsigned_to_nat(1u); +x_60 = lean_nat_add(x_7, x_59); +x_61 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___boxed), 13, 8); +lean_closure_set(x_61, 0, x_8); +lean_closure_set(x_61, 1, x_9); +lean_closure_set(x_61, 2, x_10); +lean_closure_set(x_61, 3, x_46); +lean_closure_set(x_61, 4, x_56); +lean_closure_set(x_61, 5, x_58); +lean_closure_set(x_61, 6, x_60); +lean_closure_set(x_61, 7, x_53); +x_62 = lean_alloc_closure((void*)(l_Lean_Meta_withReplaceFVarId___boxed), 9, 4); +lean_closure_set(x_62, 0, lean_box(0)); +lean_closure_set(x_62, 1, x_55); +lean_closure_set(x_62, 2, x_45); +lean_closure_set(x_62, 3, x_61); +x_63 = l_Lean_Meta_withReplaceFVarId___redArg(x_54, x_36, x_62, x_12, x_13, x_14, x_15); +return x_63; } else { -uint8_t x_65; -lean_dec(x_45); +uint8_t x_64; lean_dec(x_43); -lean_dec(x_38); -lean_dec(x_37); -lean_dec_ref(x_21); -lean_dec(x_17); -lean_dec_ref(x_16); +lean_dec(x_41); +lean_dec(x_36); +lean_dec(x_35); +lean_dec_ref(x_19); lean_dec(x_15); lean_dec_ref(x_14); -lean_dec_ref(x_13); +lean_dec(x_13); +lean_dec_ref(x_12); lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec(x_9); +lean_dec_ref(x_10); +lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_65 = !lean_is_exclusive(x_46); -if (x_65 == 0) +x_64 = !lean_is_exclusive(x_44); +if (x_64 == 0) { -return x_46; +return x_44; } else { -lean_object* x_66; lean_object* x_67; -x_66 = lean_ctor_get(x_46, 0); -lean_inc(x_66); -lean_dec(x_46); -x_67 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_67, 0, x_66); -return x_67; -} -} -} -else -{ -lean_object* x_68; lean_object* x_69; +lean_object* x_65; lean_object* x_66; +x_65 = lean_ctor_get(x_44, 0); +lean_inc(x_65); lean_dec(x_44); -lean_dec(x_43); -lean_dec(x_38); -lean_dec(x_37); -x_68 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__3; -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc(x_15); -lean_inc_ref(x_14); -x_69 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__6(x_68, x_14, x_15, x_16, x_17); -if (lean_obj_tag(x_69) == 0) -{ -lean_dec_ref(x_69); -x_22 = x_14; -x_23 = x_15; -x_24 = x_16; -x_25 = x_17; -x_26 = lean_box(0); -goto block_34; -} -else -{ -uint8_t x_70; -lean_dec_ref(x_21); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_70 = !lean_is_exclusive(x_69); -if (x_70 == 0) -{ -return x_69; -} -else -{ -lean_object* x_71; lean_object* x_72; -x_71 = lean_ctor_get(x_69, 0); -lean_inc(x_71); -lean_dec(x_69); -x_72 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_72, 0, x_71); -return x_72; -} +x_66 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_66, 0, x_65); +return x_66; } } } else { -lean_object* x_73; lean_object* x_74; +lean_object* x_67; lean_object* x_68; lean_dec(x_42); -lean_dec(x_38); -lean_dec(x_37); -x_73 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__4; -lean_inc(x_17); -lean_inc_ref(x_16); +lean_dec(x_41); +lean_dec(x_36); +lean_dec(x_35); +x_67 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__3; lean_inc(x_15); lean_inc_ref(x_14); -x_74 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__6(x_73, x_14, x_15, x_16, x_17); -if (lean_obj_tag(x_74) == 0) +lean_inc(x_13); +lean_inc_ref(x_12); +x_68 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__6(x_67, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_68) == 0) { -lean_dec_ref(x_74); +lean_dec_ref(x_68); +x_20 = x_12; +x_21 = x_13; x_22 = x_14; x_23 = x_15; -x_24 = x_16; -x_25 = x_17; -x_26 = lean_box(0); -goto block_34; +x_24 = lean_box(0); +goto block_32; } else { -uint8_t x_75; -lean_dec_ref(x_21); -lean_dec(x_17); -lean_dec_ref(x_16); +uint8_t x_69; +lean_dec_ref(x_19); lean_dec(x_15); lean_dec_ref(x_14); -lean_dec_ref(x_13); +lean_dec(x_13); +lean_dec_ref(x_12); lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec(x_9); +lean_dec_ref(x_10); +lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_75 = !lean_is_exclusive(x_74); -if (x_75 == 0) +x_69 = !lean_is_exclusive(x_68); +if (x_69 == 0) { -return x_74; +return x_68; } else { -lean_object* x_76; lean_object* x_77; -x_76 = lean_ctor_get(x_74, 0); -lean_inc(x_76); -lean_dec(x_74); -x_77 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_77, 0, x_76); -return x_77; -} -} -} -} +lean_object* x_70; lean_object* x_71; +x_70 = lean_ctor_get(x_68, 0); +lean_inc(x_70); +lean_dec(x_68); +x_71 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_71, 0, x_70); +return x_71; } } } } else { -lean_dec(x_20); +lean_object* x_72; lean_object* x_73; +lean_dec(x_40); +lean_dec(x_36); +lean_dec(x_35); +x_72 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__4; +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +x_73 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__6(x_72, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_73) == 0) +{ +lean_dec_ref(x_73); +x_20 = x_12; +x_21 = x_13; x_22 = x_14; x_23 = x_15; -x_24 = x_16; -x_25 = x_17; -x_26 = lean_box(0); -goto block_34; -} -block_34: -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; -lean_inc_ref(x_13); -x_27 = lean_array_push(x_3, x_13); -x_28 = lean_array_push(x_4, x_13); -x_29 = lean_box(x_6); -x_30 = lean_array_push(x_5, x_29); -x_31 = lean_unsigned_to_nat(1u); -x_32 = lean_nat_add(x_7, x_31); -x_33 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg(x_8, x_9, x_10, x_11, x_27, x_28, x_30, x_32, x_21, x_22, x_23, x_24, x_25); -return x_33; -} +x_24 = lean_box(0); +goto block_32; } else { -uint8_t x_81; -lean_dec(x_17); -lean_dec_ref(x_16); +uint8_t x_74; +lean_dec_ref(x_19); lean_dec(x_15); lean_dec_ref(x_14); -lean_dec_ref(x_13); +lean_dec(x_13); +lean_dec_ref(x_12); lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec(x_9); +lean_dec_ref(x_10); +lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_81 = !lean_is_exclusive(x_19); -if (x_81 == 0) +x_74 = !lean_is_exclusive(x_73); +if (x_74 == 0) { -return x_19; +return x_73; } else { -lean_object* x_82; lean_object* x_83; -x_82 = lean_ctor_get(x_19, 0); -lean_inc(x_82); -lean_dec(x_19); -x_83 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_83, 0, x_82); -return x_83; +lean_object* x_75; lean_object* x_76; +x_75 = lean_ctor_get(x_73, 0); +lean_inc(x_75); +lean_dec(x_73); +x_76 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_76, 0, x_75); +return x_76; +} +} +} +} +} +} +} +} +else +{ +lean_dec(x_18); +x_20 = x_12; +x_21 = x_13; +x_22 = x_14; +x_23 = x_15; +x_24 = lean_box(0); +goto block_32; +} +block_32: +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_inc_ref(x_11); +x_25 = lean_array_push(x_3, x_11); +x_26 = lean_array_push(x_4, x_11); +x_27 = lean_box(x_6); +x_28 = lean_array_push(x_5, x_27); +x_29 = lean_unsigned_to_nat(1u); +x_30 = lean_nat_add(x_7, x_29); +x_31 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg(x_8, x_9, x_10, x_25, x_26, x_28, x_30, x_19, x_20, x_21, x_22, x_23); +return x_31; +} +} +else +{ +uint8_t x_80; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_80 = !lean_is_exclusive(x_17); +if (x_80 == 0) +{ +return x_17; +} +else +{ +lean_object* x_81; lean_object* x_82; +x_81 = lean_ctor_get(x_17, 0); +lean_inc(x_81); +lean_dec(x_17); +x_82 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_82, 0, x_81); +return x_82; } } } @@ -6015,7 +6018,7 @@ static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Matc _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("Unit", 4, 4); +x_1 = lean_mk_string_unchecked("expecting ", 10, 10); return x_1; } } @@ -6024,7 +6027,7 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__0; -x_2 = l_Lean_Name_mkStr1(x_1); +x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } @@ -6032,401 +6035,231 @@ static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Matc _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("unit", 4, 4); +x_1 = lean_mk_string_unchecked(" parameters, but found type", 27, 27); return x_1; } } static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__3() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; +lean_object* x_1; lean_object* x_2; x_1 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__2; -x_2 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__0; -x_3 = l_Lean_Name_mkStr2(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__3; -x_3 = l_Lean_mkConst(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(1u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__4; -x_2 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__5; -x_3 = lean_array_push(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("expecting ", 10, 10); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__7; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__9() { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked(" parameters, excluding ", 23, 23); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__10() { -_start: +lean_object* x_14; +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +x_14 = l_Lean_Meta_whnfForall(x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_14) == 0) { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__9; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__11() { -_start: +lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +lean_dec_ref(x_14); +x_16 = lean_ctor_get(x_2, 0); +x_17 = lean_nat_dec_lt(x_7, x_16); +if (x_17 == 0) { -lean_object* x_1; -x_1 = lean_mk_string_unchecked(" equalities, but found type", 27, 27); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__12() { -_start: +lean_object* x_18; +lean_dec(x_7); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +x_18 = l_Lean_Meta_Match_unfoldNamedPattern(x_15, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__11; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +lean_dec_ref(x_18); +x_20 = lean_apply_9(x_3, x_4, x_5, x_6, x_19, x_9, x_10, x_11, x_12, lean_box(0)); +return x_20; +} +else +{ +uint8_t x_21; +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_21 = !lean_is_exclusive(x_18); +if (x_21 == 0) +{ +return x_18; +} +else +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_18, 0); +lean_inc(x_22); +lean_dec(x_18); +x_23 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_23, 0, x_22); +return x_23; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +} +else +{ +if (lean_obj_tag(x_15) == 7) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_24 = lean_ctor_get(x_15, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_15, 1); +lean_inc_ref(x_25); +x_26 = lean_ctor_get(x_15, 2); +lean_inc_ref(x_26); +lean_dec_ref(x_15); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +x_27 = l_Lean_Meta_Match_unfoldNamedPattern(x_25, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +lean_dec_ref(x_27); +x_29 = lean_box(x_17); +lean_inc(x_28); +x_30 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___boxed), 16, 10); +lean_closure_set(x_30, 0, x_28); +lean_closure_set(x_30, 1, x_26); +lean_closure_set(x_30, 2, x_4); +lean_closure_set(x_30, 3, x_5); +lean_closure_set(x_30, 4, x_6); +lean_closure_set(x_30, 5, x_29); +lean_closure_set(x_30, 6, x_7); +lean_closure_set(x_30, 7, x_1); +lean_closure_set(x_30, 8, x_2); +lean_closure_set(x_30, 9, x_3); +x_31 = l_Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__7___redArg(x_24, x_28, x_30, x_9, x_10, x_11, x_12); +return x_31; +} +else +{ +uint8_t x_32; +lean_dec_ref(x_26); +lean_dec(x_24); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_32 = !lean_is_exclusive(x_27); +if (x_32 == 0) +{ +return x_27; +} +else +{ +lean_object* x_33; lean_object* x_34; +x_33 = lean_ctor_get(x_27, 0); +lean_inc(x_33); +lean_dec(x_27); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_33); +return x_34; +} +} +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +lean_inc(x_16); +lean_dec(x_15); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_35 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__1; +x_36 = l_Nat_reprFast(x_16); +x_37 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_37, 0, x_36); +x_38 = l_Lean_MessageData_ofFormat(x_37); +x_39 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_39, 0, x_35); +lean_ctor_set(x_39, 1, x_38); +x_40 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__3; +x_41 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +x_42 = l_Lean_indentExpr(x_1); +x_43 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +x_44 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_43, x_9, x_10, x_11, x_12); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +return x_44; +} +} +} +else +{ +uint8_t x_45; +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_45 = !lean_is_exclusive(x_14); +if (x_45 == 0) +{ +return x_14; +} +else +{ +lean_object* x_46; lean_object* x_47; +x_46 = lean_ctor_get(x_14, 0); +lean_inc(x_46); +lean_dec(x_14); +x_47 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_47, 0, x_46); +return x_47; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { lean_object* x_15; -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -x_15 = l_Lean_Meta_whnfForall(x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -lean_dec_ref(x_15); -x_17 = lean_nat_sub(x_2, x_3); -x_18 = lean_nat_dec_lt(x_8, x_17); -if (x_18 == 0) -{ -lean_object* x_19; -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -x_19 = l_Lean_Meta_Match_unfoldNamedPattern(x_16, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_19) == 0) -{ -lean_object* x_20; lean_object* x_21; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -lean_dec_ref(x_19); -x_21 = lean_apply_9(x_4, x_5, x_6, x_7, x_20, x_10, x_11, x_12, x_13, lean_box(0)); -return x_21; -} -else -{ -uint8_t x_22; -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_22 = !lean_is_exclusive(x_19); -if (x_22 == 0) -{ -return x_19; -} -else -{ -lean_object* x_23; lean_object* x_24; -x_23 = lean_ctor_get(x_19, 0); -lean_inc(x_23); -lean_dec(x_19); -x_24 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_24, 0, x_23); -return x_24; -} -} -} -else -{ -if (lean_obj_tag(x_16) == 7) -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; uint8_t x_39; lean_object* x_51; uint8_t x_52; -x_25 = lean_ctor_get(x_16, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_16, 1); -lean_inc_ref(x_26); -x_27 = lean_ctor_get(x_16, 2); -lean_inc_ref(x_27); -lean_dec_ref(x_16); -x_51 = lean_unsigned_to_nat(0u); -x_52 = lean_nat_dec_eq(x_8, x_51); -if (x_52 == 0) -{ -lean_dec(x_17); -x_39 = x_52; -goto block_50; -} -else -{ -lean_object* x_53; uint8_t x_54; -x_53 = lean_unsigned_to_nat(1u); -x_54 = lean_nat_dec_eq(x_17, x_53); -lean_dec(x_17); -x_39 = x_54; -goto block_50; -} -block_38: -{ -lean_object* x_29; -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -x_29 = l_Lean_Meta_Match_unfoldNamedPattern(x_26, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_29) == 0) -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -lean_dec_ref(x_29); -x_31 = lean_box(x_18); -x_32 = lean_box(x_28); -lean_inc(x_30); -x_33 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___boxed), 18, 12); -lean_closure_set(x_33, 0, x_30); -lean_closure_set(x_33, 1, x_27); -lean_closure_set(x_33, 2, x_5); -lean_closure_set(x_33, 3, x_6); -lean_closure_set(x_33, 4, x_7); -lean_closure_set(x_33, 5, x_31); -lean_closure_set(x_33, 6, x_8); -lean_closure_set(x_33, 7, x_1); -lean_closure_set(x_33, 8, x_2); -lean_closure_set(x_33, 9, x_3); -lean_closure_set(x_33, 10, x_4); -lean_closure_set(x_33, 11, x_32); -x_34 = l_Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__7___redArg(x_25, x_30, x_33, x_10, x_11, x_12, x_13); -return x_34; -} -else -{ -uint8_t x_35; -lean_dec_ref(x_27); -lean_dec(x_25); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -x_35 = !lean_is_exclusive(x_29); -if (x_35 == 0) -{ -return x_29; -} -else -{ -lean_object* x_36; lean_object* x_37; -x_36 = lean_ctor_get(x_29, 0); -lean_inc(x_36); -lean_dec(x_29); -x_37 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_37, 0, x_36); -return x_37; -} -} -} -block_50: -{ -if (x_39 == 0) -{ -x_28 = x_39; -goto block_38; -} -else -{ -lean_object* x_40; uint8_t x_41; -x_40 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__1; -x_41 = l_Lean_Expr_isConstOf(x_26, x_40); -if (x_41 == 0) -{ -x_28 = x_41; -goto block_38; -} -else -{ -uint8_t x_42; -x_42 = l_Lean_Expr_hasLooseBVars(x_27); -if (x_42 == 0) -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -x_43 = l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0___lam__1___closed__0; -x_44 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__5; -x_45 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__6; -x_46 = lean_box(x_42); -x_47 = lean_array_push(x_44, x_46); -x_48 = lean_apply_9(x_4, x_43, x_45, x_47, x_27, x_10, x_11, x_12, x_13, lean_box(0)); -return x_48; -} -else -{ -uint8_t x_49; -x_49 = 0; -x_28 = x_49; -goto block_38; -} -} -} -} -} -else -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -lean_dec(x_17); -lean_dec(x_16); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_55 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__8; -x_56 = l_Nat_reprFast(x_2); -x_57 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_57, 0, x_56); -x_58 = l_Lean_MessageData_ofFormat(x_57); -x_59 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_59, 0, x_55); -lean_ctor_set(x_59, 1, x_58); -x_60 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__10; -x_61 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_61, 0, x_59); -lean_ctor_set(x_61, 1, x_60); -x_62 = l_Nat_reprFast(x_3); -x_63 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_63, 0, x_62); -x_64 = l_Lean_MessageData_ofFormat(x_63); -x_65 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_65, 0, x_61); -lean_ctor_set(x_65, 1, x_64); -x_66 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__12; -x_67 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_67, 0, x_65); -lean_ctor_set(x_67, 1, x_66); -x_68 = l_Lean_indentExpr(x_1); -x_69 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_69, 0, x_67); -lean_ctor_set(x_69, 1, x_68); -x_70 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_69, x_10, x_11, x_12, x_13); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -return x_70; -} -} -} -else -{ -uint8_t x_71; -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -x_71 = !lean_is_exclusive(x_15); -if (x_71 == 0) -{ +x_15 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_15; } -else -{ -lean_object* x_72; lean_object* x_73; -x_72 = lean_ctor_get(x_15, 0); -lean_inc(x_72); -lean_dec(x_15); -x_73 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_73, 0, x_72); -return x_73; -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: -{ -lean_object* x_16; -x_16 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -return x_16; -} } LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Array_contains___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: @@ -6549,101 +6382,349 @@ x_10 = l_Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Match_MatchEqs_0_ return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -uint8_t x_19; uint8_t x_20; lean_object* x_21; -x_19 = lean_unbox(x_6); -x_20 = lean_unbox(x_12); -x_21 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_19, x_7, x_8, x_9, x_10, x_11, x_20, x_13, x_14, x_15, x_16, x_17); +uint8_t x_17; lean_object* x_18; +x_17 = lean_unbox(x_6); +x_18 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_17, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_7); lean_dec_ref(x_2); -return x_21; +return x_18; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_14; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_15; -x_15 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_15 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_15; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_Match_forallAltVarsTelescope_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_16; -x_16 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__6___closed__0; +x_8 = lean_panic_fn(x_7, x_1); +x_9 = lean_apply_5(x_8, x_2, x_3, x_4, x_5, lean_box(0)); +return x_9; +} +} +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_Match_forallAltVarsTelescope_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_8; +x_8 = l_panic___at___00Lean_Meta_Match_forallAltVarsTelescope_spec__0___redArg(x_2, x_3, x_4, x_5, x_6); +return x_8; +} +} +static lean_object* _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Lean.Meta.Match.forallAltVarsTelescope", 38, 38); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("assertion violation: altInfo.numOverlaps = 0\n ", 47, 47); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_1 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__1; +x_2 = lean_unsigned_to_nat(2u); +x_3 = lean_unsigned_to_nat(90u); +x_4 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__0; +x_5 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__0; +x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); +return x_6; +} +} +static lean_object* _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Unit", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("unit", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__4; +x_2 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__3; +x_3 = l_Lean_Name_mkStr2(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__5; +x_3 = l_Lean_mkConst(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__6; +x_2 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__7; +x_3 = lean_array_push(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__9() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = 0; +x_2 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__7; +x_3 = lean_box(x_1); +x_4 = lean_array_push(x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_9; uint8_t x_10; lean_object* x_11; uint8_t x_12; +x_9 = lean_ctor_get(x_2, 1); +x_10 = lean_ctor_get_uint8(x_2, sizeof(void*)*2); +x_11 = lean_unsigned_to_nat(0u); +x_12 = lean_nat_dec_eq(x_9, x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_13 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__2; +x_14 = l_panic___at___00Lean_Meta_Match_forallAltVarsTelescope_spec__0___redArg(x_13, x_4, x_5, x_6, x_7); +return x_14; +} +else +{ +if (x_10 == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0___lam__1___closed__0; +lean_inc_ref(x_1); +x_16 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg(x_1, x_2, x_3, x_15, x_15, x_15, x_11, x_1, x_4, x_5, x_6, x_7); return x_16; } -} -LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: +else { -lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_10 = lean_unsigned_to_nat(0u); -x_11 = l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0___lam__1___closed__0; -lean_inc_ref(x_1); -x_12 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg(x_1, x_2, x_3, x_4, x_11, x_11, x_11, x_10, x_1, x_5, x_6, x_7, x_8); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { -_start: +lean_object* x_17; +lean_dec_ref(x_2); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +x_17 = l_Lean_Meta_whnfForall(x_1, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_11; -x_11 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +lean_dec_ref(x_17); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +x_19 = l_Lean_Meta_Match_unfoldNamedPattern(x_18, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +lean_dec_ref(x_19); +x_21 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__8; +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +x_22 = l_Lean_Meta_instantiateForall(x_20, x_21, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +lean_dec_ref(x_22); +x_24 = l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0___lam__1___closed__0; +x_25 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__9; +x_26 = lean_apply_9(x_3, x_24, x_21, x_25, x_23, x_4, x_5, x_6, x_7, lean_box(0)); +return x_26; +} +else +{ +uint8_t x_27; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_27 = !lean_is_exclusive(x_22); +if (x_27 == 0) +{ +return x_22; +} +else +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_22, 0); +lean_inc(x_28); +lean_dec(x_22); +x_29 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_29, 0, x_28); +return x_29; } } -LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +} +else +{ +uint8_t x_30; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_30 = !lean_is_exclusive(x_19); +if (x_30 == 0) +{ +return x_19; +} +else +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_19, 0); +lean_inc(x_31); +lean_dec(x_19); +x_32 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_32, 0, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_33 = !lean_is_exclusive(x_17); +if (x_33 == 0) +{ +return x_17; +} +else +{ +lean_object* x_34; lean_object* x_35; +x_34 = lean_ctor_get(x_17, 0); +lean_inc(x_34); +lean_dec(x_17); +x_35 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_35, 0, x_34); +return x_35; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_10; -x_10 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_Match_forallAltVarsTelescope_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { -lean_object* x_11; -x_11 = l_Lean_Meta_Match_forallAltVarsTelescope(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; +lean_object* x_7; +x_7 = l_panic___at___00Lean_Meta_Match_forallAltVarsTelescope_spec__0___redArg(x_1, x_2, x_3, x_4, x_5); +return x_7; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_Match_forallAltVarsTelescope_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_18 = lean_expr_instantiate1(x_1, x_12); -x_19 = lean_array_push(x_2, x_12); -x_20 = lean_array_push(x_3, x_4); -x_21 = 0; -x_22 = lean_box(x_21); -x_23 = lean_array_push(x_5, x_22); -x_24 = lean_unsigned_to_nat(1u); -x_25 = lean_nat_add(x_6, x_24); -x_26 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg(x_7, x_8, x_9, x_10, x_11, x_19, x_20, x_23, x_25, x_18, x_13, x_14, x_15, x_16); -return x_26; +lean_object* x_8; +x_8 = l_panic___at___00Lean_Meta_Match_forallAltVarsTelescope_spec__0(x_1, x_2, x_3, x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_Match_forallAltVarsTelescope(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_17 = lean_expr_instantiate1(x_1, x_11); +x_18 = lean_array_push(x_2, x_11); +x_19 = lean_array_push(x_3, x_4); +x_20 = 0; +x_21 = lean_box(x_20); +x_22 = lean_array_push(x_5, x_21); +x_23 = lean_unsigned_to_nat(1u); +x_24 = lean_nat_add(x_6, x_23); +x_25 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg(x_7, x_8, x_9, x_10, x_18, x_19, x_22, x_24, x_17, x_12, x_13, x_14, x_15); +return x_25; } } static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___closed__0() { @@ -6667,7 +6748,7 @@ static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Matc _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked(" parameters, including ", 23, 23); +x_1 = lean_mk_string_unchecked(" equalities, but found type", 27, 27); return x_1; } } @@ -6680,536 +6761,497 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_16; -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -x_16 = l_Lean_Meta_whnfForall(x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_16) == 0) +lean_object* x_15; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_15 = l_Lean_Meta_whnfForall(x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_17; uint8_t x_18; -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -lean_dec_ref(x_16); -x_18 = lean_nat_dec_lt(x_9, x_3); -if (x_18 == 0) +lean_object* x_16; uint8_t x_17; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +lean_dec_ref(x_15); +x_17 = lean_nat_dec_lt(x_8, x_2); +if (x_17 == 0) { -lean_object* x_19; -lean_dec(x_9); -lean_dec(x_3); +lean_object* x_18; +lean_dec(x_8); lean_dec(x_2); lean_dec_ref(x_1); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -x_19 = l_Lean_Meta_Match_unfoldNamedPattern(x_17, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_19) == 0) +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_18 = l_Lean_Meta_Match_unfoldNamedPattern(x_16, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_18) == 0) { -lean_object* x_20; lean_object* x_21; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -lean_dec_ref(x_19); -x_21 = lean_apply_10(x_4, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_13, x_14, lean_box(0)); -return x_21; +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +lean_dec_ref(x_18); +x_20 = lean_apply_10(x_3, x_4, x_5, x_6, x_7, x_19, x_10, x_11, x_12, x_13, lean_box(0)); +return x_20; } else { -uint8_t x_22; -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_8); +uint8_t x_21; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); -x_22 = !lean_is_exclusive(x_19); -if (x_22 == 0) +lean_dec_ref(x_3); +x_21 = !lean_is_exclusive(x_18); +if (x_21 == 0) { -return x_19; +return x_18; } else { -lean_object* x_23; lean_object* x_24; -x_23 = lean_ctor_get(x_19, 0); -lean_inc(x_23); -lean_dec(x_19); -x_24 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_24, 0, x_23); -return x_24; +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_18, 0); +lean_inc(x_22); +lean_dec(x_18); +x_23 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_23, 0, x_22); +return x_23; } } } else { -if (lean_obj_tag(x_17) == 7) +if (lean_obj_tag(x_16) == 7) { -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_37; -x_25 = lean_ctor_get(x_17, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_17, 1); +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_36; +x_24 = lean_ctor_get(x_16, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_16, 1); +lean_inc_ref(x_25); +x_26 = lean_ctor_get(x_16, 2); lean_inc_ref(x_26); -x_27 = lean_ctor_get(x_17, 2); -lean_inc_ref(x_27); -lean_dec_ref(x_17); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_26); -x_37 = l_Lean_Meta_matchEq_x3f(x_26, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_37) == 0) +lean_dec_ref(x_16); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc_ref(x_25); +x_36 = l_Lean_Meta_matchEq_x3f(x_25, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_36) == 0) { -lean_object* x_38; +lean_object* x_37; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +lean_dec_ref(x_36); +if (lean_obj_tag(x_37) == 1) +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; x_38 = lean_ctor_get(x_37, 0); lean_inc(x_38); lean_dec_ref(x_37); -if (lean_obj_tag(x_38) == 1) -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_39 = lean_ctor_get(x_38, 0); +x_39 = lean_ctor_get(x_38, 1); lean_inc(x_39); -lean_dec_ref(x_38); +lean_dec(x_38); x_40 = lean_ctor_get(x_39, 1); lean_inc(x_40); lean_dec(x_39); -x_41 = lean_ctor_get(x_40, 1); -lean_inc(x_41); -lean_dec(x_40); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -x_42 = l_Lean_Meta_mkEqRefl(x_41, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_42) == 0) +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_41 = l_Lean_Meta_mkEqRefl(x_40, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_41) == 0) { -lean_object* x_43; -x_43 = lean_ctor_get(x_42, 0); -lean_inc(x_43); -lean_dec_ref(x_42); -x_28 = x_43; +lean_object* x_42; +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +lean_dec_ref(x_41); +x_27 = x_42; +x_28 = x_10; x_29 = x_11; x_30 = x_12; x_31 = x_13; -x_32 = x_14; -x_33 = lean_box(0); -goto block_36; +x_32 = lean_box(0); +goto block_35; } else { -uint8_t x_44; -lean_dec_ref(x_27); +uint8_t x_43; lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_9); -lean_dec_ref(x_8); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); -lean_dec(x_3); +lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_44 = !lean_is_exclusive(x_42); -if (x_44 == 0) +x_43 = !lean_is_exclusive(x_41); +if (x_43 == 0) { -return x_42; +return x_41; } else { -lean_object* x_45; lean_object* x_46; -x_45 = lean_ctor_get(x_42, 0); -lean_inc(x_45); -lean_dec(x_42); -x_46 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_46, 0, x_45); -return x_46; +lean_object* x_44; lean_object* x_45; +x_44 = lean_ctor_get(x_41, 0); +lean_inc(x_44); +lean_dec(x_41); +x_45 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_45, 0, x_44); +return x_45; } } } else { +lean_object* x_46; +lean_dec(x_37); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc_ref(x_25); +x_46 = l_Lean_Meta_matchHEq_x3f(x_25, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_46) == 0) +{ lean_object* x_47; -lean_dec(x_38); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_26); -x_47 = l_Lean_Meta_matchHEq_x3f(x_26, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_47) == 0) +x_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +lean_dec_ref(x_46); +if (lean_obj_tag(x_47) == 1) { -lean_object* x_48; +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); lean_dec_ref(x_47); -if (lean_obj_tag(x_48) == 1) -{ -lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_49 = lean_ctor_get(x_48, 0); +x_49 = lean_ctor_get(x_48, 1); lean_inc(x_49); -lean_dec_ref(x_48); +lean_dec(x_48); x_50 = lean_ctor_get(x_49, 1); lean_inc(x_50); lean_dec(x_49); x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); lean_dec(x_50); -x_52 = lean_ctor_get(x_51, 1); -lean_inc(x_52); -lean_dec(x_51); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -x_53 = l_Lean_Meta_mkHEqRefl(x_52, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_53) == 0) +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_52 = l_Lean_Meta_mkHEqRefl(x_51, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_52) == 0) { -lean_object* x_54; -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -lean_dec_ref(x_53); -x_28 = x_54; +lean_object* x_53; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +lean_dec_ref(x_52); +x_27 = x_53; +x_28 = x_10; x_29 = x_11; x_30 = x_12; x_31 = x_13; -x_32 = x_14; -x_33 = lean_box(0); -goto block_36; +x_32 = lean_box(0); +goto block_35; } else { -uint8_t x_55; -lean_dec_ref(x_27); +uint8_t x_54; lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_9); -lean_dec_ref(x_8); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); -lean_dec(x_3); +lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_55 = !lean_is_exclusive(x_53); -if (x_55 == 0) +x_54 = !lean_is_exclusive(x_52); +if (x_54 == 0) { -return x_53; +return x_52; } else { -lean_object* x_56; lean_object* x_57; -x_56 = lean_ctor_get(x_53, 0); -lean_inc(x_56); -lean_dec(x_53); -x_57 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_57, 0, x_56); -return x_57; +lean_object* x_55; lean_object* x_56; +x_55 = lean_ctor_get(x_52, 0); +lean_inc(x_55); +lean_dec(x_52); +x_56 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_56, 0, x_55); +return x_56; } } } else { -lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; -lean_dec(x_48); -lean_dec_ref(x_27); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_58 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___closed__1; -x_59 = l_Lean_indentExpr(x_1); -x_60 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_60, 0, x_58); -lean_ctor_set(x_60, 1, x_59); -x_61 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_60, x_11, x_12, x_13, x_14); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -x_62 = !lean_is_exclusive(x_61); -if (x_62 == 0) -{ -return x_61; -} -else -{ -lean_object* x_63; lean_object* x_64; -x_63 = lean_ctor_get(x_61, 0); -lean_inc(x_63); -lean_dec(x_61); -x_64 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_64, 0, x_63); -return x_64; -} -} -} -else -{ -uint8_t x_65; -lean_dec_ref(x_27); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -x_65 = !lean_is_exclusive(x_47); -if (x_65 == 0) -{ -return x_47; -} -else -{ -lean_object* x_66; lean_object* x_67; -x_66 = lean_ctor_get(x_47, 0); -lean_inc(x_66); +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; lean_dec(x_47); -x_67 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_67, 0, x_66); -return x_67; -} -} -} -} -else -{ -uint8_t x_68; -lean_dec_ref(x_27); lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_9); -lean_dec_ref(x_8); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); -lean_dec(x_3); +lean_dec_ref(x_3); +lean_dec(x_2); +x_57 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___closed__1; +x_58 = l_Lean_indentExpr(x_1); +x_59 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_58); +x_60 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_59, x_10, x_11, x_12, x_13); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +x_61 = !lean_is_exclusive(x_60); +if (x_61 == 0) +{ +return x_60; +} +else +{ +lean_object* x_62; lean_object* x_63; +x_62 = lean_ctor_get(x_60, 0); +lean_inc(x_62); +lean_dec(x_60); +x_63 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_63, 0, x_62); +return x_63; +} +} +} +else +{ +uint8_t x_64; +lean_dec_ref(x_26); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_68 = !lean_is_exclusive(x_37); -if (x_68 == 0) +x_64 = !lean_is_exclusive(x_46); +if (x_64 == 0) { -return x_37; +return x_46; } else { -lean_object* x_69; lean_object* x_70; -x_69 = lean_ctor_get(x_37, 0); -lean_inc(x_69); -lean_dec(x_37); -x_70 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_70, 0, x_69); -return x_70; +lean_object* x_65; lean_object* x_66; +x_65 = lean_ctor_get(x_46, 0); +lean_inc(x_65); +lean_dec(x_46); +x_66 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_66, 0, x_65); +return x_66; } } -block_36: -{ -lean_object* x_34; lean_object* x_35; -x_34 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___lam__0___boxed), 17, 11); -lean_closure_set(x_34, 0, x_27); -lean_closure_set(x_34, 1, x_6); -lean_closure_set(x_34, 2, x_7); -lean_closure_set(x_34, 3, x_28); -lean_closure_set(x_34, 4, x_8); -lean_closure_set(x_34, 5, x_9); -lean_closure_set(x_34, 6, x_1); -lean_closure_set(x_34, 7, x_2); -lean_closure_set(x_34, 8, x_3); -lean_closure_set(x_34, 9, x_4); -lean_closure_set(x_34, 10, x_5); -x_35 = l_Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__7___redArg(x_25, x_26, x_34, x_29, x_30, x_31, x_32); -return x_35; } } else { -lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -lean_dec(x_17); -lean_dec(x_9); -lean_dec_ref(x_8); +uint8_t x_67; +lean_dec_ref(x_26); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); -x_71 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__8; -x_72 = l_Nat_reprFast(x_2); -x_73 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_73, 0, x_72); -x_74 = l_Lean_MessageData_ofFormat(x_73); -x_75 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_75, 0, x_71); -lean_ctor_set(x_75, 1, x_74); -x_76 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___closed__3; -x_77 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_77, 0, x_75); -lean_ctor_set(x_77, 1, x_76); -x_78 = l_Nat_reprFast(x_3); -x_79 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_79, 0, x_78); -x_80 = l_Lean_MessageData_ofFormat(x_79); -x_81 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_81, 0, x_77); -lean_ctor_set(x_81, 1, x_80); -x_82 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__12; -x_83 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_83, 0, x_81); -lean_ctor_set(x_83, 1, x_82); -x_84 = l_Lean_indentExpr(x_1); -x_85 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_85, 0, x_83); -lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_85, x_11, x_12, x_13, x_14); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -return x_86; -} -} -} -else -{ -uint8_t x_87; -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); +lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_87 = !lean_is_exclusive(x_16); -if (x_87 == 0) +x_67 = !lean_is_exclusive(x_36); +if (x_67 == 0) { -return x_16; +return x_36; } else { -lean_object* x_88; lean_object* x_89; -x_88 = lean_ctor_get(x_16, 0); -lean_inc(x_88); +lean_object* x_68; lean_object* x_69; +x_68 = lean_ctor_get(x_36, 0); +lean_inc(x_68); +lean_dec(x_36); +x_69 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_69, 0, x_68); +return x_69; +} +} +block_35: +{ +lean_object* x_33; lean_object* x_34; +x_33 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___lam__0___boxed), 16, 10); +lean_closure_set(x_33, 0, x_26); +lean_closure_set(x_33, 1, x_5); +lean_closure_set(x_33, 2, x_6); +lean_closure_set(x_33, 3, x_27); +lean_closure_set(x_33, 4, x_7); +lean_closure_set(x_33, 5, x_8); +lean_closure_set(x_33, 6, x_1); +lean_closure_set(x_33, 7, x_2); +lean_closure_set(x_33, 8, x_3); +lean_closure_set(x_33, 9, x_4); +x_34 = l_Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go_spec__7___redArg(x_24, x_25, x_33, x_28, x_29, x_30, x_31); +return x_34; +} +} +else +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_dec(x_16); -x_89 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_89, 0, x_88); -return x_89; +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_70 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__1; +x_71 = l_Nat_reprFast(x_2); +x_72 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_72, 0, x_71); +x_73 = l_Lean_MessageData_ofFormat(x_72); +x_74 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_74, 0, x_70); +lean_ctor_set(x_74, 1, x_73); +x_75 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___closed__3; +x_76 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_75); +x_77 = l_Lean_indentExpr(x_1); +x_78 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_78, 0, x_76); +lean_ctor_set(x_78, 1, x_77); +x_79 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_78, x_10, x_11, x_12, x_13); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +return x_79; } } } -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { -_start: +else { -lean_object* x_17; -x_17 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -return x_17; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___lam__0___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; -_start: -{ -lean_object* x_18; -x_18 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_6); +uint8_t x_80; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); lean_dec_ref(x_1); -return x_18; +x_80 = !lean_is_exclusive(x_15); +if (x_80 == 0) +{ +return x_15; +} +else +{ +lean_object* x_81; lean_object* x_82; +x_81 = lean_ctor_get(x_15, 0); +lean_inc(x_81); +lean_dec(x_15); +x_82 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_82, 0, x_81); +return x_82; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_16; -x_16 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_16 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_16; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { lean_object* x_17; -x_17 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_17 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_6); +lean_dec_ref(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = lean_unsigned_to_nat(0u); -x_15 = l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0___lam__1___closed__0; -x_16 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg(x_1, x_2, x_3, x_4, x_5, x_15, x_6, x_7, x_14, x_8, x_9, x_10, x_11, x_12); +lean_object* x_15; +x_15 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_15; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_16; +x_16 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_16; } } +LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_unsigned_to_nat(0u); +x_14 = l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0___lam__1___closed__0; +x_15 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_13, x_7, x_8, x_9, x_10, x_11); +return x_15; +} +} LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_10; lean_object* x_11; -lean_inc(x_3); -lean_inc(x_2); lean_inc_ref(x_1); -x_10 = lean_alloc_closure((void*)(l_Lean_Meta_Match_forallAltTelescope___redArg___lam__0___boxed), 13, 4); +x_10 = lean_alloc_closure((void*)(l_Lean_Meta_Match_forallAltTelescope___redArg___lam__0___boxed), 12, 3); lean_closure_set(x_10, 0, x_1); -lean_closure_set(x_10, 1, x_2); -lean_closure_set(x_10, 2, x_3); -lean_closure_set(x_10, 3, x_4); -x_11 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_1, x_2, x_3, x_10, x_5, x_6, x_7, x_8); +lean_closure_set(x_10, 1, x_3); +lean_closure_set(x_10, 2, x_4); +x_11 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_1, x_2, x_10, x_5, x_6, x_7, x_8); return x_11; } } @@ -7221,12 +7263,12 @@ x_11 = l_Lean_Meta_Match_forallAltTelescope___redArg(x_2, x_3, x_4, x_5, x_6, x_ return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_14; -x_14 = l_Lean_Meta_Match_forallAltTelescope___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_14; +lean_object* x_13; +x_13 = l_Lean_Meta_Match_forallAltTelescope___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; } } LEAN_EXPORT lean_object* l_Lean_Meta_Match_forallAltTelescope___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { @@ -7833,7 +7875,7 @@ lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_2); -x_82 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__8; +x_82 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__1; x_83 = l_Nat_reprFast(x_3); x_84 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_84, 0, x_83); @@ -7841,7 +7883,7 @@ x_85 = l_Lean_MessageData_ofFormat(x_84); x_86 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_86, 0, x_82); lean_ctor_set(x_86, 1, x_85); -x_87 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__12; +x_87 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___closed__3; x_88 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_88, 0, x_86); lean_ctor_set(x_88, 1, x_87); @@ -14277,7 +14319,7 @@ return x_2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_145; lean_object* x_146; lean_object* x_147; uint8_t x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; uint8_t x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; uint8_t x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; uint8_t x_190; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; uint8_t x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; uint8_t x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; uint8_t x_236; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint8_t x_274; +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; uint8_t x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; uint8_t x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; uint8_t x_190; uint8_t x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; uint8_t x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; uint8_t x_236; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint8_t x_274; x_274 = !lean_is_exclusive(x_6); if (x_274 == 0) { @@ -14551,9 +14593,9 @@ lean_object* x_19; lean_dec(x_16); lean_dec_ref(x_13); lean_dec_ref(x_12); -lean_dec_ref(x_11); +lean_dec(x_11); lean_dec(x_10); -lean_dec(x_9); +lean_dec_ref(x_9); lean_dec(x_1); x_19 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_19, 0, x_17); @@ -14569,9 +14611,9 @@ lean_object* x_21; lean_dec(x_16); lean_dec_ref(x_13); lean_dec_ref(x_12); -lean_dec_ref(x_11); +lean_dec(x_11); lean_dec(x_10); -lean_dec(x_9); +lean_dec_ref(x_9); lean_dec(x_1); x_21 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_21, 0, x_17); @@ -14583,7 +14625,7 @@ size_t x_22; size_t x_23; lean_object* x_24; x_22 = 0; x_23 = lean_usize_of_nat(x_16); lean_dec(x_16); -x_24 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__0(x_3, x_1, x_13, x_22, x_23, x_17, x_12, x_9, x_11, x_10); +x_24 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__0(x_3, x_1, x_13, x_22, x_23, x_17, x_9, x_11, x_12, x_10); lean_dec_ref(x_13); return x_24; } @@ -14598,8 +14640,8 @@ x_31 = lean_ctor_get(x_30, 0); lean_inc(x_31); lean_dec_ref(x_30); x_9 = x_26; -x_10 = x_27; -x_11 = x_28; +x_10 = x_28; +x_11 = x_27; x_12 = x_29; x_13 = x_31; x_14 = lean_box(0); @@ -14609,9 +14651,9 @@ else { uint8_t x_32; lean_dec_ref(x_29); -lean_dec_ref(x_28); +lean_dec(x_28); lean_dec(x_27); -lean_dec(x_26); +lean_dec_ref(x_26); lean_dec(x_1); x_32 = !lean_is_exclusive(x_30); if (x_32 == 0) @@ -14635,9 +14677,9 @@ block_63: if (x_44 == 0) { lean_object* x_45; -lean_dec_ref(x_40); -x_45 = l_Lean_Meta_SavedState_restore___redArg(x_39, x_36, x_38); -lean_dec_ref(x_39); +lean_dec_ref(x_43); +x_45 = l_Lean_Meta_SavedState_restore___redArg(x_41, x_40, x_39); +lean_dec_ref(x_41); if (lean_obj_tag(x_45) == 0) { uint8_t x_46; @@ -14658,14 +14700,14 @@ x_52 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_52, 0, x_50); lean_ctor_set(x_52, 1, x_51); lean_ctor_set_tag(x_45, 1); -lean_ctor_set(x_45, 0, x_37); +lean_ctor_set(x_45, 0, x_38); x_53 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_45); -x_54 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_53, x_42, x_36, x_41, x_38); -x_26 = x_36; -x_27 = x_38; -x_28 = x_41; +x_54 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_53, x_37, x_40, x_42, x_39); +x_26 = x_37; +x_27 = x_40; +x_28 = x_39; x_29 = x_42; x_30 = x_54; goto block_35; @@ -14685,14 +14727,14 @@ x_59 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_59, 0, x_57); lean_ctor_set(x_59, 1, x_58); x_60 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_60, 0, x_37); +lean_ctor_set(x_60, 0, x_38); x_61 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_61, 0, x_59); lean_ctor_set(x_61, 1, x_60); -x_62 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_61, x_42, x_36, x_41, x_38); -x_26 = x_36; -x_27 = x_38; -x_28 = x_41; +x_62 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_61, x_37, x_40, x_42, x_39); +x_26 = x_37; +x_27 = x_40; +x_28 = x_39; x_29 = x_42; x_30 = x_62; goto block_35; @@ -14701,23 +14743,23 @@ goto block_35; else { lean_dec_ref(x_42); -lean_dec_ref(x_41); +lean_dec(x_40); +lean_dec(x_39); lean_dec(x_38); -lean_dec(x_37); -lean_dec(x_36); +lean_dec_ref(x_37); lean_dec(x_1); return x_45; } } else { -lean_dec_ref(x_39); -lean_dec(x_37); -x_26 = x_36; -x_27 = x_38; -x_28 = x_41; +lean_dec_ref(x_41); +lean_dec(x_38); +x_26 = x_37; +x_27 = x_40; +x_28 = x_39; x_29 = x_42; -x_30 = x_40; +x_30 = x_43; goto block_35; } } @@ -14726,14 +14768,14 @@ block_84: if (x_72 == 0) { lean_object* x_73; -lean_dec_ref(x_66); -x_73 = l_Lean_Meta_SavedState_restore___redArg(x_68, x_64, x_67); -lean_dec_ref(x_68); +lean_dec_ref(x_71); +x_73 = l_Lean_Meta_SavedState_restore___redArg(x_70, x_68, x_67); +lean_dec_ref(x_70); if (lean_obj_tag(x_73) == 0) { lean_object* x_74; lean_dec_ref(x_73); -x_74 = l_Lean_Meta_saveState___redArg(x_64, x_67); +x_74 = l_Lean_Meta_saveState___redArg(x_68, x_67); if (lean_obj_tag(x_74) == 0) { lean_object* x_75; lean_object* x_76; @@ -14742,18 +14784,18 @@ lean_inc(x_75); lean_dec_ref(x_74); lean_inc(x_67); lean_inc_ref(x_69); -lean_inc(x_64); -lean_inc_ref(x_71); -lean_inc(x_65); -x_76 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar(x_65, x_71, x_64, x_69, x_67); +lean_inc(x_68); +lean_inc_ref(x_64); +lean_inc(x_66); +x_76 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar(x_66, x_64, x_68, x_69, x_67); if (lean_obj_tag(x_76) == 0) { lean_dec(x_75); -lean_dec(x_65); +lean_dec(x_66); x_26 = x_64; -x_27 = x_67; -x_28 = x_69; -x_29 = x_71; +x_27 = x_68; +x_28 = x_67; +x_29 = x_69; x_30 = x_76; goto block_35; } @@ -14768,28 +14810,28 @@ if (x_78 == 0) uint8_t x_79; x_79 = l_Lean_Exception_isRuntime(x_77); lean_dec(x_77); -x_36 = x_64; -x_37 = x_65; -x_38 = x_67; -x_39 = x_75; -x_40 = x_76; -x_41 = x_69; -x_42 = x_71; -x_43 = lean_box(0); +x_36 = lean_box(0); +x_37 = x_64; +x_38 = x_66; +x_39 = x_67; +x_40 = x_68; +x_41 = x_75; +x_42 = x_69; +x_43 = x_76; x_44 = x_79; goto block_63; } else { lean_dec(x_77); -x_36 = x_64; -x_37 = x_65; -x_38 = x_67; -x_39 = x_75; -x_40 = x_76; -x_41 = x_69; -x_42 = x_71; -x_43 = lean_box(0); +x_36 = lean_box(0); +x_37 = x_64; +x_38 = x_66; +x_39 = x_67; +x_40 = x_68; +x_41 = x_75; +x_42 = x_69; +x_43 = x_76; x_44 = x_78; goto block_63; } @@ -14798,11 +14840,11 @@ goto block_63; else { uint8_t x_80; -lean_dec_ref(x_71); lean_dec_ref(x_69); +lean_dec(x_68); lean_dec(x_67); -lean_dec(x_65); -lean_dec(x_64); +lean_dec(x_66); +lean_dec_ref(x_64); lean_dec(x_1); x_80 = !lean_is_exclusive(x_74); if (x_80 == 0) @@ -14823,11 +14865,11 @@ return x_82; } else { -lean_dec_ref(x_71); lean_dec_ref(x_69); +lean_dec(x_68); lean_dec(x_67); -lean_dec(x_65); -lean_dec(x_64); +lean_dec(x_66); +lean_dec_ref(x_64); lean_dec(x_1); return x_73; } @@ -14835,15 +14877,15 @@ return x_73; else { lean_object* x_83; -lean_dec_ref(x_71); +lean_dec_ref(x_70); lean_dec_ref(x_69); -lean_dec_ref(x_68); +lean_dec(x_68); lean_dec(x_67); -lean_dec(x_65); -lean_dec(x_64); +lean_dec(x_66); +lean_dec_ref(x_64); lean_dec(x_1); x_83 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_83, 0, x_66); +lean_ctor_set(x_83, 0, x_71); return x_83; } } @@ -14856,26 +14898,26 @@ if (x_93 == 0) uint8_t x_94; x_94 = l_Lean_Exception_isRuntime(x_91); x_64 = x_85; -x_65 = x_86; -x_66 = x_91; +x_65 = lean_box(0); +x_66 = x_86; x_67 = x_88; x_68 = x_87; x_69 = x_89; -x_70 = lean_box(0); -x_71 = x_90; +x_70 = x_90; +x_71 = x_91; x_72 = x_94; goto block_84; } else { x_64 = x_85; -x_65 = x_86; -x_66 = x_91; +x_65 = lean_box(0); +x_66 = x_86; x_67 = x_88; x_68 = x_87; x_69 = x_89; -x_70 = lean_box(0); -x_71 = x_90; +x_70 = x_90; +x_71 = x_91; x_72 = x_93; goto block_84; } @@ -14885,14 +14927,14 @@ block_132: if (x_105 == 0) { lean_object* x_106; -lean_dec_ref(x_96); -x_106 = l_Lean_Meta_SavedState_restore___redArg(x_98, x_97, x_101); -lean_dec_ref(x_98); +lean_dec_ref(x_97); +x_106 = l_Lean_Meta_SavedState_restore___redArg(x_103, x_102, x_101); +lean_dec_ref(x_103); if (lean_obj_tag(x_106) == 0) { lean_object* x_107; lean_dec_ref(x_106); -x_107 = l_Lean_Meta_saveState___redArg(x_97, x_101); +x_107 = l_Lean_Meta_saveState___redArg(x_102, x_101); if (lean_obj_tag(x_107) == 0) { lean_object* x_108; lean_object* x_109; lean_object* x_110; @@ -14901,11 +14943,11 @@ lean_inc(x_108); lean_dec_ref(x_107); x_109 = lean_box(0); lean_inc(x_101); -lean_inc_ref(x_103); -lean_inc(x_97); lean_inc_ref(x_104); -lean_inc(x_99); -x_110 = l_Lean_Meta_splitIfTarget_x3f(x_99, x_109, x_100, x_104, x_97, x_103, x_101); +lean_inc(x_102); +lean_inc_ref(x_98); +lean_inc(x_100); +x_110 = l_Lean_Meta_splitIfTarget_x3f(x_100, x_109, x_96, x_98, x_102, x_104, x_101); if (lean_obj_tag(x_110) == 0) { lean_object* x_111; @@ -14929,15 +14971,15 @@ x_116 = lean_ctor_get(x_113, 1); lean_inc(x_116); lean_dec(x_113); lean_inc(x_101); -lean_inc_ref(x_103); -lean_inc(x_97); lean_inc_ref(x_104); -x_117 = l_Lean_Meta_trySubst(x_115, x_116, x_104, x_97, x_103, x_101); +lean_inc(x_102); +lean_inc_ref(x_98); +x_117 = l_Lean_Meta_trySubst(x_115, x_116, x_98, x_102, x_104, x_101); if (lean_obj_tag(x_117) == 0) { lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_dec(x_108); -lean_dec(x_99); +lean_dec(x_100); x_118 = lean_ctor_get(x_117, 0); lean_inc(x_118); lean_dec_ref(x_117); @@ -14947,9 +14989,9 @@ lean_dec(x_114); x_120 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__4; x_121 = lean_array_push(x_120, x_118); x_122 = lean_array_push(x_121, x_119); -x_9 = x_97; +x_9 = x_98; x_10 = x_101; -x_11 = x_103; +x_11 = x_102; x_12 = x_104; x_13 = x_122; x_14 = lean_box(0); @@ -14962,12 +15004,12 @@ lean_dec(x_114); x_123 = lean_ctor_get(x_117, 0); lean_inc(x_123); lean_dec_ref(x_117); -x_85 = x_97; -x_86 = x_99; -x_87 = x_108; +x_85 = x_98; +x_86 = x_100; +x_87 = x_102; x_88 = x_101; -x_89 = x_103; -x_90 = x_104; +x_89 = x_104; +x_90 = x_108; x_91 = x_123; x_92 = lean_box(0); goto block_95; @@ -14978,16 +15020,16 @@ else lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_dec(x_111); x_124 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__6; -x_125 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_124, x_104, x_97, x_103, x_101); +x_125 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_124, x_98, x_102, x_104, x_101); x_126 = lean_ctor_get(x_125, 0); lean_inc(x_126); lean_dec_ref(x_125); -x_85 = x_97; -x_86 = x_99; -x_87 = x_108; +x_85 = x_98; +x_86 = x_100; +x_87 = x_102; x_88 = x_101; -x_89 = x_103; -x_90 = x_104; +x_89 = x_104; +x_90 = x_108; x_91 = x_126; x_92 = lean_box(0); goto block_95; @@ -14999,12 +15041,12 @@ lean_object* x_127; x_127 = lean_ctor_get(x_110, 0); lean_inc(x_127); lean_dec_ref(x_110); -x_85 = x_97; -x_86 = x_99; -x_87 = x_108; +x_85 = x_98; +x_86 = x_100; +x_87 = x_102; x_88 = x_101; -x_89 = x_103; -x_90 = x_104; +x_89 = x_104; +x_90 = x_108; x_91 = x_127; x_92 = lean_box(0); goto block_95; @@ -15014,10 +15056,10 @@ else { uint8_t x_128; lean_dec_ref(x_104); -lean_dec_ref(x_103); +lean_dec(x_102); lean_dec(x_101); -lean_dec(x_99); -lean_dec(x_97); +lean_dec(x_100); +lean_dec_ref(x_98); lean_dec(x_1); x_128 = !lean_is_exclusive(x_107); if (x_128 == 0) @@ -15039,10 +15081,10 @@ return x_130; else { lean_dec_ref(x_104); -lean_dec_ref(x_103); +lean_dec(x_102); lean_dec(x_101); -lean_dec(x_99); -lean_dec(x_97); +lean_dec(x_100); +lean_dec_ref(x_98); lean_dec(x_1); return x_106; } @@ -15052,13 +15094,13 @@ else lean_object* x_131; lean_dec_ref(x_104); lean_dec_ref(x_103); +lean_dec(x_102); lean_dec(x_101); -lean_dec(x_99); +lean_dec(x_100); lean_dec_ref(x_98); -lean_dec(x_97); lean_dec(x_1); x_131 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_131, 0, x_96); +lean_ctor_set(x_131, 0, x_97); return x_131; } } @@ -15070,28 +15112,28 @@ if (x_142 == 0) { uint8_t x_143; x_143 = l_Lean_Exception_isRuntime(x_140); -x_96 = x_140; -x_97 = x_133; +x_96 = x_133; +x_97 = x_140; x_98 = x_134; -x_99 = x_135; -x_100 = x_137; -x_101 = x_136; -x_102 = lean_box(0); -x_103 = x_138; +x_99 = lean_box(0); +x_100 = x_135; +x_101 = x_138; +x_102 = x_137; +x_103 = x_136; x_104 = x_139; x_105 = x_143; goto block_132; } else { -x_96 = x_140; -x_97 = x_133; +x_96 = x_133; +x_97 = x_140; x_98 = x_134; -x_99 = x_135; -x_100 = x_137; -x_101 = x_136; -x_102 = lean_box(0); -x_103 = x_138; +x_99 = lean_box(0); +x_100 = x_135; +x_101 = x_138; +x_102 = x_137; +x_103 = x_136; x_104 = x_139; x_105 = x_142; goto block_132; @@ -15100,14 +15142,14 @@ goto block_132; block_154: { lean_object* x_153; +lean_dec_ref(x_148); lean_dec(x_147); -lean_dec_ref(x_146); x_153 = lean_ctor_get(x_152, 0); lean_inc(x_153); lean_dec_ref(x_152); -x_9 = x_145; -x_10 = x_149; -x_11 = x_150; +x_9 = x_146; +x_10 = x_150; +x_11 = x_149; x_12 = x_151; x_13 = x_153; x_14 = lean_box(0); @@ -15118,45 +15160,45 @@ block_180: if (x_164 == 0) { lean_object* x_165; -lean_dec_ref(x_156); -x_165 = l_Lean_Meta_SavedState_restore___redArg(x_163, x_155, x_160); -lean_dec_ref(x_163); +lean_dec_ref(x_158); +x_165 = l_Lean_Meta_SavedState_restore___redArg(x_160, x_162, x_161); +lean_dec_ref(x_160); if (lean_obj_tag(x_165) == 0) { lean_object* x_166; lean_dec_ref(x_165); -x_166 = l_Lean_Meta_saveState___redArg(x_155, x_160); +x_166 = l_Lean_Meta_saveState___redArg(x_162, x_161); if (lean_obj_tag(x_166) == 0) { lean_object* x_167; lean_object* x_168; x_167 = lean_ctor_get(x_166, 0); lean_inc(x_167); lean_dec_ref(x_166); -lean_inc(x_160); -lean_inc_ref(x_161); -lean_inc(x_155); -lean_inc_ref(x_162); -lean_inc(x_157); -x_168 = l_Lean_Meta_simpIfTarget(x_157, x_159, x_159, x_162, x_155, x_161, x_160); +lean_inc(x_161); +lean_inc_ref(x_163); +lean_inc(x_162); +lean_inc_ref(x_156); +lean_inc(x_159); +x_168 = l_Lean_Meta_simpIfTarget(x_159, x_155, x_155, x_156, x_162, x_163, x_161); if (lean_obj_tag(x_168) == 0) { lean_object* x_169; uint8_t x_170; x_169 = lean_ctor_get(x_168, 0); lean_inc(x_169); lean_dec_ref(x_168); -x_170 = l_Lean_instBEqMVarId_beq(x_169, x_157); +x_170 = l_Lean_instBEqMVarId_beq(x_169, x_159); if (x_170 == 0) { lean_object* x_171; lean_object* x_172; x_171 = lean_box(0); -x_172 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___lam__0(x_169, x_171, x_162, x_155, x_161, x_160); +x_172 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___lam__0(x_169, x_171, x_156, x_162, x_163, x_161); x_145 = x_155; -x_146 = x_167; -x_147 = x_157; -x_148 = x_159; -x_149 = x_160; +x_146 = x_156; +x_147 = x_159; +x_148 = x_167; +x_149 = x_162; x_150 = x_161; -x_151 = x_162; +x_151 = x_163; x_152 = x_172; goto block_154; } @@ -15165,17 +15207,17 @@ else lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_dec(x_169); x_173 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__8; -x_174 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_173, x_162, x_155, x_161, x_160); +x_174 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_173, x_156, x_162, x_163, x_161); x_175 = lean_ctor_get(x_174, 0); lean_inc(x_175); lean_dec_ref(x_174); x_133 = x_155; -x_134 = x_167; -x_135 = x_157; -x_136 = x_160; -x_137 = x_159; +x_134 = x_156; +x_135 = x_159; +x_136 = x_167; +x_137 = x_162; x_138 = x_161; -x_139 = x_162; +x_139 = x_163; x_140 = x_175; x_141 = lean_box(0); goto block_144; @@ -15188,12 +15230,12 @@ x_176 = lean_ctor_get(x_168, 0); lean_inc(x_176); lean_dec_ref(x_168); x_133 = x_155; -x_134 = x_167; -x_135 = x_157; -x_136 = x_160; -x_137 = x_159; +x_134 = x_156; +x_135 = x_159; +x_136 = x_167; +x_137 = x_162; x_138 = x_161; -x_139 = x_162; +x_139 = x_163; x_140 = x_176; x_141 = lean_box(0); goto block_144; @@ -15202,11 +15244,11 @@ goto block_144; else { uint8_t x_177; -lean_dec_ref(x_162); -lean_dec_ref(x_161); -lean_dec(x_160); -lean_dec(x_157); -lean_dec(x_155); +lean_dec_ref(x_163); +lean_dec(x_162); +lean_dec(x_161); +lean_dec(x_159); +lean_dec_ref(x_156); lean_dec(x_1); x_177 = !lean_is_exclusive(x_166); if (x_177 == 0) @@ -15227,24 +15269,24 @@ return x_179; } else { -lean_dec_ref(x_162); -lean_dec_ref(x_161); -lean_dec(x_160); -lean_dec(x_157); -lean_dec(x_155); +lean_dec_ref(x_163); +lean_dec(x_162); +lean_dec(x_161); +lean_dec(x_159); +lean_dec_ref(x_156); lean_dec(x_1); return x_165; } } else { -lean_dec_ref(x_163); -lean_dec(x_157); -x_26 = x_155; -x_27 = x_160; +lean_dec_ref(x_160); +lean_dec(x_159); +x_26 = x_156; +x_27 = x_162; x_28 = x_161; -x_29 = x_162; -x_30 = x_156; +x_29 = x_163; +x_30 = x_158; goto block_35; } } @@ -15253,14 +15295,14 @@ block_202: if (x_190 == 0) { lean_object* x_191; -lean_dec_ref(x_182); -x_191 = l_Lean_Meta_SavedState_restore___redArg(x_187, x_181, x_186); -lean_dec_ref(x_187); +lean_dec_ref(x_185); +x_191 = l_Lean_Meta_SavedState_restore___redArg(x_189, x_187, x_186); +lean_dec_ref(x_189); if (lean_obj_tag(x_191) == 0) { lean_object* x_192; lean_dec_ref(x_191); -x_192 = l_Lean_Meta_saveState___redArg(x_181, x_186); +x_192 = l_Lean_Meta_saveState___redArg(x_187, x_186); if (lean_obj_tag(x_192) == 0) { lean_object* x_193; lean_object* x_194; @@ -15269,18 +15311,18 @@ lean_inc(x_193); lean_dec_ref(x_192); lean_inc(x_186); lean_inc_ref(x_188); -lean_inc(x_181); -lean_inc_ref(x_189); -lean_inc(x_183); -x_194 = l_Lean_Meta_casesOnStuckLHS(x_183, x_189, x_181, x_188, x_186); +lean_inc(x_187); +lean_inc_ref(x_182); +lean_inc(x_184); +x_194 = l_Lean_Meta_casesOnStuckLHS(x_184, x_182, x_187, x_188, x_186); if (lean_obj_tag(x_194) == 0) { lean_dec(x_193); -lean_dec(x_183); -x_26 = x_181; -x_27 = x_186; -x_28 = x_188; -x_29 = x_189; +lean_dec(x_184); +x_26 = x_182; +x_27 = x_187; +x_28 = x_186; +x_29 = x_188; x_30 = x_194; goto block_35; } @@ -15296,14 +15338,14 @@ uint8_t x_197; x_197 = l_Lean_Exception_isRuntime(x_195); lean_dec(x_195); x_155 = x_181; -x_156 = x_194; -x_157 = x_183; -x_158 = lean_box(0); -x_159 = x_185; -x_160 = x_186; -x_161 = x_188; -x_162 = x_189; -x_163 = x_193; +x_156 = x_182; +x_157 = lean_box(0); +x_158 = x_194; +x_159 = x_184; +x_160 = x_193; +x_161 = x_186; +x_162 = x_187; +x_163 = x_188; x_164 = x_197; goto block_180; } @@ -15311,14 +15353,14 @@ else { lean_dec(x_195); x_155 = x_181; -x_156 = x_194; -x_157 = x_183; -x_158 = lean_box(0); -x_159 = x_185; -x_160 = x_186; -x_161 = x_188; -x_162 = x_189; -x_163 = x_193; +x_156 = x_182; +x_157 = lean_box(0); +x_158 = x_194; +x_159 = x_184; +x_160 = x_193; +x_161 = x_186; +x_162 = x_187; +x_163 = x_188; x_164 = x_196; goto block_180; } @@ -15327,11 +15369,11 @@ goto block_180; else { uint8_t x_198; -lean_dec_ref(x_189); lean_dec_ref(x_188); +lean_dec(x_187); lean_dec(x_186); -lean_dec(x_183); -lean_dec(x_181); +lean_dec(x_184); +lean_dec_ref(x_182); lean_dec(x_1); x_198 = !lean_is_exclusive(x_192); if (x_198 == 0) @@ -15352,11 +15394,11 @@ return x_200; } else { -lean_dec_ref(x_189); lean_dec_ref(x_188); +lean_dec(x_187); lean_dec(x_186); -lean_dec(x_183); -lean_dec(x_181); +lean_dec(x_184); +lean_dec_ref(x_182); lean_dec(x_1); return x_191; } @@ -15366,13 +15408,13 @@ else lean_object* x_201; lean_dec_ref(x_189); lean_dec_ref(x_188); -lean_dec_ref(x_187); +lean_dec(x_187); lean_dec(x_186); -lean_dec(x_183); -lean_dec(x_181); +lean_dec(x_184); +lean_dec_ref(x_182); lean_dec(x_1); x_201 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_201, 0, x_182); +lean_ctor_set(x_201, 0, x_185); return x_201; } } @@ -15381,40 +15423,40 @@ block_226: if (x_212 == 0) { lean_object* x_213; -lean_dec_ref(x_203); -x_213 = l_Lean_Meta_SavedState_restore___redArg(x_207, x_205, x_209); -lean_dec_ref(x_207); +lean_dec_ref(x_205); +x_213 = l_Lean_Meta_SavedState_restore___redArg(x_211, x_209, x_208); +lean_dec_ref(x_211); if (lean_obj_tag(x_213) == 0) { lean_object* x_214; lean_dec_ref(x_213); -x_214 = l_Lean_Meta_saveState___redArg(x_205, x_209); +x_214 = l_Lean_Meta_saveState___redArg(x_209, x_208); if (lean_obj_tag(x_214) == 0) { lean_object* x_215; lean_object* x_216; x_215 = lean_ctor_get(x_214, 0); lean_inc(x_215); lean_dec_ref(x_214); -lean_inc(x_209); +lean_inc(x_208); lean_inc_ref(x_210); -lean_inc(x_205); -lean_inc_ref(x_211); -lean_inc(x_206); -x_216 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_unfoldElimOffset(x_206, x_211, x_205, x_210, x_209); +lean_inc(x_209); +lean_inc_ref(x_204); +lean_inc(x_207); +x_216 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_unfoldElimOffset(x_207, x_204, x_209, x_210, x_208); if (lean_obj_tag(x_216) == 0) { lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_dec(x_215); -lean_dec(x_206); +lean_dec(x_207); x_217 = lean_ctor_get(x_216, 0); lean_inc(x_217); lean_dec_ref(x_216); x_218 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forInAux___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar_spec__1_spec__1_spec__2_spec__2___closed__0; x_219 = lean_array_push(x_218, x_217); -x_9 = x_205; -x_10 = x_209; -x_11 = x_210; -x_12 = x_211; +x_9 = x_204; +x_10 = x_208; +x_11 = x_209; +x_12 = x_210; x_13 = x_219; x_14 = lean_box(0); goto block_25; @@ -15430,29 +15472,29 @@ if (x_221 == 0) { uint8_t x_222; x_222 = l_Lean_Exception_isRuntime(x_220); -x_181 = x_205; -x_182 = x_220; -x_183 = x_206; -x_184 = lean_box(0); -x_185 = x_208; -x_186 = x_209; -x_187 = x_215; +x_181 = x_203; +x_182 = x_204; +x_183 = lean_box(0); +x_184 = x_207; +x_185 = x_220; +x_186 = x_208; +x_187 = x_209; x_188 = x_210; -x_189 = x_211; +x_189 = x_215; x_190 = x_222; goto block_202; } else { -x_181 = x_205; -x_182 = x_220; -x_183 = x_206; -x_184 = lean_box(0); -x_185 = x_208; -x_186 = x_209; -x_187 = x_215; +x_181 = x_203; +x_182 = x_204; +x_183 = lean_box(0); +x_184 = x_207; +x_185 = x_220; +x_186 = x_208; +x_187 = x_209; x_188 = x_210; -x_189 = x_211; +x_189 = x_215; x_190 = x_221; goto block_202; } @@ -15461,11 +15503,11 @@ goto block_202; else { uint8_t x_223; -lean_dec_ref(x_211); lean_dec_ref(x_210); lean_dec(x_209); -lean_dec(x_206); -lean_dec(x_205); +lean_dec(x_208); +lean_dec(x_207); +lean_dec_ref(x_204); lean_dec(x_1); x_223 = !lean_is_exclusive(x_214); if (x_223 == 0) @@ -15486,11 +15528,11 @@ return x_225; } else { -lean_dec_ref(x_211); lean_dec_ref(x_210); lean_dec(x_209); -lean_dec(x_206); -lean_dec(x_205); +lean_dec(x_208); +lean_dec(x_207); +lean_dec_ref(x_204); lean_dec(x_1); return x_213; } @@ -15500,11 +15542,11 @@ else lean_dec_ref(x_211); lean_dec_ref(x_210); lean_dec(x_209); -lean_dec_ref(x_207); -lean_dec(x_206); -lean_dec(x_205); +lean_dec(x_208); +lean_dec(x_207); +lean_dec_ref(x_204); lean_dec(x_1); -return x_203; +return x_205; } } block_250: @@ -15512,14 +15554,14 @@ block_250: if (x_236 == 0) { lean_object* x_237; -lean_dec_ref(x_229); -x_237 = l_Lean_Meta_SavedState_restore___redArg(x_227, x_228, x_232); -lean_dec_ref(x_227); +lean_dec_ref(x_235); +x_237 = l_Lean_Meta_SavedState_restore___redArg(x_233, x_232, x_231); +lean_dec_ref(x_233); if (lean_obj_tag(x_237) == 0) { lean_object* x_238; lean_dec_ref(x_237); -x_238 = l_Lean_Meta_saveState___redArg(x_228, x_232); +x_238 = l_Lean_Meta_saveState___redArg(x_232, x_231); if (lean_obj_tag(x_238) == 0) { lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; @@ -15529,15 +15571,15 @@ lean_dec_ref(x_238); x_240 = lean_unsigned_to_nat(16u); x_241 = lean_alloc_ctor(0, 1, 3); lean_ctor_set(x_241, 0, x_240); -lean_ctor_set_uint8(x_241, sizeof(void*)*1, x_231); -lean_ctor_set_uint8(x_241, sizeof(void*)*1 + 1, x_231); -lean_ctor_set_uint8(x_241, sizeof(void*)*1 + 2, x_231); -lean_inc(x_232); +lean_ctor_set_uint8(x_241, sizeof(void*)*1, x_227); +lean_ctor_set_uint8(x_241, sizeof(void*)*1 + 1, x_227); +lean_ctor_set_uint8(x_241, sizeof(void*)*1 + 2, x_227); +lean_inc(x_231); lean_inc_ref(x_234); -lean_inc(x_228); -lean_inc_ref(x_235); +lean_inc(x_232); +lean_inc_ref(x_228); lean_inc(x_230); -x_242 = l_Lean_MVarId_contradiction(x_230, x_241, x_235, x_228, x_234, x_232); +x_242 = l_Lean_MVarId_contradiction(x_230, x_241, x_228, x_232, x_234, x_231); if (lean_obj_tag(x_242) == 0) { lean_object* x_243; @@ -15546,9 +15588,9 @@ lean_dec(x_239); lean_dec(x_230); x_243 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__9; x_9 = x_228; -x_10 = x_232; -x_11 = x_234; -x_12 = x_235; +x_10 = x_231; +x_11 = x_232; +x_12 = x_234; x_13 = x_243; x_14 = lean_box(0); goto block_25; @@ -15564,30 +15606,30 @@ if (x_245 == 0) uint8_t x_246; x_246 = l_Lean_Exception_isRuntime(x_244); lean_dec(x_244); -x_203 = x_242; -x_204 = lean_box(0); -x_205 = x_228; -x_206 = x_230; -x_207 = x_239; +x_203 = x_227; +x_204 = x_228; +x_205 = x_242; +x_206 = lean_box(0); +x_207 = x_230; x_208 = x_231; x_209 = x_232; x_210 = x_234; -x_211 = x_235; +x_211 = x_239; x_212 = x_246; goto block_226; } else { lean_dec(x_244); -x_203 = x_242; -x_204 = lean_box(0); -x_205 = x_228; -x_206 = x_230; -x_207 = x_239; +x_203 = x_227; +x_204 = x_228; +x_205 = x_242; +x_206 = lean_box(0); +x_207 = x_230; x_208 = x_231; x_209 = x_232; x_210 = x_234; -x_211 = x_235; +x_211 = x_239; x_212 = x_245; goto block_226; } @@ -15596,11 +15638,11 @@ goto block_226; else { uint8_t x_247; -lean_dec_ref(x_235); lean_dec_ref(x_234); lean_dec(x_232); +lean_dec(x_231); lean_dec(x_230); -lean_dec(x_228); +lean_dec_ref(x_228); lean_dec(x_1); x_247 = !lean_is_exclusive(x_238); if (x_247 == 0) @@ -15621,25 +15663,25 @@ return x_249; } else { -lean_dec_ref(x_235); lean_dec_ref(x_234); lean_dec(x_232); +lean_dec(x_231); lean_dec(x_230); -lean_dec(x_228); +lean_dec_ref(x_228); lean_dec(x_1); return x_237; } } else { -lean_dec_ref(x_235); lean_dec_ref(x_234); +lean_dec_ref(x_233); lean_dec(x_232); +lean_dec(x_231); lean_dec(x_230); -lean_dec(x_228); -lean_dec_ref(x_227); +lean_dec_ref(x_228); lean_dec(x_1); -return x_229; +return x_235; } } block_273: @@ -15678,10 +15720,10 @@ lean_dec_ref(x_262); lean_dec(x_260); lean_dec(x_258); x_263 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__9; -x_9 = x_252; +x_9 = x_251; x_10 = x_254; -x_11 = x_253; -x_12 = x_251; +x_11 = x_252; +x_12 = x_253; x_13 = x_263; x_14 = lean_box(0); goto block_25; @@ -15697,30 +15739,30 @@ if (x_265 == 0) uint8_t x_266; x_266 = l_Lean_Exception_isRuntime(x_264); lean_dec(x_264); -x_227 = x_260; -x_228 = x_252; -x_229 = x_262; +x_227 = x_261; +x_228 = x_251; +x_229 = lean_box(0); x_230 = x_258; -x_231 = x_261; -x_232 = x_254; -x_233 = lean_box(0); +x_231 = x_254; +x_232 = x_252; +x_233 = x_260; x_234 = x_253; -x_235 = x_251; +x_235 = x_262; x_236 = x_266; goto block_250; } else { lean_dec(x_264); -x_227 = x_260; -x_228 = x_252; -x_229 = x_262; +x_227 = x_261; +x_228 = x_251; +x_229 = lean_box(0); x_230 = x_258; -x_231 = x_261; -x_232 = x_254; -x_233 = lean_box(0); +x_231 = x_254; +x_232 = x_252; +x_233 = x_260; x_234 = x_253; -x_235 = x_251; +x_235 = x_262; x_236 = x_265; goto block_250; } @@ -16215,45 +16257,45 @@ block_43: if (x_26 == 0) { lean_object* x_27; -lean_dec_ref(x_20); +lean_dec_ref(x_22); lean_dec(x_18); +lean_inc(x_20); +lean_inc_ref(x_19); lean_inc(x_24); -lean_inc_ref(x_21); -lean_inc(x_25); -lean_inc_ref(x_23); -x_27 = l_Lean_MVarId_deltaTarget(x_19, x_2, x_23, x_25, x_21, x_24); +lean_inc_ref(x_25); +x_27 = l_Lean_MVarId_deltaTarget(x_21, x_2, x_25, x_24, x_19, x_20); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_27, 0); lean_inc(x_28); lean_dec_ref(x_27); +lean_inc(x_20); +lean_inc_ref(x_19); lean_inc(x_24); -lean_inc_ref(x_21); -lean_inc(x_25); -lean_inc_ref(x_23); -x_29 = l_Lean_MVarId_heqOfEq(x_28, x_23, x_25, x_21, x_24); +lean_inc_ref(x_25); +x_29 = l_Lean_MVarId_heqOfEq(x_28, x_25, x_24, x_19, x_20); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; lean_object* x_31; x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); lean_dec_ref(x_29); -lean_inc(x_25); -x_31 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go(x_3, x_30, x_4, x_23, x_25, x_21, x_24); +lean_inc(x_24); +x_31 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go(x_3, x_30, x_4, x_25, x_24, x_19, x_20); lean_dec(x_4); if (lean_obj_tag(x_31) == 0) { lean_object* x_32; lean_dec_ref(x_31); -x_32 = l_Lean_instantiateMVars___at___00Lean_Meta_Match_proveCondEqThm_spec__0___redArg(x_17, x_25); -lean_dec(x_25); +x_32 = l_Lean_instantiateMVars___at___00Lean_Meta_Match_proveCondEqThm_spec__0___redArg(x_17, x_24); +lean_dec(x_24); return x_32; } else { uint8_t x_33; -lean_dec(x_25); +lean_dec(x_24); lean_dec(x_17); x_33 = !lean_is_exclusive(x_31); if (x_33 == 0) @@ -16275,10 +16317,10 @@ return x_35; else { uint8_t x_36; -lean_dec(x_25); +lean_dec_ref(x_25); lean_dec(x_24); -lean_dec_ref(x_23); -lean_dec_ref(x_21); +lean_dec(x_20); +lean_dec_ref(x_19); lean_dec(x_17); lean_dec(x_4); lean_dec(x_3); @@ -16302,10 +16344,10 @@ return x_38; else { uint8_t x_39; -lean_dec(x_25); +lean_dec_ref(x_25); lean_dec(x_24); -lean_dec_ref(x_23); -lean_dec_ref(x_21); +lean_dec(x_20); +lean_dec_ref(x_19); lean_dec(x_17); lean_dec(x_4); lean_dec(x_3); @@ -16329,11 +16371,11 @@ return x_41; else { lean_object* x_42; -lean_dec(x_25); +lean_dec_ref(x_25); lean_dec(x_24); -lean_dec_ref(x_23); -lean_dec_ref(x_21); -lean_dec(x_19); +lean_dec(x_21); +lean_dec(x_20); +lean_dec_ref(x_19); lean_dec(x_17); lean_dec(x_4); lean_dec(x_3); @@ -16344,7 +16386,7 @@ if (lean_is_scalar(x_18)) { x_42 = x_18; lean_ctor_set_tag(x_42, 1); } -lean_ctor_set(x_42, 0, x_20); +lean_ctor_set(x_42, 0, x_22); return x_42; } } @@ -16399,25 +16441,25 @@ if (x_57 == 0) { uint8_t x_58; x_58 = l_Lean_Exception_isRuntime(x_56); -x_19 = x_52; -x_20 = x_56; -x_21 = x_47; -x_22 = lean_box(0); -x_23 = x_45; -x_24 = x_48; -x_25 = x_46; +x_19 = x_47; +x_20 = x_48; +x_21 = x_52; +x_22 = x_56; +x_23 = lean_box(0); +x_24 = x_46; +x_25 = x_45; x_26 = x_58; goto block_43; } else { -x_19 = x_52; -x_20 = x_56; -x_21 = x_47; -x_22 = lean_box(0); -x_23 = x_45; -x_24 = x_48; -x_25 = x_46; +x_19 = x_47; +x_20 = x_48; +x_21 = x_52; +x_22 = x_56; +x_23 = lean_box(0); +x_24 = x_46; +x_25 = x_45; x_26 = x_57; goto block_43; } @@ -16467,10 +16509,10 @@ if (x_73 == 0) { lean_free_object(x_70); x_44 = x_68; -x_45 = x_65; -x_46 = x_64; +x_45 = x_64; +x_46 = x_66; x_47 = x_67; -x_48 = x_66; +x_48 = x_65; x_49 = lean_box(0); goto block_62; } @@ -16484,13 +16526,13 @@ lean_ctor_set(x_70, 0, x_68); x_75 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_70); -x_76 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_63, x_75, x_65, x_64, x_67, x_66); +x_76 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_63, x_75, x_64, x_66, x_67, x_65); lean_dec_ref(x_76); x_44 = x_68; -x_45 = x_65; -x_46 = x_64; +x_45 = x_64; +x_46 = x_66; x_47 = x_67; -x_48 = x_66; +x_48 = x_65; x_49 = lean_box(0); goto block_62; } @@ -16506,10 +16548,10 @@ lean_dec(x_77); if (x_78 == 0) { x_44 = x_68; -x_45 = x_65; -x_46 = x_64; +x_45 = x_64; +x_46 = x_66; x_47 = x_67; -x_48 = x_66; +x_48 = x_65; x_49 = lean_box(0); goto block_62; } @@ -16523,13 +16565,13 @@ lean_ctor_set(x_80, 0, x_68); x_81 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_81, 0, x_79); lean_ctor_set(x_81, 1, x_80); -x_82 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_63, x_81, x_65, x_64, x_67, x_66); +x_82 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_63, x_81, x_64, x_66, x_67, x_65); lean_dec_ref(x_82); x_44 = x_68; -x_45 = x_65; -x_46 = x_64; +x_45 = x_64; +x_46 = x_66; x_47 = x_67; -x_48 = x_66; +x_48 = x_65; x_49 = lean_box(0); goto block_62; } @@ -16572,9 +16614,9 @@ lean_dec(x_93); x_95 = lean_nat_dec_lt(x_4, x_7); if (x_95 == 0) { -x_64 = x_85; -x_65 = x_84; -x_66 = x_87; +x_64 = x_84; +x_65 = x_87; +x_66 = x_85; x_67 = x_86; x_68 = x_94; x_69 = lean_box(0); @@ -16595,9 +16637,9 @@ lean_object* x_97; x_97 = lean_ctor_get(x_96, 0); lean_inc(x_97); lean_dec_ref(x_96); -x_64 = x_85; -x_65 = x_84; -x_66 = x_87; +x_64 = x_84; +x_65 = x_87; +x_66 = x_85; x_67 = x_86; x_68 = x_97; x_69 = lean_box(0); @@ -19878,7 +19920,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___closed__1; x_2 = lean_unsigned_to_nat(12u); -x_3 = lean_unsigned_to_nat(393u); +x_3 = lean_unsigned_to_nat(398u); x_4 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___closed__0; x_5 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__0; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -20015,8 +20057,8 @@ block_47: lean_object* x_37; lean_object* x_38; x_37 = l_Lean_Expr_fvarId_x21(x_28); lean_dec_ref(x_28); -lean_inc_ref(x_32); -x_38 = l_Lean_FVarId_getDecl___redArg(x_37, x_32, x_33, x_30); +lean_inc_ref(x_30); +x_38 = l_Lean_FVarId_getDecl___redArg(x_37, x_30, x_29, x_31); if (lean_obj_tag(x_38) == 0) { lean_object* x_39; lean_object* x_40; uint8_t x_41; uint8_t x_42; lean_object* x_43; @@ -20027,7 +20069,7 @@ x_40 = l_Lean_LocalDecl_userName(x_39); x_41 = l_Lean_LocalDecl_binderInfo(x_39); lean_dec(x_39); x_42 = 0; -x_43 = l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__1___redArg(x_40, x_41, x_35, x_27, x_42, x_29, x_31, x_32, x_34, x_33, x_30); +x_43 = l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__1___redArg(x_40, x_41, x_35, x_27, x_42, x_34, x_33, x_30, x_32, x_29, x_31); return x_43; } else @@ -20035,11 +20077,11 @@ else uint8_t x_44; lean_dec_ref(x_35); lean_dec(x_34); -lean_dec_ref(x_33); -lean_dec_ref(x_32); +lean_dec(x_33); +lean_dec(x_32); lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_29); +lean_dec_ref(x_30); +lean_dec_ref(x_29); lean_dec_ref(x_27); x_44 = !lean_is_exclusive(x_38); if (x_44 == 0) @@ -20066,7 +20108,7 @@ lean_inc(x_56); lean_inc_ref(x_55); lean_inc(x_54); lean_inc_ref(x_53); -x_59 = l_Lean_Meta_kabstract(x_50, x_3, x_58, x_53, x_54, x_55, x_56); +x_59 = l_Lean_Meta_kabstract(x_49, x_3, x_58, x_53, x_54, x_55, x_56); if (lean_obj_tag(x_59) == 0) { lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; @@ -20080,16 +20122,16 @@ lean_dec(x_60); x_63 = lean_nat_dec_lt(x_61, x_8); if (x_63 == 0) { -lean_dec_ref(x_49); +lean_dec_ref(x_48); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_1); -x_29 = x_51; -x_30 = x_56; -x_31 = x_52; -x_32 = x_53; -x_33 = x_55; -x_34 = x_54; +x_29 = x_55; +x_30 = x_53; +x_31 = x_56; +x_32 = x_54; +x_33 = x_52; +x_34 = x_51; x_35 = x_62; x_36 = lean_box(0); goto block_47; @@ -20101,7 +20143,7 @@ lean_inc(x_56); lean_inc_ref(x_55); lean_inc(x_54); lean_inc_ref(x_53); -x_64 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__2___redArg(x_48, x_49, x_1, x_58, x_9, x_8, x_62, x_61, x_53, x_54, x_55, x_56); +x_64 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__2___redArg(x_50, x_48, x_1, x_58, x_9, x_8, x_62, x_61, x_53, x_54, x_55, x_56); lean_dec(x_8); lean_dec_ref(x_9); lean_dec_ref(x_1); @@ -20111,12 +20153,12 @@ lean_object* x_65; x_65 = lean_ctor_get(x_64, 0); lean_inc(x_65); lean_dec_ref(x_64); -x_29 = x_51; -x_30 = x_56; -x_31 = x_52; -x_32 = x_53; -x_33 = x_55; -x_34 = x_54; +x_29 = x_55; +x_30 = x_53; +x_31 = x_56; +x_32 = x_54; +x_33 = x_52; +x_34 = x_51; x_35 = x_65; x_36 = lean_box(0); goto block_47; @@ -20143,7 +20185,7 @@ lean_dec(x_54); lean_dec_ref(x_53); lean_dec(x_52); lean_dec(x_51); -lean_dec_ref(x_49); +lean_dec_ref(x_48); lean_dec_ref(x_28); lean_dec_ref(x_27); lean_dec_ref(x_9); @@ -20202,9 +20244,9 @@ x_81 = lean_unbox(x_80); lean_dec(x_80); if (x_81 == 0) { -x_48 = x_73; -x_49 = x_72; -x_50 = x_77; +x_48 = x_72; +x_49 = x_77; +x_50 = x_73; x_51 = x_10; x_52 = x_11; x_53 = x_12; @@ -20234,9 +20276,9 @@ lean_ctor_set(x_88, 0, x_86); lean_ctor_set(x_88, 1, x_87); x_89 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_78, x_88, x_12, x_13, x_14, x_15); lean_dec_ref(x_89); -x_48 = x_73; -x_49 = x_72; -x_50 = x_77; +x_48 = x_72; +x_49 = x_77; +x_50 = x_73; x_51 = x_10; x_52 = x_11; x_53 = x_12; @@ -21202,7 +21244,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__2; x_2 = lean_unsigned_to_nat(69u); -x_3 = lean_unsigned_to_nat(431u); +x_3 = lean_unsigned_to_nat(436u); x_4 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__5_spec__5___redArg___closed__0; x_5 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__0; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -21827,7 +21869,833 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_21; uint8_t x_25; +x_25 = !lean_is_exclusive(x_4); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_26 = lean_ctor_get(x_4, 0); +x_27 = lean_ctor_get(x_4, 1); +x_28 = l_Lean_instInhabitedExpr; +x_29 = lean_array_get_borrowed(x_28, x_26, x_5); +x_30 = l_Lean_Expr_isFVar(x_29); +if (x_30 == 0) +{ +lean_object* x_31; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc_ref(x_29); +lean_inc(x_1); +x_31 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_29, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_31) == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +lean_dec_ref(x_31); +x_33 = lean_array_set(x_26, x_5, x_32); +x_34 = lean_box(x_30); +x_35 = lean_array_push(x_27, x_34); +lean_ctor_set(x_4, 1, x_35); +lean_ctor_set(x_4, 0, x_33); +x_13 = x_4; +x_14 = lean_box(0); +goto block_20; +} +else +{ +uint8_t x_36; +lean_free_object(x_4); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_36 = !lean_is_exclusive(x_31); +if (x_36 == 0) +{ +return x_31; +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_31, 0); +lean_inc(x_37); +lean_dec(x_31); +x_38 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_38, 0, x_37); +return x_38; +} +} +} +else +{ +lean_object* x_39; lean_object* x_40; +x_39 = l_Lean_Expr_fvarId_x21(x_29); +x_40 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__0___redArg(x_6, x_39); +lean_dec(x_39); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc_ref(x_29); +lean_inc(x_1); +x_41 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_29, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +lean_dec_ref(x_41); +x_43 = lean_array_set(x_26, x_5, x_42); +x_44 = 0; +x_45 = lean_box(x_44); +x_46 = lean_array_push(x_27, x_45); +lean_ctor_set(x_4, 1, x_46); +lean_ctor_set(x_4, 0, x_43); +x_13 = x_4; +x_14 = lean_box(0); +goto block_20; +} +else +{ +uint8_t x_47; +lean_free_object(x_4); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_41); +if (x_47 == 0) +{ +return x_41; +} +else +{ +lean_object* x_48; lean_object* x_49; +x_48 = lean_ctor_get(x_41, 0); +lean_inc(x_48); +lean_dec(x_41); +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_48); +return x_49; +} +} +} +else +{ +lean_object* x_50; uint8_t x_51; +lean_inc_ref(x_29); +lean_free_object(x_4); +x_50 = lean_ctor_get(x_40, 0); +lean_inc(x_50); +lean_dec_ref(x_40); +x_51 = !lean_is_exclusive(x_50); +if (x_51 == 0) +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; uint8_t x_58; +x_52 = lean_ctor_get(x_50, 0); +x_53 = lean_ctor_get(x_50, 1); +lean_dec(x_53); +x_54 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; +x_55 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_54, x_10); +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +lean_dec_ref(x_55); +lean_inc(x_52); +x_57 = lean_array_set(x_26, x_5, x_52); +x_58 = lean_unbox(x_56); +lean_dec(x_56); +if (x_58 == 0) +{ +lean_object* x_59; lean_object* x_60; +lean_free_object(x_50); +lean_dec(x_52); +lean_dec_ref(x_29); +x_59 = lean_box(0); +x_60 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_2, x_57, x_27, x_59, x_6, x_7, x_8, x_9, x_10, x_11); +x_21 = x_60; +goto block_24; +} +else +{ +lean_object* x_61; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_29); +x_61 = lean_infer_type(x_29, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_61) == 0) +{ +lean_object* x_62; lean_object* x_63; +x_62 = lean_ctor_get(x_61, 0); +lean_inc(x_62); +lean_dec_ref(x_61); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_52); +x_63 = lean_infer_type(x_52, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_63) == 0) +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_64 = lean_ctor_get(x_63, 0); +lean_inc(x_64); +lean_dec_ref(x_63); +x_65 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___closed__1; +x_66 = l_Lean_MessageData_ofExpr(x_29); +lean_ctor_set_tag(x_50, 7); +lean_ctor_set(x_50, 1, x_66); +lean_ctor_set(x_50, 0, x_65); +x_67 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkAppDiscrEqs_go___closed__4; +x_68 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_68, 0, x_50); +lean_ctor_set(x_68, 1, x_67); +x_69 = l_Lean_MessageData_ofExpr(x_62); +x_70 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_69); +x_71 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___closed__3; +x_72 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_72, 0, x_70); +lean_ctor_set(x_72, 1, x_71); +x_73 = l_Lean_MessageData_ofExpr(x_52); +x_74 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_74, 0, x_72); +lean_ctor_set(x_74, 1, x_73); +x_75 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_67); +x_76 = l_Lean_MessageData_ofExpr(x_64); +x_77 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); +x_78 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_54, x_77, x_8, x_9, x_10, x_11); +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +lean_dec_ref(x_78); +x_80 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_2, x_57, x_27, x_79, x_6, x_7, x_8, x_9, x_10, x_11); +x_21 = x_80; +goto block_24; +} +else +{ +uint8_t x_81; +lean_dec(x_62); +lean_dec_ref(x_57); +lean_free_object(x_50); +lean_dec(x_52); +lean_dec_ref(x_29); +lean_dec(x_27); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_81 = !lean_is_exclusive(x_63); +if (x_81 == 0) +{ +return x_63; +} +else +{ +lean_object* x_82; lean_object* x_83; +x_82 = lean_ctor_get(x_63, 0); +lean_inc(x_82); +lean_dec(x_63); +x_83 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_83, 0, x_82); +return x_83; +} +} +} +else +{ +uint8_t x_84; +lean_dec_ref(x_57); +lean_free_object(x_50); +lean_dec(x_52); +lean_dec_ref(x_29); +lean_dec(x_27); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_84 = !lean_is_exclusive(x_61); +if (x_84 == 0) +{ +return x_61; +} +else +{ +lean_object* x_85; lean_object* x_86; +x_85 = lean_ctor_get(x_61, 0); +lean_inc(x_85); +lean_dec(x_61); +x_86 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_86, 0, x_85); +return x_86; +} +} +} +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; uint8_t x_92; +x_87 = lean_ctor_get(x_50, 0); +lean_inc(x_87); +lean_dec(x_50); +x_88 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; +x_89 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_88, x_10); +x_90 = lean_ctor_get(x_89, 0); +lean_inc(x_90); +lean_dec_ref(x_89); +lean_inc(x_87); +x_91 = lean_array_set(x_26, x_5, x_87); +x_92 = lean_unbox(x_90); +lean_dec(x_90); +if (x_92 == 0) +{ +lean_object* x_93; lean_object* x_94; +lean_dec(x_87); +lean_dec_ref(x_29); +x_93 = lean_box(0); +x_94 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_2, x_91, x_27, x_93, x_6, x_7, x_8, x_9, x_10, x_11); +x_21 = x_94; +goto block_24; +} +else +{ +lean_object* x_95; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_29); +x_95 = lean_infer_type(x_29, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_95) == 0) +{ +lean_object* x_96; lean_object* x_97; +x_96 = lean_ctor_get(x_95, 0); +lean_inc(x_96); +lean_dec_ref(x_95); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_87); +x_97 = lean_infer_type(x_87, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_97) == 0) +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_98 = lean_ctor_get(x_97, 0); +lean_inc(x_98); +lean_dec_ref(x_97); +x_99 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___closed__1; +x_100 = l_Lean_MessageData_ofExpr(x_29); +x_101 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_101, 0, x_99); +lean_ctor_set(x_101, 1, x_100); +x_102 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkAppDiscrEqs_go___closed__4; +x_103 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_103, 0, x_101); +lean_ctor_set(x_103, 1, x_102); +x_104 = l_Lean_MessageData_ofExpr(x_96); +x_105 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_105, 0, x_103); +lean_ctor_set(x_105, 1, x_104); +x_106 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___closed__3; +x_107 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_107, 0, x_105); +lean_ctor_set(x_107, 1, x_106); +x_108 = l_Lean_MessageData_ofExpr(x_87); +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_110, 0, x_109); +lean_ctor_set(x_110, 1, x_102); +x_111 = l_Lean_MessageData_ofExpr(x_98); +x_112 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_112, 0, x_110); +lean_ctor_set(x_112, 1, x_111); +x_113 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_88, x_112, x_8, x_9, x_10, x_11); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +lean_dec_ref(x_113); +x_115 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_2, x_91, x_27, x_114, x_6, x_7, x_8, x_9, x_10, x_11); +x_21 = x_115; +goto block_24; +} +else +{ +lean_object* x_116; lean_object* x_117; lean_object* x_118; +lean_dec(x_96); +lean_dec_ref(x_91); +lean_dec(x_87); +lean_dec_ref(x_29); +lean_dec(x_27); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_116 = lean_ctor_get(x_97, 0); +lean_inc(x_116); +if (lean_is_exclusive(x_97)) { + lean_ctor_release(x_97, 0); + x_117 = x_97; +} else { + lean_dec_ref(x_97); + x_117 = lean_box(0); +} +if (lean_is_scalar(x_117)) { + x_118 = lean_alloc_ctor(1, 1, 0); +} else { + x_118 = x_117; +} +lean_ctor_set(x_118, 0, x_116); +return x_118; +} +} +else +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; +lean_dec_ref(x_91); +lean_dec(x_87); +lean_dec_ref(x_29); +lean_dec(x_27); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_119 = lean_ctor_get(x_95, 0); +lean_inc(x_119); +if (lean_is_exclusive(x_95)) { + lean_ctor_release(x_95, 0); + x_120 = x_95; +} else { + lean_dec_ref(x_95); + x_120 = lean_box(0); +} +if (lean_is_scalar(x_120)) { + x_121 = lean_alloc_ctor(1, 1, 0); +} else { + x_121 = x_120; +} +lean_ctor_set(x_121, 0, x_119); +return x_121; +} +} +} +} +} +} +else +{ +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; +x_122 = lean_ctor_get(x_4, 0); +x_123 = lean_ctor_get(x_4, 1); +lean_inc(x_123); +lean_inc(x_122); +lean_dec(x_4); +x_124 = l_Lean_instInhabitedExpr; +x_125 = lean_array_get_borrowed(x_124, x_122, x_5); +x_126 = l_Lean_Expr_isFVar(x_125); +if (x_126 == 0) +{ +lean_object* x_127; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc_ref(x_125); +lean_inc(x_1); +x_127 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_125, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_127) == 0) +{ +lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; +x_128 = lean_ctor_get(x_127, 0); +lean_inc(x_128); +lean_dec_ref(x_127); +x_129 = lean_array_set(x_122, x_5, x_128); +x_130 = lean_box(x_126); +x_131 = lean_array_push(x_123, x_130); +x_132 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_132, 0, x_129); +lean_ctor_set(x_132, 1, x_131); +x_13 = x_132; +x_14 = lean_box(0); +goto block_20; +} +else +{ +lean_object* x_133; lean_object* x_134; lean_object* x_135; +lean_dec(x_123); +lean_dec(x_122); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_133 = lean_ctor_get(x_127, 0); +lean_inc(x_133); +if (lean_is_exclusive(x_127)) { + lean_ctor_release(x_127, 0); + x_134 = x_127; +} else { + lean_dec_ref(x_127); + x_134 = lean_box(0); +} +if (lean_is_scalar(x_134)) { + x_135 = lean_alloc_ctor(1, 1, 0); +} else { + x_135 = x_134; +} +lean_ctor_set(x_135, 0, x_133); +return x_135; +} +} +else +{ +lean_object* x_136; lean_object* x_137; +x_136 = l_Lean_Expr_fvarId_x21(x_125); +x_137 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__0___redArg(x_6, x_136); +lean_dec(x_136); +if (lean_obj_tag(x_137) == 0) +{ +lean_object* x_138; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc_ref(x_125); +lean_inc(x_1); +x_138 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_125, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_138) == 0) +{ +lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; +x_139 = lean_ctor_get(x_138, 0); +lean_inc(x_139); +lean_dec_ref(x_138); +x_140 = lean_array_set(x_122, x_5, x_139); +x_141 = 0; +x_142 = lean_box(x_141); +x_143 = lean_array_push(x_123, x_142); +x_144 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_144, 0, x_140); +lean_ctor_set(x_144, 1, x_143); +x_13 = x_144; +x_14 = lean_box(0); +goto block_20; +} +else +{ +lean_object* x_145; lean_object* x_146; lean_object* x_147; +lean_dec(x_123); +lean_dec(x_122); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_145 = lean_ctor_get(x_138, 0); +lean_inc(x_145); +if (lean_is_exclusive(x_138)) { + lean_ctor_release(x_138, 0); + x_146 = x_138; +} else { + lean_dec_ref(x_138); + x_146 = lean_box(0); +} +if (lean_is_scalar(x_146)) { + x_147 = lean_alloc_ctor(1, 1, 0); +} else { + x_147 = x_146; +} +lean_ctor_set(x_147, 0, x_145); +return x_147; +} +} +else +{ +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; +lean_inc_ref(x_125); +x_148 = lean_ctor_get(x_137, 0); +lean_inc(x_148); +lean_dec_ref(x_137); +x_149 = lean_ctor_get(x_148, 0); +lean_inc(x_149); +if (lean_is_exclusive(x_148)) { + lean_ctor_release(x_148, 0); + lean_ctor_release(x_148, 1); + x_150 = x_148; +} else { + lean_dec_ref(x_148); + x_150 = lean_box(0); +} +x_151 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; +x_152 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_151, x_10); +x_153 = lean_ctor_get(x_152, 0); +lean_inc(x_153); +lean_dec_ref(x_152); +lean_inc(x_149); +x_154 = lean_array_set(x_122, x_5, x_149); +x_155 = lean_unbox(x_153); +lean_dec(x_153); +if (x_155 == 0) +{ +lean_object* x_156; lean_object* x_157; +lean_dec(x_150); +lean_dec(x_149); +lean_dec_ref(x_125); +x_156 = lean_box(0); +x_157 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_2, x_154, x_123, x_156, x_6, x_7, x_8, x_9, x_10, x_11); +x_21 = x_157; +goto block_24; +} +else +{ +lean_object* x_158; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_125); +x_158 = lean_infer_type(x_125, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_158) == 0) +{ +lean_object* x_159; lean_object* x_160; +x_159 = lean_ctor_get(x_158, 0); +lean_inc(x_159); +lean_dec_ref(x_158); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_149); +x_160 = lean_infer_type(x_149, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_160) == 0) +{ +lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; +x_161 = lean_ctor_get(x_160, 0); +lean_inc(x_161); +lean_dec_ref(x_160); +x_162 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___closed__1; +x_163 = l_Lean_MessageData_ofExpr(x_125); +if (lean_is_scalar(x_150)) { + x_164 = lean_alloc_ctor(7, 2, 0); +} else { + x_164 = x_150; + lean_ctor_set_tag(x_164, 7); +} +lean_ctor_set(x_164, 0, x_162); +lean_ctor_set(x_164, 1, x_163); +x_165 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkAppDiscrEqs_go___closed__4; +x_166 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_166, 0, x_164); +lean_ctor_set(x_166, 1, x_165); +x_167 = l_Lean_MessageData_ofExpr(x_159); +x_168 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_168, 0, x_166); +lean_ctor_set(x_168, 1, x_167); +x_169 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___closed__3; +x_170 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_170, 0, x_168); +lean_ctor_set(x_170, 1, x_169); +x_171 = l_Lean_MessageData_ofExpr(x_149); +x_172 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_172, 0, x_170); +lean_ctor_set(x_172, 1, x_171); +x_173 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_173, 0, x_172); +lean_ctor_set(x_173, 1, x_165); +x_174 = l_Lean_MessageData_ofExpr(x_161); +x_175 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +x_176 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_151, x_175, x_8, x_9, x_10, x_11); +x_177 = lean_ctor_get(x_176, 0); +lean_inc(x_177); +lean_dec_ref(x_176); +x_178 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_2, x_154, x_123, x_177, x_6, x_7, x_8, x_9, x_10, x_11); +x_21 = x_178; +goto block_24; +} +else +{ +lean_object* x_179; lean_object* x_180; lean_object* x_181; +lean_dec(x_159); +lean_dec_ref(x_154); +lean_dec(x_150); +lean_dec(x_149); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_179 = lean_ctor_get(x_160, 0); +lean_inc(x_179); +if (lean_is_exclusive(x_160)) { + lean_ctor_release(x_160, 0); + x_180 = x_160; +} else { + lean_dec_ref(x_160); + x_180 = lean_box(0); +} +if (lean_is_scalar(x_180)) { + x_181 = lean_alloc_ctor(1, 1, 0); +} else { + x_181 = x_180; +} +lean_ctor_set(x_181, 0, x_179); +return x_181; +} +} +else +{ +lean_object* x_182; lean_object* x_183; lean_object* x_184; +lean_dec_ref(x_154); +lean_dec(x_150); +lean_dec(x_149); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_182 = lean_ctor_get(x_158, 0); +lean_inc(x_182); +if (lean_is_exclusive(x_158)) { + lean_ctor_release(x_158, 0); + x_183 = x_158; +} else { + lean_dec_ref(x_158); + x_183 = lean_box(0); +} +if (lean_is_scalar(x_183)) { + x_184 = lean_alloc_ctor(1, 1, 0); +} else { + x_184 = x_183; +} +lean_ctor_set(x_184, 0, x_182); +return x_184; +} +} +} +} +} +block_20: +{ +lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_add(x_5, x_15); +lean_dec(x_5); +x_17 = lean_nat_dec_lt(x_16, x_3); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_16); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_18, 0, x_13); +return x_18; +} +else +{ +x_4 = x_13; +x_5 = x_16; +goto _start; +} +} +block_24: +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +lean_dec_ref(x_21); +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +lean_dec(x_22); +x_13 = x_23; +x_14 = lean_box(0); +goto block_20; +} +} +} +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +_start: +{ +lean_object* x_19; +x_19 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg(x_1, x_2, x_6, x_8, x_9, x_12, x_13, x_14, x_15, x_16, x_17); +return x_19; +} +} +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_14; lean_object* x_15; lean_object* x_22; uint8_t x_26; @@ -21850,9 +22718,8 @@ lean_inc_ref(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc_ref(x_30); -lean_inc(x_2); lean_inc(x_1); -x_32 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_2, x_30, x_7, x_8, x_9, x_10, x_11, x_12); +x_32 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_30, x_7, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_32) == 0) { lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; @@ -21880,8 +22747,6 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_2); lean_dec(x_1); x_37 = !lean_is_exclusive(x_32); if (x_37 == 0) @@ -21916,9 +22781,8 @@ lean_inc_ref(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc_ref(x_30); -lean_inc(x_2); lean_inc(x_1); -x_42 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_2, x_30, x_7, x_8, x_9, x_10, x_11, x_12); +x_42 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_30, x_7, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_42) == 0) { lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; @@ -21947,8 +22811,6 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_2); lean_dec(x_1); x_48 = !lean_is_exclusive(x_42); if (x_48 == 0) @@ -21998,7 +22860,7 @@ lean_free_object(x_51); lean_dec(x_53); lean_dec_ref(x_30); x_60 = lean_box(0); -x_61 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_3, x_58, x_28, x_60, x_7, x_8, x_9, x_10, x_11, x_12); +x_61 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_2, x_58, x_28, x_60, x_7, x_8, x_9, x_10, x_11, x_12); x_22 = x_61; goto block_25; } @@ -22061,7 +22923,7 @@ x_79 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_ x_80 = lean_ctor_get(x_79, 0); lean_inc(x_80); lean_dec_ref(x_79); -x_81 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_3, x_58, x_28, x_80, x_7, x_8, x_9, x_10, x_11, x_12); +x_81 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_2, x_58, x_28, x_80, x_7, x_8, x_9, x_10, x_11, x_12); x_22 = x_81; goto block_25; } @@ -22080,8 +22942,6 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_2); lean_dec(x_1); x_82 = !lean_is_exclusive(x_64); if (x_82 == 0) @@ -22114,8 +22974,6 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_2); lean_dec(x_1); x_85 = !lean_is_exclusive(x_62); if (x_85 == 0) @@ -22156,7 +23014,7 @@ lean_object* x_94; lean_object* x_95; lean_dec(x_88); lean_dec_ref(x_30); x_94 = lean_box(0); -x_95 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_3, x_92, x_28, x_94, x_7, x_8, x_9, x_10, x_11, x_12); +x_95 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_2, x_92, x_28, x_94, x_7, x_8, x_9, x_10, x_11, x_12); x_22 = x_95; goto block_25; } @@ -22219,7 +23077,7 @@ x_114 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); lean_dec_ref(x_114); -x_116 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_3, x_92, x_28, x_115, x_7, x_8, x_9, x_10, x_11, x_12); +x_116 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_2, x_92, x_28, x_115, x_7, x_8, x_9, x_10, x_11, x_12); x_22 = x_116; goto block_25; } @@ -22237,8 +23095,6 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_2); lean_dec(x_1); x_117 = lean_ctor_get(x_98, 0); lean_inc(x_117); @@ -22271,8 +23127,6 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_2); lean_dec(x_1); x_120 = lean_ctor_get(x_96, 0); lean_inc(x_120); @@ -22317,9 +23171,8 @@ lean_inc_ref(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc_ref(x_126); -lean_inc(x_2); lean_inc(x_1); -x_128 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_2, x_126, x_7, x_8, x_9, x_10, x_11, x_12); +x_128 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_126, x_7, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_128) == 0) { lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; @@ -22347,8 +23200,6 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_2); lean_dec(x_1); x_134 = lean_ctor_get(x_128, 0); lean_inc(x_134); @@ -22384,9 +23235,8 @@ lean_inc_ref(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc_ref(x_126); -lean_inc(x_2); lean_inc(x_1); -x_139 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_2, x_126, x_7, x_8, x_9, x_10, x_11, x_12); +x_139 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_126, x_7, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_139) == 0) { lean_object* x_140; lean_object* x_141; uint8_t x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; @@ -22415,8 +23265,6 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_2); lean_dec(x_1); x_146 = lean_ctor_get(x_139, 0); lean_inc(x_146); @@ -22469,7 +23317,7 @@ lean_dec(x_151); lean_dec(x_150); lean_dec_ref(x_126); x_157 = lean_box(0); -x_158 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_3, x_155, x_124, x_157, x_7, x_8, x_9, x_10, x_11, x_12); +x_158 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_2, x_155, x_124, x_157, x_7, x_8, x_9, x_10, x_11, x_12); x_22 = x_158; goto block_25; } @@ -22537,7 +23385,7 @@ x_177 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta x_178 = lean_ctor_get(x_177, 0); lean_inc(x_178); lean_dec_ref(x_177); -x_179 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_3, x_155, x_124, x_178, x_7, x_8, x_9, x_10, x_11, x_12); +x_179 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_2, x_155, x_124, x_178, x_7, x_8, x_9, x_10, x_11, x_12); x_22 = x_179; goto block_25; } @@ -22556,8 +23404,6 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_2); lean_dec(x_1); x_180 = lean_ctor_get(x_161, 0); lean_inc(x_180); @@ -22591,8 +23437,6 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_2); lean_dec(x_1); x_183 = lean_ctor_get(x_159, 0); lean_inc(x_183); @@ -22620,8 +23464,7 @@ block_21: lean_object* x_16; lean_object* x_17; uint8_t x_18; x_16 = lean_unsigned_to_nat(1u); x_17 = lean_nat_add(x_6, x_16); -lean_dec(x_6); -x_18 = lean_nat_dec_lt(x_17, x_4); +x_18 = lean_nat_dec_lt(x_17, x_3); if (x_18 == 0) { lean_object* x_19; @@ -22632,7 +23475,6 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_2); lean_dec(x_1); x_19 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_19, 0, x_14); @@ -22640,9 +23482,9 @@ return x_19; } else { -x_5 = x_14; -x_6 = x_17; -goto _start; +lean_object* x_20; +x_20 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg(x_1, x_2, x_3, x_14, x_17, x_7, x_8, x_9, x_10, x_11, x_12); +return x_20; } } block_25: @@ -22660,842 +23502,12 @@ goto block_21; } } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_20; -x_20 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg(x_1, x_2, x_3, x_7, x_9, x_10, x_13, x_14, x_15, x_16, x_17, x_18); -return x_20; -} -} -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_15; lean_object* x_16; lean_object* x_23; uint8_t x_27; -x_27 = !lean_is_exclusive(x_6); -if (x_27 == 0) -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; -x_28 = lean_ctor_get(x_6, 0); -x_29 = lean_ctor_get(x_6, 1); -x_30 = l_Lean_instInhabitedExpr; -x_31 = lean_array_get_borrowed(x_30, x_28, x_7); -x_32 = l_Lean_Expr_isFVar(x_31); -if (x_32 == 0) -{ -lean_object* x_33; -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc_ref(x_31); -lean_inc(x_2); -lean_inc(x_1); -x_33 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_2, x_31, x_8, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -lean_dec_ref(x_33); -x_35 = lean_array_set(x_28, x_7, x_34); -x_36 = lean_box(x_32); -x_37 = lean_array_push(x_29, x_36); -lean_ctor_set(x_6, 1, x_37); -lean_ctor_set(x_6, 0, x_35); -x_15 = x_6; -x_16 = lean_box(0); -goto block_22; -} -else -{ -uint8_t x_38; -lean_free_object(x_6); -lean_dec(x_29); -lean_dec(x_28); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) -{ -return x_33; -} -else -{ -lean_object* x_39; lean_object* x_40; -x_39 = lean_ctor_get(x_33, 0); -lean_inc(x_39); -lean_dec(x_33); -x_40 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_40, 0, x_39); -return x_40; -} -} -} -else -{ -lean_object* x_41; lean_object* x_42; -x_41 = l_Lean_Expr_fvarId_x21(x_31); -x_42 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__0___redArg(x_8, x_41); -lean_dec(x_41); -if (lean_obj_tag(x_42) == 0) -{ -lean_object* x_43; -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc_ref(x_31); -lean_inc(x_2); -lean_inc(x_1); -x_43 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_2, x_31, x_8, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_43) == 0) -{ -lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -lean_dec_ref(x_43); -x_45 = lean_array_set(x_28, x_7, x_44); -x_46 = 0; -x_47 = lean_box(x_46); -x_48 = lean_array_push(x_29, x_47); -lean_ctor_set(x_6, 1, x_48); -lean_ctor_set(x_6, 0, x_45); -x_15 = x_6; -x_16 = lean_box(0); -goto block_22; -} -else -{ -uint8_t x_49; -lean_free_object(x_6); -lean_dec(x_29); -lean_dec(x_28); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_49 = !lean_is_exclusive(x_43); -if (x_49 == 0) -{ -return x_43; -} -else -{ -lean_object* x_50; lean_object* x_51; -x_50 = lean_ctor_get(x_43, 0); -lean_inc(x_50); -lean_dec(x_43); -x_51 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_51, 0, x_50); -return x_51; -} -} -} -else -{ -lean_object* x_52; uint8_t x_53; -lean_inc_ref(x_31); -lean_free_object(x_6); -x_52 = lean_ctor_get(x_42, 0); -lean_inc(x_52); -lean_dec_ref(x_42); -x_53 = !lean_is_exclusive(x_52); -if (x_53 == 0) -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; -x_54 = lean_ctor_get(x_52, 0); -x_55 = lean_ctor_get(x_52, 1); -lean_dec(x_55); -x_56 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; -x_57 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_56, x_12); -x_58 = lean_ctor_get(x_57, 0); -lean_inc(x_58); -lean_dec_ref(x_57); -lean_inc(x_54); -x_59 = lean_array_set(x_28, x_7, x_54); -x_60 = lean_unbox(x_58); -lean_dec(x_58); -if (x_60 == 0) -{ -lean_object* x_61; lean_object* x_62; -lean_free_object(x_52); -lean_dec(x_54); -lean_dec_ref(x_31); -x_61 = lean_box(0); -x_62 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_3, x_59, x_29, x_61, x_8, x_9, x_10, x_11, x_12, x_13); -x_23 = x_62; -goto block_26; -} -else -{ -lean_object* x_63; -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc_ref(x_31); -x_63 = lean_infer_type(x_31, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_63) == 0) -{ -lean_object* x_64; lean_object* x_65; -x_64 = lean_ctor_get(x_63, 0); -lean_inc(x_64); -lean_dec_ref(x_63); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_54); -x_65 = lean_infer_type(x_54, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_65) == 0) -{ -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_66 = lean_ctor_get(x_65, 0); -lean_inc(x_66); -lean_dec_ref(x_65); -x_67 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___closed__1; -x_68 = l_Lean_MessageData_ofExpr(x_31); -lean_ctor_set_tag(x_52, 7); -lean_ctor_set(x_52, 1, x_68); -lean_ctor_set(x_52, 0, x_67); -x_69 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkAppDiscrEqs_go___closed__4; -x_70 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_70, 0, x_52); -lean_ctor_set(x_70, 1, x_69); -x_71 = l_Lean_MessageData_ofExpr(x_64); -x_72 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_72, 0, x_70); -lean_ctor_set(x_72, 1, x_71); -x_73 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___closed__3; -x_74 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -x_75 = l_Lean_MessageData_ofExpr(x_54); -x_76 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_76, 0, x_74); -lean_ctor_set(x_76, 1, x_75); -x_77 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_69); -x_78 = l_Lean_MessageData_ofExpr(x_66); -x_79 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_79, 0, x_77); -lean_ctor_set(x_79, 1, x_78); -x_80 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_56, x_79, x_10, x_11, x_12, x_13); -x_81 = lean_ctor_get(x_80, 0); -lean_inc(x_81); -lean_dec_ref(x_80); -x_82 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_3, x_59, x_29, x_81, x_8, x_9, x_10, x_11, x_12, x_13); -x_23 = x_82; -goto block_26; -} -else -{ -uint8_t x_83; -lean_dec(x_64); -lean_dec_ref(x_59); -lean_free_object(x_52); -lean_dec(x_54); -lean_dec_ref(x_31); -lean_dec(x_29); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_83 = !lean_is_exclusive(x_65); -if (x_83 == 0) -{ -return x_65; -} -else -{ -lean_object* x_84; lean_object* x_85; -x_84 = lean_ctor_get(x_65, 0); -lean_inc(x_84); -lean_dec(x_65); -x_85 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_85, 0, x_84); -return x_85; -} -} -} -else -{ -uint8_t x_86; -lean_dec_ref(x_59); -lean_free_object(x_52); -lean_dec(x_54); -lean_dec_ref(x_31); -lean_dec(x_29); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_86 = !lean_is_exclusive(x_63); -if (x_86 == 0) -{ -return x_63; -} -else -{ -lean_object* x_87; lean_object* x_88; -x_87 = lean_ctor_get(x_63, 0); -lean_inc(x_87); -lean_dec(x_63); -x_88 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_88, 0, x_87); -return x_88; -} -} -} -} -else -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; -x_89 = lean_ctor_get(x_52, 0); -lean_inc(x_89); -lean_dec(x_52); -x_90 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; -x_91 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_90, x_12); -x_92 = lean_ctor_get(x_91, 0); -lean_inc(x_92); -lean_dec_ref(x_91); -lean_inc(x_89); -x_93 = lean_array_set(x_28, x_7, x_89); -x_94 = lean_unbox(x_92); -lean_dec(x_92); -if (x_94 == 0) -{ -lean_object* x_95; lean_object* x_96; -lean_dec(x_89); -lean_dec_ref(x_31); -x_95 = lean_box(0); -x_96 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_3, x_93, x_29, x_95, x_8, x_9, x_10, x_11, x_12, x_13); -x_23 = x_96; -goto block_26; -} -else -{ -lean_object* x_97; -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc_ref(x_31); -x_97 = lean_infer_type(x_31, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_97) == 0) -{ -lean_object* x_98; lean_object* x_99; -x_98 = lean_ctor_get(x_97, 0); -lean_inc(x_98); -lean_dec_ref(x_97); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_89); -x_99 = lean_infer_type(x_89, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_99) == 0) -{ -lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -lean_dec_ref(x_99); -x_101 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___closed__1; -x_102 = l_Lean_MessageData_ofExpr(x_31); -x_103 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_103, 0, x_101); -lean_ctor_set(x_103, 1, x_102); -x_104 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkAppDiscrEqs_go___closed__4; -x_105 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_105, 0, x_103); -lean_ctor_set(x_105, 1, x_104); -x_106 = l_Lean_MessageData_ofExpr(x_98); -x_107 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_107, 0, x_105); -lean_ctor_set(x_107, 1, x_106); -x_108 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___closed__3; -x_109 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_109, 0, x_107); -lean_ctor_set(x_109, 1, x_108); -x_110 = l_Lean_MessageData_ofExpr(x_89); -x_111 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_111, 0, x_109); -lean_ctor_set(x_111, 1, x_110); -x_112 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_112, 0, x_111); -lean_ctor_set(x_112, 1, x_104); -x_113 = l_Lean_MessageData_ofExpr(x_100); -x_114 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_114, 0, x_112); -lean_ctor_set(x_114, 1, x_113); -x_115 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_90, x_114, x_10, x_11, x_12, x_13); -x_116 = lean_ctor_get(x_115, 0); -lean_inc(x_116); -lean_dec_ref(x_115); -x_117 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_3, x_93, x_29, x_116, x_8, x_9, x_10, x_11, x_12, x_13); -x_23 = x_117; -goto block_26; -} -else -{ -lean_object* x_118; lean_object* x_119; lean_object* x_120; -lean_dec(x_98); -lean_dec_ref(x_93); -lean_dec(x_89); -lean_dec_ref(x_31); -lean_dec(x_29); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_118 = lean_ctor_get(x_99, 0); -lean_inc(x_118); -if (lean_is_exclusive(x_99)) { - lean_ctor_release(x_99, 0); - x_119 = x_99; -} else { - lean_dec_ref(x_99); - x_119 = lean_box(0); -} -if (lean_is_scalar(x_119)) { - x_120 = lean_alloc_ctor(1, 1, 0); -} else { - x_120 = x_119; -} -lean_ctor_set(x_120, 0, x_118); -return x_120; -} -} -else -{ -lean_object* x_121; lean_object* x_122; lean_object* x_123; -lean_dec_ref(x_93); -lean_dec(x_89); -lean_dec_ref(x_31); -lean_dec(x_29); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_121 = lean_ctor_get(x_97, 0); -lean_inc(x_121); -if (lean_is_exclusive(x_97)) { - lean_ctor_release(x_97, 0); - x_122 = x_97; -} else { - lean_dec_ref(x_97); - x_122 = lean_box(0); -} -if (lean_is_scalar(x_122)) { - x_123 = lean_alloc_ctor(1, 1, 0); -} else { - x_123 = x_122; -} -lean_ctor_set(x_123, 0, x_121); -return x_123; -} -} -} -} -} -} -else -{ -lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; uint8_t x_128; -x_124 = lean_ctor_get(x_6, 0); -x_125 = lean_ctor_get(x_6, 1); -lean_inc(x_125); -lean_inc(x_124); -lean_dec(x_6); -x_126 = l_Lean_instInhabitedExpr; -x_127 = lean_array_get_borrowed(x_126, x_124, x_7); -x_128 = l_Lean_Expr_isFVar(x_127); -if (x_128 == 0) -{ -lean_object* x_129; -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc_ref(x_127); -lean_inc(x_2); -lean_inc(x_1); -x_129 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_2, x_127, x_8, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_129) == 0) -{ -lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; -x_130 = lean_ctor_get(x_129, 0); -lean_inc(x_130); -lean_dec_ref(x_129); -x_131 = lean_array_set(x_124, x_7, x_130); -x_132 = lean_box(x_128); -x_133 = lean_array_push(x_125, x_132); -x_134 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_134, 0, x_131); -lean_ctor_set(x_134, 1, x_133); -x_15 = x_134; -x_16 = lean_box(0); -goto block_22; -} -else -{ -lean_object* x_135; lean_object* x_136; lean_object* x_137; -lean_dec(x_125); -lean_dec(x_124); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_135 = lean_ctor_get(x_129, 0); -lean_inc(x_135); -if (lean_is_exclusive(x_129)) { - lean_ctor_release(x_129, 0); - x_136 = x_129; -} else { - lean_dec_ref(x_129); - x_136 = lean_box(0); -} -if (lean_is_scalar(x_136)) { - x_137 = lean_alloc_ctor(1, 1, 0); -} else { - x_137 = x_136; -} -lean_ctor_set(x_137, 0, x_135); -return x_137; -} -} -else -{ -lean_object* x_138; lean_object* x_139; -x_138 = l_Lean_Expr_fvarId_x21(x_127); -x_139 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__0___redArg(x_8, x_138); -lean_dec(x_138); -if (lean_obj_tag(x_139) == 0) -{ -lean_object* x_140; -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc_ref(x_127); -lean_inc(x_2); -lean_inc(x_1); -x_140 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_2, x_127, x_8, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_140) == 0) -{ -lean_object* x_141; lean_object* x_142; uint8_t x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; -x_141 = lean_ctor_get(x_140, 0); -lean_inc(x_141); -lean_dec_ref(x_140); -x_142 = lean_array_set(x_124, x_7, x_141); -x_143 = 0; -x_144 = lean_box(x_143); -x_145 = lean_array_push(x_125, x_144); -x_146 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_146, 0, x_142); -lean_ctor_set(x_146, 1, x_145); -x_15 = x_146; -x_16 = lean_box(0); -goto block_22; -} -else -{ -lean_object* x_147; lean_object* x_148; lean_object* x_149; -lean_dec(x_125); -lean_dec(x_124); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_147 = lean_ctor_get(x_140, 0); -lean_inc(x_147); -if (lean_is_exclusive(x_140)) { - lean_ctor_release(x_140, 0); - x_148 = x_140; -} else { - lean_dec_ref(x_140); - x_148 = lean_box(0); -} -if (lean_is_scalar(x_148)) { - x_149 = lean_alloc_ctor(1, 1, 0); -} else { - x_149 = x_148; -} -lean_ctor_set(x_149, 0, x_147); -return x_149; -} -} -else -{ -lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; uint8_t x_157; -lean_inc_ref(x_127); -x_150 = lean_ctor_get(x_139, 0); -lean_inc(x_150); -lean_dec_ref(x_139); -x_151 = lean_ctor_get(x_150, 0); -lean_inc(x_151); -if (lean_is_exclusive(x_150)) { - lean_ctor_release(x_150, 0); - lean_ctor_release(x_150, 1); - x_152 = x_150; -} else { - lean_dec_ref(x_150); - x_152 = lean_box(0); -} -x_153 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; -x_154 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_153, x_12); -x_155 = lean_ctor_get(x_154, 0); -lean_inc(x_155); -lean_dec_ref(x_154); -lean_inc(x_151); -x_156 = lean_array_set(x_124, x_7, x_151); -x_157 = lean_unbox(x_155); -lean_dec(x_155); -if (x_157 == 0) -{ -lean_object* x_158; lean_object* x_159; -lean_dec(x_152); -lean_dec(x_151); -lean_dec_ref(x_127); -x_158 = lean_box(0); -x_159 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_3, x_156, x_125, x_158, x_8, x_9, x_10, x_11, x_12, x_13); -x_23 = x_159; -goto block_26; -} -else -{ -lean_object* x_160; -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc_ref(x_127); -x_160 = lean_infer_type(x_127, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_160) == 0) -{ -lean_object* x_161; lean_object* x_162; -x_161 = lean_ctor_get(x_160, 0); -lean_inc(x_161); -lean_dec_ref(x_160); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_151); -x_162 = lean_infer_type(x_151, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_162) == 0) -{ -lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; -x_163 = lean_ctor_get(x_162, 0); -lean_inc(x_163); -lean_dec_ref(x_162); -x_164 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___closed__1; -x_165 = l_Lean_MessageData_ofExpr(x_127); -if (lean_is_scalar(x_152)) { - x_166 = lean_alloc_ctor(7, 2, 0); -} else { - x_166 = x_152; - lean_ctor_set_tag(x_166, 7); -} -lean_ctor_set(x_166, 0, x_164); -lean_ctor_set(x_166, 1, x_165); -x_167 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkAppDiscrEqs_go___closed__4; -x_168 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_168, 0, x_166); -lean_ctor_set(x_168, 1, x_167); -x_169 = l_Lean_MessageData_ofExpr(x_161); -x_170 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_170, 0, x_168); -lean_ctor_set(x_170, 1, x_169); -x_171 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___closed__3; -x_172 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_172, 0, x_170); -lean_ctor_set(x_172, 1, x_171); -x_173 = l_Lean_MessageData_ofExpr(x_151); -x_174 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_174, 0, x_172); -lean_ctor_set(x_174, 1, x_173); -x_175 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_175, 0, x_174); -lean_ctor_set(x_175, 1, x_167); -x_176 = l_Lean_MessageData_ofExpr(x_163); -x_177 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_177, 0, x_175); -lean_ctor_set(x_177, 1, x_176); -x_178 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_153, x_177, x_10, x_11, x_12, x_13); -x_179 = lean_ctor_get(x_178, 0); -lean_inc(x_179); -lean_dec_ref(x_178); -x_180 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___lam__0(x_3, x_156, x_125, x_179, x_8, x_9, x_10, x_11, x_12, x_13); -x_23 = x_180; -goto block_26; -} -else -{ -lean_object* x_181; lean_object* x_182; lean_object* x_183; -lean_dec(x_161); -lean_dec_ref(x_156); -lean_dec(x_152); -lean_dec(x_151); -lean_dec_ref(x_127); -lean_dec(x_125); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_181 = lean_ctor_get(x_162, 0); -lean_inc(x_181); -if (lean_is_exclusive(x_162)) { - lean_ctor_release(x_162, 0); - x_182 = x_162; -} else { - lean_dec_ref(x_162); - x_182 = lean_box(0); -} -if (lean_is_scalar(x_182)) { - x_183 = lean_alloc_ctor(1, 1, 0); -} else { - x_183 = x_182; -} -lean_ctor_set(x_183, 0, x_181); -return x_183; -} -} -else -{ -lean_object* x_184; lean_object* x_185; lean_object* x_186; -lean_dec_ref(x_156); -lean_dec(x_152); -lean_dec(x_151); -lean_dec_ref(x_127); -lean_dec(x_125); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_184 = lean_ctor_get(x_160, 0); -lean_inc(x_184); -if (lean_is_exclusive(x_160)) { - lean_ctor_release(x_160, 0); - x_185 = x_160; -} else { - lean_dec_ref(x_160); - x_185 = lean_box(0); -} -if (lean_is_scalar(x_185)) { - x_186 = lean_alloc_ctor(1, 1, 0); -} else { - x_186 = x_185; -} -lean_ctor_set(x_186, 0, x_184); -return x_186; -} -} -} -} -} -block_22: -{ -lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_17 = lean_unsigned_to_nat(1u); -x_18 = lean_nat_add(x_7, x_17); -x_19 = lean_nat_dec_lt(x_18, x_4); -if (x_19 == 0) -{ -lean_object* x_20; -lean_dec(x_18); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_20 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_20, 0, x_15); -return x_20; -} -else -{ -lean_object* x_21; -x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg(x_1, x_2, x_3, x_4, x_15, x_18, x_8, x_9, x_10, x_11, x_12, x_13); -return x_21; -} -} -block_26: -{ -lean_object* x_24; lean_object* x_25; -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); -lean_dec_ref(x_23); -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -lean_dec(x_24); -x_15 = x_25; -x_16 = lean_box(0); -goto block_22; -} -} -} -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { -_start: -{ -lean_object* x_20; -x_20 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg(x_1, x_2, x_3, x_7, x_8, x_9, x_10, x_13, x_14, x_15, x_16, x_17, x_18); -return x_20; +lean_object* x_19; +x_19 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg(x_1, x_2, x_6, x_7, x_8, x_9, x_12, x_13, x_14, x_15, x_16, x_17); +return x_19; } } static lean_object* _init_l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__0___closed__0() { @@ -23747,190 +23759,189 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2(uint8_t x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2(uint8_t x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { _start: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_55; uint8_t x_56; -x_55 = lean_unsigned_to_nat(0u); -x_56 = lean_nat_dec_lt(x_55, x_6); -if (x_56 == 0) +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_54; uint8_t x_55; +x_54 = lean_unsigned_to_nat(0u); +x_55 = lean_nat_dec_lt(x_54, x_5); +if (x_55 == 0) { -lean_dec_ref(x_10); -lean_dec(x_6); -x_43 = x_14; -x_44 = x_7; -x_45 = lean_box(0); -goto block_54; +lean_dec_ref(x_9); +lean_dec(x_5); +x_42 = x_13; +x_43 = x_6; +x_44 = lean_box(0); +goto block_53; } else { -lean_object* x_57; lean_object* x_58; -lean_inc_ref(x_7); +lean_object* x_56; lean_object* x_57; +lean_inc_ref(x_6); +lean_inc(x_13); +x_56 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_56, 0, x_13); +lean_ctor_set(x_56, 1, x_6); +lean_inc(x_18); +lean_inc_ref(x_17); +lean_inc(x_16); +lean_inc_ref(x_15); lean_inc(x_14); -x_57 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_57, 0, x_14); -lean_ctor_set(x_57, 1, x_7); -lean_inc(x_19); -lean_inc_ref(x_18); -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc(x_15); -lean_inc(x_6); +lean_inc(x_5); lean_inc(x_3); -x_58 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__5___redArg(x_8, x_3, x_6, x_7, x_9, x_10, x_11, x_12, x_6, x_55, x_57, x_55, x_14, x_15, x_16, x_17, x_18, x_19); -lean_dec(x_6); -if (lean_obj_tag(x_58) == 0) +x_57 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__5___redArg(x_7, x_3, x_5, x_6, x_8, x_9, x_10, x_11, x_5, x_54, x_56, x_54, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_5); +if (lean_obj_tag(x_57) == 0) { -lean_object* x_59; lean_object* x_60; lean_object* x_61; +lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_58 = lean_ctor_get(x_57, 0); +lean_inc(x_58); +lean_dec_ref(x_57); x_59 = lean_ctor_get(x_58, 0); lean_inc(x_59); -lean_dec_ref(x_58); -x_60 = lean_ctor_get(x_59, 0); +x_60 = lean_ctor_get(x_58, 1); lean_inc(x_60); -x_61 = lean_ctor_get(x_59, 1); -lean_inc(x_61); -lean_dec(x_59); +lean_dec(x_58); +x_42 = x_59; x_43 = x_60; -x_44 = x_61; -x_45 = lean_box(0); -goto block_54; +x_44 = lean_box(0); +goto block_53; } else { -uint8_t x_62; -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_5); +uint8_t x_61; +lean_dec(x_18); +lean_dec_ref(x_17); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); lean_dec(x_4); lean_dec(x_3); -x_62 = !lean_is_exclusive(x_58); -if (x_62 == 0) +x_61 = !lean_is_exclusive(x_57); +if (x_61 == 0) { -return x_58; +return x_57; } else { -lean_object* x_63; lean_object* x_64; -x_63 = lean_ctor_get(x_58, 0); -lean_inc(x_63); -lean_dec(x_58); -x_64 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_64, 0, x_63); -return x_64; +lean_object* x_62; lean_object* x_63; +x_62 = lean_ctor_get(x_57, 0); +lean_inc(x_62); +lean_dec(x_57); +x_63 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_63, 0, x_62); +return x_63; } } } -block_29: +block_28: { -uint8_t x_27; lean_object* x_28; -x_27 = 1; -x_28 = l_Lean_Meta_mkLambdaFVars(x_12, x_21, x_1, x_2, x_1, x_2, x_27, x_22, x_23, x_24, x_25); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -return x_28; +uint8_t x_26; lean_object* x_27; +x_26 = 1; +x_27 = l_Lean_Meta_mkLambdaFVars(x_11, x_20, x_1, x_2, x_1, x_2, x_26, x_21, x_22, x_23, x_24); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); +return x_27; } -block_42: +block_41: { -lean_object* x_33; -lean_inc(x_19); -lean_inc_ref(x_18); -lean_inc(x_17); -lean_inc_ref(x_16); -x_33 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_3, x_4, x_31, x_30, x_15, x_16, x_17, x_18, x_19); -if (lean_obj_tag(x_33) == 0) +lean_object* x_32; +lean_inc(x_18); +lean_inc_ref(x_17); +lean_inc(x_16); +lean_inc_ref(x_15); +x_32 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_3, x_30, x_29, x_14, x_15, x_16, x_17, x_18); +if (lean_obj_tag(x_32) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -lean_dec_ref(x_33); -lean_inc(x_5); -x_35 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_5, x_18); -x_36 = lean_ctor_get(x_35, 0); -lean_inc(x_36); -lean_dec_ref(x_35); -x_37 = lean_unbox(x_36); -lean_dec(x_36); -if (x_37 == 0) +lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +lean_dec_ref(x_32); +lean_inc(x_4); +x_34 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_4, x_17); +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +lean_dec_ref(x_34); +x_36 = lean_unbox(x_35); +lean_dec(x_35); +if (x_36 == 0) { -lean_dec(x_5); -x_21 = x_34; +lean_dec(x_4); +x_20 = x_33; +x_21 = x_15; x_22 = x_16; x_23 = x_17; x_24 = x_18; -x_25 = x_19; -x_26 = lean_box(0); -goto block_29; +x_25 = lean_box(0); +goto block_28; } else { -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_38 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2___closed__1; -lean_inc(x_34); -x_39 = l_Lean_indentExpr(x_34); -x_40 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_40, 0, x_38); -lean_ctor_set(x_40, 1, x_39); -x_41 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_5, x_40, x_16, x_17, x_18, x_19); -lean_dec_ref(x_41); -x_21 = x_34; +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_37 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2___closed__1; +lean_inc(x_33); +x_38 = l_Lean_indentExpr(x_33); +x_39 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +x_40 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_4, x_39, x_15, x_16, x_17, x_18); +lean_dec_ref(x_40); +x_20 = x_33; +x_21 = x_15; x_22 = x_16; x_23 = x_17; x_24 = x_18; -x_25 = x_19; -x_26 = lean_box(0); -goto block_29; +x_25 = lean_box(0); +goto block_28; } } else { -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_5); -return x_33; +lean_dec(x_18); +lean_dec_ref(x_17); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_4); +return x_32; } } -block_54: +block_53: { -lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; -lean_inc(x_5); -x_46 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_5, x_18); -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); -lean_dec_ref(x_46); -x_48 = lean_expr_instantiate_rev(x_44, x_12); -lean_dec_ref(x_44); -x_49 = lean_unbox(x_47); -lean_dec(x_47); -if (x_49 == 0) +lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; +lean_inc(x_4); +x_45 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_4, x_17); +x_46 = lean_ctor_get(x_45, 0); +lean_inc(x_46); +lean_dec_ref(x_45); +x_47 = lean_expr_instantiate_rev(x_43, x_11); +lean_dec_ref(x_43); +x_48 = lean_unbox(x_46); +lean_dec(x_46); +if (x_48 == 0) { -x_30 = x_43; -x_31 = x_48; -x_32 = lean_box(0); -goto block_42; +x_29 = x_42; +x_30 = x_47; +x_31 = lean_box(0); +goto block_41; } else { -lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_50 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2___closed__3; -lean_inc_ref(x_48); -x_51 = l_Lean_indentExpr(x_48); -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_50); -lean_ctor_set(x_52, 1, x_51); -lean_inc(x_5); -x_53 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_5, x_52, x_16, x_17, x_18, x_19); -lean_dec_ref(x_53); -x_30 = x_43; -x_31 = x_48; -x_32 = lean_box(0); -goto block_42; +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_49 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2___closed__3; +lean_inc_ref(x_47); +x_50 = l_Lean_indentExpr(x_47); +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_49); +lean_ctor_set(x_51, 1, x_50); +lean_inc(x_4); +x_52 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_4, x_51, x_15, x_16, x_17, x_18); +lean_dec_ref(x_52); +x_29 = x_42; +x_30 = x_47; +x_31 = lean_box(0); +goto block_41; } } } @@ -24009,7 +24020,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__2; x_2 = lean_unsigned_to_nat(75u); -x_3 = lean_unsigned_to_nat(420u); +x_3 = lean_unsigned_to_nat(425u); x_4 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__5_spec__5___redArg___closed__0; x_5 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__0; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -24047,7 +24058,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__11; x_2 = lean_unsigned_to_nat(6u); -x_3 = lean_unsigned_to_nat(381u); +x_3 = lean_unsigned_to_nat(386u); x_4 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__5_spec__5___redArg___closed__0; x_5 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__0; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -24080,1370 +24091,553 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_15; lean_object* x_16; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; -if (lean_obj_tag(x_5) == 5) +lean_object* x_14; lean_object* x_15; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +if (lean_obj_tag(x_4) == 5) { -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_38 = lean_ctor_get(x_5, 0); +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_37 = lean_ctor_get(x_4, 0); +lean_inc_ref(x_37); +x_38 = lean_ctor_get(x_4, 1); lean_inc_ref(x_38); -x_39 = lean_ctor_get(x_5, 1); -lean_inc_ref(x_39); -lean_dec_ref(x_5); -x_40 = lean_array_set(x_6, x_7, x_39); -x_41 = lean_unsigned_to_nat(1u); -x_42 = lean_nat_sub(x_7, x_41); -lean_dec(x_7); -x_5 = x_38; -x_6 = x_40; -x_7 = x_42; +lean_dec_ref(x_4); +x_39 = lean_array_set(x_5, x_6, x_38); +x_40 = lean_unsigned_to_nat(1u); +x_41 = lean_nat_sub(x_6, x_40); +lean_dec(x_6); +x_4 = x_37; +x_5 = x_39; +x_6 = x_41; goto _start; } else { -lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_89; uint8_t x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_127; lean_object* x_128; uint8_t x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_152; uint8_t x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; uint8_t x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_216; uint8_t x_217; +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; uint8_t x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; lean_object* x_106; lean_object* x_107; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; uint8_t x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; uint8_t x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_215; uint8_t x_216; +lean_dec(x_6); +x_43 = lean_unsigned_to_nat(6u); +x_188 = lean_array_get_size(x_5); +x_215 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__15; +x_216 = lean_nat_dec_lt(x_43, x_188); +if (x_216 == 0) +{ +lean_inc_ref(x_5); +x_189 = x_5; +x_190 = x_215; +x_191 = lean_box(0); +goto block_214; +} +else +{ +lean_object* x_217; lean_object* x_218; +lean_inc_ref(x_5); +x_217 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_217, 0, x_5); +lean_ctor_set(x_217, 1, x_215); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_1); +x_218 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg(x_1, x_2, x_188, x_43, x_217, x_43, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_218) == 0) +{ +lean_object* x_219; lean_object* x_220; lean_object* x_221; +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +lean_dec_ref(x_218); +x_220 = lean_ctor_get(x_219, 0); +lean_inc(x_220); +x_221 = lean_ctor_get(x_219, 1); +lean_inc(x_221); +lean_dec(x_219); +x_189 = x_220; +x_190 = x_221; +x_191 = lean_box(0); +goto block_214; +} +else +{ +uint8_t x_222; +lean_dec(x_188); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); lean_dec(x_7); -x_44 = lean_unsigned_to_nat(6u); -x_189 = lean_array_get_size(x_6); -x_216 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__15; -x_217 = lean_nat_dec_lt(x_44, x_189); -if (x_217 == 0) -{ -lean_inc_ref(x_6); -x_190 = x_6; -x_191 = x_216; -x_192 = lean_box(0); -goto block_215; -} -else -{ -lean_object* x_218; lean_object* x_219; -lean_inc_ref(x_6); -x_218 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_218, 0, x_6); -lean_ctor_set(x_218, 1, x_216); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_2); -lean_inc(x_1); -x_219 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg(x_1, x_2, x_3, x_189, x_44, x_218, x_44, x_8, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_219) == 0) -{ -lean_object* x_220; lean_object* x_221; lean_object* x_222; -x_220 = lean_ctor_get(x_219, 0); -lean_inc(x_220); -lean_dec_ref(x_219); -x_221 = lean_ctor_get(x_220, 0); -lean_inc(x_221); -x_222 = lean_ctor_get(x_220, 1); -lean_inc(x_222); -lean_dec(x_220); -x_190 = x_221; -x_191 = x_222; -x_192 = lean_box(0); -goto block_215; -} -else -{ -uint8_t x_223; -lean_dec(x_189); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); -lean_dec(x_2); +lean_dec_ref(x_3); lean_dec(x_1); -x_223 = !lean_is_exclusive(x_219); -if (x_223 == 0) +x_222 = !lean_is_exclusive(x_218); +if (x_222 == 0) { -return x_219; +return x_218; } else { -lean_object* x_224; lean_object* x_225; -x_224 = lean_ctor_get(x_219, 0); -lean_inc(x_224); -lean_dec(x_219); -x_225 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_225, 0, x_224); -return x_225; +lean_object* x_223; lean_object* x_224; +x_223 = lean_ctor_get(x_218, 0); +lean_inc(x_223); +lean_dec(x_218); +x_224 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_224, 0, x_223); +return x_224; } } } -block_88: +block_87: { -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_64 = lean_array_get(x_54, x_6, x_52); -x_65 = lean_box(x_47); -x_66 = lean_box(x_3); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_63 = lean_array_get(x_50, x_5, x_51); +x_64 = lean_box(x_48); +x_65 = lean_box(x_2); lean_inc(x_1); -x_67 = lean_alloc_closure((void*)(l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2___boxed), 20, 11); -lean_closure_set(x_67, 0, x_65); -lean_closure_set(x_67, 1, x_66); -lean_closure_set(x_67, 2, x_1); -lean_closure_set(x_67, 3, x_2); -lean_closure_set(x_67, 4, x_48); -lean_closure_set(x_67, 5, x_45); -lean_closure_set(x_67, 6, x_64); -lean_closure_set(x_67, 7, x_49); -lean_closure_set(x_67, 8, x_44); -lean_closure_set(x_67, 9, x_46); -lean_closure_set(x_67, 10, x_6); -x_68 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_68, 0, x_51); -lean_inc(x_62); -lean_inc_ref(x_61); -lean_inc(x_60); -lean_inc_ref(x_59); -x_69 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__7___redArg(x_50, x_68, x_67, x_53, x_53, x_57, x_58, x_59, x_60, x_61, x_62); -if (lean_obj_tag(x_69) == 0) +x_66 = lean_alloc_closure((void*)(l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2___boxed), 19, 10); +lean_closure_set(x_66, 0, x_64); +lean_closure_set(x_66, 1, x_65); +lean_closure_set(x_66, 2, x_1); +lean_closure_set(x_66, 3, x_45); +lean_closure_set(x_66, 4, x_47); +lean_closure_set(x_66, 5, x_63); +lean_closure_set(x_66, 6, x_46); +lean_closure_set(x_66, 7, x_43); +lean_closure_set(x_66, 8, x_44); +lean_closure_set(x_66, 9, x_5); +x_67 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_67, 0, x_53); +lean_inc(x_61); +lean_inc_ref(x_60); +lean_inc(x_59); +lean_inc_ref(x_58); +x_68 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__7___redArg(x_49, x_67, x_66, x_54, x_54, x_56, x_57, x_58, x_59, x_60, x_61); +if (lean_obj_tag(x_68) == 0) { -lean_object* x_70; lean_object* x_71; -x_70 = lean_ctor_get(x_69, 0); -lean_inc(x_70); -lean_dec_ref(x_69); -lean_inc(x_62); -lean_inc_ref(x_61); -lean_inc(x_60); -lean_inc_ref(x_59); -lean_inc(x_70); -x_71 = l_Lean_Meta_isTypeCorrect(x_70, x_59, x_60, x_61, x_62); -if (lean_obj_tag(x_71) == 0) +lean_object* x_69; lean_object* x_70; +x_69 = lean_ctor_get(x_68, 0); +lean_inc(x_69); +lean_dec_ref(x_68); +lean_inc(x_61); +lean_inc_ref(x_60); +lean_inc(x_59); +lean_inc_ref(x_58); +lean_inc(x_69); +x_70 = l_Lean_Meta_isTypeCorrect(x_69, x_58, x_59, x_60, x_61); +if (lean_obj_tag(x_70) == 0) { -lean_object* x_72; uint8_t x_73; -x_72 = lean_ctor_get(x_71, 0); -lean_inc(x_72); -lean_dec_ref(x_71); -x_73 = lean_unbox(x_72); -lean_dec(x_72); -if (x_73 == 0) +lean_object* x_71; uint8_t x_72; +x_71 = lean_ctor_get(x_70, 0); +lean_inc(x_71); +lean_dec_ref(x_70); +x_72 = lean_unbox(x_71); +lean_dec(x_71); +if (x_72 == 0) { -lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; uint8_t x_82; -lean_dec_ref(x_56); -lean_dec(x_55); +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; +lean_dec_ref(x_55); lean_dec(x_52); -lean_dec_ref(x_5); +lean_dec(x_51); lean_dec_ref(x_4); -x_74 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__3; -x_75 = l_Lean_MessageData_ofName(x_1); -x_76 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_76, 0, x_74); -lean_ctor_set(x_76, 1, x_75); -x_77 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__5; -x_78 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -x_79 = l_Lean_indentExpr(x_70); -x_80 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_80, 0, x_78); -lean_ctor_set(x_80, 1, x_79); -x_81 = l_Lean_throwError___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__1___redArg(x_80, x_59, x_60, x_61, x_62); -lean_dec(x_62); -lean_dec_ref(x_61); -lean_dec(x_60); -lean_dec_ref(x_59); -x_82 = !lean_is_exclusive(x_81); -if (x_82 == 0) +lean_dec_ref(x_3); +x_73 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__3; +x_74 = l_Lean_MessageData_ofName(x_1); +x_75 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_75, 0, x_73); +lean_ctor_set(x_75, 1, x_74); +x_76 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__5; +x_77 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); +x_78 = l_Lean_indentExpr(x_69); +x_79 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_79, 0, x_77); +lean_ctor_set(x_79, 1, x_78); +x_80 = l_Lean_throwError___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__1___redArg(x_79, x_58, x_59, x_60, x_61); +lean_dec(x_61); +lean_dec_ref(x_60); +lean_dec(x_59); +lean_dec_ref(x_58); +x_81 = !lean_is_exclusive(x_80); +if (x_81 == 0) { -return x_81; +return x_80; } else { -lean_object* x_83; lean_object* x_84; -x_83 = lean_ctor_get(x_81, 0); -lean_inc(x_83); -lean_dec(x_81); -x_84 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_84, 0, x_83); -return x_84; +lean_object* x_82; lean_object* x_83; +x_82 = lean_ctor_get(x_80, 0); +lean_inc(x_82); +lean_dec(x_80); +x_83 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_83, 0, x_82); +return x_83; } } else { lean_dec(x_1); -x_20 = x_70; -x_21 = x_52; +x_19 = x_51; +x_20 = x_52; +x_21 = x_69; x_22 = x_55; -x_23 = x_56; +x_23 = x_58; x_24 = x_59; x_25 = x_60; x_26 = x_61; -x_27 = x_62; -x_28 = lean_box(0); -goto block_37; +x_27 = lean_box(0); +goto block_36; } } else { -uint8_t x_85; +uint8_t x_84; +lean_dec(x_69); +lean_dec(x_61); +lean_dec_ref(x_60); +lean_dec(x_59); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec(x_52); +lean_dec(x_51); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +x_84 = !lean_is_exclusive(x_70); +if (x_84 == 0) +{ +return x_70; +} +else +{ +lean_object* x_85; lean_object* x_86; +x_85 = lean_ctor_get(x_70, 0); +lean_inc(x_85); lean_dec(x_70); -lean_dec(x_62); -lean_dec_ref(x_61); -lean_dec(x_60); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec(x_55); -lean_dec(x_52); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_1); -x_85 = !lean_is_exclusive(x_71); -if (x_85 == 0) -{ -return x_71; -} -else -{ -lean_object* x_86; lean_object* x_87; -x_86 = lean_ctor_get(x_71, 0); -lean_inc(x_86); -lean_dec(x_71); -x_87 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_87, 0, x_86); -return x_87; +x_86 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_86, 0, x_85); +return x_86; } } } else { -lean_dec(x_62); -lean_dec_ref(x_61); -lean_dec(x_60); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec(x_55); +lean_dec(x_61); +lean_dec_ref(x_60); +lean_dec(x_59); +lean_dec_ref(x_58); +lean_dec_ref(x_55); lean_dec(x_52); -lean_dec_ref(x_5); +lean_dec(x_51); lean_dec_ref(x_4); +lean_dec_ref(x_3); lean_dec(x_1); -return x_69; +return x_68; } } -block_126: +block_125: { -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -lean_inc_ref(x_105); -x_109 = l_Array_toSubarray___redArg(x_105, x_107, x_108); -x_110 = l_Array_ofSubarray___redArg(x_109); +lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; +lean_inc_ref(x_103); +x_108 = l_Array_toSubarray___redArg(x_103, x_106, x_107); +x_109 = l_Array_ofSubarray___redArg(x_108); +lean_dec_ref(x_108); +lean_inc_ref(x_4); +x_110 = l_Lean_mkAppN(x_4, x_109); lean_dec_ref(x_109); -lean_inc_ref(x_5); -x_111 = l_Lean_mkAppN(x_5, x_110); -lean_dec_ref(x_110); lean_inc(x_96); -lean_inc_ref(x_106); -lean_inc(x_98); -lean_inc_ref(x_101); -x_112 = lean_infer_type(x_111, x_101, x_98, x_106, x_96); -if (lean_obj_tag(x_112) == 0) +lean_inc_ref(x_95); +lean_inc(x_99); +lean_inc_ref(x_102); +x_111 = lean_infer_type(x_110, x_102, x_99, x_95, x_96); +if (lean_obj_tag(x_111) == 0) { -lean_object* x_113; lean_object* x_114; -x_113 = lean_ctor_get(x_112, 0); -lean_inc(x_113); -lean_dec_ref(x_112); +lean_object* x_112; lean_object* x_113; +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +lean_dec_ref(x_111); lean_inc(x_96); -lean_inc_ref(x_106); -lean_inc(x_98); -lean_inc_ref(x_101); -x_114 = lean_whnf(x_113, x_101, x_98, x_106, x_96); -if (lean_obj_tag(x_114) == 0) +lean_inc_ref(x_95); +lean_inc(x_99); +lean_inc_ref(x_102); +x_113 = lean_whnf(x_112, x_102, x_99, x_95, x_96); +if (lean_obj_tag(x_113) == 0) { -lean_object* x_115; -x_115 = lean_ctor_get(x_114, 0); -lean_inc(x_115); +lean_object* x_114; +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +lean_dec_ref(x_113); +if (lean_obj_tag(x_114) == 7) +{ +lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; +x_115 = lean_ctor_get(x_114, 1); +lean_inc_ref(x_115); lean_dec_ref(x_114); -if (lean_obj_tag(x_115) == 7) -{ -lean_object* x_116; lean_object* x_117; lean_object* x_118; uint8_t x_119; -x_116 = lean_ctor_get(x_115, 1); -lean_inc_ref(x_116); -lean_dec_ref(x_115); -lean_inc(x_99); -x_117 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_99, x_106); -x_118 = lean_ctor_get(x_117, 0); -lean_inc(x_118); -lean_dec_ref(x_117); -x_119 = lean_unbox(x_118); -lean_dec(x_118); -if (x_119 == 0) +lean_inc(x_94); +x_116 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_94, x_95); +x_117 = lean_ctor_get(x_116, 0); +lean_inc(x_117); +lean_dec_ref(x_116); +x_118 = lean_unbox(x_117); +lean_dec(x_117); +if (x_118 == 0) { +x_44 = x_88; x_45 = x_89; -x_46 = x_91; -x_47 = x_90; +x_46 = x_90; +x_47 = x_91; x_48 = x_92; -x_49 = x_93; -x_50 = x_116; -x_51 = x_94; -x_52 = x_95; -x_53 = x_102; -x_54 = x_103; -x_55 = x_99; -x_56 = x_105; -x_57 = x_100; -x_58 = x_104; -x_59 = x_101; -x_60 = x_98; -x_61 = x_106; -x_62 = x_96; -x_63 = lean_box(0); -goto block_88; +x_49 = x_115; +x_50 = x_93; +x_51 = x_101; +x_52 = x_94; +x_53 = x_98; +x_54 = x_105; +x_55 = x_103; +x_56 = x_97; +x_57 = x_104; +x_58 = x_102; +x_59 = x_99; +x_60 = x_95; +x_61 = x_96; +x_62 = lean_box(0); +goto block_87; } else { -lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; -x_120 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__7; -lean_inc_ref(x_116); -x_121 = l_Lean_MessageData_ofExpr(x_116); -x_122 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_122, 0, x_120); -lean_ctor_set(x_122, 1, x_121); -lean_inc(x_99); -x_123 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_99, x_122, x_101, x_98, x_106, x_96); -lean_dec_ref(x_123); +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_119 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__7; +lean_inc_ref(x_115); +x_120 = l_Lean_MessageData_ofExpr(x_115); +x_121 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_121, 0, x_119); +lean_ctor_set(x_121, 1, x_120); +lean_inc(x_94); +x_122 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_94, x_121, x_102, x_99, x_95, x_96); +lean_dec_ref(x_122); +x_44 = x_88; x_45 = x_89; -x_46 = x_91; -x_47 = x_90; +x_46 = x_90; +x_47 = x_91; x_48 = x_92; -x_49 = x_93; -x_50 = x_116; -x_51 = x_94; -x_52 = x_95; -x_53 = x_102; -x_54 = x_103; -x_55 = x_99; -x_56 = x_105; -x_57 = x_100; -x_58 = x_104; -x_59 = x_101; -x_60 = x_98; -x_61 = x_106; -x_62 = x_96; -x_63 = lean_box(0); -goto block_88; +x_49 = x_115; +x_50 = x_93; +x_51 = x_101; +x_52 = x_94; +x_53 = x_98; +x_54 = x_105; +x_55 = x_103; +x_56 = x_97; +x_57 = x_104; +x_58 = x_102; +x_59 = x_99; +x_60 = x_95; +x_61 = x_96; +x_62 = lean_box(0); +goto block_87; } } else { -lean_object* x_124; lean_object* x_125; -lean_dec(x_115); -lean_dec_ref(x_105); +lean_object* x_123; lean_object* x_124; +lean_dec(x_114); lean_dec_ref(x_103); -lean_dec(x_99); -lean_dec(x_95); +lean_dec(x_101); +lean_dec(x_98); lean_dec(x_94); lean_dec_ref(x_93); -lean_dec(x_92); -lean_dec_ref(x_91); +lean_dec(x_91); +lean_dec_ref(x_90); lean_dec(x_89); -lean_dec_ref(x_6); +lean_dec_ref(x_88); lean_dec_ref(x_5); lean_dec_ref(x_4); -lean_dec(x_2); +lean_dec_ref(x_3); lean_dec(x_1); -x_124 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__8; -x_125 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__0(x_124, x_100, x_104, x_101, x_98, x_106, x_96); -return x_125; +x_123 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__8; +x_124 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__0(x_123, x_97, x_104, x_102, x_99, x_95, x_96); +return x_124; } } else { -lean_dec_ref(x_106); -lean_dec_ref(x_105); lean_dec(x_104); lean_dec_ref(x_103); -lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec_ref(x_102); +lean_dec(x_101); lean_dec(x_99); lean_dec(x_98); +lean_dec(x_97); lean_dec(x_96); -lean_dec(x_95); +lean_dec_ref(x_95); lean_dec(x_94); lean_dec_ref(x_93); -lean_dec(x_92); -lean_dec_ref(x_91); +lean_dec(x_91); +lean_dec_ref(x_90); lean_dec(x_89); -lean_dec_ref(x_6); +lean_dec_ref(x_88); lean_dec_ref(x_5); lean_dec_ref(x_4); -lean_dec(x_2); +lean_dec_ref(x_3); lean_dec(x_1); -return x_114; +return x_113; } } else { -lean_dec_ref(x_106); -lean_dec_ref(x_105); lean_dec(x_104); lean_dec_ref(x_103); -lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec_ref(x_102); +lean_dec(x_101); lean_dec(x_99); lean_dec(x_98); +lean_dec(x_97); lean_dec(x_96); -lean_dec(x_95); +lean_dec_ref(x_95); lean_dec(x_94); lean_dec_ref(x_93); -lean_dec(x_92); -lean_dec_ref(x_91); +lean_dec(x_91); +lean_dec_ref(x_90); lean_dec(x_89); -lean_dec_ref(x_6); +lean_dec_ref(x_88); lean_dec_ref(x_5); lean_dec_ref(x_4); -lean_dec(x_2); +lean_dec_ref(x_3); lean_dec(x_1); -return x_112; +return x_111; } } -block_151: +block_150: { -lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; uint8_t x_150; -x_146 = lean_array_set(x_138, x_137, x_135); -x_147 = lean_unsigned_to_nat(3u); -x_148 = lean_unsigned_to_nat(0u); -x_149 = lean_array_get_size(x_146); -x_150 = lean_nat_dec_le(x_147, x_149); -if (x_150 == 0) +lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; +x_145 = lean_array_set(x_137, x_134, x_133); +x_146 = lean_unsigned_to_nat(3u); +x_147 = lean_unsigned_to_nat(0u); +x_148 = lean_array_get_size(x_145); +x_149 = lean_nat_dec_le(x_146, x_148); +if (x_149 == 0) { +x_88 = x_126; x_89 = x_127; -x_90 = x_129; -x_91 = x_128; +x_90 = x_128; +x_91 = x_129; x_92 = x_130; x_93 = x_131; x_94 = x_132; -x_95 = x_147; -x_96 = x_144; -x_97 = lean_box(0); -x_98 = x_142; -x_99 = x_136; -x_100 = x_139; -x_101 = x_141; -x_102 = x_134; -x_103 = x_133; -x_104 = x_140; -x_105 = x_146; -x_106 = x_143; +x_95 = x_142; +x_96 = x_143; +x_97 = x_138; +x_98 = x_135; +x_99 = x_141; +x_100 = lean_box(0); +x_101 = x_146; +x_102 = x_140; +x_103 = x_145; +x_104 = x_139; +x_105 = x_136; +x_106 = x_147; x_107 = x_148; -x_108 = x_149; -goto block_126; +goto block_125; } else { -lean_dec(x_149); +lean_dec(x_148); +x_88 = x_126; x_89 = x_127; -x_90 = x_129; -x_91 = x_128; +x_90 = x_128; +x_91 = x_129; x_92 = x_130; x_93 = x_131; x_94 = x_132; -x_95 = x_147; -x_96 = x_144; -x_97 = lean_box(0); -x_98 = x_142; -x_99 = x_136; -x_100 = x_139; -x_101 = x_141; -x_102 = x_134; -x_103 = x_133; -x_104 = x_140; -x_105 = x_146; -x_106 = x_143; -x_107 = x_148; -x_108 = x_147; -goto block_126; +x_95 = x_142; +x_96 = x_143; +x_97 = x_138; +x_98 = x_135; +x_99 = x_141; +x_100 = lean_box(0); +x_101 = x_146; +x_102 = x_140; +x_103 = x_145; +x_104 = x_139; +x_105 = x_136; +x_106 = x_147; +x_107 = x_146; +goto block_125; } } -block_188: +block_187: { -lean_object* x_171; -lean_inc(x_169); -lean_inc_ref(x_168); -lean_inc(x_167); -lean_inc_ref(x_166); -lean_inc_ref(x_160); -x_171 = l_Lean_Meta_isTypeCorrect(x_160, x_166, x_167, x_168, x_169); -if (lean_obj_tag(x_171) == 0) +lean_object* x_170; +lean_inc(x_168); +lean_inc_ref(x_167); +lean_inc(x_166); +lean_inc_ref(x_165); +lean_inc_ref(x_158); +x_170 = l_Lean_Meta_isTypeCorrect(x_158, x_165, x_166, x_167, x_168); +if (lean_obj_tag(x_170) == 0) { -lean_object* x_172; uint8_t x_173; -x_172 = lean_ctor_get(x_171, 0); -lean_inc(x_172); -lean_dec_ref(x_171); -x_173 = lean_unbox(x_172); -lean_dec(x_172); -if (x_173 == 0) -{ -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; uint8_t x_182; -lean_dec(x_165); -lean_dec(x_164); -lean_dec_ref(x_163); -lean_dec(x_161); -lean_dec_ref(x_159); -lean_dec(x_157); -lean_dec_ref(x_156); -lean_dec(x_155); -lean_dec_ref(x_154); -lean_dec(x_152); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_2); -x_174 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__10; -x_175 = l_Lean_MessageData_ofName(x_1); -x_176 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_176, 0, x_174); -lean_ctor_set(x_176, 1, x_175); -x_177 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__5; -x_178 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_178, 0, x_176); -lean_ctor_set(x_178, 1, x_177); -x_179 = l_Lean_indentExpr(x_160); -x_180 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_180, 0, x_178); -lean_ctor_set(x_180, 1, x_179); -x_181 = l_Lean_throwError___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__1___redArg(x_180, x_166, x_167, x_168, x_169); -lean_dec(x_169); -lean_dec_ref(x_168); -lean_dec(x_167); -lean_dec_ref(x_166); -x_182 = !lean_is_exclusive(x_181); -if (x_182 == 0) -{ -return x_181; -} -else -{ -lean_object* x_183; lean_object* x_184; -x_183 = lean_ctor_get(x_181, 0); -lean_inc(x_183); -lean_dec(x_181); -x_184 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_184, 0, x_183); -return x_184; -} -} -else -{ -x_127 = x_152; -x_128 = x_154; -x_129 = x_153; -x_130 = x_155; -x_131 = x_156; -x_132 = x_157; -x_133 = x_159; -x_134 = x_158; -x_135 = x_160; -x_136 = x_161; -x_137 = x_162; -x_138 = x_163; -x_139 = x_164; -x_140 = x_165; -x_141 = x_166; -x_142 = x_167; -x_143 = x_168; -x_144 = x_169; -x_145 = lean_box(0); -goto block_151; -} -} -else -{ -uint8_t x_185; -lean_dec(x_169); -lean_dec_ref(x_168); -lean_dec(x_167); -lean_dec_ref(x_166); -lean_dec(x_165); -lean_dec(x_164); -lean_dec_ref(x_163); -lean_dec(x_161); -lean_dec_ref(x_160); -lean_dec_ref(x_159); -lean_dec(x_157); -lean_dec_ref(x_156); -lean_dec(x_155); -lean_dec_ref(x_154); -lean_dec(x_152); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_185 = !lean_is_exclusive(x_171); -if (x_185 == 0) -{ -return x_171; -} -else -{ -lean_object* x_186; lean_object* x_187; -x_186 = lean_ctor_get(x_171, 0); -lean_inc(x_186); +lean_object* x_171; uint8_t x_172; +x_171 = lean_ctor_get(x_170, 0); +lean_inc(x_171); +lean_dec_ref(x_170); +x_172 = lean_unbox(x_171); lean_dec(x_171); -x_187 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_187, 0, x_186); -return x_187; -} -} -} -block_215: +if (x_172 == 0) { -lean_object* x_193; lean_object* x_194; uint8_t x_195; -x_193 = lean_array_get_size(x_191); -x_194 = lean_nat_sub(x_189, x_44); -lean_dec(x_189); -x_195 = lean_nat_dec_eq(x_193, x_194); -lean_dec(x_194); -if (x_195 == 0) -{ -lean_object* x_196; lean_object* x_197; -lean_dec(x_193); -lean_dec_ref(x_191); -lean_dec_ref(x_190); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_196 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__12; -x_197 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__0(x_196, x_8, x_9, x_10, x_11, x_12, x_13); -return x_197; -} -else -{ -lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; uint8_t x_204; lean_object* x_205; -x_198 = l_Lean_instInhabitedExpr; -x_199 = lean_unsigned_to_nat(4u); -x_200 = lean_array_get_borrowed(x_198, x_6, x_199); -x_201 = lean_unsigned_to_nat(2u); -x_202 = lean_array_get_borrowed(x_198, x_6, x_201); -lean_inc_ref(x_202); -lean_inc(x_1); -lean_inc(x_193); -lean_inc_ref(x_200); -lean_inc_ref(x_191); -lean_inc_ref(x_190); -x_203 = lean_alloc_closure((void*)(l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__1___boxed), 16, 7); -lean_closure_set(x_203, 0, x_198); -lean_closure_set(x_203, 1, x_190); -lean_closure_set(x_203, 2, x_191); -lean_closure_set(x_203, 3, x_200); -lean_closure_set(x_203, 4, x_193); -lean_closure_set(x_203, 5, x_1); -lean_closure_set(x_203, 6, x_202); -x_204 = 0; -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc_ref(x_202); -x_205 = l_Lean_Meta_lambdaTelescope___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__3___redArg(x_202, x_203, x_204, x_8, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_205) == 0) -{ -lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; uint8_t x_210; -x_206 = lean_ctor_get(x_205, 0); -lean_inc(x_206); -lean_dec_ref(x_205); -x_207 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; -x_208 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_207, x_12); -x_209 = lean_ctor_get(x_208, 0); -lean_inc(x_209); -lean_dec_ref(x_208); -x_210 = lean_unbox(x_209); -lean_dec(x_209); -if (x_210 == 0) -{ -lean_inc(x_193); -x_152 = x_193; -x_153 = x_204; -x_154 = x_198; -x_155 = x_207; -x_156 = x_191; -x_157 = x_193; -x_158 = x_204; -x_159 = x_198; -x_160 = x_206; -x_161 = x_207; -x_162 = x_201; -x_163 = x_190; -x_164 = x_8; -x_165 = x_9; -x_166 = x_10; -x_167 = x_11; -x_168 = x_12; -x_169 = x_13; -x_170 = lean_box(0); -goto block_188; -} -else -{ -lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; -x_211 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__14; -lean_inc(x_206); -x_212 = l_Lean_MessageData_ofExpr(x_206); -x_213 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_213, 0, x_211); -lean_ctor_set(x_213, 1, x_212); -x_214 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_207, x_213, x_10, x_11, x_12, x_13); -lean_dec_ref(x_214); -lean_inc(x_193); -x_152 = x_193; -x_153 = x_204; -x_154 = x_198; -x_155 = x_207; -x_156 = x_191; -x_157 = x_193; -x_158 = x_204; -x_159 = x_198; -x_160 = x_206; -x_161 = x_207; -x_162 = x_201; -x_163 = x_190; -x_164 = x_8; -x_165 = x_9; -x_166 = x_10; -x_167 = x_11; -x_168 = x_12; -x_169 = x_13; -x_170 = lean_box(0); -goto block_188; -} -} -else -{ -lean_dec(x_193); -lean_dec_ref(x_191); -lean_dec_ref(x_190); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_2); -lean_dec(x_1); -return x_205; -} -} -} -} -block_19: -{ -lean_object* x_17; lean_object* x_18; -x_17 = l_Lean_mkAppN(x_5, x_15); -lean_dec_ref(x_15); -x_18 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_18, 0, x_17); -return x_18; -} -block_37: -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; -lean_inc(x_22); -x_29 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_22, x_26); -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -lean_dec_ref(x_29); -x_31 = lean_array_set(x_23, x_21, x_20); -lean_dec(x_21); -x_32 = lean_unbox(x_30); -lean_dec(x_30); -if (x_32 == 0) -{ -lean_dec(x_27); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_22); -lean_dec_ref(x_4); -x_15 = x_31; -x_16 = lean_box(0); -goto block_19; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_33 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__1; -x_34 = l_Lean_MessageData_ofExpr(x_4); -x_35 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_35, 0, x_33); -lean_ctor_set(x_35, 1, x_34); -x_36 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_22, x_35, x_24, x_25, x_26, x_27); -lean_dec(x_27); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec_ref(x_36); -x_15 = x_31; -x_16 = lean_box(0); -goto block_19; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_15; lean_object* x_16; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; -if (lean_obj_tag(x_5) == 5) -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_38 = lean_ctor_get(x_5, 0); -lean_inc_ref(x_38); -x_39 = lean_ctor_get(x_5, 1); -lean_inc_ref(x_39); -lean_dec_ref(x_5); -x_40 = lean_array_set(x_6, x_7, x_39); -x_41 = lean_unsigned_to_nat(1u); -x_42 = lean_nat_sub(x_7, x_41); -x_43 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10(x_1, x_2, x_3, x_4, x_38, x_40, x_42, x_8, x_9, x_10, x_11, x_12, x_13); -return x_43; -} -else -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_89; lean_object* x_90; lean_object* x_91; uint8_t x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_127; lean_object* x_128; lean_object* x_129; uint8_t x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; uint8_t x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_216; uint8_t x_217; -x_44 = lean_unsigned_to_nat(6u); -x_189 = lean_array_get_size(x_6); -x_216 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__15; -x_217 = lean_nat_dec_lt(x_44, x_189); -if (x_217 == 0) -{ -lean_inc_ref(x_6); -x_190 = x_6; -x_191 = x_216; -x_192 = lean_box(0); -goto block_215; -} -else -{ -lean_object* x_218; lean_object* x_219; -lean_inc_ref(x_6); -x_218 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_218, 0, x_6); -lean_ctor_set(x_218, 1, x_216); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_2); -lean_inc(x_1); -x_219 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg(x_1, x_2, x_3, x_189, x_44, x_218, x_44, x_8, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_219) == 0) -{ -lean_object* x_220; lean_object* x_221; lean_object* x_222; -x_220 = lean_ctor_get(x_219, 0); -lean_inc(x_220); -lean_dec_ref(x_219); -x_221 = lean_ctor_get(x_220, 0); -lean_inc(x_221); -x_222 = lean_ctor_get(x_220, 1); -lean_inc(x_222); -lean_dec(x_220); -x_190 = x_221; -x_191 = x_222; -x_192 = lean_box(0); -goto block_215; -} -else -{ -uint8_t x_223; -lean_dec(x_189); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_223 = !lean_is_exclusive(x_219); -if (x_223 == 0) -{ -return x_219; -} -else -{ -lean_object* x_224; lean_object* x_225; -x_224 = lean_ctor_get(x_219, 0); -lean_inc(x_224); -lean_dec(x_219); -x_225 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_225, 0, x_224); -return x_225; -} -} -} -block_88: -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_64 = lean_array_get(x_50, x_6, x_51); -x_65 = lean_box(x_48); -x_66 = lean_box(x_3); -lean_inc(x_1); -x_67 = lean_alloc_closure((void*)(l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2___boxed), 20, 11); -lean_closure_set(x_67, 0, x_65); -lean_closure_set(x_67, 1, x_66); -lean_closure_set(x_67, 2, x_1); -lean_closure_set(x_67, 3, x_2); -lean_closure_set(x_67, 4, x_46); -lean_closure_set(x_67, 5, x_49); -lean_closure_set(x_67, 6, x_64); -lean_closure_set(x_67, 7, x_47); -lean_closure_set(x_67, 8, x_44); -lean_closure_set(x_67, 9, x_45); -lean_closure_set(x_67, 10, x_6); -x_68 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_68, 0, x_55); -lean_inc(x_62); -lean_inc_ref(x_61); -lean_inc(x_60); -lean_inc_ref(x_59); -x_69 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__7___redArg(x_54, x_68, x_67, x_53, x_53, x_57, x_58, x_59, x_60, x_61, x_62); -if (lean_obj_tag(x_69) == 0) -{ -lean_object* x_70; lean_object* x_71; -x_70 = lean_ctor_get(x_69, 0); -lean_inc(x_70); -lean_dec_ref(x_69); -lean_inc(x_62); -lean_inc_ref(x_61); -lean_inc(x_60); -lean_inc_ref(x_59); -lean_inc(x_70); -x_71 = l_Lean_Meta_isTypeCorrect(x_70, x_59, x_60, x_61, x_62); -if (lean_obj_tag(x_71) == 0) -{ -lean_object* x_72; uint8_t x_73; -x_72 = lean_ctor_get(x_71, 0); -lean_inc(x_72); -lean_dec_ref(x_71); -x_73 = lean_unbox(x_72); -lean_dec(x_72); -if (x_73 == 0) -{ -lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; uint8_t x_82; -lean_dec_ref(x_56); -lean_dec(x_52); -lean_dec(x_51); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_74 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__3; -x_75 = l_Lean_MessageData_ofName(x_1); -x_76 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_76, 0, x_74); -lean_ctor_set(x_76, 1, x_75); -x_77 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__5; -x_78 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -x_79 = l_Lean_indentExpr(x_70); -x_80 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_80, 0, x_78); -lean_ctor_set(x_80, 1, x_79); -x_81 = l_Lean_throwError___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__1___redArg(x_80, x_59, x_60, x_61, x_62); -lean_dec(x_62); -lean_dec_ref(x_61); -lean_dec(x_60); -lean_dec_ref(x_59); -x_82 = !lean_is_exclusive(x_81); -if (x_82 == 0) -{ -return x_81; -} -else -{ -lean_object* x_83; lean_object* x_84; -x_83 = lean_ctor_get(x_81, 0); -lean_inc(x_83); -lean_dec(x_81); -x_84 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_84, 0, x_83); -return x_84; -} -} -else -{ -lean_dec(x_1); -x_20 = x_70; -x_21 = x_51; -x_22 = x_52; -x_23 = x_56; -x_24 = x_59; -x_25 = x_60; -x_26 = x_61; -x_27 = x_62; -x_28 = lean_box(0); -goto block_37; -} -} -else -{ -uint8_t x_85; -lean_dec(x_70); -lean_dec(x_62); -lean_dec_ref(x_61); -lean_dec(x_60); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec(x_52); -lean_dec(x_51); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_1); -x_85 = !lean_is_exclusive(x_71); -if (x_85 == 0) -{ -return x_71; -} -else -{ -lean_object* x_86; lean_object* x_87; -x_86 = lean_ctor_get(x_71, 0); -lean_inc(x_86); -lean_dec(x_71); -x_87 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_87, 0, x_86); -return x_87; -} -} -} -else -{ -lean_dec(x_62); -lean_dec_ref(x_61); -lean_dec(x_60); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec(x_52); -lean_dec(x_51); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_1); -return x_69; -} -} -block_126: -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -lean_inc_ref(x_100); -x_109 = l_Array_toSubarray___redArg(x_100, x_107, x_108); -x_110 = l_Array_ofSubarray___redArg(x_109); -lean_dec_ref(x_109); -lean_inc_ref(x_5); -x_111 = l_Lean_mkAppN(x_5, x_110); -lean_dec_ref(x_110); -lean_inc(x_95); -lean_inc_ref(x_97); -lean_inc(x_101); -lean_inc_ref(x_94); -x_112 = lean_infer_type(x_111, x_94, x_101, x_97, x_95); -if (lean_obj_tag(x_112) == 0) -{ -lean_object* x_113; lean_object* x_114; -x_113 = lean_ctor_get(x_112, 0); -lean_inc(x_113); -lean_dec_ref(x_112); -lean_inc(x_95); -lean_inc_ref(x_97); -lean_inc(x_101); -lean_inc_ref(x_94); -x_114 = lean_whnf(x_113, x_94, x_101, x_97, x_95); -if (lean_obj_tag(x_114) == 0) -{ -lean_object* x_115; -x_115 = lean_ctor_get(x_114, 0); -lean_inc(x_115); -lean_dec_ref(x_114); -if (lean_obj_tag(x_115) == 7) -{ -lean_object* x_116; lean_object* x_117; lean_object* x_118; uint8_t x_119; -x_116 = lean_ctor_get(x_115, 1); -lean_inc_ref(x_116); -lean_dec_ref(x_115); -lean_inc(x_96); -x_117 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_96, x_97); -x_118 = lean_ctor_get(x_117, 0); -lean_inc(x_118); -lean_dec_ref(x_117); -x_119 = lean_unbox(x_118); -lean_dec(x_118); -if (x_119 == 0) -{ -x_45 = x_89; -x_46 = x_90; -x_47 = x_91; -x_48 = x_92; -x_49 = x_93; -x_50 = x_99; -x_51 = x_102; -x_52 = x_96; -x_53 = x_105; -x_54 = x_116; -x_55 = x_106; -x_56 = x_100; -x_57 = x_103; -x_58 = x_98; -x_59 = x_94; -x_60 = x_101; -x_61 = x_97; -x_62 = x_95; -x_63 = lean_box(0); -goto block_88; -} -else -{ -lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; -x_120 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__7; -lean_inc_ref(x_116); -x_121 = l_Lean_MessageData_ofExpr(x_116); -x_122 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_122, 0, x_120); -lean_ctor_set(x_122, 1, x_121); -lean_inc(x_96); -x_123 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_96, x_122, x_94, x_101, x_97, x_95); -lean_dec_ref(x_123); -x_45 = x_89; -x_46 = x_90; -x_47 = x_91; -x_48 = x_92; -x_49 = x_93; -x_50 = x_99; -x_51 = x_102; -x_52 = x_96; -x_53 = x_105; -x_54 = x_116; -x_55 = x_106; -x_56 = x_100; -x_57 = x_103; -x_58 = x_98; -x_59 = x_94; -x_60 = x_101; -x_61 = x_97; -x_62 = x_95; -x_63 = lean_box(0); -goto block_88; -} -} -else -{ -lean_object* x_124; lean_object* x_125; -lean_dec(x_115); -lean_dec(x_106); -lean_dec(x_102); -lean_dec_ref(x_100); -lean_dec_ref(x_99); -lean_dec(x_96); -lean_dec(x_93); -lean_dec_ref(x_91); -lean_dec(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_124 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__8; -x_125 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__0(x_124, x_103, x_98, x_94, x_101, x_97, x_95); -return x_125; -} -} -else -{ -lean_dec(x_106); -lean_dec(x_103); -lean_dec(x_102); -lean_dec(x_101); -lean_dec_ref(x_100); -lean_dec_ref(x_99); -lean_dec(x_98); -lean_dec_ref(x_97); -lean_dec(x_96); -lean_dec(x_95); -lean_dec_ref(x_94); -lean_dec(x_93); -lean_dec_ref(x_91); -lean_dec(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_2); -lean_dec(x_1); -return x_114; -} -} -else -{ -lean_dec(x_106); -lean_dec(x_103); -lean_dec(x_102); -lean_dec(x_101); -lean_dec_ref(x_100); -lean_dec_ref(x_99); -lean_dec(x_98); -lean_dec_ref(x_97); -lean_dec(x_96); -lean_dec(x_95); -lean_dec_ref(x_94); -lean_dec(x_93); -lean_dec_ref(x_91); -lean_dec(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_2); -lean_dec(x_1); -return x_112; -} -} -block_151: -{ -lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; uint8_t x_150; -x_146 = lean_array_set(x_138, x_132, x_135); -x_147 = lean_unsigned_to_nat(3u); -x_148 = lean_unsigned_to_nat(0u); -x_149 = lean_array_get_size(x_146); -x_150 = lean_nat_dec_le(x_147, x_149); -if (x_150 == 0) -{ -x_89 = x_127; -x_90 = x_128; -x_91 = x_129; -x_92 = x_130; -x_93 = x_131; -x_94 = x_141; -x_95 = x_144; -x_96 = x_134; -x_97 = x_143; -x_98 = x_140; -x_99 = x_133; -x_100 = x_146; -x_101 = x_142; -x_102 = x_147; -x_103 = x_139; -x_104 = lean_box(0); -x_105 = x_136; -x_106 = x_137; -x_107 = x_148; -x_108 = x_149; -goto block_126; -} -else -{ -lean_dec(x_149); -x_89 = x_127; -x_90 = x_128; -x_91 = x_129; -x_92 = x_130; -x_93 = x_131; -x_94 = x_141; -x_95 = x_144; -x_96 = x_134; -x_97 = x_143; -x_98 = x_140; -x_99 = x_133; -x_100 = x_146; -x_101 = x_142; -x_102 = x_147; -x_103 = x_139; -x_104 = lean_box(0); -x_105 = x_136; -x_106 = x_137; -x_107 = x_148; -x_108 = x_147; -goto block_126; -} -} -block_188: -{ -lean_object* x_171; -lean_inc(x_169); -lean_inc_ref(x_168); -lean_inc(x_167); -lean_inc_ref(x_166); -lean_inc_ref(x_160); -x_171 = l_Lean_Meta_isTypeCorrect(x_160, x_166, x_167, x_168, x_169); -if (lean_obj_tag(x_171) == 0) -{ -lean_object* x_172; uint8_t x_173; -x_172 = lean_ctor_get(x_171, 0); -lean_inc(x_172); -lean_dec_ref(x_171); -x_173 = lean_unbox(x_172); -lean_dec(x_172); -if (x_173 == 0) -{ -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; uint8_t x_182; -lean_dec(x_165); +lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; uint8_t x_181; lean_dec(x_164); -lean_dec_ref(x_163); -lean_dec(x_162); -lean_dec(x_159); -lean_dec_ref(x_158); -lean_dec(x_156); -lean_dec_ref(x_154); -lean_dec(x_153); -lean_dec_ref(x_152); -lean_dec_ref(x_6); +lean_dec(x_163); +lean_dec_ref(x_162); +lean_dec(x_160); +lean_dec(x_157); +lean_dec_ref(x_156); +lean_dec(x_154); +lean_dec_ref(x_153); +lean_dec(x_152); +lean_dec_ref(x_151); lean_dec_ref(x_5); lean_dec_ref(x_4); -lean_dec(x_2); -x_174 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__10; -x_175 = l_Lean_MessageData_ofName(x_1); -x_176 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_176, 0, x_174); -lean_ctor_set(x_176, 1, x_175); -x_177 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__5; -x_178 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_178, 0, x_176); -lean_ctor_set(x_178, 1, x_177); -x_179 = l_Lean_indentExpr(x_160); -x_180 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_180, 0, x_178); -lean_ctor_set(x_180, 1, x_179); -x_181 = l_Lean_throwError___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__1___redArg(x_180, x_166, x_167, x_168, x_169); -lean_dec(x_169); -lean_dec_ref(x_168); -lean_dec(x_167); -lean_dec_ref(x_166); -x_182 = !lean_is_exclusive(x_181); -if (x_182 == 0) +lean_dec_ref(x_3); +x_173 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__10; +x_174 = l_Lean_MessageData_ofName(x_1); +x_175 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +x_176 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__5; +x_177 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_177, 0, x_175); +lean_ctor_set(x_177, 1, x_176); +x_178 = l_Lean_indentExpr(x_158); +x_179 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_179, 0, x_177); +lean_ctor_set(x_179, 1, x_178); +x_180 = l_Lean_throwError___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__1___redArg(x_179, x_165, x_166, x_167, x_168); +lean_dec(x_168); +lean_dec_ref(x_167); +lean_dec(x_166); +lean_dec_ref(x_165); +x_181 = !lean_is_exclusive(x_180); +if (x_181 == 0) { -return x_181; +return x_180; } else { -lean_object* x_183; lean_object* x_184; -x_183 = lean_ctor_get(x_181, 0); -lean_inc(x_183); -lean_dec(x_181); -x_184 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_184, 0, x_183); -return x_184; +lean_object* x_182; lean_object* x_183; +x_182 = lean_ctor_get(x_180, 0); +lean_inc(x_182); +lean_dec(x_180); +x_183 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_183, 0, x_182); +return x_183; } } else { +x_126 = x_151; x_127 = x_152; x_128 = x_153; x_129 = x_154; @@ -25461,264 +24655,1061 @@ x_140 = x_165; x_141 = x_166; x_142 = x_167; x_143 = x_168; -x_144 = x_169; -x_145 = lean_box(0); -goto block_151; +x_144 = lean_box(0); +goto block_150; } } else { -uint8_t x_185; -lean_dec(x_169); -lean_dec_ref(x_168); -lean_dec(x_167); -lean_dec_ref(x_166); -lean_dec(x_165); +uint8_t x_184; +lean_dec(x_168); +lean_dec_ref(x_167); +lean_dec(x_166); +lean_dec_ref(x_165); lean_dec(x_164); -lean_dec_ref(x_163); -lean_dec(x_162); -lean_dec_ref(x_160); -lean_dec(x_159); +lean_dec(x_163); +lean_dec_ref(x_162); +lean_dec(x_160); lean_dec_ref(x_158); -lean_dec(x_156); -lean_dec_ref(x_154); -lean_dec(x_153); -lean_dec_ref(x_152); -lean_dec_ref(x_6); +lean_dec(x_157); +lean_dec_ref(x_156); +lean_dec(x_154); +lean_dec_ref(x_153); +lean_dec(x_152); +lean_dec_ref(x_151); lean_dec_ref(x_5); lean_dec_ref(x_4); -lean_dec(x_2); +lean_dec_ref(x_3); lean_dec(x_1); -x_185 = !lean_is_exclusive(x_171); -if (x_185 == 0) +x_184 = !lean_is_exclusive(x_170); +if (x_184 == 0) { -return x_171; +return x_170; } else { -lean_object* x_186; lean_object* x_187; -x_186 = lean_ctor_get(x_171, 0); -lean_inc(x_186); -lean_dec(x_171); -x_187 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_187, 0, x_186); -return x_187; +lean_object* x_185; lean_object* x_186; +x_185 = lean_ctor_get(x_170, 0); +lean_inc(x_185); +lean_dec(x_170); +x_186 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_186, 0, x_185); +return x_186; } } } -block_215: +block_214: { -lean_object* x_193; lean_object* x_194; uint8_t x_195; -x_193 = lean_array_get_size(x_191); -x_194 = lean_nat_sub(x_189, x_44); -lean_dec(x_189); -x_195 = lean_nat_dec_eq(x_193, x_194); -lean_dec(x_194); -if (x_195 == 0) -{ -lean_object* x_196; lean_object* x_197; +lean_object* x_192; lean_object* x_193; uint8_t x_194; +x_192 = lean_array_get_size(x_190); +x_193 = lean_nat_sub(x_188, x_43); +lean_dec(x_188); +x_194 = lean_nat_dec_eq(x_192, x_193); lean_dec(x_193); -lean_dec_ref(x_191); +if (x_194 == 0) +{ +lean_object* x_195; lean_object* x_196; +lean_dec(x_192); lean_dec_ref(x_190); -lean_dec_ref(x_6); +lean_dec_ref(x_189); lean_dec_ref(x_5); lean_dec_ref(x_4); -lean_dec(x_2); +lean_dec_ref(x_3); lean_dec(x_1); -x_196 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__12; -x_197 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__0(x_196, x_8, x_9, x_10, x_11, x_12, x_13); -return x_197; +x_195 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__12; +x_196 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__0(x_195, x_7, x_8, x_9, x_10, x_11, x_12); +return x_196; } else { -lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; uint8_t x_204; lean_object* x_205; -x_198 = l_Lean_instInhabitedExpr; -x_199 = lean_unsigned_to_nat(4u); -x_200 = lean_array_get_borrowed(x_198, x_6, x_199); -x_201 = lean_unsigned_to_nat(2u); -x_202 = lean_array_get_borrowed(x_198, x_6, x_201); -lean_inc_ref(x_202); +lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; uint8_t x_203; lean_object* x_204; +x_197 = l_Lean_instInhabitedExpr; +x_198 = lean_unsigned_to_nat(4u); +x_199 = lean_array_get_borrowed(x_197, x_5, x_198); +x_200 = lean_unsigned_to_nat(2u); +x_201 = lean_array_get_borrowed(x_197, x_5, x_200); +lean_inc_ref(x_201); lean_inc(x_1); -lean_inc(x_193); -lean_inc_ref(x_200); -lean_inc_ref(x_191); +lean_inc(x_192); +lean_inc_ref(x_199); lean_inc_ref(x_190); -x_203 = lean_alloc_closure((void*)(l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__1___boxed), 16, 7); -lean_closure_set(x_203, 0, x_198); -lean_closure_set(x_203, 1, x_190); -lean_closure_set(x_203, 2, x_191); -lean_closure_set(x_203, 3, x_200); -lean_closure_set(x_203, 4, x_193); -lean_closure_set(x_203, 5, x_1); -lean_closure_set(x_203, 6, x_202); -x_204 = 0; -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); +lean_inc_ref(x_189); +x_202 = lean_alloc_closure((void*)(l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__1___boxed), 16, 7); +lean_closure_set(x_202, 0, x_197); +lean_closure_set(x_202, 1, x_189); +lean_closure_set(x_202, 2, x_190); +lean_closure_set(x_202, 3, x_199); +lean_closure_set(x_202, 4, x_192); +lean_closure_set(x_202, 5, x_1); +lean_closure_set(x_202, 6, x_201); +x_203 = 0; +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); lean_inc(x_8); -lean_inc_ref(x_202); -x_205 = l_Lean_Meta_lambdaTelescope___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__3___redArg(x_202, x_203, x_204, x_8, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_205) == 0) +lean_inc(x_7); +lean_inc_ref(x_201); +x_204 = l_Lean_Meta_lambdaTelescope___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__3___redArg(x_201, x_202, x_203, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_204) == 0) { -lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; uint8_t x_210; -x_206 = lean_ctor_get(x_205, 0); -lean_inc(x_206); -lean_dec_ref(x_205); -x_207 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; -x_208 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_207, x_12); -x_209 = lean_ctor_get(x_208, 0); -lean_inc(x_209); -lean_dec_ref(x_208); -x_210 = lean_unbox(x_209); -lean_dec(x_209); -if (x_210 == 0) +lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; uint8_t x_209; +x_205 = lean_ctor_get(x_204, 0); +lean_inc(x_205); +lean_dec_ref(x_204); +x_206 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; +x_207 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_206, x_11); +x_208 = lean_ctor_get(x_207, 0); +lean_inc(x_208); +lean_dec_ref(x_207); +x_209 = lean_unbox(x_208); +lean_dec(x_208); +if (x_209 == 0) { -lean_inc(x_193); -x_152 = x_198; -x_153 = x_207; -x_154 = x_191; -x_155 = x_204; -x_156 = x_193; -x_157 = x_201; -x_158 = x_198; -x_159 = x_207; -x_160 = x_206; -x_161 = x_204; -x_162 = x_193; -x_163 = x_190; +lean_inc(x_192); +x_151 = x_197; +x_152 = x_206; +x_153 = x_190; +x_154 = x_192; +x_155 = x_203; +x_156 = x_197; +x_157 = x_206; +x_158 = x_205; +x_159 = x_200; +x_160 = x_192; +x_161 = x_203; +x_162 = x_189; +x_163 = x_7; x_164 = x_8; x_165 = x_9; x_166 = x_10; x_167 = x_11; x_168 = x_12; -x_169 = x_13; -x_170 = lean_box(0); -goto block_188; +x_169 = lean_box(0); +goto block_187; } else { -lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; -x_211 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__14; -lean_inc(x_206); -x_212 = l_Lean_MessageData_ofExpr(x_206); -x_213 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_213, 0, x_211); -lean_ctor_set(x_213, 1, x_212); -x_214 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_207, x_213, x_10, x_11, x_12, x_13); -lean_dec_ref(x_214); -lean_inc(x_193); -x_152 = x_198; -x_153 = x_207; -x_154 = x_191; -x_155 = x_204; -x_156 = x_193; -x_157 = x_201; -x_158 = x_198; -x_159 = x_207; -x_160 = x_206; -x_161 = x_204; -x_162 = x_193; -x_163 = x_190; +lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; +x_210 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__14; +lean_inc(x_205); +x_211 = l_Lean_MessageData_ofExpr(x_205); +x_212 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_212, 0, x_210); +lean_ctor_set(x_212, 1, x_211); +x_213 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_206, x_212, x_9, x_10, x_11, x_12); +lean_dec_ref(x_213); +lean_inc(x_192); +x_151 = x_197; +x_152 = x_206; +x_153 = x_190; +x_154 = x_192; +x_155 = x_203; +x_156 = x_197; +x_157 = x_206; +x_158 = x_205; +x_159 = x_200; +x_160 = x_192; +x_161 = x_203; +x_162 = x_189; +x_163 = x_7; x_164 = x_8; x_165 = x_9; x_166 = x_10; x_167 = x_11; x_168 = x_12; -x_169 = x_13; -x_170 = lean_box(0); -goto block_188; +x_169 = lean_box(0); +goto block_187; } } else { -lean_dec(x_193); -lean_dec_ref(x_191); +lean_dec(x_192); lean_dec_ref(x_190); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); +lean_dec_ref(x_189); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); lean_dec(x_8); -lean_dec_ref(x_6); +lean_dec(x_7); lean_dec_ref(x_5); lean_dec_ref(x_4); -lean_dec(x_2); +lean_dec_ref(x_3); lean_dec(x_1); -return x_205; +return x_204; } } } } -block_19: +block_18: { -lean_object* x_17; lean_object* x_18; -x_17 = l_Lean_mkAppN(x_5, x_15); -lean_dec_ref(x_15); -x_18 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_18, 0, x_17); -return x_18; +lean_object* x_16; lean_object* x_17; +x_16 = l_Lean_mkAppN(x_4, x_14); +lean_dec_ref(x_14); +x_17 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_17, 0, x_16); +return x_17; } -block_37: +block_36: { -lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; -lean_inc(x_22); -x_29 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_22, x_26); -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -lean_dec_ref(x_29); -x_31 = lean_array_set(x_23, x_21, x_20); -lean_dec(x_21); -x_32 = lean_unbox(x_30); -lean_dec(x_30); -if (x_32 == 0) +lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; +lean_inc(x_20); +x_28 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_20, x_25); +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +lean_dec_ref(x_28); +x_30 = lean_array_set(x_22, x_19, x_21); +lean_dec(x_19); +x_31 = lean_unbox(x_29); +lean_dec(x_29); +if (x_31 == 0) { -lean_dec(x_27); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_22); -lean_dec_ref(x_4); -x_15 = x_31; -x_16 = lean_box(0); -goto block_19; +lean_dec(x_26); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_20); +lean_dec_ref(x_3); +x_14 = x_30; +x_15 = lean_box(0); +goto block_18; } else { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_33 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__1; -x_34 = l_Lean_MessageData_ofExpr(x_4); -x_35 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_35, 0, x_33); -lean_ctor_set(x_35, 1, x_34); -x_36 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_22, x_35, x_24, x_25, x_26, x_27); -lean_dec(x_27); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec_ref(x_36); -x_15 = x_31; -x_16 = lean_box(0); -goto block_19; +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_32 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__1; +x_33 = l_Lean_MessageData_ofExpr(x_3); +x_34 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +x_35 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_20, x_34, x_23, x_24, x_25, x_26); +lean_dec(x_26); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec_ref(x_35); +x_14 = x_30; +x_15 = lean_box(0); +goto block_18; } } } } -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___redArg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_17; -x_17 = l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___redArg(x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_object* x_14; lean_object* x_15; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +if (lean_obj_tag(x_4) == 5) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_37 = lean_ctor_get(x_4, 0); +lean_inc_ref(x_37); +x_38 = lean_ctor_get(x_4, 1); +lean_inc_ref(x_38); +lean_dec_ref(x_4); +x_39 = lean_array_set(x_5, x_6, x_38); +x_40 = lean_unsigned_to_nat(1u); +x_41 = lean_nat_sub(x_6, x_40); +x_42 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10(x_1, x_2, x_3, x_37, x_39, x_41, x_7, x_8, x_9, x_10, x_11, x_12); +return x_42; +} +else +{ +lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_88; uint8_t x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; uint8_t x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_126; uint8_t x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_151; uint8_t x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; uint8_t x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_215; uint8_t x_216; +x_43 = lean_unsigned_to_nat(6u); +x_188 = lean_array_get_size(x_5); +x_215 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__15; +x_216 = lean_nat_dec_lt(x_43, x_188); +if (x_216 == 0) +{ +lean_inc_ref(x_5); +x_189 = x_5; +x_190 = x_215; +x_191 = lean_box(0); +goto block_214; +} +else +{ +lean_object* x_217; lean_object* x_218; +lean_inc_ref(x_5); +x_217 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_217, 0, x_5); +lean_ctor_set(x_217, 1, x_215); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_1); +x_218 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg(x_1, x_2, x_188, x_43, x_217, x_43, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_218) == 0) +{ +lean_object* x_219; lean_object* x_220; lean_object* x_221; +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +lean_dec_ref(x_218); +x_220 = lean_ctor_get(x_219, 0); +lean_inc(x_220); +x_221 = lean_ctor_get(x_219, 1); +lean_inc(x_221); +lean_dec(x_219); +x_189 = x_220; +x_190 = x_221; +x_191 = lean_box(0); +goto block_214; +} +else +{ +uint8_t x_222; +lean_dec(x_188); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +x_222 = !lean_is_exclusive(x_218); +if (x_222 == 0) +{ +return x_218; +} +else +{ +lean_object* x_223; lean_object* x_224; +x_223 = lean_ctor_get(x_218, 0); +lean_inc(x_223); +lean_dec(x_218); +x_224 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_224, 0, x_223); +return x_224; +} +} +} +block_87: +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_63 = lean_array_get(x_49, x_5, x_52); +x_64 = lean_box(x_45); +x_65 = lean_box(x_2); +lean_inc(x_1); +x_66 = lean_alloc_closure((void*)(l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2___boxed), 19, 10); +lean_closure_set(x_66, 0, x_64); +lean_closure_set(x_66, 1, x_65); +lean_closure_set(x_66, 2, x_1); +lean_closure_set(x_66, 3, x_48); +lean_closure_set(x_66, 4, x_46); +lean_closure_set(x_66, 5, x_63); +lean_closure_set(x_66, 6, x_47); +lean_closure_set(x_66, 7, x_43); +lean_closure_set(x_66, 8, x_44); +lean_closure_set(x_66, 9, x_5); +x_67 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_67, 0, x_51); +lean_inc(x_61); +lean_inc_ref(x_60); +lean_inc(x_59); +lean_inc_ref(x_58); +x_68 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__7___redArg(x_53, x_67, x_66, x_50, x_50, x_56, x_57, x_58, x_59, x_60, x_61); +if (lean_obj_tag(x_68) == 0) +{ +lean_object* x_69; lean_object* x_70; +x_69 = lean_ctor_get(x_68, 0); +lean_inc(x_69); +lean_dec_ref(x_68); +lean_inc(x_61); +lean_inc_ref(x_60); +lean_inc(x_59); +lean_inc_ref(x_58); +lean_inc(x_69); +x_70 = l_Lean_Meta_isTypeCorrect(x_69, x_58, x_59, x_60, x_61); +if (lean_obj_tag(x_70) == 0) +{ +lean_object* x_71; uint8_t x_72; +x_71 = lean_ctor_get(x_70, 0); +lean_inc(x_71); +lean_dec_ref(x_70); +x_72 = lean_unbox(x_71); +lean_dec(x_71); +if (x_72 == 0) +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; +lean_dec_ref(x_55); +lean_dec(x_54); +lean_dec(x_52); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_73 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__3; +x_74 = l_Lean_MessageData_ofName(x_1); +x_75 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_75, 0, x_73); +lean_ctor_set(x_75, 1, x_74); +x_76 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__5; +x_77 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); +x_78 = l_Lean_indentExpr(x_69); +x_79 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_79, 0, x_77); +lean_ctor_set(x_79, 1, x_78); +x_80 = l_Lean_throwError___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__1___redArg(x_79, x_58, x_59, x_60, x_61); +lean_dec(x_61); +lean_dec_ref(x_60); +lean_dec(x_59); +lean_dec_ref(x_58); +x_81 = !lean_is_exclusive(x_80); +if (x_81 == 0) +{ +return x_80; +} +else +{ +lean_object* x_82; lean_object* x_83; +x_82 = lean_ctor_get(x_80, 0); +lean_inc(x_82); +lean_dec(x_80); +x_83 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_83, 0, x_82); +return x_83; +} +} +else +{ +lean_dec(x_1); +x_19 = x_69; +x_20 = x_52; +x_21 = x_54; +x_22 = x_55; +x_23 = x_58; +x_24 = x_59; +x_25 = x_60; +x_26 = x_61; +x_27 = lean_box(0); +goto block_36; +} +} +else +{ +uint8_t x_84; +lean_dec(x_69); +lean_dec(x_61); +lean_dec_ref(x_60); +lean_dec(x_59); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec(x_54); +lean_dec(x_52); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +x_84 = !lean_is_exclusive(x_70); +if (x_84 == 0) +{ +return x_70; +} +else +{ +lean_object* x_85; lean_object* x_86; +x_85 = lean_ctor_get(x_70, 0); +lean_inc(x_85); +lean_dec(x_70); +x_86 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_86, 0, x_85); +return x_86; +} +} +} +else +{ +lean_dec(x_61); +lean_dec_ref(x_60); +lean_dec(x_59); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec(x_54); +lean_dec(x_52); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +return x_68; +} +} +block_125: +{ +lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; +lean_inc_ref(x_95); +x_108 = l_Array_toSubarray___redArg(x_95, x_106, x_107); +x_109 = l_Array_ofSubarray___redArg(x_108); +lean_dec_ref(x_108); +lean_inc_ref(x_4); +x_110 = l_Lean_mkAppN(x_4, x_109); +lean_dec_ref(x_109); +lean_inc(x_96); +lean_inc_ref(x_102); +lean_inc(x_104); +lean_inc_ref(x_100); +x_111 = lean_infer_type(x_110, x_100, x_104, x_102, x_96); +if (lean_obj_tag(x_111) == 0) +{ +lean_object* x_112; lean_object* x_113; +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +lean_dec_ref(x_111); +lean_inc(x_96); +lean_inc_ref(x_102); +lean_inc(x_104); +lean_inc_ref(x_100); +x_113 = lean_whnf(x_112, x_100, x_104, x_102, x_96); +if (lean_obj_tag(x_113) == 0) +{ +lean_object* x_114; +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +lean_dec_ref(x_113); +if (lean_obj_tag(x_114) == 7) +{ +lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; +x_115 = lean_ctor_get(x_114, 1); +lean_inc_ref(x_115); +lean_dec_ref(x_114); +lean_inc(x_105); +x_116 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_105, x_102); +x_117 = lean_ctor_get(x_116, 0); +lean_inc(x_117); +lean_dec_ref(x_116); +x_118 = lean_unbox(x_117); +lean_dec(x_117); +if (x_118 == 0) +{ +x_44 = x_88; +x_45 = x_89; +x_46 = x_90; +x_47 = x_91; +x_48 = x_92; +x_49 = x_93; +x_50 = x_99; +x_51 = x_101; +x_52 = x_103; +x_53 = x_115; +x_54 = x_105; +x_55 = x_95; +x_56 = x_98; +x_57 = x_94; +x_58 = x_100; +x_59 = x_104; +x_60 = x_102; +x_61 = x_96; +x_62 = lean_box(0); +goto block_87; +} +else +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_119 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__7; +lean_inc_ref(x_115); +x_120 = l_Lean_MessageData_ofExpr(x_115); +x_121 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_121, 0, x_119); +lean_ctor_set(x_121, 1, x_120); +lean_inc(x_105); +x_122 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_105, x_121, x_100, x_104, x_102, x_96); +lean_dec_ref(x_122); +x_44 = x_88; +x_45 = x_89; +x_46 = x_90; +x_47 = x_91; +x_48 = x_92; +x_49 = x_93; +x_50 = x_99; +x_51 = x_101; +x_52 = x_103; +x_53 = x_115; +x_54 = x_105; +x_55 = x_95; +x_56 = x_98; +x_57 = x_94; +x_58 = x_100; +x_59 = x_104; +x_60 = x_102; +x_61 = x_96; +x_62 = lean_box(0); +goto block_87; +} +} +else +{ +lean_object* x_123; lean_object* x_124; +lean_dec(x_114); +lean_dec(x_105); +lean_dec(x_103); +lean_dec(x_101); +lean_dec_ref(x_95); +lean_dec_ref(x_93); +lean_dec(x_92); +lean_dec_ref(x_91); +lean_dec(x_90); +lean_dec_ref(x_88); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +x_123 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__8; +x_124 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__0(x_123, x_98, x_94, x_100, x_104, x_102, x_96); +return x_124; +} +} +else +{ +lean_dec(x_105); +lean_dec(x_104); +lean_dec(x_103); +lean_dec_ref(x_102); +lean_dec(x_101); +lean_dec_ref(x_100); +lean_dec(x_98); +lean_dec(x_96); +lean_dec_ref(x_95); +lean_dec(x_94); +lean_dec_ref(x_93); +lean_dec(x_92); +lean_dec_ref(x_91); +lean_dec(x_90); +lean_dec_ref(x_88); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +return x_113; +} +} +else +{ +lean_dec(x_105); +lean_dec(x_104); +lean_dec(x_103); +lean_dec_ref(x_102); +lean_dec(x_101); +lean_dec_ref(x_100); +lean_dec(x_98); +lean_dec(x_96); +lean_dec_ref(x_95); +lean_dec(x_94); +lean_dec_ref(x_93); +lean_dec(x_92); +lean_dec_ref(x_91); +lean_dec(x_90); +lean_dec_ref(x_88); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +return x_111; +} +} +block_150: +{ +lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; +x_145 = lean_array_set(x_137, x_135, x_134); +x_146 = lean_unsigned_to_nat(3u); +x_147 = lean_unsigned_to_nat(0u); +x_148 = lean_array_get_size(x_145); +x_149 = lean_nat_dec_le(x_146, x_148); +if (x_149 == 0) +{ +x_88 = x_126; +x_89 = x_127; +x_90 = x_128; +x_91 = x_129; +x_92 = x_130; +x_93 = x_131; +x_94 = x_139; +x_95 = x_145; +x_96 = x_143; +x_97 = lean_box(0); +x_98 = x_138; +x_99 = x_132; +x_100 = x_140; +x_101 = x_133; +x_102 = x_142; +x_103 = x_146; +x_104 = x_141; +x_105 = x_136; +x_106 = x_147; +x_107 = x_148; +goto block_125; +} +else +{ +lean_dec(x_148); +x_88 = x_126; +x_89 = x_127; +x_90 = x_128; +x_91 = x_129; +x_92 = x_130; +x_93 = x_131; +x_94 = x_139; +x_95 = x_145; +x_96 = x_143; +x_97 = lean_box(0); +x_98 = x_138; +x_99 = x_132; +x_100 = x_140; +x_101 = x_133; +x_102 = x_142; +x_103 = x_146; +x_104 = x_141; +x_105 = x_136; +x_106 = x_147; +x_107 = x_146; +goto block_125; +} +} +block_187: +{ +lean_object* x_170; +lean_inc(x_168); +lean_inc_ref(x_167); +lean_inc(x_166); +lean_inc_ref(x_165); +lean_inc_ref(x_160); +x_170 = l_Lean_Meta_isTypeCorrect(x_160, x_165, x_166, x_167, x_168); +if (lean_obj_tag(x_170) == 0) +{ +lean_object* x_171; uint8_t x_172; +x_171 = lean_ctor_get(x_170, 0); +lean_inc(x_171); +lean_dec_ref(x_170); +x_172 = lean_unbox(x_171); +lean_dec(x_171); +if (x_172 == 0) +{ +lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; uint8_t x_181; +lean_dec(x_164); +lean_dec(x_163); +lean_dec_ref(x_162); +lean_dec(x_161); +lean_dec(x_158); +lean_dec_ref(x_156); +lean_dec(x_155); +lean_dec_ref(x_154); +lean_dec(x_153); +lean_dec_ref(x_151); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_173 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__10; +x_174 = l_Lean_MessageData_ofName(x_1); +x_175 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +x_176 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__5; +x_177 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_177, 0, x_175); +lean_ctor_set(x_177, 1, x_176); +x_178 = l_Lean_indentExpr(x_160); +x_179 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_179, 0, x_177); +lean_ctor_set(x_179, 1, x_178); +x_180 = l_Lean_throwError___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__1___redArg(x_179, x_165, x_166, x_167, x_168); +lean_dec(x_168); +lean_dec_ref(x_167); +lean_dec(x_166); +lean_dec_ref(x_165); +x_181 = !lean_is_exclusive(x_180); +if (x_181 == 0) +{ +return x_180; +} +else +{ +lean_object* x_182; lean_object* x_183; +x_182 = lean_ctor_get(x_180, 0); +lean_inc(x_182); +lean_dec(x_180); +x_183 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_183, 0, x_182); +return x_183; +} +} +else +{ +x_126 = x_151; +x_127 = x_152; +x_128 = x_153; +x_129 = x_154; +x_130 = x_155; +x_131 = x_156; +x_132 = x_157; +x_133 = x_158; +x_134 = x_160; +x_135 = x_159; +x_136 = x_161; +x_137 = x_162; +x_138 = x_163; +x_139 = x_164; +x_140 = x_165; +x_141 = x_166; +x_142 = x_167; +x_143 = x_168; +x_144 = lean_box(0); +goto block_150; +} +} +else +{ +uint8_t x_184; +lean_dec(x_168); +lean_dec_ref(x_167); +lean_dec(x_166); +lean_dec_ref(x_165); +lean_dec(x_164); +lean_dec(x_163); +lean_dec_ref(x_162); +lean_dec(x_161); +lean_dec_ref(x_160); +lean_dec(x_158); +lean_dec_ref(x_156); +lean_dec(x_155); +lean_dec_ref(x_154); +lean_dec(x_153); +lean_dec_ref(x_151); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +x_184 = !lean_is_exclusive(x_170); +if (x_184 == 0) +{ +return x_170; +} +else +{ +lean_object* x_185; lean_object* x_186; +x_185 = lean_ctor_get(x_170, 0); +lean_inc(x_185); +lean_dec(x_170); +x_186 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_186, 0, x_185); +return x_186; +} +} +} +block_214: +{ +lean_object* x_192; lean_object* x_193; uint8_t x_194; +x_192 = lean_array_get_size(x_190); +x_193 = lean_nat_sub(x_188, x_43); +lean_dec(x_188); +x_194 = lean_nat_dec_eq(x_192, x_193); +lean_dec(x_193); +if (x_194 == 0) +{ +lean_object* x_195; lean_object* x_196; +lean_dec(x_192); +lean_dec_ref(x_190); +lean_dec_ref(x_189); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +x_195 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__12; +x_196 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__0(x_195, x_7, x_8, x_9, x_10, x_11, x_12); +return x_196; +} +else +{ +lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; uint8_t x_203; lean_object* x_204; +x_197 = l_Lean_instInhabitedExpr; +x_198 = lean_unsigned_to_nat(4u); +x_199 = lean_array_get_borrowed(x_197, x_5, x_198); +x_200 = lean_unsigned_to_nat(2u); +x_201 = lean_array_get_borrowed(x_197, x_5, x_200); +lean_inc_ref(x_201); +lean_inc(x_1); +lean_inc(x_192); +lean_inc_ref(x_199); +lean_inc_ref(x_190); +lean_inc_ref(x_189); +x_202 = lean_alloc_closure((void*)(l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__1___boxed), 16, 7); +lean_closure_set(x_202, 0, x_197); +lean_closure_set(x_202, 1, x_189); +lean_closure_set(x_202, 2, x_190); +lean_closure_set(x_202, 3, x_199); +lean_closure_set(x_202, 4, x_192); +lean_closure_set(x_202, 5, x_1); +lean_closure_set(x_202, 6, x_201); +x_203 = 0; +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc_ref(x_201); +x_204 = l_Lean_Meta_lambdaTelescope___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__3___redArg(x_201, x_202, x_203, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_204) == 0) +{ +lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; uint8_t x_209; +x_205 = lean_ctor_get(x_204, 0); +lean_inc(x_205); +lean_dec_ref(x_204); +x_206 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; +x_207 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_206, x_11); +x_208 = lean_ctor_get(x_207, 0); +lean_inc(x_208); +lean_dec_ref(x_207); +x_209 = lean_unbox(x_208); +lean_dec(x_208); +if (x_209 == 0) +{ +lean_inc(x_192); +x_151 = x_197; +x_152 = x_203; +x_153 = x_192; +x_154 = x_190; +x_155 = x_206; +x_156 = x_197; +x_157 = x_203; +x_158 = x_192; +x_159 = x_200; +x_160 = x_205; +x_161 = x_206; +x_162 = x_189; +x_163 = x_7; +x_164 = x_8; +x_165 = x_9; +x_166 = x_10; +x_167 = x_11; +x_168 = x_12; +x_169 = lean_box(0); +goto block_187; +} +else +{ +lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; +x_210 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__14; +lean_inc(x_205); +x_211 = l_Lean_MessageData_ofExpr(x_205); +x_212 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_212, 0, x_210); +lean_ctor_set(x_212, 1, x_211); +x_213 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_206, x_212, x_9, x_10, x_11, x_12); +lean_dec_ref(x_213); +lean_inc(x_192); +x_151 = x_197; +x_152 = x_203; +x_153 = x_192; +x_154 = x_190; +x_155 = x_206; +x_156 = x_197; +x_157 = x_203; +x_158 = x_192; +x_159 = x_200; +x_160 = x_205; +x_161 = x_206; +x_162 = x_189; +x_163 = x_7; +x_164 = x_8; +x_165 = x_9; +x_166 = x_10; +x_167 = x_11; +x_168 = x_12; +x_169 = lean_box(0); +goto block_187; +} +} +else +{ +lean_dec(x_192); +lean_dec_ref(x_190); +lean_dec_ref(x_189); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +return x_204; +} +} +} +} +block_18: +{ +lean_object* x_16; lean_object* x_17; +x_16 = l_Lean_mkAppN(x_4, x_14); +lean_dec_ref(x_14); +x_17 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_17, 0, x_16); return x_17; } +block_36: +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; +lean_inc(x_21); +x_28 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_21, x_25); +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +lean_dec_ref(x_28); +x_30 = lean_array_set(x_22, x_20, x_19); +lean_dec(x_20); +x_31 = lean_unbox(x_29); +lean_dec(x_29); +if (x_31 == 0) +{ +lean_dec(x_26); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_21); +lean_dec_ref(x_3); +x_14 = x_30; +x_15 = lean_box(0); +goto block_18; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_32 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__1; +x_33 = l_Lean_MessageData_ofExpr(x_3); +x_34 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +x_35 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_21, x_34, x_23, x_24, x_25, x_26); +lean_dec(x_26); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec_ref(x_35); +x_14 = x_30; +x_15 = lean_box(0); +goto block_18; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_16; +x_16 = l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___redArg(x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +return x_16; +} } static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___closed__0() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("assertion violation: ( __do_lift._@.Lean.Meta.Match.MatchEqs.1916363900._hygCtx._hyg.745.0 )\n ", 97, 97); +x_1 = lean_mk_string_unchecked("assertion violation: ( __do_lift._@.Lean.Meta.Match.MatchEqs.1916363900._hygCtx._hyg.744.0 )\n ", 97, 97); return x_1; } } @@ -25728,50 +25719,49 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___closed__0; x_2 = lean_unsigned_to_nat(4u); -x_3 = lean_unsigned_to_nat(363u); +x_3 = lean_unsigned_to_nat(368u); x_4 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__5_spec__5___redArg___closed__0; x_5 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__0; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); return x_6; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_11; lean_object* x_12; uint8_t x_13; -lean_inc_ref(x_3); -x_11 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -lean_dec_ref(x_11); -x_13 = lean_unbox(x_12); -if (x_13 == 0) +lean_object* x_10; lean_object* x_11; uint8_t x_12; +lean_inc_ref(x_2); +x_10 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec_ref(x_10); +x_12 = lean_unbox(x_11); +if (x_12 == 0) { -lean_object* x_14; lean_object* x_15; -lean_dec(x_12); -lean_dec_ref(x_3); -lean_dec(x_2); +lean_object* x_13; lean_object* x_14; +lean_dec(x_11); +lean_dec_ref(x_2); lean_dec(x_1); -x_14 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___closed__1; -x_15 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__0(x_14, x_4, x_5, x_6, x_7, x_8, x_9); -return x_15; +x_13 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___closed__1; +x_14 = l_panic___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__0(x_13, x_3, x_4, x_5, x_6, x_7, x_8); +return x_14; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; -x_16 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_casesOnStuckLHS_findFVar_x3f___closed__0; -x_17 = l_Lean_Expr_getAppNumArgs(x_3); -lean_inc(x_17); -x_18 = lean_mk_array(x_17, x_16); -x_19 = lean_unsigned_to_nat(1u); -x_20 = lean_nat_sub(x_17, x_19); -lean_dec(x_17); -x_21 = lean_unbox(x_12); -lean_dec(x_12); -lean_inc_ref(x_3); -x_22 = l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___redArg(x_1, x_2, x_21, x_3, x_3, x_18, x_20, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_20); -return x_22; +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; +x_15 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_casesOnStuckLHS_findFVar_x3f___closed__0; +x_16 = l_Lean_Expr_getAppNumArgs(x_2); +lean_inc(x_16); +x_17 = lean_mk_array(x_16, x_15); +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_sub(x_16, x_18); +lean_dec(x_16); +x_20 = lean_unbox(x_11); +lean_dec(x_11); +lean_inc_ref(x_2); +x_21 = l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___redArg(x_1, x_20, x_2, x_2, x_17, x_19, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_19); +return x_21; } } } @@ -28306,7 +28296,7 @@ static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Matc _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked(", numParams: ", 13, 13); +x_1 = lean_mk_string_unchecked(", altParamInfo: ", 16, 16); return x_1; } } @@ -28370,732 +28360,637 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; -lean_inc_ref(x_3); -x_11 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -if (lean_is_exclusive(x_11)) { - lean_ctor_release(x_11, 0); - x_13 = x_11; +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +lean_inc_ref(x_2); +x_10 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + x_12 = x_10; } else { - lean_dec_ref(x_11); - x_13 = lean_box(0); + lean_dec_ref(x_10); + x_12 = lean_box(0); } -x_14 = lean_unbox(x_12); -lean_dec(x_12); -if (x_14 == 0) +x_13 = lean_unbox(x_11); +lean_dec(x_11); +if (x_13 == 0) { -lean_object* x_15; -x_15 = l_Lean_Expr_getAppFn(x_3); -if (lean_obj_tag(x_15) == 1) +lean_object* x_14; +x_14 = l_Lean_Expr_getAppFn(x_2); +if (lean_obj_tag(x_14) == 1) { -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -lean_dec_ref(x_15); -x_17 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__0___redArg(x_4, x_16); -lean_dec(x_16); -if (lean_obj_tag(x_17) == 1) +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +lean_dec_ref(x_14); +x_16 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__0___redArg(x_3, x_15); +lean_dec(x_15); +if (lean_obj_tag(x_16) == 1) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_142; lean_object* x_143; uint8_t x_144; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_138; lean_object* x_139; lean_object* x_140; uint8_t x_141; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +if (lean_is_exclusive(x_16)) { + lean_ctor_release(x_16, 0); + x_18 = x_16; +} else { + lean_dec_ref(x_16); + x_18 = lean_box(0); +} +x_19 = lean_ctor_get(x_17, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); if (lean_is_exclusive(x_17)) { lean_ctor_release(x_17, 0); - x_19 = x_17; + lean_ctor_release(x_17, 1); + x_21 = x_17; } else { lean_dec_ref(x_17); - x_19 = lean_box(0); + x_21 = lean_box(0); } -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -x_21 = lean_ctor_get(x_18, 0); -lean_inc(x_21); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_22 = x_18; -} else { - lean_dec_ref(x_18); - x_22 = lean_box(0); -} -x_23 = lean_ctor_get(x_20, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_20, 1); -lean_inc(x_24); +x_102 = lean_ctor_get(x_20, 0); +lean_inc(x_102); +x_103 = lean_ctor_get(x_20, 1); +lean_inc(x_103); if (lean_is_exclusive(x_20)) { lean_ctor_release(x_20, 0); lean_ctor_release(x_20, 1); - x_25 = x_20; + x_104 = x_20; } else { lean_dec_ref(x_20); - x_25 = lean_box(0); + x_104 = lean_box(0); } -x_142 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; -x_143 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_142, x_8); -x_144 = !lean_is_exclusive(x_143); -if (x_144 == 0) +x_138 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; +x_139 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__3___redArg(x_138, x_7); +x_140 = lean_ctor_get(x_139, 0); +lean_inc(x_140); +lean_dec_ref(x_139); +x_141 = lean_unbox(x_140); +lean_dec(x_140); +if (x_141 == 0) { -lean_object* x_145; uint8_t x_146; -x_145 = lean_ctor_get(x_143, 0); -x_146 = lean_unbox(x_145); -lean_dec(x_145); -if (x_146 == 0) -{ -lean_free_object(x_143); -x_109 = x_4; -x_110 = x_5; -x_111 = x_6; -x_112 = x_7; -x_113 = x_8; -x_114 = x_9; -x_115 = lean_box(0); -goto block_141; +x_105 = x_3; +x_106 = x_4; +x_107 = x_5; +x_108 = x_6; +x_109 = x_7; +x_110 = x_8; +x_111 = lean_box(0); +goto block_137; } else { -lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; -x_147 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__7; -lean_inc(x_24); -x_148 = lean_array_to_list(x_24); -x_149 = lean_box(0); -x_150 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__2(x_148, x_149); -x_151 = l_Lean_MessageData_ofList(x_150); +lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_142 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__7; +lean_inc(x_103); +x_143 = lean_array_to_list(x_103); +x_144 = lean_box(0); +x_145 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__2(x_143, x_144); +x_146 = l_Lean_MessageData_ofList(x_145); +x_147 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_147, 0, x_142); +lean_ctor_set(x_147, 1, x_146); +x_148 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__9; +x_149 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_149, 0, x_147); +lean_ctor_set(x_149, 1, x_148); +lean_inc(x_102); +x_150 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg(x_102); +x_151 = l_Lean_MessageData_ofFormat(x_150); x_152 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_152, 0, x_147); +lean_ctor_set(x_152, 0, x_149); lean_ctor_set(x_152, 1, x_151); -x_153 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__9; +x_153 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__11; x_154 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_154, 0, x_152); lean_ctor_set(x_154, 1, x_153); -lean_inc(x_23); -x_155 = l_Nat_reprFast(x_23); -lean_ctor_set_tag(x_143, 3); -lean_ctor_set(x_143, 0, x_155); -x_156 = l_Lean_MessageData_ofFormat(x_143); -x_157 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_157, 0, x_154); -lean_ctor_set(x_157, 1, x_156); -x_158 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__11; -x_159 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_159, 0, x_157); -lean_ctor_set(x_159, 1, x_158); -lean_inc_ref(x_3); -x_160 = l_Lean_MessageData_ofExpr(x_3); -x_161 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_161, 0, x_159); -lean_ctor_set(x_161, 1, x_160); -x_162 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__13; -x_163 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_163, 0, x_161); -lean_ctor_set(x_163, 1, x_162); -lean_inc(x_21); -x_164 = l_Lean_MessageData_ofExpr(x_21); -x_165 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_165, 0, x_163); -lean_ctor_set(x_165, 1, x_164); -x_166 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__15; -x_167 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_167, 0, x_165); -lean_ctor_set(x_167, 1, x_166); -x_168 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_142, x_167, x_6, x_7, x_8, x_9); -lean_dec_ref(x_168); -x_109 = x_4; -x_110 = x_5; -x_111 = x_6; -x_112 = x_7; -x_113 = x_8; -x_114 = x_9; -x_115 = lean_box(0); -goto block_141; +lean_inc_ref(x_2); +x_155 = l_Lean_MessageData_ofExpr(x_2); +x_156 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_156, 0, x_154); +lean_ctor_set(x_156, 1, x_155); +x_157 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__13; +x_158 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_158, 0, x_156); +lean_ctor_set(x_158, 1, x_157); +lean_inc(x_19); +x_159 = l_Lean_MessageData_ofExpr(x_19); +x_160 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_160, 0, x_158); +lean_ctor_set(x_160, 1, x_159); +x_161 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__15; +x_162 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_138, x_162, x_5, x_6, x_7, x_8); +lean_dec_ref(x_163); +x_105 = x_3; +x_106 = x_4; +x_107 = x_5; +x_108 = x_6; +x_109 = x_7; +x_110 = x_8; +x_111 = lean_box(0); +goto block_137; } -} -else +block_101: { -lean_object* x_169; uint8_t x_170; -x_169 = lean_ctor_get(x_143, 0); -lean_inc(x_169); -lean_dec(x_143); -x_170 = lean_unbox(x_169); -lean_dec(x_169); -if (x_170 == 0) -{ -x_109 = x_4; -x_110 = x_5; -x_111 = x_6; -x_112 = x_7; -x_113 = x_8; -x_114 = x_9; -x_115 = lean_box(0); -goto block_141; -} -else -{ -lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; -x_171 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__7; -lean_inc(x_24); -x_172 = lean_array_to_list(x_24); -x_173 = lean_box(0); -x_174 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__2(x_172, x_173); -x_175 = l_Lean_MessageData_ofList(x_174); -x_176 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_176, 0, x_171); -lean_ctor_set(x_176, 1, x_175); -x_177 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__9; -x_178 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_178, 0, x_176); -lean_ctor_set(x_178, 1, x_177); -lean_inc(x_23); -x_179 = l_Nat_reprFast(x_23); -x_180 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_180, 0, x_179); -x_181 = l_Lean_MessageData_ofFormat(x_180); -x_182 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_182, 0, x_178); -lean_ctor_set(x_182, 1, x_181); -x_183 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__11; -x_184 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_184, 0, x_182); -lean_ctor_set(x_184, 1, x_183); -lean_inc_ref(x_3); -x_185 = l_Lean_MessageData_ofExpr(x_3); -x_186 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_186, 0, x_184); -lean_ctor_set(x_186, 1, x_185); -x_187 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__13; -x_188 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_inc(x_21); -x_189 = l_Lean_MessageData_ofExpr(x_21); -x_190 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_190, 0, x_188); -lean_ctor_set(x_190, 1, x_189); -x_191 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__15; -x_192 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_192, 0, x_190); -lean_ctor_set(x_192, 1, x_191); -x_193 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go_spec__4___redArg(x_142, x_192, x_6, x_7, x_8, x_9); -lean_dec_ref(x_193); -x_109 = x_4; -x_110 = x_5; -x_111 = x_6; -x_112 = x_7; -x_113 = x_8; -x_114 = x_9; -x_115 = lean_box(0); -goto block_141; -} -} -block_108: -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; size_t x_45; size_t x_46; lean_object* x_47; uint8_t x_48; -lean_dec(x_29); -x_36 = lean_array_get_size(x_27); -x_37 = l_Array_toSubarray___redArg(x_27, x_26, x_36); -x_38 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_casesOnStuckLHS_findFVar_x3f___closed__0; -x_39 = l_Lean_Expr_getAppNumArgs(x_3); -lean_inc(x_39); -x_40 = lean_mk_array(x_39, x_38); -x_41 = lean_unsigned_to_nat(1u); -x_42 = lean_nat_sub(x_39, x_41); -lean_dec(x_39); -x_43 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_3, x_40, x_42); -if (lean_is_scalar(x_25)) { - x_44 = lean_alloc_ctor(0, 2, 0); +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; size_t x_42; size_t x_43; lean_object* x_44; uint8_t x_45; +lean_dec(x_26); +x_33 = lean_array_get_size(x_23); +x_34 = l_Array_toSubarray___redArg(x_23, x_22, x_33); +x_35 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_casesOnStuckLHS_findFVar_x3f___closed__0; +x_36 = l_Lean_Expr_getAppNumArgs(x_2); +lean_inc(x_36); +x_37 = lean_mk_array(x_36, x_35); +x_38 = lean_unsigned_to_nat(1u); +x_39 = lean_nat_sub(x_36, x_38); +lean_dec(x_36); +x_40 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_2, x_37, x_39); +if (lean_is_scalar(x_21)) { + x_41 = lean_alloc_ctor(0, 2, 0); } else { - x_44 = x_25; + x_41 = x_21; } -lean_ctor_set(x_44, 0, x_37); -lean_ctor_set(x_44, 1, x_28); -x_45 = lean_array_size(x_43); -x_46 = 0; -x_47 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__0___redArg(x_43, x_45, x_46, x_44); -lean_dec_ref(x_43); -x_48 = !lean_is_exclusive(x_47); -if (x_48 == 0) +lean_ctor_set(x_41, 0, x_34); +lean_ctor_set(x_41, 1, x_25); +x_42 = lean_array_size(x_40); +x_43 = 0; +x_44 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__0___redArg(x_40, x_42, x_43, x_41); +lean_dec_ref(x_40); +x_45 = !lean_is_exclusive(x_44); +if (x_45 == 0) { -lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_49 = lean_ctor_get(x_47, 0); -x_50 = lean_ctor_get(x_49, 1); +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_46 = lean_ctor_get(x_44, 0); +x_47 = lean_ctor_get(x_46, 1); +lean_inc(x_47); +lean_dec(x_46); +x_48 = l_Lean_mkAppN(x_19, x_47); +lean_dec(x_47); +lean_inc(x_31); +lean_inc_ref(x_30); +lean_inc(x_29); +lean_inc_ref(x_28); +lean_inc_ref(x_48); +x_49 = lean_infer_type(x_48, x_28, x_29, x_30, x_31); +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_50; uint8_t x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_49, 0); lean_inc(x_50); -lean_dec(x_49); -x_51 = l_Lean_mkAppN(x_21, x_50); -lean_inc(x_34); -lean_inc_ref(x_33); -lean_inc(x_32); -lean_inc_ref(x_31); -lean_inc_ref(x_51); -x_52 = lean_infer_type(x_51, x_31, x_32, x_33, x_34); +lean_dec_ref(x_49); +x_51 = 2; +x_52 = l_Lean_Meta_forallMetaBoundedTelescope(x_50, x_24, x_51, x_28, x_29, x_30, x_31); if (lean_obj_tag(x_52) == 0) { -lean_object* x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; -x_53 = lean_ctor_get(x_52, 0); -lean_inc(x_53); -lean_dec_ref(x_52); -x_54 = lean_array_get_size(x_50); -lean_dec(x_50); -x_55 = lean_nat_sub(x_23, x_54); +uint8_t x_53; +x_53 = !lean_is_exclusive(x_52); +if (x_53 == 0) +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; size_t x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_54 = lean_ctor_get(x_52, 0); +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); lean_dec(x_54); -lean_dec(x_23); -x_56 = 2; -x_57 = l_Lean_Meta_forallMetaBoundedTelescope(x_53, x_55, x_56, x_31, x_32, x_33, x_34); -if (lean_obj_tag(x_57) == 0) -{ -uint8_t x_58; -x_58 = !lean_is_exclusive(x_57); -if (x_58 == 0) -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; size_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_59 = lean_ctor_get(x_57, 0); -x_60 = lean_ctor_get(x_59, 0); -lean_inc(x_60); -lean_dec(x_59); -x_61 = lean_st_ref_take(x_30); -x_62 = lean_array_size(x_60); -lean_inc(x_60); -x_63 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__1(x_62, x_46, x_60); -x_64 = l_Array_append___redArg(x_61, x_63); -lean_dec_ref(x_63); -x_65 = lean_st_ref_set(x_30, x_64); -lean_dec(x_30); -x_66 = l_Lean_mkAppN(x_51, x_60); -lean_dec(x_60); -lean_ctor_set(x_47, 0, x_66); -lean_ctor_set(x_57, 0, x_47); -return x_57; +x_56 = lean_st_ref_take(x_27); +x_57 = lean_array_size(x_55); +lean_inc(x_55); +x_58 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__1(x_57, x_43, x_55); +x_59 = l_Array_append___redArg(x_56, x_58); +lean_dec_ref(x_58); +x_60 = lean_st_ref_set(x_27, x_59); +lean_dec(x_27); +x_61 = l_Lean_mkAppN(x_48, x_55); +lean_dec(x_55); +lean_ctor_set(x_44, 0, x_61); +lean_ctor_set(x_52, 0, x_44); +return x_52; } else { -lean_object* x_67; lean_object* x_68; lean_object* x_69; size_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_67 = lean_ctor_get(x_57, 0); -lean_inc(x_67); -lean_dec(x_57); -x_68 = lean_ctor_get(x_67, 0); -lean_inc(x_68); -lean_dec(x_67); -x_69 = lean_st_ref_take(x_30); -x_70 = lean_array_size(x_68); -lean_inc(x_68); -x_71 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__1(x_70, x_46, x_68); -x_72 = l_Array_append___redArg(x_69, x_71); -lean_dec_ref(x_71); -x_73 = lean_st_ref_set(x_30, x_72); -lean_dec(x_30); -x_74 = l_Lean_mkAppN(x_51, x_68); -lean_dec(x_68); -lean_ctor_set(x_47, 0, x_74); -x_75 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_75, 0, x_47); -return x_75; +lean_object* x_62; lean_object* x_63; lean_object* x_64; size_t x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_62 = lean_ctor_get(x_52, 0); +lean_inc(x_62); +lean_dec(x_52); +x_63 = lean_ctor_get(x_62, 0); +lean_inc(x_63); +lean_dec(x_62); +x_64 = lean_st_ref_take(x_27); +x_65 = lean_array_size(x_63); +lean_inc(x_63); +x_66 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__1(x_65, x_43, x_63); +x_67 = l_Array_append___redArg(x_64, x_66); +lean_dec_ref(x_66); +x_68 = lean_st_ref_set(x_27, x_67); +lean_dec(x_27); +x_69 = l_Lean_mkAppN(x_48, x_63); +lean_dec(x_63); +lean_ctor_set(x_44, 0, x_69); +x_70 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_70, 0, x_44); +return x_70; } } else { -uint8_t x_76; -lean_dec_ref(x_51); -lean_free_object(x_47); -lean_dec(x_30); -x_76 = !lean_is_exclusive(x_57); -if (x_76 == 0) -{ -return x_57; -} -else -{ -lean_object* x_77; lean_object* x_78; -x_77 = lean_ctor_get(x_57, 0); -lean_inc(x_77); -lean_dec(x_57); -x_78 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_78, 0, x_77); -return x_78; -} -} -} -else -{ -uint8_t x_79; -lean_dec_ref(x_51); -lean_dec(x_50); -lean_free_object(x_47); -lean_dec(x_34); -lean_dec_ref(x_33); -lean_dec(x_32); -lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec(x_23); -x_79 = !lean_is_exclusive(x_52); -if (x_79 == 0) +uint8_t x_71; +lean_dec_ref(x_48); +lean_free_object(x_44); +lean_dec(x_27); +x_71 = !lean_is_exclusive(x_52); +if (x_71 == 0) { return x_52; } else { -lean_object* x_80; lean_object* x_81; -x_80 = lean_ctor_get(x_52, 0); -lean_inc(x_80); +lean_object* x_72; lean_object* x_73; +x_72 = lean_ctor_get(x_52, 0); +lean_inc(x_72); lean_dec(x_52); -x_81 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_81, 0, x_80); -return x_81; +x_73 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_73, 0, x_72); +return x_73; } } } else { -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_82 = lean_ctor_get(x_47, 0); -lean_inc(x_82); -lean_dec(x_47); -x_83 = lean_ctor_get(x_82, 1); -lean_inc(x_83); -lean_dec(x_82); -x_84 = l_Lean_mkAppN(x_21, x_83); -lean_inc(x_34); -lean_inc_ref(x_33); -lean_inc(x_32); -lean_inc_ref(x_31); -lean_inc_ref(x_84); -x_85 = lean_infer_type(x_84, x_31, x_32, x_33, x_34); -if (lean_obj_tag(x_85) == 0) +uint8_t x_74; +lean_dec_ref(x_48); +lean_free_object(x_44); +lean_dec(x_31); +lean_dec_ref(x_30); +lean_dec(x_29); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec(x_24); +x_74 = !lean_is_exclusive(x_49); +if (x_74 == 0) { -lean_object* x_86; lean_object* x_87; lean_object* x_88; uint8_t x_89; lean_object* x_90; -x_86 = lean_ctor_get(x_85, 0); +return x_49; +} +else +{ +lean_object* x_75; lean_object* x_76; +x_75 = lean_ctor_get(x_49, 0); +lean_inc(x_75); +lean_dec(x_49); +x_76 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_76, 0, x_75); +return x_76; +} +} +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_77 = lean_ctor_get(x_44, 0); +lean_inc(x_77); +lean_dec(x_44); +x_78 = lean_ctor_get(x_77, 1); +lean_inc(x_78); +lean_dec(x_77); +x_79 = l_Lean_mkAppN(x_19, x_78); +lean_dec(x_78); +lean_inc(x_31); +lean_inc_ref(x_30); +lean_inc(x_29); +lean_inc_ref(x_28); +lean_inc_ref(x_79); +x_80 = lean_infer_type(x_79, x_28, x_29, x_30, x_31); +if (lean_obj_tag(x_80) == 0) +{ +lean_object* x_81; uint8_t x_82; lean_object* x_83; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +lean_dec_ref(x_80); +x_82 = 2; +x_83 = l_Lean_Meta_forallMetaBoundedTelescope(x_81, x_24, x_82, x_28, x_29, x_30, x_31); +if (lean_obj_tag(x_83) == 0) +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; size_t x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_84 = lean_ctor_get(x_83, 0); +lean_inc(x_84); +if (lean_is_exclusive(x_83)) { + lean_ctor_release(x_83, 0); + x_85 = x_83; +} else { + lean_dec_ref(x_83); + x_85 = lean_box(0); +} +x_86 = lean_ctor_get(x_84, 0); lean_inc(x_86); -lean_dec_ref(x_85); -x_87 = lean_array_get_size(x_83); -lean_dec(x_83); -x_88 = lean_nat_sub(x_23, x_87); -lean_dec(x_87); -lean_dec(x_23); -x_89 = 2; -x_90 = l_Lean_Meta_forallMetaBoundedTelescope(x_86, x_88, x_89, x_31, x_32, x_33, x_34); -if (lean_obj_tag(x_90) == 0) -{ -lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; size_t x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; -x_91 = lean_ctor_get(x_90, 0); -lean_inc(x_91); -if (lean_is_exclusive(x_90)) { - lean_ctor_release(x_90, 0); - x_92 = x_90; +lean_dec(x_84); +x_87 = lean_st_ref_take(x_27); +x_88 = lean_array_size(x_86); +lean_inc(x_86); +x_89 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__1(x_88, x_43, x_86); +x_90 = l_Array_append___redArg(x_87, x_89); +lean_dec_ref(x_89); +x_91 = lean_st_ref_set(x_27, x_90); +lean_dec(x_27); +x_92 = l_Lean_mkAppN(x_79, x_86); +lean_dec(x_86); +x_93 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_93, 0, x_92); +if (lean_is_scalar(x_85)) { + x_94 = lean_alloc_ctor(0, 1, 0); } else { - lean_dec_ref(x_90); - x_92 = lean_box(0); + x_94 = x_85; } -x_93 = lean_ctor_get(x_91, 0); -lean_inc(x_93); -lean_dec(x_91); -x_94 = lean_st_ref_take(x_30); -x_95 = lean_array_size(x_93); -lean_inc(x_93); -x_96 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__1(x_95, x_46, x_93); -x_97 = l_Array_append___redArg(x_94, x_96); -lean_dec_ref(x_96); -x_98 = lean_st_ref_set(x_30, x_97); -lean_dec(x_30); -x_99 = l_Lean_mkAppN(x_84, x_93); -lean_dec(x_93); -x_100 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_100, 0, x_99); -if (lean_is_scalar(x_92)) { - x_101 = lean_alloc_ctor(0, 1, 0); -} else { - x_101 = x_92; -} -lean_ctor_set(x_101, 0, x_100); -return x_101; +lean_ctor_set(x_94, 0, x_93); +return x_94; } else { -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec_ref(x_84); -lean_dec(x_30); -x_102 = lean_ctor_get(x_90, 0); -lean_inc(x_102); -if (lean_is_exclusive(x_90)) { - lean_ctor_release(x_90, 0); - x_103 = x_90; +lean_object* x_95; lean_object* x_96; lean_object* x_97; +lean_dec_ref(x_79); +lean_dec(x_27); +x_95 = lean_ctor_get(x_83, 0); +lean_inc(x_95); +if (lean_is_exclusive(x_83)) { + lean_ctor_release(x_83, 0); + x_96 = x_83; } else { - lean_dec_ref(x_90); - x_103 = lean_box(0); + lean_dec_ref(x_83); + x_96 = lean_box(0); } -if (lean_is_scalar(x_103)) { - x_104 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_96)) { + x_97 = lean_alloc_ctor(1, 1, 0); } else { - x_104 = x_103; + x_97 = x_96; } -lean_ctor_set(x_104, 0, x_102); -return x_104; +lean_ctor_set(x_97, 0, x_95); +return x_97; } } else { -lean_object* x_105; lean_object* x_106; lean_object* x_107; -lean_dec_ref(x_84); -lean_dec(x_83); -lean_dec(x_34); -lean_dec_ref(x_33); -lean_dec(x_32); -lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec(x_23); -x_105 = lean_ctor_get(x_85, 0); -lean_inc(x_105); -if (lean_is_exclusive(x_85)) { - lean_ctor_release(x_85, 0); - x_106 = x_85; +lean_object* x_98; lean_object* x_99; lean_object* x_100; +lean_dec_ref(x_79); +lean_dec(x_31); +lean_dec_ref(x_30); +lean_dec(x_29); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec(x_24); +x_98 = lean_ctor_get(x_80, 0); +lean_inc(x_98); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + x_99 = x_80; } else { - lean_dec_ref(x_85); - x_106 = lean_box(0); + lean_dec_ref(x_80); + x_99 = lean_box(0); } -if (lean_is_scalar(x_106)) { - x_107 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_99)) { + x_100 = lean_alloc_ctor(1, 1, 0); } else { - x_107 = x_106; + x_100 = x_99; } -lean_ctor_set(x_107, 0, x_105); -return x_107; +lean_ctor_set(x_100, 0, x_98); +return x_100; } } } -block_141: +block_137: { -lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_116 = lean_nat_add(x_23, x_1); -lean_dec(x_1); -x_117 = lean_unsigned_to_nat(0u); -x_118 = lean_nat_dec_eq(x_116, x_117); -lean_dec(x_116); -if (x_118 == 0) +uint8_t x_112; +x_112 = lean_ctor_get_uint8(x_102, sizeof(void*)*2); +if (x_112 == 0) { -lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; uint8_t x_123; -lean_dec(x_19); -lean_dec(x_13); -x_119 = l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0___lam__1___closed__0; -x_120 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_trimFalseTrail(x_24); -x_121 = lean_array_get_size(x_120); -x_122 = l_Lean_Expr_getAppNumArgs(x_3); -x_123 = lean_nat_dec_le(x_121, x_122); -lean_dec(x_122); -lean_dec(x_121); -if (x_123 == 0) +lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; uint8_t x_119; +lean_dec(x_18); +lean_dec(x_12); +x_113 = lean_ctor_get(x_102, 1); +lean_inc(x_113); +lean_dec(x_102); +x_114 = lean_unsigned_to_nat(0u); +x_115 = l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00Lean_Meta_Match_unfoldNamedPattern_spec__0_spec__0___lam__1___closed__0; +x_116 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_trimFalseTrail(x_103); +x_117 = lean_array_get_size(x_116); +x_118 = l_Lean_Expr_getAppNumArgs(x_2); +x_119 = lean_nat_dec_le(x_117, x_118); +lean_dec(x_118); +lean_dec(x_117); +if (x_119 == 0) { -lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; uint8_t x_134; -lean_dec_ref(x_120); -lean_dec(x_110); -lean_dec(x_109); -lean_dec(x_25); -lean_dec(x_23); +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; uint8_t x_130; +lean_dec_ref(x_116); +lean_dec(x_113); +lean_dec(x_106); +lean_dec(x_105); lean_dec(x_21); -x_124 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__1; -x_125 = l_Lean_MessageData_ofName(x_2); -if (lean_is_scalar(x_22)) { - x_126 = lean_alloc_ctor(7, 2, 0); +lean_dec(x_19); +x_120 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__1; +x_121 = l_Lean_MessageData_ofName(x_1); +if (lean_is_scalar(x_104)) { + x_122 = lean_alloc_ctor(7, 2, 0); } else { - x_126 = x_22; - lean_ctor_set_tag(x_126, 7); + x_122 = x_104; + lean_ctor_set_tag(x_122, 7); } +lean_ctor_set(x_122, 0, x_120); +lean_ctor_set(x_122, 1, x_121); +x_123 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__3; +x_124 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_124, 0, x_122); +lean_ctor_set(x_124, 1, x_123); +x_125 = l_Lean_indentExpr(x_2); +x_126 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_126, 0, x_124); lean_ctor_set(x_126, 1, x_125); -x_127 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__3; +x_127 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__5; x_128 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_128, 0, x_126); lean_ctor_set(x_128, 1, x_127); -x_129 = l_Lean_indentExpr(x_3); -x_130 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_130, 0, x_128); -lean_ctor_set(x_130, 1, x_129); -x_131 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___closed__5; -x_132 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_132, 0, x_130); -lean_ctor_set(x_132, 1, x_131); -x_133 = l_Lean_throwError___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__1___redArg(x_132, x_111, x_112, x_113, x_114); -lean_dec(x_114); -lean_dec_ref(x_113); -lean_dec(x_112); -lean_dec_ref(x_111); -x_134 = !lean_is_exclusive(x_133); -if (x_134 == 0) +x_129 = l_Lean_throwError___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__1___redArg(x_128, x_107, x_108, x_109, x_110); +lean_dec(x_110); +lean_dec_ref(x_109); +lean_dec(x_108); +lean_dec_ref(x_107); +x_130 = !lean_is_exclusive(x_129); +if (x_130 == 0) { -return x_133; +return x_129; } else { -lean_object* x_135; lean_object* x_136; -x_135 = lean_ctor_get(x_133, 0); -lean_inc(x_135); -lean_dec(x_133); -x_136 = lean_alloc_ctor(1, 1, 0); +lean_object* x_131; lean_object* x_132; +x_131 = lean_ctor_get(x_129, 0); +lean_inc(x_131); +lean_dec(x_129); +x_132 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_132, 0, x_131); +return x_132; +} +} +else +{ +lean_dec(x_104); +lean_dec(x_1); +x_22 = x_114; +x_23 = x_116; +x_24 = x_113; +x_25 = x_115; +x_26 = x_105; +x_27 = x_106; +x_28 = x_107; +x_29 = x_108; +x_30 = x_109; +x_31 = x_110; +x_32 = lean_box(0); +goto block_101; +} +} +else +{ +lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; +lean_dec(x_110); +lean_dec_ref(x_109); +lean_dec(x_108); +lean_dec_ref(x_107); +lean_dec(x_106); +lean_dec(x_105); +lean_dec(x_104); +lean_dec(x_103); +lean_dec(x_102); +lean_dec(x_21); +lean_dec_ref(x_2); +lean_dec(x_1); +x_133 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__6; +x_134 = l_Lean_Expr_app___override(x_19, x_133); +if (lean_is_scalar(x_18)) { + x_135 = lean_alloc_ctor(0, 1, 0); +} else { + x_135 = x_18; + lean_ctor_set_tag(x_135, 0); +} +lean_ctor_set(x_135, 0, x_134); +if (lean_is_scalar(x_12)) { + x_136 = lean_alloc_ctor(0, 1, 0); +} else { + x_136 = x_12; +} lean_ctor_set(x_136, 0, x_135); return x_136; } } -else -{ -lean_dec(x_22); -lean_dec(x_2); -x_26 = x_117; -x_27 = x_120; -x_28 = x_119; -x_29 = x_109; -x_30 = x_110; -x_31 = x_111; -x_32 = x_112; -x_33 = x_113; -x_34 = x_114; -x_35 = lean_box(0); -goto block_108; -} } else { -lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; -lean_dec(x_114); -lean_dec_ref(x_113); -lean_dec(x_112); -lean_dec_ref(x_111); -lean_dec(x_110); -lean_dec(x_109); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_23); -lean_dec(x_22); -lean_dec_ref(x_3); -lean_dec(x_2); -x_137 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__4; -x_138 = l_Lean_Expr_app___override(x_21, x_137); -if (lean_is_scalar(x_19)) { - x_139 = lean_alloc_ctor(0, 1, 0); -} else { - x_139 = x_19; - lean_ctor_set_tag(x_139, 0); -} -lean_ctor_set(x_139, 0, x_138); -if (lean_is_scalar(x_13)) { - x_140 = lean_alloc_ctor(0, 1, 0); -} else { - x_140 = x_13; -} -lean_ctor_set(x_140, 0, x_139); -return x_140; -} -} -} -else -{ -lean_object* x_194; lean_object* x_195; -lean_dec(x_17); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); +lean_object* x_164; lean_object* x_165; +lean_dec(x_16); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); +lean_dec(x_3); +lean_dec_ref(x_2); lean_dec(x_1); -x_194 = l_Lean_Meta_Match_unfoldNamedPattern___lam__0___closed__0; -if (lean_is_scalar(x_13)) { - x_195 = lean_alloc_ctor(0, 1, 0); +x_164 = l_Lean_Meta_Match_unfoldNamedPattern___lam__0___closed__0; +if (lean_is_scalar(x_12)) { + x_165 = lean_alloc_ctor(0, 1, 0); } else { - x_195 = x_13; + x_165 = x_12; } -lean_ctor_set(x_195, 0, x_194); -return x_195; +lean_ctor_set(x_165, 0, x_164); +return x_165; } } else { -lean_object* x_196; lean_object* x_197; -lean_dec_ref(x_15); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); +lean_object* x_166; lean_object* x_167; +lean_dec_ref(x_14); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); +lean_dec(x_3); +lean_dec_ref(x_2); lean_dec(x_1); -x_196 = l_Lean_Meta_Match_unfoldNamedPattern___lam__0___closed__0; -if (lean_is_scalar(x_13)) { - x_197 = lean_alloc_ctor(0, 1, 0); +x_166 = l_Lean_Meta_Match_unfoldNamedPattern___lam__0___closed__0; +if (lean_is_scalar(x_12)) { + x_167 = lean_alloc_ctor(0, 1, 0); } else { - x_197 = x_13; + x_167 = x_12; } -lean_ctor_set(x_197, 0, x_196); -return x_197; +lean_ctor_set(x_167, 0, x_166); +return x_167; } } else { -lean_object* x_198; -lean_dec(x_13); -x_198 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec(x_2, x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_198) == 0) +lean_object* x_168; +lean_dec(x_12); +x_168 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_168) == 0) { -uint8_t x_199; -x_199 = !lean_is_exclusive(x_198); -if (x_199 == 0) +uint8_t x_169; +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_200; lean_object* x_201; -x_200 = lean_ctor_get(x_198, 0); -x_201 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_201, 0, x_200); -lean_ctor_set(x_198, 0, x_201); -return x_198; +lean_object* x_170; lean_object* x_171; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_171, 0, x_170); +lean_ctor_set(x_168, 0, x_171); +return x_168; } else { -lean_object* x_202; lean_object* x_203; lean_object* x_204; -x_202 = lean_ctor_get(x_198, 0); -lean_inc(x_202); -lean_dec(x_198); -x_203 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_203, 0, x_202); -x_204 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_204, 0, x_203); -return x_204; +lean_object* x_172; lean_object* x_173; lean_object* x_174; +x_172 = lean_ctor_get(x_168, 0); +lean_inc(x_172); +lean_dec(x_168); +x_173 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_173, 0, x_172); +x_174 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_174, 0, x_173); +return x_174; } } else { -uint8_t x_205; -x_205 = !lean_is_exclusive(x_198); -if (x_205 == 0) +uint8_t x_175; +x_175 = !lean_is_exclusive(x_168); +if (x_175 == 0) { -return x_198; +return x_168; } else { -lean_object* x_206; lean_object* x_207; -x_206 = lean_ctor_get(x_198, 0); -lean_inc(x_206); -lean_dec(x_198); -x_207 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_207, 0, x_206); -return x_207; +lean_object* x_176; lean_object* x_177; +x_176 = lean_ctor_get(x_168, 0); +lean_inc(x_176); +lean_dec(x_168); +x_177 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_177, 0, x_176); +return x_177; } } } } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; -x_11 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__0___boxed), 8, 0); -x_12 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___boxed), 10, 2); -lean_closure_set(x_12, 0, x_2); -lean_closure_set(x_12, 1, x_1); -x_13 = 0; -x_14 = l_Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3(x_3, x_12, x_11, x_13, x_13, x_4, x_5, x_6, x_7, x_8, x_9); -return x_14; +lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; +x_10 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__0___boxed), 8, 0); +x_11 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___boxed), 9, 1); +lean_closure_set(x_11, 0, x_1); +x_12 = 0; +x_13 = l_Lean_Meta_transform___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__3(x_2, x_11, x_10, x_12, x_12, x_3, x_4, x_5, x_6, x_7, x_8); +return x_13; } } LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2) { @@ -29398,14 +29293,14 @@ lean_dec(x_5); return x_13; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -uint8_t x_14; lean_object* x_15; -x_14 = lean_unbox(x_3); -x_15 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg(x_1, x_2, x_14, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_4); -return x_15; +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_2); +x_14 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___redArg(x_1, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_3); +return x_14; } } LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8___boxed(lean_object** _args) { @@ -29427,27 +29322,26 @@ lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; _start: { -uint8_t x_20; lean_object* x_21; -x_20 = lean_unbox(x_3); -x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8(x_1, x_2, x_20, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_8); +uint8_t x_19; lean_object* x_20; +x_19 = lean_unbox(x_2); +x_20 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8_spec__8(x_1, x_19, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); lean_dec(x_7); -return x_21; +lean_dec(x_6); +return x_20; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; lean_object* x_16; -x_15 = lean_unbox(x_3); -x_16 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg(x_1, x_2, x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -lean_dec(x_7); -lean_dec(x_5); +uint8_t x_14; lean_object* x_15; +x_14 = lean_unbox(x_2); +x_15 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___redArg(x_1, x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_6); lean_dec(x_4); -return x_16; +lean_dec(x_3); +return x_15; } } LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8___boxed(lean_object** _args) { @@ -29469,16 +29363,15 @@ lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; _start: { -uint8_t x_20; lean_object* x_21; -x_20 = lean_unbox(x_3); -x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8(x_1, x_2, x_20, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_10); -lean_dec(x_8); +uint8_t x_19; lean_object* x_20; +x_19 = lean_unbox(x_2); +x_20 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__8(x_1, x_19, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_9); lean_dec(x_7); -return x_21; +lean_dec(x_6); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__0___boxed(lean_object** _args) { @@ -29535,58 +29428,57 @@ lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; lean_object* x_19 = _args[18]; -lean_object* x_20 = _args[19]; _start: { -uint8_t x_21; uint8_t x_22; lean_object* x_23; -x_21 = lean_unbox(x_1); -x_22 = lean_unbox(x_2); -x_23 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2(x_21, x_22, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -lean_dec_ref(x_13); +uint8_t x_20; uint8_t x_21; lean_object* x_22; +x_20 = lean_unbox(x_1); +x_21 = lean_unbox(x_2); +x_22 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___lam__2(x_20, x_21, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); lean_dec_ref(x_12); lean_dec_ref(x_11); -lean_dec(x_9); -lean_dec_ref(x_8); -return x_23; +lean_dec_ref(x_10); +lean_dec(x_8); +lean_dec_ref(x_7); +return x_22; } } -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; lean_object* x_16; -x_15 = lean_unbox(x_3); -x_16 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10(x_1, x_2, x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_16; +uint8_t x_14; lean_object* x_15; +x_14 = lean_unbox(x_2); +x_15 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10(x_1, x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; lean_object* x_16; -x_15 = lean_unbox(x_3); -x_16 = l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___redArg(x_1, x_2, x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -lean_dec(x_7); -return x_16; +uint8_t x_14; lean_object* x_15; +x_14 = lean_unbox(x_2); +x_15 = l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___redArg(x_1, x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_6); +return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; lean_object* x_18; -x_17 = lean_unbox(x_5); -x_18 = l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10(x_1, x_2, x_3, x_4, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -lean_dec(x_9); +uint8_t x_16; lean_object* x_17; +x_16 = lean_unbox(x_4); +x_17 = l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10(x_1, x_2, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_8); lean_dec_ref(x_2); lean_dec_ref(x_1); -return x_18; +return x_17; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_11; -x_11 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; +lean_object* x_10; +x_10 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; } } LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { @@ -29874,20 +29766,20 @@ lean_dec(x_2); return x_9; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_11; -x_11 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; +lean_object* x_10; +x_10 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_11; -x_11 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; +lean_object* x_10; +x_10 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; } } LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_spec__0(size_t x_1, size_t x_2, lean_object* x_3) { @@ -30131,150 +30023,150 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_49; lean_object* x_50; uint8_t x_51; -x_29 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; -x_49 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_29, x_10); -x_50 = lean_ctor_get(x_49, 0); -lean_inc(x_50); -lean_dec_ref(x_49); -x_51 = lean_unbox(x_50); -lean_dec(x_50); -if (x_51 == 0) +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_48; lean_object* x_49; uint8_t x_50; +x_28 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; +x_48 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_28, x_9); +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +lean_dec_ref(x_48); +x_50 = lean_unbox(x_49); +lean_dec(x_49); +if (x_50 == 0) { +x_29 = x_7; x_30 = x_8; x_31 = x_9; x_32 = x_10; -x_33 = x_11; -x_34 = lean_box(0); -goto block_48; +x_33 = lean_box(0); +goto block_47; } else { -lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_52 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof___closed__3; +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_51 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof___closed__3; lean_inc_ref(x_2); -x_53 = l_Lean_MessageData_ofExpr(x_2); -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -x_55 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_29, x_54, x_8, x_9, x_10, x_11); -lean_dec_ref(x_55); +x_52 = l_Lean_MessageData_ofExpr(x_2); +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_28, x_53, x_7, x_8, x_9, x_10); +lean_dec_ref(x_54); +x_29 = x_7; x_30 = x_8; x_31 = x_9; x_32 = x_10; -x_33 = x_11; -x_34 = lean_box(0); -goto block_48; +x_33 = lean_box(0); +goto block_47; } -block_28: +block_27: { -lean_object* x_20; size_t x_21; size_t x_22; lean_object* x_23; -x_20 = lean_box(0); -x_21 = lean_array_size(x_13); -x_22 = 0; -lean_inc(x_16); -x_23 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_spec__1(x_3, x_20, x_13, x_21, x_22, x_20, x_15, x_16, x_17, x_18); -lean_dec_ref(x_13); -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_24; -lean_dec_ref(x_23); -x_24 = l_Lean_instantiateMVars___at___00Lean_Meta_Match_proveCondEqThm_spec__0___redArg(x_14, x_16); -lean_dec(x_16); -return x_24; -} -else -{ -uint8_t x_25; -lean_dec(x_16); -lean_dec_ref(x_14); -x_25 = !lean_is_exclusive(x_23); -if (x_25 == 0) +lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; +x_19 = lean_box(0); +x_20 = lean_array_size(x_12); +x_21 = 0; +lean_inc(x_15); +x_22 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_spec__1(x_3, x_19, x_12, x_20, x_21, x_19, x_14, x_15, x_16, x_17); +lean_dec_ref(x_12); +if (lean_obj_tag(x_22) == 0) { +lean_object* x_23; +lean_dec_ref(x_22); +x_23 = l_Lean_instantiateMVars___at___00Lean_Meta_Match_proveCondEqThm_spec__0___redArg(x_13, x_15); +lean_dec(x_15); return x_23; } else { -lean_object* x_26; lean_object* x_27; -x_26 = lean_ctor_get(x_23, 0); -lean_inc(x_26); -lean_dec(x_23); -x_27 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_27, 0, x_26); -return x_27; -} -} -} -block_48: +uint8_t x_24; +lean_dec(x_15); +lean_dec_ref(x_13); +x_24 = !lean_is_exclusive(x_22); +if (x_24 == 0) { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_35 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__9; -x_36 = lean_st_mk_ref(x_35); -x_37 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_mkMap(x_3, x_4, x_5, x_6); -lean_inc(x_33); -lean_inc_ref(x_32); -lean_inc(x_31); -lean_inc_ref(x_30); -lean_inc(x_36); -x_38 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_7, x_2, x_37, x_36, x_30, x_31, x_32, x_33); -if (lean_obj_tag(x_38) == 0) -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; -x_39 = lean_ctor_get(x_38, 0); -lean_inc(x_39); -lean_dec_ref(x_38); -x_40 = lean_st_ref_get(x_36); -lean_dec(x_36); -x_41 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_29, x_32); -x_42 = lean_ctor_get(x_41, 0); -lean_inc(x_42); -lean_dec_ref(x_41); -x_43 = lean_unbox(x_42); -lean_dec(x_42); -if (x_43 == 0) -{ -x_13 = x_40; -x_14 = x_39; -x_15 = x_30; -x_16 = x_31; -x_17 = x_32; -x_18 = x_33; -x_19 = lean_box(0); -goto block_28; +return x_22; } else { -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_44 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof___closed__1; -lean_inc(x_39); -x_45 = l_Lean_MessageData_ofExpr(x_39); -x_46 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_46, 0, x_44); -lean_ctor_set(x_46, 1, x_45); -x_47 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_29, x_46, x_30, x_31, x_32, x_33); -lean_dec_ref(x_47); -x_13 = x_40; -x_14 = x_39; +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_22, 0); +lean_inc(x_25); +lean_dec(x_22); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_25); +return x_26; +} +} +} +block_47: +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_34 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__9; +x_35 = lean_st_mk_ref(x_34); +x_36 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_mkMap(x_3, x_4, x_5, x_6); +lean_inc(x_32); +lean_inc_ref(x_31); +lean_inc(x_30); +lean_inc_ref(x_29); +lean_inc(x_35); +x_37 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate(x_1, x_2, x_36, x_35, x_29, x_30, x_31, x_32); +if (lean_obj_tag(x_37) == 0) +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +lean_dec_ref(x_37); +x_39 = lean_st_ref_get(x_35); +lean_dec(x_35); +x_40 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_28, x_31); +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +lean_dec_ref(x_40); +x_42 = lean_unbox(x_41); +lean_dec(x_41); +if (x_42 == 0) +{ +x_12 = x_39; +x_13 = x_38; +x_14 = x_29; x_15 = x_30; x_16 = x_31; x_17 = x_32; -x_18 = x_33; -x_19 = lean_box(0); -goto block_28; +x_18 = lean_box(0); +goto block_27; +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_43 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof___closed__1; +lean_inc(x_38); +x_44 = l_Lean_MessageData_ofExpr(x_38); +x_45 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +x_46 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_28, x_45, x_29, x_30, x_31, x_32); +lean_dec_ref(x_46); +x_12 = x_39; +x_13 = x_38; +x_14 = x_29; +x_15 = x_30; +x_16 = x_31; +x_17 = x_32; +x_18 = lean_box(0); +goto block_27; } } else { -lean_dec(x_36); -lean_dec(x_33); -lean_dec_ref(x_32); -lean_dec(x_31); -lean_dec_ref(x_30); +lean_dec(x_35); +lean_dec(x_32); +lean_dec_ref(x_31); +lean_dec(x_30); +lean_dec_ref(x_29); lean_dec_ref(x_3); -return x_38; +return x_37; } } } @@ -30317,12 +30209,12 @@ lean_dec_ref(x_3); return x_14; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_13; -x_13 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_13; +lean_object* x_12; +x_12 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; } } LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withNewAlts_go___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -31865,7 +31757,7 @@ lean_dec_ref(x_27); lean_dec_ref(x_22); lean_dec_ref(x_21); lean_dec_ref(x_20); -lean_dec(x_19); +lean_dec_ref(x_19); lean_dec(x_18); lean_dec(x_17); lean_dec(x_16); @@ -31987,7 +31879,7 @@ uint8_t x_63; lean_dec_ref(x_22); lean_dec_ref(x_21); lean_dec_ref(x_20); -lean_dec(x_19); +lean_dec_ref(x_19); x_63 = !lean_is_exclusive(x_53); if (x_63 == 0) { @@ -32014,7 +31906,7 @@ lean_dec_ref(x_29); lean_dec_ref(x_22); lean_dec_ref(x_21); lean_dec_ref(x_20); -lean_dec(x_19); +lean_dec_ref(x_19); lean_dec(x_18); lean_dec(x_17); lean_dec(x_16); @@ -32045,7 +31937,7 @@ lean_dec_ref(x_27); lean_dec_ref(x_22); lean_dec_ref(x_21); lean_dec_ref(x_20); -lean_dec(x_19); +lean_dec_ref(x_19); lean_dec(x_18); lean_dec(x_17); lean_dec(x_16); @@ -32078,7 +31970,7 @@ lean_dec_ref(x_27); lean_dec_ref(x_22); lean_dec_ref(x_21); lean_dec_ref(x_20); -lean_dec(x_19); +lean_dec_ref(x_19); lean_dec(x_18); lean_dec(x_17); lean_dec(x_16); @@ -32112,7 +32004,7 @@ lean_dec_ref(x_27); lean_dec_ref(x_22); lean_dec_ref(x_21); lean_dec_ref(x_20); -lean_dec(x_19); +lean_dec_ref(x_19); lean_dec(x_18); lean_dec(x_17); lean_dec(x_16); @@ -32167,14 +32059,23 @@ return x_3; static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__3() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__3; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__4() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__1; +x_2 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__3; x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__4() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__5() { _start: { lean_object* x_1; @@ -32182,11 +32083,11 @@ x_1 = lean_mk_string_unchecked("hs: ", 4, 4); return x_1; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__5() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__4; +x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__5; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } @@ -32203,33 +32104,32 @@ return x_2; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25) { _start: { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; size_t x_35; size_t x_36; lean_object* x_37; -x_27 = lean_ctor_get(x_1, 5); -x_28 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_casesOnStuckLHS_findFVar_x3f___closed__0; -x_29 = l_Lean_Expr_getAppNumArgs(x_21); -lean_inc(x_29); -x_30 = lean_mk_array(x_29, x_28); -x_31 = lean_unsigned_to_nat(1u); -x_32 = lean_nat_sub(x_29, x_31); -lean_dec(x_29); +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; size_t x_34; size_t x_35; lean_object* x_36; +x_27 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_casesOnStuckLHS_findFVar_x3f___closed__0; +x_28 = l_Lean_Expr_getAppNumArgs(x_21); +lean_inc(x_28); +x_29 = lean_mk_array(x_28, x_27); +x_30 = lean_unsigned_to_nat(1u); +x_31 = lean_nat_sub(x_28, x_30); +lean_dec(x_28); lean_inc_ref(x_21); -x_33 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_21, x_30, x_32); -x_34 = l_Lean_Meta_Match_Overlaps_overlapping(x_27, x_2); -x_35 = lean_array_size(x_34); -x_36 = 0; +x_32 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_21, x_29, x_31); +x_33 = l_Lean_Meta_Match_Overlaps_overlapping(x_1, x_2); +x_34 = lean_array_size(x_33); +x_35 = 0; lean_inc(x_25); lean_inc_ref(x_24); lean_inc(x_23); lean_inc_ref(x_22); lean_inc_ref(x_3); -x_37 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__9(x_3, x_4, x_33, x_34, x_35, x_36, x_5, x_22, x_23, x_24, x_25); -lean_dec_ref(x_34); -if (lean_obj_tag(x_37) == 0) +x_36 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__9(x_3, x_4, x_32, x_33, x_34, x_35, x_5, x_22, x_23, x_24, x_25); +lean_dec_ref(x_33); +if (lean_obj_tag(x_36) == 0) { -lean_object* x_38; uint8_t x_39; uint8_t x_40; uint8_t x_41; uint8_t x_42; uint8_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; -x_38 = lean_ctor_get(x_37, 0); -lean_inc(x_38); -lean_dec_ref(x_37); +lean_object* x_37; uint8_t x_38; uint8_t x_39; uint8_t x_40; uint8_t x_41; uint8_t x_42; uint8_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +lean_dec_ref(x_36); x_119 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; x_120 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_119, x_24); x_121 = lean_ctor_get(x_120, 0); @@ -32249,9 +32149,9 @@ goto block_118; else { lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; -x_123 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__5; -lean_inc(x_38); -x_124 = lean_array_to_list(x_38); +x_123 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__6; +lean_inc(x_37); +x_124 = lean_array_to_list(x_37); x_125 = lean_box(0); x_126 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkAppDiscrEqs_go_spec__1(x_124, x_125); x_127 = l_Lean_MessageData_ofList(x_126); @@ -32282,8 +32182,8 @@ x_52 = lean_ctor_get(x_51, 0); lean_inc(x_52); lean_dec_ref(x_51); x_53 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__2; -lean_inc_ref(x_33); -x_54 = l_Array_reverse___redArg(x_33); +lean_inc_ref(x_32); +x_54 = l_Array_reverse___redArg(x_32); x_55 = lean_unsigned_to_nat(0u); x_56 = lean_array_get_size(x_54); x_57 = l_Array_toSubarray___redArg(x_54, x_55, x_56); @@ -32298,7 +32198,7 @@ lean_inc(x_49); lean_inc_ref(x_48); lean_inc(x_47); lean_inc_ref(x_46); -x_62 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__10(x_59, x_61, x_36, x_60, x_46, x_47, x_48, x_49); +x_62 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__10(x_59, x_61, x_35, x_60, x_46, x_47, x_48, x_49); lean_dec_ref(x_59); if (lean_obj_tag(x_62) == 0) { @@ -32311,7 +32211,7 @@ lean_inc(x_64); lean_dec(x_63); lean_inc_ref(x_58); x_65 = l_Array_append___redArg(x_58, x_17); -x_66 = l_Lean_Meta_mkForallFVars(x_65, x_64, x_42, x_44, x_44, x_43, x_46, x_47, x_48, x_49); +x_66 = l_Lean_Meta_mkForallFVars(x_65, x_64, x_43, x_42, x_42, x_44, x_46, x_47, x_48, x_49); lean_dec_ref(x_65); if (lean_obj_tag(x_66) == 0) { @@ -32319,24 +32219,27 @@ lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean x_67 = lean_ctor_get(x_66, 0); lean_inc(x_67); lean_dec_ref(x_66); -x_68 = lean_array_get_size(x_38); -x_69 = lean_array_get_size(x_17); -x_70 = lean_nat_add(x_68, x_69); -lean_dec(x_69); -x_71 = lean_box(x_41); -x_72 = lean_box(x_40); -x_73 = lean_box(x_39); +x_68 = lean_array_get_size(x_17); +x_69 = lean_array_get_size(x_37); +lean_inc(x_69); +x_70 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_69); +lean_ctor_set_uint8(x_70, sizeof(void*)*2, x_41); +x_71 = lean_box(x_38); +x_72 = lean_box(x_39); +x_73 = lean_box(x_40); x_74 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___boxed__const__1; -lean_inc_ref(x_33); +lean_inc_ref(x_32); x_75 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__0___boxed), 31, 25); lean_closure_set(x_75, 0, x_3); lean_closure_set(x_75, 1, x_2); lean_closure_set(x_75, 2, x_7); lean_closure_set(x_75, 3, x_8); lean_closure_set(x_75, 4, x_9); -lean_closure_set(x_75, 5, x_31); +lean_closure_set(x_75, 5, x_30); lean_closure_set(x_75, 6, x_10); -lean_closure_set(x_75, 7, x_33); +lean_closure_set(x_75, 7, x_32); lean_closure_set(x_75, 8, x_19); lean_closure_set(x_75, 9, x_17); lean_closure_set(x_75, 10, x_71); @@ -32351,11 +32254,11 @@ lean_closure_set(x_75, 18, x_70); lean_closure_set(x_75, 19, x_20); lean_closure_set(x_75, 20, x_52); lean_closure_set(x_75, 21, x_67); -lean_closure_set(x_75, 22, x_68); -lean_closure_set(x_75, 23, x_38); +lean_closure_set(x_75, 22, x_69); +lean_closure_set(x_75, 23, x_37); lean_closure_set(x_75, 24, x_74); x_76 = l_Array_ofSubarray___redArg(x_15); -x_77 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withNewAlts___redArg(x_16, x_58, x_33, x_76, x_75, x_46, x_47, x_48, x_49); +x_77 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withNewAlts___redArg(x_16, x_58, x_32, x_76, x_75, x_46, x_47, x_48, x_49); return x_77; } else @@ -32367,8 +32270,8 @@ lean_dec(x_49); lean_dec_ref(x_48); lean_dec(x_47); lean_dec_ref(x_46); -lean_dec(x_38); -lean_dec_ref(x_33); +lean_dec(x_37); +lean_dec_ref(x_32); lean_dec_ref(x_20); lean_dec_ref(x_19); lean_dec_ref(x_17); @@ -32408,8 +32311,8 @@ lean_dec(x_49); lean_dec_ref(x_48); lean_dec(x_47); lean_dec_ref(x_46); -lean_dec(x_38); -lean_dec_ref(x_33); +lean_dec(x_37); +lean_dec_ref(x_32); lean_dec_ref(x_20); lean_dec_ref(x_19); lean_dec_ref(x_17); @@ -32447,8 +32350,8 @@ lean_dec(x_49); lean_dec_ref(x_48); lean_dec(x_47); lean_dec_ref(x_46); -lean_dec(x_38); -lean_dec_ref(x_33); +lean_dec(x_37); +lean_dec_ref(x_32); lean_dec_ref(x_20); lean_dec_ref(x_19); lean_dec_ref(x_17); @@ -32495,7 +32398,7 @@ lean_inc(x_97); lean_dec_ref(x_96); lean_inc(x_91); lean_inc_ref(x_90); -x_98 = l_Lean_mkArrowN(x_38, x_97, x_90, x_91); +x_98 = l_Lean_mkArrowN(x_37, x_97, x_90, x_91); if (lean_obj_tag(x_98) == 0) { lean_object* x_99; lean_object* x_100; @@ -32513,12 +32416,13 @@ x_102 = lean_expr_eqv(x_101, x_21); lean_dec_ref(x_21); if (x_102 == 0) { -x_39 = x_95; -x_40 = x_94; -x_41 = x_93; -x_42 = x_93; -x_43 = x_95; -x_44 = x_94; +x_38 = x_93; +x_39 = x_94; +x_40 = x_95; +x_41 = x_102; +x_42 = x_94; +x_43 = x_93; +x_44 = x_95; x_45 = x_101; x_46 = x_88; x_47 = x_89; @@ -32530,7 +32434,7 @@ goto block_87; else { lean_object* x_103; lean_object* x_104; -x_103 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__3; +x_103 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__4; lean_inc(x_91); lean_inc_ref(x_90); x_104 = l_Lean_mkArrow(x_103, x_101, x_90, x_91); @@ -32540,12 +32444,13 @@ lean_object* x_105; x_105 = lean_ctor_get(x_104, 0); lean_inc(x_105); lean_dec_ref(x_104); -x_39 = x_95; -x_40 = x_94; -x_41 = x_93; -x_42 = x_93; -x_43 = x_95; -x_44 = x_94; +x_38 = x_93; +x_39 = x_94; +x_40 = x_95; +x_41 = x_102; +x_42 = x_94; +x_43 = x_93; +x_44 = x_95; x_45 = x_105; x_46 = x_88; x_47 = x_89; @@ -32561,8 +32466,8 @@ lean_dec(x_91); lean_dec_ref(x_90); lean_dec(x_89); lean_dec_ref(x_88); -lean_dec(x_38); -lean_dec_ref(x_33); +lean_dec(x_37); +lean_dec_ref(x_32); lean_dec_ref(x_20); lean_dec_ref(x_19); lean_dec_ref(x_17); @@ -32601,8 +32506,8 @@ lean_dec(x_91); lean_dec_ref(x_90); lean_dec(x_89); lean_dec_ref(x_88); -lean_dec(x_38); -lean_dec_ref(x_33); +lean_dec(x_37); +lean_dec_ref(x_32); lean_dec_ref(x_21); lean_dec_ref(x_20); lean_dec_ref(x_19); @@ -32641,8 +32546,8 @@ lean_dec(x_91); lean_dec_ref(x_90); lean_dec(x_89); lean_dec_ref(x_88); -lean_dec(x_38); -lean_dec_ref(x_33); +lean_dec(x_37); +lean_dec_ref(x_32); lean_dec_ref(x_21); lean_dec_ref(x_20); lean_dec_ref(x_19); @@ -32681,8 +32586,8 @@ lean_dec(x_91); lean_dec_ref(x_90); lean_dec(x_89); lean_dec_ref(x_88); -lean_dec(x_38); -lean_dec_ref(x_33); +lean_dec(x_37); +lean_dec_ref(x_32); lean_dec_ref(x_21); lean_dec_ref(x_20); lean_dec_ref(x_19); @@ -32718,7 +32623,7 @@ return x_117; else { uint8_t x_130; -lean_dec_ref(x_33); +lean_dec_ref(x_32); lean_dec(x_25); lean_dec_ref(x_24); lean_dec(x_23); @@ -32737,17 +32642,17 @@ lean_dec(x_8); lean_dec_ref(x_7); lean_dec_ref(x_3); lean_dec(x_2); -x_130 = !lean_is_exclusive(x_37); +x_130 = !lean_is_exclusive(x_36); if (x_130 == 0) { -return x_37; +return x_36; } else { lean_object* x_131; lean_object* x_132; -x_131 = lean_ctor_get(x_37, 0); +x_131 = lean_ctor_get(x_36, 0); lean_inc(x_131); -lean_dec(x_37); +lean_dec(x_36); x_132 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_132, 0, x_131); return x_132; @@ -32810,7 +32715,7 @@ return x_2; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23) { _start: { -lean_object* x_25; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_110; uint8_t x_111; +lean_object* x_25; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_111; uint8_t x_112; x_41 = lean_ctor_get(x_18, 1); lean_inc(x_41); x_42 = lean_ctor_get(x_41, 1); @@ -32836,21 +32741,20 @@ lean_inc(x_49); x_50 = lean_ctor_get(x_44, 1); lean_inc(x_50); lean_dec(x_44); -lean_inc_ref(x_1); -x_51 = l_Lean_Meta_Match_MatcherInfo_altNumParams(x_1); -lean_inc(x_2); -x_52 = lean_array_get(x_2, x_51, x_19); -lean_dec_ref(x_51); -x_53 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__0; +x_51 = lean_ctor_get(x_1, 2); +x_52 = lean_ctor_get(x_1, 5); +lean_inc_ref(x_2); +x_53 = lean_array_get_borrowed(x_2, x_51, x_19); +x_54 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__0; lean_inc(x_3); -x_54 = l_Lean_Name_str___override(x_3, x_53); +x_55 = l_Lean_Name_str___override(x_3, x_54); lean_inc(x_47); -x_55 = lean_name_append_index_after(x_54, x_47); +x_56 = lean_name_append_index_after(x_55, x_47); lean_inc(x_15); lean_inc_ref(x_14); lean_inc(x_13); lean_inc(x_12); -lean_inc(x_55); +lean_inc(x_56); lean_inc(x_11); lean_inc_ref(x_10); lean_inc_ref(x_9); @@ -32861,42 +32765,42 @@ lean_inc_ref(x_5); lean_inc(x_48); lean_inc_ref(x_4); lean_inc(x_19); -lean_inc_ref(x_1); -x_56 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___boxed), 26, 16); -lean_closure_set(x_56, 0, x_1); -lean_closure_set(x_56, 1, x_19); -lean_closure_set(x_56, 2, x_4); -lean_closure_set(x_56, 3, x_48); -lean_closure_set(x_56, 4, x_5); -lean_closure_set(x_56, 5, x_6); -lean_closure_set(x_56, 6, x_7); -lean_closure_set(x_56, 7, x_8); -lean_closure_set(x_56, 8, x_9); -lean_closure_set(x_56, 9, x_10); -lean_closure_set(x_56, 10, x_11); -lean_closure_set(x_56, 11, x_55); -lean_closure_set(x_56, 12, x_12); -lean_closure_set(x_56, 13, x_13); -lean_closure_set(x_56, 14, x_14); -lean_closure_set(x_56, 15, x_15); -x_57 = lean_array_push(x_46, x_55); -x_110 = l_Subarray_size___redArg(x_14); -x_111 = lean_nat_dec_lt(x_19, x_110); -lean_dec(x_110); -if (x_111 == 0) +lean_inc_ref(x_52); +x_57 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___boxed), 26, 16); +lean_closure_set(x_57, 0, x_52); +lean_closure_set(x_57, 1, x_19); +lean_closure_set(x_57, 2, x_4); +lean_closure_set(x_57, 3, x_48); +lean_closure_set(x_57, 4, x_5); +lean_closure_set(x_57, 5, x_6); +lean_closure_set(x_57, 6, x_7); +lean_closure_set(x_57, 7, x_8); +lean_closure_set(x_57, 8, x_9); +lean_closure_set(x_57, 9, x_10); +lean_closure_set(x_57, 10, x_11); +lean_closure_set(x_57, 11, x_56); +lean_closure_set(x_57, 12, x_12); +lean_closure_set(x_57, 13, x_13); +lean_closure_set(x_57, 14, x_14); +lean_closure_set(x_57, 15, x_15); +x_58 = lean_array_push(x_46, x_56); +x_111 = l_Subarray_size___redArg(x_14); +x_112 = lean_nat_dec_lt(x_19, x_111); +lean_dec(x_111); +if (x_112 == 0) { -lean_object* x_112; +lean_object* x_113; lean_inc_ref(x_4); -x_112 = l_outOfBounds___redArg(x_4); -x_58 = x_112; -goto block_109; +x_113 = l_outOfBounds___redArg(x_4); +x_59 = x_113; +goto block_110; } else { -lean_object* x_113; -x_113 = l_Subarray_get___redArg(x_14, x_19); -x_58 = x_113; -goto block_109; +lean_object* x_114; +x_114 = l_Subarray_get___redArg(x_14, x_19); +x_59 = x_114; +goto block_110; } block_40: { @@ -32933,7 +32837,7 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -lean_dec(x_2); +lean_dec_ref(x_2); lean_dec_ref(x_1); lean_ctor_set(x_25, 0, x_28); return x_25; @@ -32980,7 +32884,7 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -lean_dec(x_2); +lean_dec_ref(x_2); lean_dec_ref(x_1); x_38 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_38, 0, x_34); @@ -32994,141 +32898,189 @@ goto _start; } } } -block_109: +block_110: { -lean_object* x_59; +lean_object* x_60; lean_inc(x_23); lean_inc_ref(x_22); lean_inc(x_21); lean_inc_ref(x_20); -x_59 = lean_infer_type(x_58, x_20, x_21, x_22, x_23); -if (lean_obj_tag(x_59) == 0) +x_60 = lean_infer_type(x_59, x_20, x_21, x_22, x_23); +if (lean_obj_tag(x_60) == 0) { -lean_object* x_60; lean_object* x_61; -x_60 = lean_ctor_get(x_59, 0); -lean_inc(x_60); -lean_dec_ref(x_59); +lean_object* x_61; lean_object* x_62; +x_61 = lean_ctor_get(x_60, 0); +lean_inc(x_61); +lean_dec_ref(x_60); lean_inc(x_23); lean_inc_ref(x_22); lean_inc(x_21); lean_inc_ref(x_20); lean_inc(x_15); -x_61 = l_Lean_Meta_Match_forallAltTelescope___redArg(x_60, x_52, x_15, x_56, x_20, x_21, x_22, x_23); -if (lean_obj_tag(x_61) == 0) +lean_inc_ref(x_53); +x_62 = l_Lean_Meta_Match_forallAltTelescope___redArg(x_61, x_53, x_15, x_57, x_20, x_21, x_22, x_23); +if (lean_obj_tag(x_62) == 0) { -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; uint8_t x_67; -x_62 = lean_ctor_get(x_61, 0); -lean_inc(x_62); -lean_dec_ref(x_61); -x_63 = lean_ctor_get(x_62, 1); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; +x_63 = lean_ctor_get(x_62, 0); lean_inc(x_63); +lean_dec_ref(x_62); x_64 = lean_ctor_get(x_63, 1); lean_inc(x_64); -x_65 = lean_ctor_get(x_62, 0); +x_65 = lean_ctor_get(x_64, 1); lean_inc(x_65); -lean_dec(x_62); x_66 = lean_ctor_get(x_63, 0); lean_inc(x_66); lean_dec(x_63); -x_67 = !lean_is_exclusive(x_64); -if (x_67 == 0) -{ -lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; -x_68 = lean_ctor_get(x_64, 0); -x_69 = lean_ctor_get(x_64, 1); -x_70 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; -x_71 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_70, x_22); -x_72 = lean_ctor_get(x_71, 0); -lean_inc(x_72); -lean_dec_ref(x_71); -x_73 = lean_array_push(x_48, x_65); -lean_inc(x_66); -x_74 = lean_array_push(x_50, x_66); -x_75 = lean_array_push(x_49, x_68); -x_76 = lean_array_push(x_45, x_69); -x_77 = lean_unbox(x_72); -lean_dec(x_72); -if (x_77 == 0) -{ -lean_object* x_78; lean_object* x_79; -lean_free_object(x_64); -lean_dec(x_66); -x_78 = lean_box(0); -x_79 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_75, x_74, x_73, x_57, x_76, x_47, x_78, x_20, x_21, x_22, x_23); -lean_dec(x_47); -x_25 = x_79; -goto block_40; -} -else -{ -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_80 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__2; -x_81 = l_Lean_MessageData_ofExpr(x_66); -lean_ctor_set_tag(x_64, 7); -lean_ctor_set(x_64, 1, x_81); -lean_ctor_set(x_64, 0, x_80); -x_82 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_70, x_64, x_20, x_21, x_22, x_23); -x_83 = lean_ctor_get(x_82, 0); -lean_inc(x_83); -lean_dec_ref(x_82); -x_84 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_75, x_74, x_73, x_57, x_76, x_47, x_83, x_20, x_21, x_22, x_23); -lean_dec(x_47); -x_25 = x_84; -goto block_40; -} -} -else -{ -lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; -x_85 = lean_ctor_get(x_64, 0); -x_86 = lean_ctor_get(x_64, 1); -lean_inc(x_86); -lean_inc(x_85); +x_67 = lean_ctor_get(x_64, 0); +lean_inc(x_67); lean_dec(x_64); -x_87 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; -x_88 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_87, x_22); -x_89 = lean_ctor_get(x_88, 0); -lean_inc(x_89); -lean_dec_ref(x_88); -x_90 = lean_array_push(x_48, x_65); -lean_inc(x_66); -x_91 = lean_array_push(x_50, x_66); -x_92 = lean_array_push(x_49, x_85); -x_93 = lean_array_push(x_45, x_86); -x_94 = lean_unbox(x_89); -lean_dec(x_89); -if (x_94 == 0) +x_68 = !lean_is_exclusive(x_65); +if (x_68 == 0) { -lean_object* x_95; lean_object* x_96; -lean_dec(x_66); -x_95 = lean_box(0); -x_96 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_92, x_91, x_90, x_57, x_93, x_47, x_95, x_20, x_21, x_22, x_23); +lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t x_78; +x_69 = lean_ctor_get(x_65, 0); +x_70 = lean_ctor_get(x_65, 1); +x_71 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; +x_72 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_71, x_22); +x_73 = lean_ctor_get(x_72, 0); +lean_inc(x_73); +lean_dec_ref(x_72); +x_74 = lean_array_push(x_48, x_66); +lean_inc(x_67); +x_75 = lean_array_push(x_50, x_67); +x_76 = lean_array_push(x_49, x_69); +x_77 = lean_array_push(x_45, x_70); +x_78 = lean_unbox(x_73); +lean_dec(x_73); +if (x_78 == 0) +{ +lean_object* x_79; lean_object* x_80; +lean_free_object(x_65); +lean_dec(x_67); +x_79 = lean_box(0); +x_80 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_76, x_75, x_74, x_58, x_77, x_47, x_79, x_20, x_21, x_22, x_23); lean_dec(x_47); -x_25 = x_96; +x_25 = x_80; goto block_40; } else { -lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; -x_97 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__2; -x_98 = l_Lean_MessageData_ofExpr(x_66); -x_99 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_99, 0, x_97); -lean_ctor_set(x_99, 1, x_98); -x_100 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_87, x_99, x_20, x_21, x_22, x_23); -x_101 = lean_ctor_get(x_100, 0); -lean_inc(x_101); -lean_dec_ref(x_100); -x_102 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_92, x_91, x_90, x_57, x_93, x_47, x_101, x_20, x_21, x_22, x_23); +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_81 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__2; +x_82 = l_Lean_MessageData_ofExpr(x_67); +lean_ctor_set_tag(x_65, 7); +lean_ctor_set(x_65, 1, x_82); +lean_ctor_set(x_65, 0, x_81); +x_83 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_71, x_65, x_20, x_21, x_22, x_23); +x_84 = lean_ctor_get(x_83, 0); +lean_inc(x_84); +lean_dec_ref(x_83); +x_85 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_76, x_75, x_74, x_58, x_77, x_47, x_84, x_20, x_21, x_22, x_23); lean_dec(x_47); -x_25 = x_102; +x_25 = x_85; +goto block_40; +} +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +x_86 = lean_ctor_get(x_65, 0); +x_87 = lean_ctor_get(x_65, 1); +lean_inc(x_87); +lean_inc(x_86); +lean_dec(x_65); +x_88 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; +x_89 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_88, x_22); +x_90 = lean_ctor_get(x_89, 0); +lean_inc(x_90); +lean_dec_ref(x_89); +x_91 = lean_array_push(x_48, x_66); +lean_inc(x_67); +x_92 = lean_array_push(x_50, x_67); +x_93 = lean_array_push(x_49, x_86); +x_94 = lean_array_push(x_45, x_87); +x_95 = lean_unbox(x_90); +lean_dec(x_90); +if (x_95 == 0) +{ +lean_object* x_96; lean_object* x_97; +lean_dec(x_67); +x_96 = lean_box(0); +x_97 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_93, x_92, x_91, x_58, x_94, x_47, x_96, x_20, x_21, x_22, x_23); +lean_dec(x_47); +x_25 = x_97; +goto block_40; +} +else +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_98 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__2; +x_99 = l_Lean_MessageData_ofExpr(x_67); +x_100 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_100, 0, x_98); +lean_ctor_set(x_100, 1, x_99); +x_101 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_88, x_100, x_20, x_21, x_22, x_23); +x_102 = lean_ctor_get(x_101, 0); +lean_inc(x_102); +lean_dec_ref(x_101); +x_103 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_93, x_92, x_91, x_58, x_94, x_47, x_102, x_20, x_21, x_22, x_23); +lean_dec(x_47); +x_25 = x_103; goto block_40; } } } else { -uint8_t x_103; +uint8_t x_104; +lean_dec_ref(x_58); +lean_dec(x_50); +lean_dec(x_49); +lean_dec(x_48); +lean_dec(x_47); +lean_dec(x_45); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec(x_19); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_104 = !lean_is_exclusive(x_62); +if (x_104 == 0) +{ +return x_62; +} +else +{ +lean_object* x_105; lean_object* x_106; +x_105 = lean_ctor_get(x_62, 0); +lean_inc(x_105); +lean_dec(x_62); +x_106 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_106, 0, x_105); +return x_106; +} +} +} +else +{ +uint8_t x_107; +lean_dec_ref(x_58); lean_dec_ref(x_57); lean_dec(x_50); lean_dec(x_49); @@ -33153,70 +33105,22 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -lean_dec(x_2); +lean_dec_ref(x_2); lean_dec_ref(x_1); -x_103 = !lean_is_exclusive(x_61); -if (x_103 == 0) +x_107 = !lean_is_exclusive(x_60); +if (x_107 == 0) { -return x_61; +return x_60; } else { -lean_object* x_104; lean_object* x_105; -x_104 = lean_ctor_get(x_61, 0); -lean_inc(x_104); -lean_dec(x_61); -x_105 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_105, 0, x_104); -return x_105; -} -} -} -else -{ -uint8_t x_106; -lean_dec_ref(x_57); -lean_dec_ref(x_56); -lean_dec(x_52); -lean_dec(x_50); -lean_dec(x_49); -lean_dec(x_48); -lean_dec(x_47); -lean_dec(x_45); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec(x_19); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -x_106 = !lean_is_exclusive(x_59); -if (x_106 == 0) -{ -return x_59; -} -else -{ -lean_object* x_107; lean_object* x_108; -x_107 = lean_ctor_get(x_59, 0); -lean_inc(x_107); -lean_dec(x_59); -x_108 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_108, 0, x_107); -return x_108; +lean_object* x_108; lean_object* x_109; +x_108 = lean_ctor_get(x_60, 0); +lean_inc(x_108); +lean_dec(x_60); +x_109 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_109, 0, x_108); +return x_109; } } } @@ -33242,33 +33146,32 @@ return x_2; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25) { _start: { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; size_t x_35; size_t x_36; lean_object* x_37; -x_27 = lean_ctor_get(x_1, 5); -x_28 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_casesOnStuckLHS_findFVar_x3f___closed__0; -x_29 = l_Lean_Expr_getAppNumArgs(x_21); -lean_inc(x_29); -x_30 = lean_mk_array(x_29, x_28); -x_31 = lean_unsigned_to_nat(1u); -x_32 = lean_nat_sub(x_29, x_31); -lean_dec(x_29); +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; size_t x_34; size_t x_35; lean_object* x_36; +x_27 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_casesOnStuckLHS_findFVar_x3f___closed__0; +x_28 = l_Lean_Expr_getAppNumArgs(x_21); +lean_inc(x_28); +x_29 = lean_mk_array(x_28, x_27); +x_30 = lean_unsigned_to_nat(1u); +x_31 = lean_nat_sub(x_28, x_30); +lean_dec(x_28); lean_inc_ref(x_21); -x_33 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_21, x_30, x_32); -x_34 = l_Lean_Meta_Match_Overlaps_overlapping(x_27, x_2); -x_35 = lean_array_size(x_34); -x_36 = 0; +x_32 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_21, x_29, x_31); +x_33 = l_Lean_Meta_Match_Overlaps_overlapping(x_1, x_2); +x_34 = lean_array_size(x_33); +x_35 = 0; lean_inc(x_25); lean_inc_ref(x_24); lean_inc(x_23); lean_inc_ref(x_22); lean_inc_ref(x_3); -x_37 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__9(x_3, x_4, x_33, x_34, x_35, x_36, x_5, x_22, x_23, x_24, x_25); -lean_dec_ref(x_34); -if (lean_obj_tag(x_37) == 0) +x_36 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__9(x_3, x_4, x_32, x_33, x_34, x_35, x_5, x_22, x_23, x_24, x_25); +lean_dec_ref(x_33); +if (lean_obj_tag(x_36) == 0) { -lean_object* x_38; uint8_t x_39; uint8_t x_40; uint8_t x_41; uint8_t x_42; uint8_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; -x_38 = lean_ctor_get(x_37, 0); -lean_inc(x_38); -lean_dec_ref(x_37); +lean_object* x_37; uint8_t x_38; uint8_t x_39; uint8_t x_40; uint8_t x_41; uint8_t x_42; uint8_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +lean_dec_ref(x_36); x_119 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; x_120 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_119, x_24); x_121 = lean_ctor_get(x_120, 0); @@ -33288,9 +33191,9 @@ goto block_118; else { lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; -x_123 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__5; -lean_inc(x_38); -x_124 = lean_array_to_list(x_38); +x_123 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__6; +lean_inc(x_37); +x_124 = lean_array_to_list(x_37); x_125 = lean_box(0); x_126 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkAppDiscrEqs_go_spec__1(x_124, x_125); x_127 = l_Lean_MessageData_ofList(x_126); @@ -33321,8 +33224,8 @@ x_52 = lean_ctor_get(x_51, 0); lean_inc(x_52); lean_dec_ref(x_51); x_53 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__2; -lean_inc_ref(x_33); -x_54 = l_Array_reverse___redArg(x_33); +lean_inc_ref(x_32); +x_54 = l_Array_reverse___redArg(x_32); x_55 = lean_unsigned_to_nat(0u); x_56 = lean_array_get_size(x_54); x_57 = l_Array_toSubarray___redArg(x_54, x_55, x_56); @@ -33337,7 +33240,7 @@ lean_inc(x_49); lean_inc_ref(x_48); lean_inc(x_47); lean_inc_ref(x_46); -x_62 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__10(x_59, x_61, x_36, x_60, x_46, x_47, x_48, x_49); +x_62 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__10(x_59, x_61, x_35, x_60, x_46, x_47, x_48, x_49); lean_dec_ref(x_59); if (lean_obj_tag(x_62) == 0) { @@ -33358,24 +33261,27 @@ lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean x_67 = lean_ctor_get(x_66, 0); lean_inc(x_67); lean_dec_ref(x_66); -x_68 = lean_array_get_size(x_38); -x_69 = lean_array_get_size(x_17); -x_70 = lean_nat_add(x_68, x_69); -lean_dec(x_69); -x_71 = lean_box(x_39); -x_72 = lean_box(x_40); -x_73 = lean_box(x_41); +x_68 = lean_array_get_size(x_17); +x_69 = lean_array_get_size(x_37); +lean_inc(x_69); +x_70 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_69); +lean_ctor_set_uint8(x_70, sizeof(void*)*2, x_41); +x_71 = lean_box(x_40); +x_72 = lean_box(x_39); +x_73 = lean_box(x_38); x_74 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12___redArg___lam__1___boxed__const__1; -lean_inc_ref(x_33); +lean_inc_ref(x_32); x_75 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__0___boxed), 31, 25); lean_closure_set(x_75, 0, x_3); lean_closure_set(x_75, 1, x_2); lean_closure_set(x_75, 2, x_7); lean_closure_set(x_75, 3, x_8); lean_closure_set(x_75, 4, x_9); -lean_closure_set(x_75, 5, x_31); +lean_closure_set(x_75, 5, x_30); lean_closure_set(x_75, 6, x_10); -lean_closure_set(x_75, 7, x_33); +lean_closure_set(x_75, 7, x_32); lean_closure_set(x_75, 8, x_19); lean_closure_set(x_75, 9, x_17); lean_closure_set(x_75, 10, x_71); @@ -33390,11 +33296,11 @@ lean_closure_set(x_75, 18, x_70); lean_closure_set(x_75, 19, x_20); lean_closure_set(x_75, 20, x_52); lean_closure_set(x_75, 21, x_67); -lean_closure_set(x_75, 22, x_68); -lean_closure_set(x_75, 23, x_38); +lean_closure_set(x_75, 22, x_69); +lean_closure_set(x_75, 23, x_37); lean_closure_set(x_75, 24, x_74); x_76 = l_Array_ofSubarray___redArg(x_15); -x_77 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withNewAlts___redArg(x_16, x_58, x_33, x_76, x_75, x_46, x_47, x_48, x_49); +x_77 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withNewAlts___redArg(x_16, x_58, x_32, x_76, x_75, x_46, x_47, x_48, x_49); return x_77; } else @@ -33406,8 +33312,8 @@ lean_dec(x_49); lean_dec_ref(x_48); lean_dec(x_47); lean_dec_ref(x_46); -lean_dec(x_38); -lean_dec_ref(x_33); +lean_dec(x_37); +lean_dec_ref(x_32); lean_dec_ref(x_20); lean_dec_ref(x_19); lean_dec_ref(x_17); @@ -33447,8 +33353,8 @@ lean_dec(x_49); lean_dec_ref(x_48); lean_dec(x_47); lean_dec_ref(x_46); -lean_dec(x_38); -lean_dec_ref(x_33); +lean_dec(x_37); +lean_dec_ref(x_32); lean_dec_ref(x_20); lean_dec_ref(x_19); lean_dec_ref(x_17); @@ -33486,8 +33392,8 @@ lean_dec(x_49); lean_dec_ref(x_48); lean_dec(x_47); lean_dec_ref(x_46); -lean_dec(x_38); -lean_dec_ref(x_33); +lean_dec(x_37); +lean_dec_ref(x_32); lean_dec_ref(x_20); lean_dec_ref(x_19); lean_dec_ref(x_17); @@ -33534,7 +33440,7 @@ lean_inc(x_97); lean_dec_ref(x_96); lean_inc(x_91); lean_inc_ref(x_90); -x_98 = l_Lean_mkArrowN(x_38, x_97, x_90, x_91); +x_98 = l_Lean_mkArrowN(x_37, x_97, x_90, x_91); if (lean_obj_tag(x_98) == 0) { lean_object* x_99; lean_object* x_100; @@ -33552,9 +33458,10 @@ x_102 = lean_expr_eqv(x_101, x_21); lean_dec_ref(x_21); if (x_102 == 0) { -x_39 = x_93; -x_40 = x_94; -x_41 = x_95; +x_38 = x_95; +x_39 = x_94; +x_40 = x_93; +x_41 = x_102; x_42 = x_95; x_43 = x_94; x_44 = x_93; @@ -33569,7 +33476,7 @@ goto block_87; else { lean_object* x_103; lean_object* x_104; -x_103 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__3; +x_103 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__4; lean_inc(x_91); lean_inc_ref(x_90); x_104 = l_Lean_mkArrow(x_103, x_101, x_90, x_91); @@ -33579,9 +33486,10 @@ lean_object* x_105; x_105 = lean_ctor_get(x_104, 0); lean_inc(x_105); lean_dec_ref(x_104); -x_39 = x_93; -x_40 = x_94; -x_41 = x_95; +x_38 = x_95; +x_39 = x_94; +x_40 = x_93; +x_41 = x_102; x_42 = x_95; x_43 = x_94; x_44 = x_93; @@ -33600,8 +33508,8 @@ lean_dec(x_91); lean_dec_ref(x_90); lean_dec(x_89); lean_dec_ref(x_88); -lean_dec(x_38); -lean_dec_ref(x_33); +lean_dec(x_37); +lean_dec_ref(x_32); lean_dec_ref(x_20); lean_dec_ref(x_19); lean_dec_ref(x_17); @@ -33640,8 +33548,8 @@ lean_dec(x_91); lean_dec_ref(x_90); lean_dec(x_89); lean_dec_ref(x_88); -lean_dec(x_38); -lean_dec_ref(x_33); +lean_dec(x_37); +lean_dec_ref(x_32); lean_dec_ref(x_21); lean_dec_ref(x_20); lean_dec_ref(x_19); @@ -33680,8 +33588,8 @@ lean_dec(x_91); lean_dec_ref(x_90); lean_dec(x_89); lean_dec_ref(x_88); -lean_dec(x_38); -lean_dec_ref(x_33); +lean_dec(x_37); +lean_dec_ref(x_32); lean_dec_ref(x_21); lean_dec_ref(x_20); lean_dec_ref(x_19); @@ -33720,8 +33628,8 @@ lean_dec(x_91); lean_dec_ref(x_90); lean_dec(x_89); lean_dec_ref(x_88); -lean_dec(x_38); -lean_dec_ref(x_33); +lean_dec(x_37); +lean_dec_ref(x_32); lean_dec_ref(x_21); lean_dec_ref(x_20); lean_dec_ref(x_19); @@ -33757,7 +33665,7 @@ return x_117; else { uint8_t x_130; -lean_dec_ref(x_33); +lean_dec_ref(x_32); lean_dec(x_25); lean_dec_ref(x_24); lean_dec(x_23); @@ -33776,17 +33684,17 @@ lean_dec(x_8); lean_dec_ref(x_7); lean_dec_ref(x_3); lean_dec(x_2); -x_130 = !lean_is_exclusive(x_37); +x_130 = !lean_is_exclusive(x_36); if (x_130 == 0) { -return x_37; +return x_36; } else { lean_object* x_131; lean_object* x_132; -x_131 = lean_ctor_get(x_37, 0); +x_131 = lean_ctor_get(x_36, 0); lean_inc(x_131); -lean_dec(x_37); +lean_dec(x_36); x_132 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_132, 0, x_131); return x_132; @@ -33797,7 +33705,7 @@ return x_132; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24) { _start: { -lean_object* x_26; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_111; uint8_t x_112; +lean_object* x_26; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_112; uint8_t x_113; x_42 = lean_ctor_get(x_19, 1); lean_inc(x_42); x_43 = lean_ctor_get(x_42, 1); @@ -33823,21 +33731,20 @@ lean_inc(x_50); x_51 = lean_ctor_get(x_45, 1); lean_inc(x_51); lean_dec(x_45); -lean_inc_ref(x_1); -x_52 = l_Lean_Meta_Match_MatcherInfo_altNumParams(x_1); -lean_inc(x_2); -x_53 = lean_array_get(x_2, x_52, x_20); -lean_dec_ref(x_52); -x_54 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__0; +x_52 = lean_ctor_get(x_1, 2); +x_53 = lean_ctor_get(x_1, 5); +lean_inc_ref(x_2); +x_54 = lean_array_get_borrowed(x_2, x_52, x_20); +x_55 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__0; lean_inc(x_3); -x_55 = l_Lean_Name_str___override(x_3, x_54); +x_56 = l_Lean_Name_str___override(x_3, x_55); lean_inc(x_48); -x_56 = lean_name_append_index_after(x_55, x_48); +x_57 = lean_name_append_index_after(x_56, x_48); lean_inc(x_15); lean_inc_ref(x_14); lean_inc(x_13); lean_inc(x_12); -lean_inc(x_56); +lean_inc(x_57); lean_inc(x_11); lean_inc_ref(x_10); lean_inc_ref(x_9); @@ -33848,42 +33755,42 @@ lean_inc_ref(x_5); lean_inc(x_49); lean_inc_ref(x_4); lean_inc(x_20); -lean_inc_ref(x_1); -x_57 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12___redArg___lam__1___boxed), 26, 16); -lean_closure_set(x_57, 0, x_1); -lean_closure_set(x_57, 1, x_20); -lean_closure_set(x_57, 2, x_4); -lean_closure_set(x_57, 3, x_49); -lean_closure_set(x_57, 4, x_5); -lean_closure_set(x_57, 5, x_6); -lean_closure_set(x_57, 6, x_7); -lean_closure_set(x_57, 7, x_8); -lean_closure_set(x_57, 8, x_9); -lean_closure_set(x_57, 9, x_10); -lean_closure_set(x_57, 10, x_11); -lean_closure_set(x_57, 11, x_56); -lean_closure_set(x_57, 12, x_12); -lean_closure_set(x_57, 13, x_13); -lean_closure_set(x_57, 14, x_14); -lean_closure_set(x_57, 15, x_15); -x_58 = lean_array_push(x_47, x_56); -x_111 = l_Subarray_size___redArg(x_14); -x_112 = lean_nat_dec_lt(x_20, x_111); -lean_dec(x_111); -if (x_112 == 0) +lean_inc_ref(x_53); +x_58 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12___redArg___lam__1___boxed), 26, 16); +lean_closure_set(x_58, 0, x_53); +lean_closure_set(x_58, 1, x_20); +lean_closure_set(x_58, 2, x_4); +lean_closure_set(x_58, 3, x_49); +lean_closure_set(x_58, 4, x_5); +lean_closure_set(x_58, 5, x_6); +lean_closure_set(x_58, 6, x_7); +lean_closure_set(x_58, 7, x_8); +lean_closure_set(x_58, 8, x_9); +lean_closure_set(x_58, 9, x_10); +lean_closure_set(x_58, 10, x_11); +lean_closure_set(x_58, 11, x_57); +lean_closure_set(x_58, 12, x_12); +lean_closure_set(x_58, 13, x_13); +lean_closure_set(x_58, 14, x_14); +lean_closure_set(x_58, 15, x_15); +x_59 = lean_array_push(x_47, x_57); +x_112 = l_Subarray_size___redArg(x_14); +x_113 = lean_nat_dec_lt(x_20, x_112); +lean_dec(x_112); +if (x_113 == 0) { -lean_object* x_113; +lean_object* x_114; lean_inc_ref(x_4); -x_113 = l_outOfBounds___redArg(x_4); -x_59 = x_113; -goto block_110; +x_114 = l_outOfBounds___redArg(x_4); +x_60 = x_114; +goto block_111; } else { -lean_object* x_114; -x_114 = l_Subarray_get___redArg(x_14, x_20); -x_59 = x_114; -goto block_110; +lean_object* x_115; +x_115 = l_Subarray_get___redArg(x_14, x_20); +x_60 = x_115; +goto block_111; } block_41: { @@ -33920,7 +33827,7 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -lean_dec(x_2); +lean_dec_ref(x_2); lean_dec_ref(x_1); lean_ctor_set(x_26, 0, x_29); return x_26; @@ -33967,7 +33874,7 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -lean_dec(x_2); +lean_dec_ref(x_2); lean_dec_ref(x_1); x_39 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_39, 0, x_35); @@ -33981,141 +33888,189 @@ return x_40; } } } -block_110: +block_111: { -lean_object* x_60; +lean_object* x_61; lean_inc(x_24); lean_inc_ref(x_23); lean_inc(x_22); lean_inc_ref(x_21); -x_60 = lean_infer_type(x_59, x_21, x_22, x_23, x_24); -if (lean_obj_tag(x_60) == 0) +x_61 = lean_infer_type(x_60, x_21, x_22, x_23, x_24); +if (lean_obj_tag(x_61) == 0) { -lean_object* x_61; lean_object* x_62; -x_61 = lean_ctor_get(x_60, 0); -lean_inc(x_61); -lean_dec_ref(x_60); +lean_object* x_62; lean_object* x_63; +x_62 = lean_ctor_get(x_61, 0); +lean_inc(x_62); +lean_dec_ref(x_61); lean_inc(x_24); lean_inc_ref(x_23); lean_inc(x_22); lean_inc_ref(x_21); lean_inc(x_15); -x_62 = l_Lean_Meta_Match_forallAltTelescope___redArg(x_61, x_53, x_15, x_57, x_21, x_22, x_23, x_24); -if (lean_obj_tag(x_62) == 0) +lean_inc_ref(x_54); +x_63 = l_Lean_Meta_Match_forallAltTelescope___redArg(x_62, x_54, x_15, x_58, x_21, x_22, x_23, x_24); +if (lean_obj_tag(x_63) == 0) { -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; -x_63 = lean_ctor_get(x_62, 0); -lean_inc(x_63); -lean_dec_ref(x_62); -x_64 = lean_ctor_get(x_63, 1); +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_64 = lean_ctor_get(x_63, 0); lean_inc(x_64); +lean_dec_ref(x_63); x_65 = lean_ctor_get(x_64, 1); lean_inc(x_65); -x_66 = lean_ctor_get(x_63, 0); +x_66 = lean_ctor_get(x_65, 1); lean_inc(x_66); -lean_dec(x_63); x_67 = lean_ctor_get(x_64, 0); lean_inc(x_67); lean_dec(x_64); -x_68 = !lean_is_exclusive(x_65); -if (x_68 == 0) -{ -lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t x_78; -x_69 = lean_ctor_get(x_65, 0); -x_70 = lean_ctor_get(x_65, 1); -x_71 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; -x_72 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_71, x_23); -x_73 = lean_ctor_get(x_72, 0); -lean_inc(x_73); -lean_dec_ref(x_72); -x_74 = lean_array_push(x_49, x_66); -lean_inc(x_67); -x_75 = lean_array_push(x_51, x_67); -x_76 = lean_array_push(x_50, x_69); -x_77 = lean_array_push(x_46, x_70); -x_78 = lean_unbox(x_73); -lean_dec(x_73); -if (x_78 == 0) -{ -lean_object* x_79; lean_object* x_80; -lean_free_object(x_65); -lean_dec(x_67); -x_79 = lean_box(0); -x_80 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_76, x_75, x_74, x_58, x_77, x_48, x_79, x_21, x_22, x_23, x_24); -lean_dec(x_48); -x_26 = x_80; -goto block_41; -} -else -{ -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_81 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__2; -x_82 = l_Lean_MessageData_ofExpr(x_67); -lean_ctor_set_tag(x_65, 7); -lean_ctor_set(x_65, 1, x_82); -lean_ctor_set(x_65, 0, x_81); -x_83 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_71, x_65, x_21, x_22, x_23, x_24); -x_84 = lean_ctor_get(x_83, 0); -lean_inc(x_84); -lean_dec_ref(x_83); -x_85 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_76, x_75, x_74, x_58, x_77, x_48, x_84, x_21, x_22, x_23, x_24); -lean_dec(x_48); -x_26 = x_85; -goto block_41; -} -} -else -{ -lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; -x_86 = lean_ctor_get(x_65, 0); -x_87 = lean_ctor_get(x_65, 1); -lean_inc(x_87); -lean_inc(x_86); +x_68 = lean_ctor_get(x_65, 0); +lean_inc(x_68); lean_dec(x_65); -x_88 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; -x_89 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_88, x_23); -x_90 = lean_ctor_get(x_89, 0); -lean_inc(x_90); -lean_dec_ref(x_89); -x_91 = lean_array_push(x_49, x_66); -lean_inc(x_67); -x_92 = lean_array_push(x_51, x_67); -x_93 = lean_array_push(x_50, x_86); -x_94 = lean_array_push(x_46, x_87); -x_95 = lean_unbox(x_90); -lean_dec(x_90); -if (x_95 == 0) +x_69 = !lean_is_exclusive(x_66); +if (x_69 == 0) { -lean_object* x_96; lean_object* x_97; -lean_dec(x_67); -x_96 = lean_box(0); -x_97 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_93, x_92, x_91, x_58, x_94, x_48, x_96, x_21, x_22, x_23, x_24); +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79; +x_70 = lean_ctor_get(x_66, 0); +x_71 = lean_ctor_get(x_66, 1); +x_72 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; +x_73 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_72, x_23); +x_74 = lean_ctor_get(x_73, 0); +lean_inc(x_74); +lean_dec_ref(x_73); +x_75 = lean_array_push(x_49, x_67); +lean_inc(x_68); +x_76 = lean_array_push(x_51, x_68); +x_77 = lean_array_push(x_50, x_70); +x_78 = lean_array_push(x_46, x_71); +x_79 = lean_unbox(x_74); +lean_dec(x_74); +if (x_79 == 0) +{ +lean_object* x_80; lean_object* x_81; +lean_free_object(x_66); +lean_dec(x_68); +x_80 = lean_box(0); +x_81 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_77, x_76, x_75, x_59, x_78, x_48, x_80, x_21, x_22, x_23, x_24); lean_dec(x_48); -x_26 = x_97; +x_26 = x_81; goto block_41; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_98 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__2; -x_99 = l_Lean_MessageData_ofExpr(x_67); -x_100 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_100, 0, x_98); -lean_ctor_set(x_100, 1, x_99); -x_101 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_88, x_100, x_21, x_22, x_23, x_24); -x_102 = lean_ctor_get(x_101, 0); -lean_inc(x_102); -lean_dec_ref(x_101); -x_103 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_93, x_92, x_91, x_58, x_94, x_48, x_102, x_21, x_22, x_23, x_24); +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_82 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__2; +x_83 = l_Lean_MessageData_ofExpr(x_68); +lean_ctor_set_tag(x_66, 7); +lean_ctor_set(x_66, 1, x_83); +lean_ctor_set(x_66, 0, x_82); +x_84 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_72, x_66, x_21, x_22, x_23, x_24); +x_85 = lean_ctor_get(x_84, 0); +lean_inc(x_85); +lean_dec_ref(x_84); +x_86 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_77, x_76, x_75, x_59, x_78, x_48, x_85, x_21, x_22, x_23, x_24); lean_dec(x_48); -x_26 = x_103; +x_26 = x_86; +goto block_41; +} +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; uint8_t x_96; +x_87 = lean_ctor_get(x_66, 0); +x_88 = lean_ctor_get(x_66, 1); +lean_inc(x_88); +lean_inc(x_87); +lean_dec(x_66); +x_89 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; +x_90 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_89, x_23); +x_91 = lean_ctor_get(x_90, 0); +lean_inc(x_91); +lean_dec_ref(x_90); +x_92 = lean_array_push(x_49, x_67); +lean_inc(x_68); +x_93 = lean_array_push(x_51, x_68); +x_94 = lean_array_push(x_50, x_87); +x_95 = lean_array_push(x_46, x_88); +x_96 = lean_unbox(x_91); +lean_dec(x_91); +if (x_96 == 0) +{ +lean_object* x_97; lean_object* x_98; +lean_dec(x_68); +x_97 = lean_box(0); +x_98 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_94, x_93, x_92, x_59, x_95, x_48, x_97, x_21, x_22, x_23, x_24); +lean_dec(x_48); +x_26 = x_98; +goto block_41; +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_99 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__2; +x_100 = l_Lean_MessageData_ofExpr(x_68); +x_101 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_101, 0, x_99); +lean_ctor_set(x_101, 1, x_100); +x_102 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_89, x_101, x_21, x_22, x_23, x_24); +x_103 = lean_ctor_get(x_102, 0); +lean_inc(x_103); +lean_dec_ref(x_102); +x_104 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__2(x_16, x_94, x_93, x_92, x_59, x_95, x_48, x_103, x_21, x_22, x_23, x_24); +lean_dec(x_48); +x_26 = x_104; goto block_41; } } } else { -uint8_t x_104; +uint8_t x_105; +lean_dec_ref(x_59); +lean_dec(x_51); +lean_dec(x_50); +lean_dec(x_49); +lean_dec(x_48); +lean_dec(x_46); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_20); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_105 = !lean_is_exclusive(x_63); +if (x_105 == 0) +{ +return x_63; +} +else +{ +lean_object* x_106; lean_object* x_107; +x_106 = lean_ctor_get(x_63, 0); +lean_inc(x_106); +lean_dec(x_63); +x_107 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_107, 0, x_106); +return x_107; +} +} +} +else +{ +uint8_t x_108; +lean_dec_ref(x_59); lean_dec_ref(x_58); lean_dec(x_51); lean_dec(x_50); @@ -34140,70 +34095,22 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -lean_dec(x_2); +lean_dec_ref(x_2); lean_dec_ref(x_1); -x_104 = !lean_is_exclusive(x_62); -if (x_104 == 0) +x_108 = !lean_is_exclusive(x_61); +if (x_108 == 0) { -return x_62; +return x_61; } else { -lean_object* x_105; lean_object* x_106; -x_105 = lean_ctor_get(x_62, 0); -lean_inc(x_105); -lean_dec(x_62); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_105); -return x_106; -} -} -} -else -{ -uint8_t x_107; -lean_dec_ref(x_58); -lean_dec_ref(x_57); -lean_dec(x_53); -lean_dec(x_51); -lean_dec(x_50); -lean_dec(x_49); -lean_dec(x_48); -lean_dec(x_46); -lean_dec(x_24); -lean_dec_ref(x_23); -lean_dec(x_22); -lean_dec_ref(x_21); -lean_dec(x_20); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -x_107 = !lean_is_exclusive(x_60); -if (x_107 == 0) -{ -return x_60; -} -else -{ -lean_object* x_108; lean_object* x_109; -x_108 = lean_ctor_get(x_60, 0); -lean_inc(x_108); -lean_dec(x_60); -x_109 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_109, 0, x_108); -return x_109; +lean_object* x_109; lean_object* x_110; +x_109 = lean_ctor_get(x_61, 0); +lean_inc(x_109); +lean_dec(x_61); +x_110 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_110, 0, x_109); +return x_110; } } } @@ -34305,392 +34212,430 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26) { _start: { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; uint8_t x_32; uint8_t x_33; lean_object* x_34; -x_24 = l_Array_ofSubarray___redArg(x_1); -x_25 = lean_mk_empty_array_with_capacity(x_2); -x_26 = lean_array_push(x_25, x_3); -x_27 = l_Array_append___redArg(x_24, x_26); -lean_dec_ref(x_26); -x_28 = l_Array_ofSubarray___redArg(x_4); -x_29 = l_Array_append___redArg(x_27, x_28); -lean_dec_ref(x_28); -lean_inc_ref(x_29); -x_30 = l_Array_append___redArg(x_29, x_18); -x_31 = 0; -x_32 = 1; -x_33 = 1; -x_34 = l_Lean_Meta_mkForallFVars(x_30, x_5, x_31, x_32, x_32, x_33, x_19, x_20, x_21, x_22); -if (lean_obj_tag(x_34) == 0) +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; uint8_t x_36; uint8_t x_37; lean_object* x_38; +x_28 = l_Array_ofSubarray___redArg(x_1); +x_29 = lean_mk_empty_array_with_capacity(x_2); +x_30 = lean_array_push(x_29, x_3); +x_31 = l_Array_append___redArg(x_28, x_30); +lean_dec_ref(x_30); +x_32 = l_Array_ofSubarray___redArg(x_4); +x_33 = l_Array_append___redArg(x_31, x_32); +lean_dec_ref(x_32); +lean_inc_ref(x_33); +x_34 = l_Array_append___redArg(x_33, x_22); +x_35 = 0; +x_36 = 1; +x_37 = 1; +x_38 = l_Lean_Meta_mkForallFVars(x_34, x_5, x_35, x_36, x_36, x_37, x_23, x_24, x_25, x_26); +if (lean_obj_tag(x_38) == 0) { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -lean_dec_ref(x_34); -x_90 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; -x_91 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_90, x_21); -x_92 = lean_ctor_get(x_91, 0); -lean_inc(x_92); -lean_dec_ref(x_91); -x_93 = lean_unbox(x_92); -lean_dec(x_92); -if (x_93 == 0) +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_95; lean_object* x_96; lean_object* x_97; uint8_t x_98; +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +lean_dec_ref(x_38); +x_95 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; +x_96 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_95, x_25); +x_97 = lean_ctor_get(x_96, 0); +lean_inc(x_97); +lean_dec_ref(x_96); +x_98 = lean_unbox(x_97); +lean_dec(x_97); +if (x_98 == 0) { -x_54 = x_19; -x_55 = x_20; -x_56 = x_21; -x_57 = x_22; -x_58 = lean_box(0); -goto block_89; +x_59 = x_23; +x_60 = x_24; +x_61 = x_25; +x_62 = x_26; +x_63 = lean_box(0); +goto block_94; } else { -lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; -x_94 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__1___closed__1; -lean_inc(x_35); -x_95 = l_Lean_MessageData_ofExpr(x_35); -x_96 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_96, 0, x_94); -lean_ctor_set(x_96, 1, x_95); -x_97 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_90, x_96, x_19, x_20, x_21, x_22); -lean_dec_ref(x_97); -x_54 = x_19; -x_55 = x_20; -x_56 = x_21; -x_57 = x_22; -x_58 = lean_box(0); -goto block_89; +lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; +x_99 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__1___closed__1; +lean_inc(x_39); +x_100 = l_Lean_MessageData_ofExpr(x_39); +x_101 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_101, 0, x_99); +lean_ctor_set(x_101, 1, x_100); +x_102 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_95, x_101, x_23, x_24, x_25, x_26); +lean_dec_ref(x_102); +x_59 = x_23; +x_60 = x_24; +x_61 = x_25; +x_62 = x_26; +x_63 = lean_box(0); +goto block_94; } -block_53: +block_58: { -lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +lean_object* x_46; lean_object* x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_inc(x_6); -x_42 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_42, 0, x_6); -lean_ctor_set(x_42, 1, x_7); -lean_ctor_set(x_42, 2, x_35); -x_43 = lean_box(1); -x_44 = 1; +x_46 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_46, 0, x_6); +lean_ctor_set(x_46, 1, x_7); +lean_ctor_set(x_46, 2, x_39); +x_47 = lean_box(1); +x_48 = 1; lean_inc(x_6); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_6); -lean_ctor_set(x_45, 1, x_8); -x_46 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_46, 0, x_42); -lean_ctor_set(x_46, 1, x_36); -lean_ctor_set(x_46, 2, x_43); -lean_ctor_set(x_46, 3, x_45); -lean_ctor_set_uint8(x_46, sizeof(void*)*4, x_44); -x_47 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_47, 0, x_46); -lean_inc(x_40); -lean_inc_ref(x_39); -x_48 = l_Lean_addAndCompile(x_47, x_32, x_39, x_40); -if (lean_obj_tag(x_48) == 0) +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_6); +lean_ctor_set(x_49, 1, x_8); +x_50 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_50, 0, x_46); +lean_ctor_set(x_50, 1, x_40); +lean_ctor_set(x_50, 2, x_47); +lean_ctor_set(x_50, 3, x_49); +lean_ctor_set_uint8(x_50, sizeof(void*)*4, x_48); +x_51 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_51, 0, x_50); +lean_inc(x_44); +lean_inc_ref(x_43); +x_52 = l_Lean_addAndCompile(x_51, x_36, x_43, x_44); +if (lean_obj_tag(x_52) == 0) { -uint8_t x_49; lean_object* x_50; -lean_dec_ref(x_48); -x_49 = 0; +uint8_t x_53; lean_object* x_54; +lean_dec_ref(x_52); +x_53 = 0; lean_inc(x_6); -x_50 = l_Lean_Meta_setInlineAttribute(x_6, x_49, x_37, x_38, x_39, x_40); -lean_dec_ref(x_39); -lean_dec(x_38); -lean_dec_ref(x_37); -if (lean_obj_tag(x_50) == 0) +x_54 = l_Lean_Meta_setInlineAttribute(x_6, x_53, x_41, x_42, x_43, x_44); +lean_dec_ref(x_43); +lean_dec(x_42); +lean_dec_ref(x_41); +if (lean_obj_tag(x_54) == 0) { -lean_object* x_51; lean_object* x_52; -lean_dec_ref(x_50); -x_51 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_51, 0, x_9); -lean_ctor_set(x_51, 1, x_6); -lean_ctor_set(x_51, 2, x_10); -x_52 = l_Lean_Meta_Match_registerMatchEqns___redArg(x_11, x_51, x_40); -lean_dec(x_40); +lean_object* x_55; lean_object* x_56; lean_object* x_57; +lean_dec_ref(x_54); +x_55 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_55, 0, x_9); +lean_ctor_set(x_55, 1, x_10); +lean_ctor_set(x_55, 2, x_11); +lean_ctor_set(x_55, 3, x_12); +lean_ctor_set(x_55, 4, x_13); +lean_ctor_set(x_55, 5, x_14); +x_56 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_56, 0, x_15); +lean_ctor_set(x_56, 1, x_6); +lean_ctor_set(x_56, 2, x_55); +x_57 = l_Lean_Meta_Match_registerMatchEqns___redArg(x_16, x_56, x_44); +lean_dec(x_44); +return x_57; +} +else +{ +lean_dec(x_44); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_6); +return x_54; +} +} +else +{ +lean_dec(x_44); +lean_dec_ref(x_43); +lean_dec(x_42); +lean_dec_ref(x_41); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_6); return x_52; } -else -{ -lean_dec(x_40); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_6); -return x_50; } -} -else +block_94: { -lean_dec(x_40); -lean_dec_ref(x_39); -lean_dec(x_38); -lean_dec_ref(x_37); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_6); -return x_48; -} -} -block_89: -{ -lean_object* x_59; -lean_inc(x_57); -lean_inc_ref(x_56); -lean_inc(x_55); -lean_inc_ref(x_54); -lean_inc(x_35); -x_59 = l_Lean_Meta_isExprDefEq(x_35, x_12, x_54, x_55, x_56, x_57); -if (lean_obj_tag(x_59) == 0) -{ -lean_object* x_60; uint8_t x_61; -x_60 = lean_ctor_get(x_59, 0); -lean_inc(x_60); -lean_dec_ref(x_59); -x_61 = lean_unbox(x_60); -lean_dec(x_60); -if (x_61 == 0) -{ -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_62 = l_Lean_ConstantInfo_name(x_13); +lean_object* x_64; lean_inc(x_62); -x_63 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__0___boxed), 2, 1); -lean_closure_set(x_63, 0, x_62); -x_64 = l_Lean_mkConst(x_62, x_14); -x_65 = l_Array_ofSubarray___redArg(x_15); -x_66 = l_Array_append___redArg(x_29, x_65); -x_67 = l_Lean_mkAppN(x_64, x_66); -lean_dec_ref(x_66); -lean_inc(x_57); -lean_inc_ref(x_56); -x_68 = l_Lean_Meta_deltaExpand(x_67, x_63, x_56, x_57); -if (lean_obj_tag(x_68) == 0) +lean_inc_ref(x_61); +lean_inc(x_60); +lean_inc_ref(x_59); +lean_inc(x_39); +x_64 = l_Lean_Meta_isExprDefEq(x_39, x_17, x_59, x_60, x_61, x_62); +if (lean_obj_tag(x_64) == 0) { -lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_69 = lean_ctor_get(x_68, 0); -lean_inc(x_69); -lean_dec_ref(x_68); -x_70 = l_Lean_Expr_headBeta(x_69); -lean_inc(x_57); -lean_inc_ref(x_56); -lean_inc(x_55); -lean_inc_ref(x_54); -lean_inc_ref(x_10); -lean_inc(x_11); -x_71 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof(x_11, x_70, x_65, x_18, x_10, x_16, x_17, x_54, x_55, x_56, x_57); -if (lean_obj_tag(x_71) == 0) +lean_object* x_65; uint8_t x_66; +x_65 = lean_ctor_get(x_64, 0); +lean_inc(x_65); +lean_dec_ref(x_64); +x_66 = lean_unbox(x_65); +lean_dec(x_65); +if (x_66 == 0) { -lean_object* x_72; lean_object* x_73; -x_72 = lean_ctor_get(x_71, 0); -lean_inc(x_72); +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_67 = l_Lean_ConstantInfo_name(x_18); +lean_inc(x_67); +x_68 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__0___boxed), 2, 1); +lean_closure_set(x_68, 0, x_67); +x_69 = l_Lean_mkConst(x_67, x_19); +x_70 = l_Array_ofSubarray___redArg(x_20); +x_71 = l_Array_append___redArg(x_33, x_70); +x_72 = l_Lean_mkAppN(x_69, x_71); lean_dec_ref(x_71); -x_73 = l_Lean_Meta_mkLambdaFVars(x_30, x_72, x_31, x_32, x_31, x_32, x_33, x_54, x_55, x_56, x_57); -lean_dec_ref(x_30); +lean_inc(x_62); +lean_inc_ref(x_61); +x_73 = l_Lean_Meta_deltaExpand(x_72, x_68, x_61, x_62); if (lean_obj_tag(x_73) == 0) { -lean_object* x_74; +lean_object* x_74; lean_object* x_75; lean_object* x_76; x_74 = lean_ctor_get(x_73, 0); lean_inc(x_74); lean_dec_ref(x_73); -x_36 = x_74; -x_37 = x_54; -x_38 = x_55; -x_39 = x_56; -x_40 = x_57; -x_41 = lean_box(0); -goto block_53; -} -else +x_75 = l_Lean_Expr_headBeta(x_74); +lean_inc(x_62); +lean_inc_ref(x_61); +lean_inc(x_60); +lean_inc_ref(x_59); +lean_inc_ref(x_11); +lean_inc(x_16); +x_76 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof(x_16, x_75, x_70, x_22, x_11, x_21, x_59, x_60, x_61, x_62); +if (lean_obj_tag(x_76) == 0) { -uint8_t x_75; -lean_dec(x_57); -lean_dec_ref(x_56); -lean_dec(x_55); -lean_dec_ref(x_54); -lean_dec(x_35); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_75 = !lean_is_exclusive(x_73); -if (x_75 == 0) +lean_object* x_77; lean_object* x_78; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +lean_dec_ref(x_76); +x_78 = l_Lean_Meta_mkLambdaFVars(x_34, x_77, x_35, x_36, x_35, x_36, x_37, x_59, x_60, x_61, x_62); +lean_dec_ref(x_34); +if (lean_obj_tag(x_78) == 0) { -return x_73; -} -else -{ -lean_object* x_76; lean_object* x_77; -x_76 = lean_ctor_get(x_73, 0); -lean_inc(x_76); -lean_dec(x_73); -x_77 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_77, 0, x_76); -return x_77; -} -} -} -else -{ -uint8_t x_78; -lean_dec(x_57); -lean_dec_ref(x_56); -lean_dec(x_55); -lean_dec_ref(x_54); -lean_dec(x_35); -lean_dec_ref(x_30); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_78 = !lean_is_exclusive(x_71); -if (x_78 == 0) -{ -return x_71; -} -else -{ -lean_object* x_79; lean_object* x_80; -x_79 = lean_ctor_get(x_71, 0); +lean_object* x_79; +x_79 = lean_ctor_get(x_78, 0); lean_inc(x_79); -lean_dec(x_71); -x_80 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_80, 0, x_79); -return x_80; -} -} +lean_dec_ref(x_78); +x_40 = x_79; +x_41 = x_59; +x_42 = x_60; +x_43 = x_61; +x_44 = x_62; +x_45 = lean_box(0); +goto block_58; } else { -uint8_t x_81; -lean_dec_ref(x_65); -lean_dec(x_57); -lean_dec_ref(x_56); -lean_dec(x_55); -lean_dec_ref(x_54); -lean_dec(x_35); -lean_dec_ref(x_30); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); +uint8_t x_80; +lean_dec(x_62); +lean_dec_ref(x_61); +lean_dec(x_60); +lean_dec_ref(x_59); +lean_dec(x_39); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -x_81 = !lean_is_exclusive(x_68); -if (x_81 == 0) +x_80 = !lean_is_exclusive(x_78); +if (x_80 == 0) { -return x_68; +return x_78; } else { -lean_object* x_82; lean_object* x_83; -x_82 = lean_ctor_get(x_68, 0); -lean_inc(x_82); -lean_dec(x_68); -x_83 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_83, 0, x_82); -return x_83; +lean_object* x_81; lean_object* x_82; +x_81 = lean_ctor_get(x_78, 0); +lean_inc(x_81); +lean_dec(x_78); +x_82 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_82, 0, x_81); +return x_82; } } } else { +uint8_t x_83; +lean_dec(x_62); +lean_dec_ref(x_61); +lean_dec(x_60); +lean_dec_ref(x_59); +lean_dec(x_39); +lean_dec_ref(x_34); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_83 = !lean_is_exclusive(x_76); +if (x_83 == 0) +{ +return x_76; +} +else +{ lean_object* x_84; lean_object* x_85; -lean_dec_ref(x_30); -lean_dec_ref(x_29); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_16); -x_84 = l_Lean_ConstantInfo_name(x_13); -x_85 = l_Lean_mkConst(x_84, x_14); -x_36 = x_85; -x_37 = x_54; -x_38 = x_55; -x_39 = x_56; -x_40 = x_57; -x_41 = lean_box(0); -goto block_53; +x_84 = lean_ctor_get(x_76, 0); +lean_inc(x_84); +lean_dec(x_76); +x_85 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_85, 0, x_84); +return x_85; +} } } else { uint8_t x_86; -lean_dec(x_57); -lean_dec_ref(x_56); -lean_dec(x_55); -lean_dec_ref(x_54); -lean_dec(x_35); -lean_dec_ref(x_30); -lean_dec_ref(x_29); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_14); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); +lean_dec_ref(x_70); +lean_dec(x_62); +lean_dec_ref(x_61); +lean_dec(x_60); +lean_dec_ref(x_59); +lean_dec(x_39); +lean_dec_ref(x_34); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -x_86 = !lean_is_exclusive(x_59); +x_86 = !lean_is_exclusive(x_73); if (x_86 == 0) { -return x_59; +return x_73; } else { lean_object* x_87; lean_object* x_88; -x_87 = lean_ctor_get(x_59, 0); +x_87 = lean_ctor_get(x_73, 0); lean_inc(x_87); -lean_dec(x_59); +lean_dec(x_73); x_88 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_88, 0, x_87); return x_88; } } } +else +{ +lean_object* x_89; lean_object* x_90; +lean_dec_ref(x_34); +lean_dec_ref(x_33); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +x_89 = l_Lean_ConstantInfo_name(x_18); +x_90 = l_Lean_mkConst(x_89, x_19); +x_40 = x_90; +x_41 = x_59; +x_42 = x_60; +x_43 = x_61; +x_44 = x_62; +x_45 = lean_box(0); +goto block_58; +} } else { -uint8_t x_98; -lean_dec_ref(x_30); -lean_dec_ref(x_29); -lean_dec(x_22); +uint8_t x_91; +lean_dec(x_62); +lean_dec_ref(x_61); +lean_dec(x_60); +lean_dec_ref(x_59); +lean_dec(x_39); +lean_dec_ref(x_34); +lean_dec_ref(x_33); +lean_dec_ref(x_22); lean_dec_ref(x_21); -lean_dec(x_20); -lean_dec_ref(x_19); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_14); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); +lean_dec(x_19); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -x_98 = !lean_is_exclusive(x_34); -if (x_98 == 0) +x_91 = !lean_is_exclusive(x_64); +if (x_91 == 0) { -return x_34; +return x_64; } else { -lean_object* x_99; lean_object* x_100; -x_99 = lean_ctor_get(x_34, 0); -lean_inc(x_99); -lean_dec(x_34); -x_100 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_100, 0, x_99); -return x_100; +lean_object* x_92; lean_object* x_93; +x_92 = lean_ctor_get(x_64, 0); +lean_inc(x_92); +lean_dec(x_64); +x_93 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_93, 0, x_92); +return x_93; +} +} +} +} +else +{ +uint8_t x_103; +lean_dec_ref(x_34); +lean_dec_ref(x_33); +lean_dec(x_26); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_19); +lean_dec_ref(x_17); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_103 = !lean_is_exclusive(x_38); +if (x_103 == 0) +{ +return x_38; +} +else +{ +lean_object* x_104; lean_object* x_105; +x_104 = lean_ctor_get(x_38, 0); +lean_inc(x_104); +lean_dec(x_38); +x_105 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_105, 0, x_104); +return x_105; } } } @@ -34718,296 +34663,303 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22) { _start: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_90; lean_object* x_91; lean_object* x_100; uint8_t x_101; -x_21 = lean_box(0); -x_35 = lean_unsigned_to_nat(0u); -x_36 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__9; -x_100 = lean_array_get_size(x_14); -x_101 = lean_nat_dec_le(x_12, x_100); +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_93; lean_object* x_94; lean_object* x_103; uint8_t x_104; +x_24 = lean_box(0); +x_38 = lean_unsigned_to_nat(0u); +x_39 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__9; +x_103 = lean_array_get_size(x_17); +x_104 = lean_nat_dec_le(x_5, x_103); +if (x_104 == 0) +{ +x_93 = x_38; +x_94 = x_103; +goto block_102; +} +else +{ +lean_dec(x_103); +lean_inc(x_5); +x_93 = x_38; +x_94 = x_5; +goto block_102; +} +block_37: +{ +lean_object* x_35; lean_object* x_36; +x_35 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__1___boxed), 27, 21); +lean_closure_set(x_35, 0, x_28); +lean_closure_set(x_35, 1, x_26); +lean_closure_set(x_35, 2, x_25); +lean_closure_set(x_35, 3, x_27); +lean_closure_set(x_35, 4, x_18); +lean_closure_set(x_35, 5, x_3); +lean_closure_set(x_35, 6, x_4); +lean_closure_set(x_35, 7, x_24); +lean_closure_set(x_35, 8, x_5); +lean_closure_set(x_35, 9, x_6); +lean_closure_set(x_35, 10, x_32); +lean_closure_set(x_35, 11, x_7); +lean_closure_set(x_35, 12, x_8); +lean_closure_set(x_35, 13, x_9); +lean_closure_set(x_35, 14, x_31); +lean_closure_set(x_35, 15, x_10); +lean_closure_set(x_35, 16, x_11); +lean_closure_set(x_35, 17, x_12); +lean_closure_set(x_35, 18, x_13); +lean_closure_set(x_35, 19, x_29); +lean_closure_set(x_35, 20, x_30); +x_36 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withSplitterAlts___redArg(x_33, x_35, x_19, x_20, x_21, x_22); +return x_36; +} +block_70: +{ +lean_object* x_50; lean_object* x_51; uint8_t x_52; +x_50 = l_Subarray_size___redArg(x_45); +x_51 = l_Array_toSubarray___redArg(x_17, x_48, x_49); +x_52 = lean_nat_dec_lt(x_38, x_50); +if (x_52 == 0) +{ +lean_dec(x_50); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec_ref(x_45); +lean_dec_ref(x_44); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_25 = x_40; +x_26 = x_41; +x_27 = x_51; +x_28 = x_42; +x_29 = x_43; +x_30 = x_39; +x_31 = x_39; +x_32 = x_39; +x_33 = x_39; +x_34 = lean_box(0); +goto block_37; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_53 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2___closed__1; +lean_inc(x_47); +x_54 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_54, 0, x_47); +lean_ctor_set(x_54, 1, x_53); +x_55 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_55, 0, x_39); +lean_ctor_set(x_55, 1, x_54); +x_56 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_56, 0, x_39); +lean_ctor_set(x_56, 1, x_55); +lean_inc(x_22); +lean_inc_ref(x_21); +lean_inc(x_20); +lean_inc_ref(x_19); +lean_inc(x_4); +lean_inc(x_10); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc_ref(x_51); +x_57 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12___redArg(x_1, x_14, x_15, x_2, x_39, x_51, x_12, x_13, x_44, x_46, x_10, x_4, x_24, x_45, x_16, x_47, x_50, x_38, x_56, x_38, x_19, x_20, x_21, x_22); +lean_dec(x_50); +lean_dec(x_47); +if (lean_obj_tag(x_57) == 0) +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_58 = lean_ctor_get(x_57, 0); +lean_inc(x_58); +lean_dec_ref(x_57); +x_59 = lean_ctor_get(x_58, 1); +lean_inc(x_59); +x_60 = lean_ctor_get(x_59, 1); +x_61 = lean_ctor_get(x_60, 1); +x_62 = lean_ctor_get(x_61, 1); +lean_inc(x_62); +x_63 = lean_ctor_get(x_58, 0); +lean_inc(x_63); +lean_dec(x_58); +x_64 = lean_ctor_get(x_59, 0); +lean_inc(x_64); +lean_dec(x_59); +x_65 = lean_ctor_get(x_62, 0); +lean_inc(x_65); +x_66 = lean_ctor_get(x_62, 1); +lean_inc(x_66); +lean_dec(x_62); +x_25 = x_40; +x_26 = x_41; +x_27 = x_51; +x_28 = x_42; +x_29 = x_43; +x_30 = x_63; +x_31 = x_64; +x_32 = x_65; +x_33 = x_66; +x_34 = lean_box(0); +goto block_37; +} +else +{ +uint8_t x_67; +lean_dec_ref(x_51); +lean_dec_ref(x_43); +lean_dec_ref(x_42); +lean_dec(x_41); +lean_dec_ref(x_40); +lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_20); +lean_dec_ref(x_19); +lean_dec_ref(x_18); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_67 = !lean_is_exclusive(x_57); +if (x_67 == 0) +{ +return x_57; +} +else +{ +lean_object* x_68; lean_object* x_69; +x_68 = lean_ctor_get(x_57, 0); +lean_inc(x_68); +lean_dec(x_57); +x_69 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_69, 0, x_68); +return x_69; +} +} +} +} +block_81: +{ +uint8_t x_80; +x_80 = lean_nat_dec_le(x_77, x_78); +if (x_80 == 0) +{ +lean_dec(x_77); +lean_inc_ref(x_74); +lean_inc(x_72); +x_40 = x_71; +x_41 = x_72; +x_42 = x_73; +x_43 = x_74; +x_44 = x_75; +x_45 = x_74; +x_46 = x_76; +x_47 = x_72; +x_48 = x_79; +x_49 = x_78; +goto block_70; +} +else +{ +lean_dec(x_78); +lean_inc_ref(x_74); +lean_inc(x_72); +x_40 = x_71; +x_41 = x_72; +x_42 = x_73; +x_43 = x_74; +x_44 = x_75; +x_45 = x_74; +x_46 = x_76; +x_47 = x_72; +x_48 = x_79; +x_49 = x_77; +goto block_70; +} +} +block_92: +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; +lean_inc_ref(x_17); +x_86 = l_Array_toSubarray___redArg(x_17, x_84, x_85); +x_87 = lean_unsigned_to_nat(1u); +x_88 = lean_nat_add(x_5, x_87); +x_89 = lean_nat_add(x_88, x_6); +x_90 = lean_array_get_size(x_17); +x_91 = lean_nat_dec_le(x_88, x_38); +if (x_91 == 0) +{ +lean_inc_ref(x_83); +lean_inc_ref(x_82); +x_71 = x_82; +x_72 = x_87; +x_73 = x_83; +x_74 = x_86; +x_75 = x_83; +x_76 = x_82; +x_77 = x_89; +x_78 = x_90; +x_79 = x_88; +goto block_81; +} +else +{ +lean_dec(x_88); +lean_inc_ref(x_83); +lean_inc_ref(x_82); +x_71 = x_82; +x_72 = x_87; +x_73 = x_83; +x_74 = x_86; +x_75 = x_83; +x_76 = x_82; +x_77 = x_89; +x_78 = x_90; +x_79 = x_38; +goto block_81; +} +} +block_102: +{ +lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; +lean_inc_ref(x_17); +x_95 = l_Array_toSubarray___redArg(x_17, x_93, x_94); +x_96 = l_Lean_Meta_Match_MatcherInfo_getMotivePos(x_1); +lean_inc_ref(x_2); +x_97 = lean_array_get_borrowed(x_2, x_17, x_96); +lean_dec(x_96); +x_98 = lean_array_get_size(x_17); +x_99 = l_Lean_Meta_Match_MatcherInfo_numAlts(x_1); +x_100 = lean_nat_sub(x_98, x_99); +lean_dec(x_99); +x_101 = lean_nat_dec_le(x_100, x_38); if (x_101 == 0) { -x_90 = x_35; -x_91 = x_100; -goto block_99; +lean_inc_ref(x_97); +x_82 = x_97; +x_83 = x_95; +x_84 = x_100; +x_85 = x_98; +goto block_92; } else { lean_dec(x_100); -lean_inc(x_12); -x_90 = x_35; -x_91 = x_12; -goto block_99; -} -block_34: -{ -lean_object* x_32; lean_object* x_33; -x_32 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__1___boxed), 23, 17); -lean_closure_set(x_32, 0, x_23); -lean_closure_set(x_32, 1, x_25); -lean_closure_set(x_32, 2, x_24); -lean_closure_set(x_32, 3, x_26); -lean_closure_set(x_32, 4, x_15); -lean_closure_set(x_32, 5, x_3); -lean_closure_set(x_32, 6, x_4); -lean_closure_set(x_32, 7, x_21); -lean_closure_set(x_32, 8, x_28); -lean_closure_set(x_32, 9, x_29); -lean_closure_set(x_32, 10, x_5); -lean_closure_set(x_32, 11, x_6); -lean_closure_set(x_32, 12, x_7); -lean_closure_set(x_32, 13, x_8); -lean_closure_set(x_32, 14, x_22); -lean_closure_set(x_32, 15, x_27); -lean_closure_set(x_32, 16, x_9); -x_33 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withSplitterAlts___redArg(x_30, x_32, x_16, x_17, x_18, x_19); -return x_33; -} -block_67: -{ -lean_object* x_47; lean_object* x_48; uint8_t x_49; -x_47 = l_Subarray_size___redArg(x_44); -x_48 = l_Array_toSubarray___redArg(x_14, x_45, x_46); -x_49 = lean_nat_dec_lt(x_35, x_47); -if (x_49 == 0) -{ -lean_dec(x_47); -lean_dec_ref(x_44); -lean_dec_ref(x_43); -lean_dec_ref(x_42); -lean_dec(x_41); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_22 = x_37; -x_23 = x_38; -x_24 = x_40; -x_25 = x_39; -x_26 = x_48; -x_27 = x_36; -x_28 = x_36; -x_29 = x_36; -x_30 = x_36; -x_31 = lean_box(0); -goto block_34; -} -else -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_50 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2___closed__1; -lean_inc(x_41); -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_41); -lean_ctor_set(x_51, 1, x_50); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_36); -lean_ctor_set(x_52, 1, x_51); -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_36); -lean_ctor_set(x_53, 1, x_52); -lean_inc(x_19); -lean_inc_ref(x_18); -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc(x_9); -lean_inc(x_4); -lean_inc(x_5); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_48); -x_54 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12___redArg(x_1, x_10, x_11, x_2, x_36, x_48, x_7, x_8, x_43, x_42, x_5, x_4, x_21, x_44, x_9, x_41, x_47, x_35, x_53, x_35, x_16, x_17, x_18, x_19); -lean_dec(x_47); -lean_dec(x_41); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_55 = lean_ctor_get(x_54, 0); -lean_inc(x_55); -lean_dec_ref(x_54); -x_56 = lean_ctor_get(x_55, 1); -lean_inc(x_56); -x_57 = lean_ctor_get(x_56, 1); -x_58 = lean_ctor_get(x_57, 1); -x_59 = lean_ctor_get(x_58, 1); -lean_inc(x_59); -x_60 = lean_ctor_get(x_55, 0); -lean_inc(x_60); -lean_dec(x_55); -x_61 = lean_ctor_get(x_56, 0); -lean_inc(x_61); -lean_dec(x_56); -x_62 = lean_ctor_get(x_59, 0); -lean_inc(x_62); -x_63 = lean_ctor_get(x_59, 1); -lean_inc(x_63); -lean_dec(x_59); -x_22 = x_37; -x_23 = x_38; -x_24 = x_40; -x_25 = x_39; -x_26 = x_48; -x_27 = x_60; -x_28 = x_61; -x_29 = x_62; -x_30 = x_63; -x_31 = lean_box(0); -goto block_34; -} -else -{ -uint8_t x_64; -lean_dec_ref(x_48); -lean_dec_ref(x_40); -lean_dec(x_39); -lean_dec_ref(x_38); -lean_dec_ref(x_37); -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec_ref(x_15); -lean_dec(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_64 = !lean_is_exclusive(x_54); -if (x_64 == 0) -{ -return x_54; -} -else -{ -lean_object* x_65; lean_object* x_66; -x_65 = lean_ctor_get(x_54, 0); -lean_inc(x_65); -lean_dec(x_54); -x_66 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_66, 0, x_65); -return x_66; -} -} -} -} -block_78: -{ -uint8_t x_77; -x_77 = lean_nat_dec_le(x_75, x_74); -if (x_77 == 0) -{ -lean_dec(x_75); -lean_inc(x_71); -lean_inc_ref(x_68); -x_37 = x_68; -x_38 = x_69; -x_39 = x_71; -x_40 = x_70; -x_41 = x_71; -x_42 = x_73; -x_43 = x_72; -x_44 = x_68; -x_45 = x_76; -x_46 = x_74; -goto block_67; -} -else -{ -lean_dec(x_74); -lean_inc(x_71); -lean_inc_ref(x_68); -x_37 = x_68; -x_38 = x_69; -x_39 = x_71; -x_40 = x_70; -x_41 = x_71; -x_42 = x_73; -x_43 = x_72; -x_44 = x_68; -x_45 = x_76; -x_46 = x_75; -goto block_67; -} -} -block_89: -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; uint8_t x_88; -lean_inc_ref(x_14); -x_83 = l_Array_toSubarray___redArg(x_14, x_81, x_82); -x_84 = lean_unsigned_to_nat(1u); -x_85 = lean_nat_add(x_12, x_84); -lean_dec(x_12); -x_86 = lean_nat_add(x_85, x_13); -x_87 = lean_array_get_size(x_14); -x_88 = lean_nat_dec_le(x_85, x_35); -if (x_88 == 0) -{ -lean_inc_ref(x_80); -lean_inc_ref(x_79); -x_68 = x_83; -x_69 = x_79; -x_70 = x_80; -x_71 = x_84; -x_72 = x_79; -x_73 = x_80; -x_74 = x_87; -x_75 = x_86; -x_76 = x_85; -goto block_78; -} -else -{ -lean_dec(x_85); -lean_inc_ref(x_80); -lean_inc_ref(x_79); -x_68 = x_83; -x_69 = x_79; -x_70 = x_80; -x_71 = x_84; -x_72 = x_79; -x_73 = x_80; -x_74 = x_87; -x_75 = x_86; -x_76 = x_35; -goto block_78; -} -} -block_99: -{ -lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; uint8_t x_98; -lean_inc_ref(x_14); -x_92 = l_Array_toSubarray___redArg(x_14, x_90, x_91); -x_93 = l_Lean_Meta_Match_MatcherInfo_getMotivePos(x_1); -lean_inc_ref(x_2); -x_94 = lean_array_get_borrowed(x_2, x_14, x_93); -lean_dec(x_93); -x_95 = lean_array_get_size(x_14); -x_96 = l_Lean_Meta_Match_MatcherInfo_numAlts(x_1); -x_97 = lean_nat_sub(x_95, x_96); -lean_dec(x_96); -x_98 = lean_nat_dec_le(x_97, x_35); -if (x_98 == 0) -{ -lean_inc_ref(x_94); -x_79 = x_92; -x_80 = x_94; -x_81 = x_97; -x_82 = x_95; -goto block_89; -} -else -{ -lean_dec(x_97); -lean_inc_ref(x_94); -x_79 = x_92; -x_80 = x_94; -x_81 = x_35; -x_82 = x_95; -goto block_89; +lean_inc_ref(x_97); +x_82 = x_97; +x_83 = x_95; +x_84 = x_38; +x_85 = x_98; +goto block_92; } } } @@ -35016,15 +34968,23 @@ static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Matc _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("` is not a matcher function", 27, 27); +x_1 = l_Lean_Meta_Match_instInhabitedAltParamInfo_default; return x_1; } } static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__1() { _start: { +lean_object* x_1; +x_1 = lean_mk_string_unchecked("` is not a matcher function", 27, 27); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__2() { +_start: +{ lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__0; +x_1 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } @@ -35067,7 +35027,7 @@ lean_inc(x_19); lean_dec_ref(x_18); if (lean_obj_tag(x_19) == 1) { -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_object* x_33; +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; x_20 = lean_ctor_get(x_19, 0); lean_inc(x_20); lean_dec_ref(x_19); @@ -35075,61 +35035,69 @@ x_21 = lean_ctor_get(x_20, 0); lean_inc(x_21); x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); -x_23 = lean_ctor_get(x_20, 4); -x_24 = l_Lean_instInhabitedExpr; -x_25 = lean_unsigned_to_nat(0u); -x_26 = l_Lean_ConstantInfo_levelParams(x_17); -x_27 = lean_box(0); -lean_inc(x_26); -x_28 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__8(x_26, x_27); -x_29 = l_Lean_Meta_Match_getNumEqsFromDiscrInfos(x_23); -x_30 = l_Lean_ConstantInfo_type(x_17); -lean_inc_ref(x_30); -x_31 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2___boxed), 20, 13); -lean_closure_set(x_31, 0, x_20); -lean_closure_set(x_31, 1, x_24); -lean_closure_set(x_31, 2, x_3); -lean_closure_set(x_31, 3, x_26); -lean_closure_set(x_31, 4, x_1); -lean_closure_set(x_31, 5, x_30); -lean_closure_set(x_31, 6, x_17); -lean_closure_set(x_31, 7, x_28); -lean_closure_set(x_31, 8, x_29); -lean_closure_set(x_31, 9, x_25); -lean_closure_set(x_31, 10, x_2); -lean_closure_set(x_31, 11, x_21); -lean_closure_set(x_31, 12, x_22); -x_32 = 0; -x_33 = l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__14___redArg(x_30, x_31, x_32, x_32, x_4, x_5, x_6, x_7); -return x_33; +x_23 = lean_ctor_get(x_20, 3); +lean_inc(x_23); +x_24 = lean_ctor_get(x_20, 4); +lean_inc_ref(x_24); +x_25 = lean_ctor_get(x_20, 5); +lean_inc_ref(x_25); +x_26 = l_Lean_instInhabitedExpr; +x_27 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__0; +x_28 = l_Lean_ConstantInfo_levelParams(x_17); +x_29 = lean_box(0); +lean_inc(x_28); +x_30 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__8(x_28, x_29); +x_31 = l_Lean_Meta_Match_getNumEqsFromDiscrInfos(x_24); +x_32 = l_Lean_ConstantInfo_type(x_17); +lean_inc_ref(x_32); +x_33 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2___boxed), 23, 16); +lean_closure_set(x_33, 0, x_20); +lean_closure_set(x_33, 1, x_26); +lean_closure_set(x_33, 2, x_3); +lean_closure_set(x_33, 3, x_28); +lean_closure_set(x_33, 4, x_21); +lean_closure_set(x_33, 5, x_22); +lean_closure_set(x_33, 6, x_23); +lean_closure_set(x_33, 7, x_24); +lean_closure_set(x_33, 8, x_25); +lean_closure_set(x_33, 9, x_1); +lean_closure_set(x_33, 10, x_32); +lean_closure_set(x_33, 11, x_17); +lean_closure_set(x_33, 12, x_30); +lean_closure_set(x_33, 13, x_27); +lean_closure_set(x_33, 14, x_2); +lean_closure_set(x_33, 15, x_31); +x_34 = 0; +x_35 = l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__14___redArg(x_32, x_33, x_34, x_34, x_4, x_5, x_6, x_7); +return x_35; } else { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_dec(x_19); lean_dec(x_17); lean_dec(x_3); lean_dec(x_2); -x_34 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__5; -x_35 = l_Lean_MessageData_ofName(x_1); -x_36 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_36, 0, x_34); -lean_ctor_set(x_36, 1, x_35); -x_37 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__1; +x_36 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__5; +x_37 = l_Lean_MessageData_ofName(x_1); x_38 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_38, 0, x_36); lean_ctor_set(x_38, 1, x_37); -x_39 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_38, x_4, x_5, x_6, x_7); +x_39 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__2; +x_40 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +x_41 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_40, x_4, x_5, x_6, x_7); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); -return x_39; +return x_41; } } else { -uint8_t x_40; +uint8_t x_42; lean_dec_ref(x_4); lean_dec(x_7); lean_dec_ref(x_6); @@ -35137,201 +35105,209 @@ lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_40 = !lean_is_exclusive(x_16); -if (x_40 == 0) +x_42 = !lean_is_exclusive(x_16); +if (x_42 == 0) { return x_16; } else { -lean_object* x_41; lean_object* x_42; -x_41 = lean_ctor_get(x_16, 0); -lean_inc(x_41); +lean_object* x_43; lean_object* x_44; +x_43 = lean_ctor_get(x_16, 0); +lean_inc(x_43); lean_dec(x_16); -x_42 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_42, 0, x_41); -return x_42; +x_44 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_44, 0, x_43); +return x_44; } } } else { -uint8_t x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; uint8_t x_51; uint8_t x_52; uint64_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_43 = lean_ctor_get_uint8(x_4, sizeof(void*)*7); -x_44 = lean_ctor_get(x_4, 1); -x_45 = lean_ctor_get(x_4, 2); -x_46 = lean_ctor_get(x_4, 3); -x_47 = lean_ctor_get(x_4, 4); -x_48 = lean_ctor_get(x_4, 5); -x_49 = lean_ctor_get(x_4, 6); -x_50 = lean_ctor_get_uint8(x_4, sizeof(void*)*7 + 1); -x_51 = lean_ctor_get_uint8(x_4, sizeof(void*)*7 + 2); +uint8_t x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; uint8_t x_53; uint8_t x_54; uint64_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_45 = lean_ctor_get_uint8(x_4, sizeof(void*)*7); +x_46 = lean_ctor_get(x_4, 1); +x_47 = lean_ctor_get(x_4, 2); +x_48 = lean_ctor_get(x_4, 3); +x_49 = lean_ctor_get(x_4, 4); +x_50 = lean_ctor_get(x_4, 5); +x_51 = lean_ctor_get(x_4, 6); +x_52 = lean_ctor_get_uint8(x_4, sizeof(void*)*7 + 1); +x_53 = lean_ctor_get_uint8(x_4, sizeof(void*)*7 + 2); +lean_inc(x_51); +lean_inc(x_50); lean_inc(x_49); lean_inc(x_48); lean_inc(x_47); lean_inc(x_46); -lean_inc(x_45); -lean_inc(x_44); lean_dec(x_4); -x_52 = 2; -lean_ctor_set_uint8(x_9, 10, x_52); -x_53 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_9); -x_54 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_54, 0, x_9); -lean_ctor_set_uint64(x_54, sizeof(void*)*1, x_53); -x_55 = lean_alloc_ctor(0, 7, 3); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_44); -lean_ctor_set(x_55, 2, x_45); -lean_ctor_set(x_55, 3, x_46); -lean_ctor_set(x_55, 4, x_47); -lean_ctor_set(x_55, 5, x_48); -lean_ctor_set(x_55, 6, x_49); -lean_ctor_set_uint8(x_55, sizeof(void*)*7, x_43); -lean_ctor_set_uint8(x_55, sizeof(void*)*7 + 1, x_50); -lean_ctor_set_uint8(x_55, sizeof(void*)*7 + 2, x_51); +x_54 = 2; +lean_ctor_set_uint8(x_9, 10, x_54); +x_55 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_9); +x_56 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_56, 0, x_9); +lean_ctor_set_uint64(x_56, sizeof(void*)*1, x_55); +x_57 = lean_alloc_ctor(0, 7, 3); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_57, 1, x_46); +lean_ctor_set(x_57, 2, x_47); +lean_ctor_set(x_57, 3, x_48); +lean_ctor_set(x_57, 4, x_49); +lean_ctor_set(x_57, 5, x_50); +lean_ctor_set(x_57, 6, x_51); +lean_ctor_set_uint8(x_57, sizeof(void*)*7, x_45); +lean_ctor_set_uint8(x_57, sizeof(void*)*7 + 1, x_52); +lean_ctor_set_uint8(x_57, sizeof(void*)*7 + 2, x_53); lean_inc_ref(x_6); lean_inc(x_1); -x_56 = l_Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0(x_1, x_55, x_5, x_6, x_7); -if (lean_obj_tag(x_56) == 0) +x_58 = l_Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0(x_1, x_57, x_5, x_6, x_7); +if (lean_obj_tag(x_58) == 0) { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_56, 0); -lean_inc(x_57); -lean_dec_ref(x_56); -lean_inc(x_1); -x_58 = l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__7___redArg(x_1, x_7); +lean_object* x_59; lean_object* x_60; lean_object* x_61; x_59 = lean_ctor_get(x_58, 0); lean_inc(x_59); lean_dec_ref(x_58); -if (lean_obj_tag(x_59) == 1) -{ -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_object* x_73; -x_60 = lean_ctor_get(x_59, 0); -lean_inc(x_60); -lean_dec_ref(x_59); +lean_inc(x_1); +x_60 = l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__7___redArg(x_1, x_7); x_61 = lean_ctor_get(x_60, 0); lean_inc(x_61); -x_62 = lean_ctor_get(x_60, 1); +lean_dec_ref(x_60); +if (lean_obj_tag(x_61) == 1) +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; lean_object* x_77; +x_62 = lean_ctor_get(x_61, 0); lean_inc(x_62); -x_63 = lean_ctor_get(x_60, 4); -x_64 = l_Lean_instInhabitedExpr; -x_65 = lean_unsigned_to_nat(0u); -x_66 = l_Lean_ConstantInfo_levelParams(x_57); -x_67 = lean_box(0); -lean_inc(x_66); -x_68 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__8(x_66, x_67); -x_69 = l_Lean_Meta_Match_getNumEqsFromDiscrInfos(x_63); -x_70 = l_Lean_ConstantInfo_type(x_57); -lean_inc_ref(x_70); -x_71 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2___boxed), 20, 13); -lean_closure_set(x_71, 0, x_60); -lean_closure_set(x_71, 1, x_64); -lean_closure_set(x_71, 2, x_3); -lean_closure_set(x_71, 3, x_66); -lean_closure_set(x_71, 4, x_1); -lean_closure_set(x_71, 5, x_70); -lean_closure_set(x_71, 6, x_57); -lean_closure_set(x_71, 7, x_68); -lean_closure_set(x_71, 8, x_69); -lean_closure_set(x_71, 9, x_65); -lean_closure_set(x_71, 10, x_2); -lean_closure_set(x_71, 11, x_61); -lean_closure_set(x_71, 12, x_62); -x_72 = 0; -x_73 = l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__14___redArg(x_70, x_71, x_72, x_72, x_55, x_5, x_6, x_7); -return x_73; +lean_dec_ref(x_61); +x_63 = lean_ctor_get(x_62, 0); +lean_inc(x_63); +x_64 = lean_ctor_get(x_62, 1); +lean_inc(x_64); +x_65 = lean_ctor_get(x_62, 3); +lean_inc(x_65); +x_66 = lean_ctor_get(x_62, 4); +lean_inc_ref(x_66); +x_67 = lean_ctor_get(x_62, 5); +lean_inc_ref(x_67); +x_68 = l_Lean_instInhabitedExpr; +x_69 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__0; +x_70 = l_Lean_ConstantInfo_levelParams(x_59); +x_71 = lean_box(0); +lean_inc(x_70); +x_72 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__8(x_70, x_71); +x_73 = l_Lean_Meta_Match_getNumEqsFromDiscrInfos(x_66); +x_74 = l_Lean_ConstantInfo_type(x_59); +lean_inc_ref(x_74); +x_75 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2___boxed), 23, 16); +lean_closure_set(x_75, 0, x_62); +lean_closure_set(x_75, 1, x_68); +lean_closure_set(x_75, 2, x_3); +lean_closure_set(x_75, 3, x_70); +lean_closure_set(x_75, 4, x_63); +lean_closure_set(x_75, 5, x_64); +lean_closure_set(x_75, 6, x_65); +lean_closure_set(x_75, 7, x_66); +lean_closure_set(x_75, 8, x_67); +lean_closure_set(x_75, 9, x_1); +lean_closure_set(x_75, 10, x_74); +lean_closure_set(x_75, 11, x_59); +lean_closure_set(x_75, 12, x_72); +lean_closure_set(x_75, 13, x_69); +lean_closure_set(x_75, 14, x_2); +lean_closure_set(x_75, 15, x_73); +x_76 = 0; +x_77 = l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__14___redArg(x_74, x_75, x_76, x_76, x_57, x_5, x_6, x_7); +return x_77; } else { -lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +lean_dec(x_61); lean_dec(x_59); -lean_dec(x_57); lean_dec(x_3); lean_dec(x_2); -x_74 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__5; -x_75 = l_Lean_MessageData_ofName(x_1); -x_76 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_76, 0, x_74); -lean_ctor_set(x_76, 1, x_75); -x_77 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__1; -x_78 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -x_79 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_78, x_55, x_5, x_6, x_7); +x_78 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__5; +x_79 = l_Lean_MessageData_ofName(x_1); +x_80 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_80, 0, x_78); +lean_ctor_set(x_80, 1, x_79); +x_81 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__2; +x_82 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +x_83 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_82, x_57, x_5, x_6, x_7); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); -lean_dec_ref(x_55); -return x_79; +lean_dec_ref(x_57); +return x_83; } } else { -lean_object* x_80; lean_object* x_81; lean_object* x_82; -lean_dec_ref(x_55); +lean_object* x_84; lean_object* x_85; lean_object* x_86; +lean_dec_ref(x_57); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_80 = lean_ctor_get(x_56, 0); -lean_inc(x_80); -if (lean_is_exclusive(x_56)) { - lean_ctor_release(x_56, 0); - x_81 = x_56; +x_84 = lean_ctor_get(x_58, 0); +lean_inc(x_84); +if (lean_is_exclusive(x_58)) { + lean_ctor_release(x_58, 0); + x_85 = x_58; } else { - lean_dec_ref(x_56); - x_81 = lean_box(0); + lean_dec_ref(x_58); + x_85 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 1, 0); } else { - x_82 = x_81; + x_86 = x_85; } -lean_ctor_set(x_82, 0, x_80); -return x_82; +lean_ctor_set(x_86, 0, x_84); +return x_86; } } } else { -uint8_t x_83; uint8_t x_84; uint8_t x_85; uint8_t x_86; uint8_t x_87; uint8_t x_88; uint8_t x_89; uint8_t x_90; uint8_t x_91; uint8_t x_92; uint8_t x_93; uint8_t x_94; uint8_t x_95; uint8_t x_96; uint8_t x_97; uint8_t x_98; uint8_t x_99; uint8_t x_100; uint8_t x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; uint8_t x_108; uint8_t x_109; lean_object* x_110; uint8_t x_111; lean_object* x_112; uint64_t x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; -x_83 = lean_ctor_get_uint8(x_9, 0); -x_84 = lean_ctor_get_uint8(x_9, 1); -x_85 = lean_ctor_get_uint8(x_9, 2); -x_86 = lean_ctor_get_uint8(x_9, 3); -x_87 = lean_ctor_get_uint8(x_9, 4); -x_88 = lean_ctor_get_uint8(x_9, 5); -x_89 = lean_ctor_get_uint8(x_9, 6); -x_90 = lean_ctor_get_uint8(x_9, 7); -x_91 = lean_ctor_get_uint8(x_9, 8); -x_92 = lean_ctor_get_uint8(x_9, 9); -x_93 = lean_ctor_get_uint8(x_9, 11); -x_94 = lean_ctor_get_uint8(x_9, 12); -x_95 = lean_ctor_get_uint8(x_9, 13); -x_96 = lean_ctor_get_uint8(x_9, 14); -x_97 = lean_ctor_get_uint8(x_9, 15); -x_98 = lean_ctor_get_uint8(x_9, 16); -x_99 = lean_ctor_get_uint8(x_9, 17); -x_100 = lean_ctor_get_uint8(x_9, 18); +uint8_t x_87; uint8_t x_88; uint8_t x_89; uint8_t x_90; uint8_t x_91; uint8_t x_92; uint8_t x_93; uint8_t x_94; uint8_t x_95; uint8_t x_96; uint8_t x_97; uint8_t x_98; uint8_t x_99; uint8_t x_100; uint8_t x_101; uint8_t x_102; uint8_t x_103; uint8_t x_104; uint8_t x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; uint8_t x_112; uint8_t x_113; lean_object* x_114; uint8_t x_115; lean_object* x_116; uint64_t x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; +x_87 = lean_ctor_get_uint8(x_9, 0); +x_88 = lean_ctor_get_uint8(x_9, 1); +x_89 = lean_ctor_get_uint8(x_9, 2); +x_90 = lean_ctor_get_uint8(x_9, 3); +x_91 = lean_ctor_get_uint8(x_9, 4); +x_92 = lean_ctor_get_uint8(x_9, 5); +x_93 = lean_ctor_get_uint8(x_9, 6); +x_94 = lean_ctor_get_uint8(x_9, 7); +x_95 = lean_ctor_get_uint8(x_9, 8); +x_96 = lean_ctor_get_uint8(x_9, 9); +x_97 = lean_ctor_get_uint8(x_9, 11); +x_98 = lean_ctor_get_uint8(x_9, 12); +x_99 = lean_ctor_get_uint8(x_9, 13); +x_100 = lean_ctor_get_uint8(x_9, 14); +x_101 = lean_ctor_get_uint8(x_9, 15); +x_102 = lean_ctor_get_uint8(x_9, 16); +x_103 = lean_ctor_get_uint8(x_9, 17); +x_104 = lean_ctor_get_uint8(x_9, 18); lean_dec(x_9); -x_101 = lean_ctor_get_uint8(x_4, sizeof(void*)*7); -x_102 = lean_ctor_get(x_4, 1); -lean_inc(x_102); -x_103 = lean_ctor_get(x_4, 2); -lean_inc_ref(x_103); -x_104 = lean_ctor_get(x_4, 3); -lean_inc_ref(x_104); -x_105 = lean_ctor_get(x_4, 4); -lean_inc(x_105); -x_106 = lean_ctor_get(x_4, 5); +x_105 = lean_ctor_get_uint8(x_4, sizeof(void*)*7); +x_106 = lean_ctor_get(x_4, 1); lean_inc(x_106); -x_107 = lean_ctor_get(x_4, 6); -lean_inc(x_107); -x_108 = lean_ctor_get_uint8(x_4, sizeof(void*)*7 + 1); -x_109 = lean_ctor_get_uint8(x_4, sizeof(void*)*7 + 2); +x_107 = lean_ctor_get(x_4, 2); +lean_inc_ref(x_107); +x_108 = lean_ctor_get(x_4, 3); +lean_inc_ref(x_108); +x_109 = lean_ctor_get(x_4, 4); +lean_inc(x_109); +x_110 = lean_ctor_get(x_4, 5); +lean_inc(x_110); +x_111 = lean_ctor_get(x_4, 6); +lean_inc(x_111); +x_112 = lean_ctor_get_uint8(x_4, sizeof(void*)*7 + 1); +x_113 = lean_ctor_get_uint8(x_4, sizeof(void*)*7 + 2); if (lean_is_exclusive(x_4)) { lean_ctor_release(x_4, 0); lean_ctor_release(x_4, 1); @@ -35340,153 +35316,161 @@ if (lean_is_exclusive(x_4)) { lean_ctor_release(x_4, 4); lean_ctor_release(x_4, 5); lean_ctor_release(x_4, 6); - x_110 = x_4; + x_114 = x_4; } else { lean_dec_ref(x_4); - x_110 = lean_box(0); + x_114 = lean_box(0); } -x_111 = 2; -x_112 = lean_alloc_ctor(0, 0, 19); -lean_ctor_set_uint8(x_112, 0, x_83); -lean_ctor_set_uint8(x_112, 1, x_84); -lean_ctor_set_uint8(x_112, 2, x_85); -lean_ctor_set_uint8(x_112, 3, x_86); -lean_ctor_set_uint8(x_112, 4, x_87); -lean_ctor_set_uint8(x_112, 5, x_88); -lean_ctor_set_uint8(x_112, 6, x_89); -lean_ctor_set_uint8(x_112, 7, x_90); -lean_ctor_set_uint8(x_112, 8, x_91); -lean_ctor_set_uint8(x_112, 9, x_92); -lean_ctor_set_uint8(x_112, 10, x_111); -lean_ctor_set_uint8(x_112, 11, x_93); -lean_ctor_set_uint8(x_112, 12, x_94); -lean_ctor_set_uint8(x_112, 13, x_95); -lean_ctor_set_uint8(x_112, 14, x_96); -lean_ctor_set_uint8(x_112, 15, x_97); -lean_ctor_set_uint8(x_112, 16, x_98); -lean_ctor_set_uint8(x_112, 17, x_99); -lean_ctor_set_uint8(x_112, 18, x_100); -x_113 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_112); -x_114 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_114, 0, x_112); -lean_ctor_set_uint64(x_114, sizeof(void*)*1, x_113); -if (lean_is_scalar(x_110)) { - x_115 = lean_alloc_ctor(0, 7, 3); +x_115 = 2; +x_116 = lean_alloc_ctor(0, 0, 19); +lean_ctor_set_uint8(x_116, 0, x_87); +lean_ctor_set_uint8(x_116, 1, x_88); +lean_ctor_set_uint8(x_116, 2, x_89); +lean_ctor_set_uint8(x_116, 3, x_90); +lean_ctor_set_uint8(x_116, 4, x_91); +lean_ctor_set_uint8(x_116, 5, x_92); +lean_ctor_set_uint8(x_116, 6, x_93); +lean_ctor_set_uint8(x_116, 7, x_94); +lean_ctor_set_uint8(x_116, 8, x_95); +lean_ctor_set_uint8(x_116, 9, x_96); +lean_ctor_set_uint8(x_116, 10, x_115); +lean_ctor_set_uint8(x_116, 11, x_97); +lean_ctor_set_uint8(x_116, 12, x_98); +lean_ctor_set_uint8(x_116, 13, x_99); +lean_ctor_set_uint8(x_116, 14, x_100); +lean_ctor_set_uint8(x_116, 15, x_101); +lean_ctor_set_uint8(x_116, 16, x_102); +lean_ctor_set_uint8(x_116, 17, x_103); +lean_ctor_set_uint8(x_116, 18, x_104); +x_117 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_116); +x_118 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_118, 0, x_116); +lean_ctor_set_uint64(x_118, sizeof(void*)*1, x_117); +if (lean_is_scalar(x_114)) { + x_119 = lean_alloc_ctor(0, 7, 3); } else { - x_115 = x_110; + x_119 = x_114; } -lean_ctor_set(x_115, 0, x_114); -lean_ctor_set(x_115, 1, x_102); -lean_ctor_set(x_115, 2, x_103); -lean_ctor_set(x_115, 3, x_104); -lean_ctor_set(x_115, 4, x_105); -lean_ctor_set(x_115, 5, x_106); -lean_ctor_set(x_115, 6, x_107); -lean_ctor_set_uint8(x_115, sizeof(void*)*7, x_101); -lean_ctor_set_uint8(x_115, sizeof(void*)*7 + 1, x_108); -lean_ctor_set_uint8(x_115, sizeof(void*)*7 + 2, x_109); +lean_ctor_set(x_119, 0, x_118); +lean_ctor_set(x_119, 1, x_106); +lean_ctor_set(x_119, 2, x_107); +lean_ctor_set(x_119, 3, x_108); +lean_ctor_set(x_119, 4, x_109); +lean_ctor_set(x_119, 5, x_110); +lean_ctor_set(x_119, 6, x_111); +lean_ctor_set_uint8(x_119, sizeof(void*)*7, x_105); +lean_ctor_set_uint8(x_119, sizeof(void*)*7 + 1, x_112); +lean_ctor_set_uint8(x_119, sizeof(void*)*7 + 2, x_113); lean_inc_ref(x_6); lean_inc(x_1); -x_116 = l_Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0(x_1, x_115, x_5, x_6, x_7); -if (lean_obj_tag(x_116) == 0) +x_120 = l_Lean_getConstInfo___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__0(x_1, x_119, x_5, x_6, x_7); +if (lean_obj_tag(x_120) == 0) { -lean_object* x_117; lean_object* x_118; lean_object* x_119; -x_117 = lean_ctor_get(x_116, 0); -lean_inc(x_117); -lean_dec_ref(x_116); -lean_inc(x_1); -x_118 = l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__7___redArg(x_1, x_7); -x_119 = lean_ctor_get(x_118, 0); -lean_inc(x_119); -lean_dec_ref(x_118); -if (lean_obj_tag(x_119) == 1) -{ -lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; -x_120 = lean_ctor_get(x_119, 0); -lean_inc(x_120); -lean_dec_ref(x_119); +lean_object* x_121; lean_object* x_122; lean_object* x_123; x_121 = lean_ctor_get(x_120, 0); lean_inc(x_121); -x_122 = lean_ctor_get(x_120, 1); -lean_inc(x_122); -x_123 = lean_ctor_get(x_120, 4); -x_124 = l_Lean_instInhabitedExpr; -x_125 = lean_unsigned_to_nat(0u); -x_126 = l_Lean_ConstantInfo_levelParams(x_117); -x_127 = lean_box(0); +lean_dec_ref(x_120); +lean_inc(x_1); +x_122 = l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__7___redArg(x_1, x_7); +x_123 = lean_ctor_get(x_122, 0); +lean_inc(x_123); +lean_dec_ref(x_122); +if (lean_obj_tag(x_123) == 1) +{ +lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; uint8_t x_138; lean_object* x_139; +x_124 = lean_ctor_get(x_123, 0); +lean_inc(x_124); +lean_dec_ref(x_123); +x_125 = lean_ctor_get(x_124, 0); +lean_inc(x_125); +x_126 = lean_ctor_get(x_124, 1); lean_inc(x_126); -x_128 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__8(x_126, x_127); -x_129 = l_Lean_Meta_Match_getNumEqsFromDiscrInfos(x_123); -x_130 = l_Lean_ConstantInfo_type(x_117); -lean_inc_ref(x_130); -x_131 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2___boxed), 20, 13); -lean_closure_set(x_131, 0, x_120); -lean_closure_set(x_131, 1, x_124); -lean_closure_set(x_131, 2, x_3); -lean_closure_set(x_131, 3, x_126); -lean_closure_set(x_131, 4, x_1); -lean_closure_set(x_131, 5, x_130); -lean_closure_set(x_131, 6, x_117); -lean_closure_set(x_131, 7, x_128); -lean_closure_set(x_131, 8, x_129); -lean_closure_set(x_131, 9, x_125); -lean_closure_set(x_131, 10, x_2); -lean_closure_set(x_131, 11, x_121); -lean_closure_set(x_131, 12, x_122); -x_132 = 0; -x_133 = l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__14___redArg(x_130, x_131, x_132, x_132, x_115, x_5, x_6, x_7); -return x_133; +x_127 = lean_ctor_get(x_124, 3); +lean_inc(x_127); +x_128 = lean_ctor_get(x_124, 4); +lean_inc_ref(x_128); +x_129 = lean_ctor_get(x_124, 5); +lean_inc_ref(x_129); +x_130 = l_Lean_instInhabitedExpr; +x_131 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__0; +x_132 = l_Lean_ConstantInfo_levelParams(x_121); +x_133 = lean_box(0); +lean_inc(x_132); +x_134 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__8(x_132, x_133); +x_135 = l_Lean_Meta_Match_getNumEqsFromDiscrInfos(x_128); +x_136 = l_Lean_ConstantInfo_type(x_121); +lean_inc_ref(x_136); +x_137 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2___boxed), 23, 16); +lean_closure_set(x_137, 0, x_124); +lean_closure_set(x_137, 1, x_130); +lean_closure_set(x_137, 2, x_3); +lean_closure_set(x_137, 3, x_132); +lean_closure_set(x_137, 4, x_125); +lean_closure_set(x_137, 5, x_126); +lean_closure_set(x_137, 6, x_127); +lean_closure_set(x_137, 7, x_128); +lean_closure_set(x_137, 8, x_129); +lean_closure_set(x_137, 9, x_1); +lean_closure_set(x_137, 10, x_136); +lean_closure_set(x_137, 11, x_121); +lean_closure_set(x_137, 12, x_134); +lean_closure_set(x_137, 13, x_131); +lean_closure_set(x_137, 14, x_2); +lean_closure_set(x_137, 15, x_135); +x_138 = 0; +x_139 = l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__14___redArg(x_136, x_137, x_138, x_138, x_119, x_5, x_6, x_7); +return x_139; } else { -lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; -lean_dec(x_119); -lean_dec(x_117); +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +lean_dec(x_123); +lean_dec(x_121); lean_dec(x_3); lean_dec(x_2); -x_134 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__5; -x_135 = l_Lean_MessageData_ofName(x_1); -x_136 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_136, 0, x_134); -lean_ctor_set(x_136, 1, x_135); -x_137 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__1; -x_138 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_138, 0, x_136); -lean_ctor_set(x_138, 1, x_137); -x_139 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_138, x_115, x_5, x_6, x_7); +x_140 = l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_spec__10_spec__10___closed__5; +x_141 = l_Lean_MessageData_ofName(x_1); +x_142 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_142, 0, x_140); +lean_ctor_set(x_142, 1, x_141); +x_143 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__2; +x_144 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_144, 0, x_142); +lean_ctor_set(x_144, 1, x_143); +x_145 = l_Lean_throwError___at___00Lean_Meta_casesOnStuckLHS_spec__0___redArg(x_144, x_119, x_5, x_6, x_7); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); -lean_dec_ref(x_115); -return x_139; +lean_dec_ref(x_119); +return x_145; } } else { -lean_object* x_140; lean_object* x_141; lean_object* x_142; -lean_dec_ref(x_115); +lean_object* x_146; lean_object* x_147; lean_object* x_148; +lean_dec_ref(x_119); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_140 = lean_ctor_get(x_116, 0); -lean_inc(x_140); -if (lean_is_exclusive(x_116)) { - lean_ctor_release(x_116, 0); - x_141 = x_116; +x_146 = lean_ctor_get(x_120, 0); +lean_inc(x_146); +if (lean_is_exclusive(x_120)) { + lean_ctor_release(x_120, 0); + x_147 = x_120; } else { - lean_dec_ref(x_116); - x_141 = lean_box(0); + lean_dec_ref(x_120); + x_147 = lean_box(0); } -if (lean_is_scalar(x_141)) { - x_142 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_147)) { + x_148 = lean_alloc_ctor(1, 1, 0); } else { - x_142 = x_141; + x_148 = x_147; } -lean_ctor_set(x_142, 0, x_140); -return x_142; +lean_ctor_set(x_148, 0, x_146); +return x_148; } } } @@ -36069,16 +36053,20 @@ lean_object* x_20 = _args[19]; lean_object* x_21 = _args[20]; lean_object* x_22 = _args[21]; lean_object* x_23 = _args[22]; +lean_object* x_24 = _args[23]; +lean_object* x_25 = _args[24]; +lean_object* x_26 = _args[25]; +lean_object* x_27 = _args[26]; _start: { -lean_object* x_24; -x_24 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_13); +lean_object* x_28; +x_28 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26); +lean_dec_ref(x_20); +lean_dec_ref(x_18); lean_dec_ref(x_4); lean_dec(x_2); lean_dec_ref(x_1); -return x_24; +return x_28; } } LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2___boxed(lean_object** _args) { @@ -36102,12 +36090,14 @@ lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; lean_object* x_19 = _args[18]; lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; +lean_object* x_23 = _args[22]; _start: { -lean_object* x_21; -x_21 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -lean_dec(x_13); -return x_21; +lean_object* x_24; +x_24 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22); +return x_24; } } LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { @@ -39382,7 +39372,7 @@ return x_14; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, uint8_t x_12, uint8_t x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27, lean_object* x_28, lean_object* x_29, lean_object* x_30, lean_object* x_31, lean_object* x_32) { _start: { -lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_113; lean_object* x_114; +lean_object* x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_113; lean_object* x_114; x_113 = l_Lean_mkAppN(x_1, x_2); lean_inc(x_32); lean_inc_ref(x_31); @@ -39392,243 +39382,242 @@ lean_inc_ref(x_28); x_114 = l_Lean_Meta_Match_mkAppDiscrEqs(x_113, x_28, x_3, x_29, x_30, x_31, x_32); if (lean_obj_tag(x_114) == 0) { -lean_object* x_115; lean_object* x_116; lean_object* x_117; size_t x_118; size_t x_119; lean_object* x_120; +lean_object* x_115; lean_object* x_116; size_t x_117; size_t x_118; lean_object* x_119; x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); lean_dec_ref(x_114); -x_116 = lean_ctor_get(x_4, 5); -x_117 = l_Lean_Meta_Match_Overlaps_overlapping(x_116, x_5); -x_118 = lean_array_size(x_117); -x_119 = 0; +x_116 = l_Lean_Meta_Match_Overlaps_overlapping(x_4, x_5); +x_117 = lean_array_size(x_116); +x_118 = 0; lean_inc(x_32); lean_inc_ref(x_31); lean_inc(x_30); lean_inc_ref(x_29); -x_120 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__3(x_6, x_7, x_8, x_9, x_117, x_118, x_119, x_10, x_29, x_30, x_31, x_32); -lean_dec_ref(x_117); -if (lean_obj_tag(x_120) == 0) +x_119 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__3(x_6, x_7, x_8, x_9, x_116, x_117, x_118, x_10, x_29, x_30, x_31, x_32); +lean_dec_ref(x_116); +if (lean_obj_tag(x_119) == 0) { -lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_121 = lean_ctor_get(x_120, 0); -lean_inc(x_121); -lean_dec_ref(x_120); -x_162 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; -x_163 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_162, x_31); -x_164 = lean_ctor_get(x_163, 0); -lean_inc(x_164); -lean_dec_ref(x_163); -x_165 = lean_unbox(x_164); -lean_dec(x_164); -if (x_165 == 0) +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; +x_120 = lean_ctor_get(x_119, 0); +lean_inc(x_120); +lean_dec_ref(x_119); +x_161 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; +x_162 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_161, x_31); +x_163 = lean_ctor_get(x_162, 0); +lean_inc(x_163); +lean_dec_ref(x_162); +x_164 = lean_unbox(x_163); +lean_dec(x_163); +if (x_164 == 0) { -x_122 = x_29; -x_123 = x_30; -x_124 = x_31; -x_125 = x_32; -x_126 = lean_box(0); -goto block_161; +x_121 = x_29; +x_122 = x_30; +x_123 = x_31; +x_124 = x_32; +x_125 = lean_box(0); +goto block_160; } else { -lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; -x_166 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__5; -lean_inc(x_121); -x_167 = lean_array_to_list(x_121); -x_168 = lean_box(0); -x_169 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkAppDiscrEqs_go_spec__1(x_167, x_168); -x_170 = l_Lean_MessageData_ofList(x_169); -x_171 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_171, 0, x_166); -lean_ctor_set(x_171, 1, x_170); -x_172 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_162, x_171, x_29, x_30, x_31, x_32); -lean_dec_ref(x_172); -x_122 = x_29; -x_123 = x_30; -x_124 = x_31; -x_125 = x_32; -x_126 = lean_box(0); -goto block_161; +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; +x_165 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__6; +lean_inc(x_120); +x_166 = lean_array_to_list(x_120); +x_167 = lean_box(0); +x_168 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkAppDiscrEqs_go_spec__1(x_166, x_167); +x_169 = l_Lean_MessageData_ofList(x_168); +x_170 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_170, 0, x_165); +lean_ctor_set(x_170, 1, x_169); +x_171 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_161, x_170, x_29, x_30, x_31, x_32); +lean_dec_ref(x_171); +x_121 = x_29; +x_122 = x_30; +x_123 = x_31; +x_124 = x_32; +x_125 = lean_box(0); +goto block_160; } -block_161: +block_160: { -lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; size_t x_134; lean_object* x_135; -x_127 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__2; -x_128 = l_Array_reverse___redArg(x_8); -x_129 = lean_array_get_size(x_128); +lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; size_t x_133; lean_object* x_134; +x_126 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__2; +x_127 = l_Array_reverse___redArg(x_8); +x_128 = lean_array_get_size(x_127); lean_inc(x_22); -x_130 = l_Array_toSubarray___redArg(x_128, x_22, x_129); -x_131 = l_Array_ofSubarray___redArg(x_23); -lean_inc_ref(x_131); -x_132 = l_Array_reverse___redArg(x_131); -x_133 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_133, 0, x_130); -lean_ctor_set(x_133, 1, x_127); -x_134 = lean_array_size(x_132); -lean_inc(x_125); -lean_inc_ref(x_124); -lean_inc(x_123); -lean_inc_ref(x_122); -x_135 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__10(x_132, x_134, x_119, x_133, x_122, x_123, x_124, x_125); -lean_dec_ref(x_132); -if (lean_obj_tag(x_135) == 0) +x_129 = l_Array_toSubarray___redArg(x_127, x_22, x_128); +x_130 = l_Array_ofSubarray___redArg(x_23); +lean_inc_ref(x_130); +x_131 = l_Array_reverse___redArg(x_130); +x_132 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_132, 0, x_129); +lean_ctor_set(x_132, 1, x_126); +x_133 = lean_array_size(x_131); +lean_inc(x_124); +lean_inc_ref(x_123); +lean_inc(x_122); +lean_inc_ref(x_121); +x_134 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__10(x_131, x_133, x_118, x_132, x_121, x_122, x_123, x_124); +lean_dec_ref(x_131); +if (lean_obj_tag(x_134) == 0) { -lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; lean_object* x_140; -x_136 = lean_ctor_get(x_135, 0); +lean_object* x_135; lean_object* x_136; lean_object* x_137; uint8_t x_138; lean_object* x_139; +x_135 = lean_ctor_get(x_134, 0); +lean_inc(x_135); +lean_dec_ref(x_134); +x_136 = lean_ctor_get(x_135, 1); lean_inc(x_136); -lean_dec_ref(x_135); -x_137 = lean_ctor_get(x_136, 1); -lean_inc(x_137); -lean_dec(x_136); -lean_inc_ref(x_131); -x_138 = l_Array_append___redArg(x_131, x_11); -x_139 = 1; -x_140 = l_Lean_Meta_mkForallFVars(x_138, x_137, x_12, x_13, x_13, x_139, x_122, x_123, x_124, x_125); -lean_dec_ref(x_138); -if (lean_obj_tag(x_140) == 0) -{ -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; -x_141 = lean_ctor_get(x_140, 0); -lean_inc(x_141); -lean_dec_ref(x_140); -x_142 = l_Lean_ConstantInfo_name(x_24); -x_143 = l_Lean_mkConst(x_142, x_25); -x_144 = l_Array_ofSubarray___redArg(x_14); -x_145 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__5; -x_146 = lean_array_push(x_145, x_26); -x_147 = l_Array_append___redArg(x_144, x_146); -lean_dec_ref(x_146); -x_148 = l_Array_append___redArg(x_147, x_131); -lean_dec_ref(x_131); -x_149 = l_Array_ofSubarray___redArg(x_27); -x_150 = l_Array_append___redArg(x_148, x_149); -lean_dec_ref(x_149); -x_151 = l_Lean_mkAppN(x_143, x_150); -lean_inc(x_125); -lean_inc_ref(x_124); -lean_inc(x_123); -lean_inc_ref(x_122); -x_152 = l_Lean_Meta_mkHEq(x_151, x_115, x_122, x_123, x_124, x_125); -if (lean_obj_tag(x_152) == 0) -{ -lean_object* x_153; lean_object* x_154; uint8_t x_155; -x_153 = lean_ctor_get(x_152, 0); -lean_inc(x_153); -x_154 = lean_array_get_size(x_121); -x_155 = lean_nat_dec_lt(x_22, x_154); -lean_dec(x_22); -if (x_155 == 0) -{ -lean_dec(x_154); -lean_dec(x_153); -lean_dec(x_121); -x_34 = x_150; -x_35 = x_124; -x_36 = x_123; -x_37 = x_139; -x_38 = x_141; -x_39 = x_125; -x_40 = x_122; -x_41 = x_152; -goto block_112; -} -else -{ -size_t x_156; lean_object* x_157; -lean_dec_ref(x_152); -x_156 = lean_usize_of_nat(x_154); -lean_dec(x_154); -lean_inc(x_125); -lean_inc_ref(x_124); -x_157 = l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__11___redArg(x_121, x_156, x_119, x_153, x_124, x_125); -lean_dec(x_121); -x_34 = x_150; -x_35 = x_124; -x_36 = x_123; -x_37 = x_139; -x_38 = x_141; -x_39 = x_125; -x_40 = x_122; -x_41 = x_157; -goto block_112; -} -} -else -{ -lean_dec_ref(x_150); -lean_dec(x_141); -lean_dec(x_125); -lean_dec_ref(x_124); -lean_dec(x_123); -lean_dec_ref(x_122); -lean_dec(x_121); -lean_dec_ref(x_28); -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_20); -lean_dec(x_19); -lean_dec(x_18); -return x_152; -} -} -else -{ -lean_dec_ref(x_131); -lean_dec(x_125); -lean_dec_ref(x_124); -lean_dec(x_123); -lean_dec_ref(x_122); -lean_dec(x_121); -lean_dec(x_115); -lean_dec_ref(x_28); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_20); -lean_dec(x_19); -lean_dec(x_18); -return x_140; -} -} -else -{ -uint8_t x_158; -lean_dec_ref(x_131); -lean_dec(x_125); -lean_dec_ref(x_124); -lean_dec(x_123); -lean_dec_ref(x_122); -lean_dec(x_121); -lean_dec(x_115); -lean_dec_ref(x_28); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_20); -lean_dec(x_19); -lean_dec(x_18); -x_158 = !lean_is_exclusive(x_135); -if (x_158 == 0) -{ -return x_135; -} -else -{ -lean_object* x_159; lean_object* x_160; -x_159 = lean_ctor_get(x_135, 0); -lean_inc(x_159); lean_dec(x_135); -x_160 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_160, 0, x_159); -return x_160; +lean_inc_ref(x_130); +x_137 = l_Array_append___redArg(x_130, x_11); +x_138 = 1; +x_139 = l_Lean_Meta_mkForallFVars(x_137, x_136, x_12, x_13, x_13, x_138, x_121, x_122, x_123, x_124); +lean_dec_ref(x_137); +if (lean_obj_tag(x_139) == 0) +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; +x_140 = lean_ctor_get(x_139, 0); +lean_inc(x_140); +lean_dec_ref(x_139); +x_141 = l_Lean_ConstantInfo_name(x_24); +x_142 = l_Lean_mkConst(x_141, x_25); +x_143 = l_Array_ofSubarray___redArg(x_14); +x_144 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__7; +x_145 = lean_array_push(x_144, x_26); +x_146 = l_Array_append___redArg(x_143, x_145); +lean_dec_ref(x_145); +x_147 = l_Array_append___redArg(x_146, x_130); +lean_dec_ref(x_130); +x_148 = l_Array_ofSubarray___redArg(x_27); +x_149 = l_Array_append___redArg(x_147, x_148); +lean_dec_ref(x_148); +x_150 = l_Lean_mkAppN(x_142, x_149); +lean_inc(x_124); +lean_inc_ref(x_123); +lean_inc(x_122); +lean_inc_ref(x_121); +x_151 = l_Lean_Meta_mkHEq(x_150, x_115, x_121, x_122, x_123, x_124); +if (lean_obj_tag(x_151) == 0) +{ +lean_object* x_152; lean_object* x_153; uint8_t x_154; +x_152 = lean_ctor_get(x_151, 0); +lean_inc(x_152); +x_153 = lean_array_get_size(x_120); +x_154 = lean_nat_dec_lt(x_22, x_153); +lean_dec(x_22); +if (x_154 == 0) +{ +lean_dec(x_153); +lean_dec(x_152); +lean_dec(x_120); +x_34 = x_140; +x_35 = x_138; +x_36 = x_121; +x_37 = x_123; +x_38 = x_122; +x_39 = x_124; +x_40 = x_149; +x_41 = x_151; +goto block_112; +} +else +{ +size_t x_155; lean_object* x_156; +lean_dec_ref(x_151); +x_155 = lean_usize_of_nat(x_153); +lean_dec(x_153); +lean_inc(x_124); +lean_inc_ref(x_123); +x_156 = l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__11___redArg(x_120, x_155, x_118, x_152, x_123, x_124); +lean_dec(x_120); +x_34 = x_140; +x_35 = x_138; +x_36 = x_121; +x_37 = x_123; +x_38 = x_122; +x_39 = x_124; +x_40 = x_149; +x_41 = x_156; +goto block_112; +} +} +else +{ +lean_dec_ref(x_149); +lean_dec(x_140); +lean_dec(x_124); +lean_dec_ref(x_123); +lean_dec(x_122); +lean_dec_ref(x_121); +lean_dec(x_120); +lean_dec_ref(x_28); +lean_dec(x_22); +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +return x_151; +} +} +else +{ +lean_dec_ref(x_130); +lean_dec(x_124); +lean_dec_ref(x_123); +lean_dec(x_122); +lean_dec_ref(x_121); +lean_dec(x_120); +lean_dec(x_115); +lean_dec_ref(x_28); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec(x_22); +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +return x_139; +} +} +else +{ +uint8_t x_157; +lean_dec_ref(x_130); +lean_dec(x_124); +lean_dec_ref(x_123); +lean_dec(x_122); +lean_dec_ref(x_121); +lean_dec(x_120); +lean_dec(x_115); +lean_dec_ref(x_28); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec(x_22); +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +x_157 = !lean_is_exclusive(x_134); +if (x_157 == 0) +{ +return x_134; +} +else +{ +lean_object* x_158; lean_object* x_159; +x_158 = lean_ctor_get(x_134, 0); +lean_inc(x_158); +lean_dec(x_134); +x_159 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_159, 0, x_158); +return x_159; } } } } else { -uint8_t x_173; +uint8_t x_172; lean_dec(x_115); lean_dec(x_32); lean_dec_ref(x_31); @@ -39643,20 +39632,20 @@ lean_dec(x_20); lean_dec(x_19); lean_dec(x_18); lean_dec_ref(x_8); -x_173 = !lean_is_exclusive(x_120); -if (x_173 == 0) +x_172 = !lean_is_exclusive(x_119); +if (x_172 == 0) { -return x_120; +return x_119; } else { -lean_object* x_174; lean_object* x_175; -x_174 = lean_ctor_get(x_120, 0); -lean_inc(x_174); -lean_dec(x_120); -x_175 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_175, 0, x_174); -return x_175; +lean_object* x_173; lean_object* x_174; +x_173 = lean_ctor_get(x_119, 0); +lean_inc(x_173); +lean_dec(x_119); +x_174 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_174, 0, x_173); +return x_174; } } } @@ -39688,9 +39677,9 @@ lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; x_42 = lean_ctor_get(x_41, 0); lean_inc(x_42); lean_dec_ref(x_41); -x_43 = l_Array_append___redArg(x_34, x_11); +x_43 = l_Array_append___redArg(x_40, x_11); x_44 = l_Array_append___redArg(x_43, x_28); -x_45 = l_Lean_Meta_mkForallFVars(x_44, x_42, x_12, x_13, x_13, x_37, x_40, x_36, x_35, x_39); +x_45 = l_Lean_Meta_mkForallFVars(x_44, x_42, x_12, x_13, x_13, x_35, x_36, x_38, x_37, x_39); lean_dec_ref(x_44); if (lean_obj_tag(x_45) == 0) { @@ -39699,10 +39688,10 @@ x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); lean_dec_ref(x_45); lean_inc(x_39); -lean_inc_ref(x_35); -lean_inc(x_36); -lean_inc_ref(x_40); -x_47 = l_Lean_Meta_Match_unfoldNamedPattern(x_46, x_40, x_36, x_35, x_39); +lean_inc_ref(x_37); +lean_inc(x_38); +lean_inc_ref(x_36); +x_47 = l_Lean_Meta_Match_unfoldNamedPattern(x_46, x_36, x_38, x_37, x_39); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -39725,9 +39714,9 @@ lean_dec(x_53); x_56 = lean_array_get_size(x_28); lean_dec_ref(x_28); lean_inc(x_39); -lean_inc_ref(x_35); +lean_inc_ref(x_37); lean_inc(x_49); -x_57 = l_Lean_Meta_Match_proveCondEqThm(x_18, x_49, x_55, x_56, x_40, x_36, x_35, x_39); +x_57 = l_Lean_Meta_Match_proveCondEqThm(x_18, x_49, x_55, x_56, x_36, x_38, x_37, x_39); if (lean_obj_tag(x_57) == 0) { uint8_t x_58; @@ -39760,7 +39749,7 @@ lean_ctor_set(x_65, 1, x_59); lean_ctor_set(x_65, 2, x_64); lean_ctor_set_tag(x_47, 2); lean_ctor_set(x_47, 0, x_65); -x_66 = l_Lean_addDecl(x_47, x_12, x_35, x_39); +x_66 = l_Lean_addDecl(x_47, x_12, x_37, x_39); if (lean_obj_tag(x_66) == 0) { uint8_t x_67; @@ -39770,7 +39759,7 @@ if (x_67 == 0) lean_object* x_68; x_68 = lean_ctor_get(x_66, 0); lean_dec(x_68); -lean_ctor_set(x_66, 0, x_38); +lean_ctor_set(x_66, 0, x_34); return x_66; } else @@ -39778,14 +39767,14 @@ else lean_object* x_69; lean_dec(x_66); x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_38); +lean_ctor_set(x_69, 0, x_34); return x_69; } } else { uint8_t x_70; -lean_dec_ref(x_38); +lean_dec_ref(x_34); x_70 = !lean_is_exclusive(x_66); if (x_70 == 0) { @@ -39809,11 +39798,11 @@ lean_dec(x_59); lean_free_object(x_47); lean_dec(x_49); lean_dec(x_39); -lean_dec_ref(x_35); +lean_dec_ref(x_37); lean_dec(x_21); lean_dec(x_20); lean_dec(x_19); -lean_ctor_set(x_57, 0, x_38); +lean_ctor_set(x_57, 0, x_34); return x_57; } } @@ -39846,7 +39835,7 @@ lean_ctor_set(x_79, 1, x_73); lean_ctor_set(x_79, 2, x_78); lean_ctor_set_tag(x_47, 2); lean_ctor_set(x_47, 0, x_79); -x_80 = l_Lean_addDecl(x_47, x_12, x_35, x_39); +x_80 = l_Lean_addDecl(x_47, x_12, x_37, x_39); if (lean_obj_tag(x_80) == 0) { lean_object* x_81; lean_object* x_82; @@ -39862,13 +39851,13 @@ if (lean_is_scalar(x_81)) { } else { x_82 = x_81; } -lean_ctor_set(x_82, 0, x_38); +lean_ctor_set(x_82, 0, x_34); return x_82; } else { lean_object* x_83; lean_object* x_84; lean_object* x_85; -lean_dec_ref(x_38); +lean_dec_ref(x_34); x_83 = lean_ctor_get(x_80, 0); lean_inc(x_83); if (lean_is_exclusive(x_80)) { @@ -39894,12 +39883,12 @@ lean_dec(x_73); lean_free_object(x_47); lean_dec(x_49); lean_dec(x_39); -lean_dec_ref(x_35); +lean_dec_ref(x_37); lean_dec(x_21); lean_dec(x_20); lean_dec(x_19); x_86 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_86, 0, x_38); +lean_ctor_set(x_86, 0, x_34); return x_86; } } @@ -39909,8 +39898,8 @@ else lean_free_object(x_47); lean_dec(x_49); lean_dec(x_39); -lean_dec_ref(x_38); -lean_dec_ref(x_35); +lean_dec_ref(x_37); +lean_dec_ref(x_34); lean_dec(x_21); lean_dec(x_20); lean_dec(x_19); @@ -39937,9 +39926,9 @@ lean_dec(x_91); x_94 = lean_array_get_size(x_28); lean_dec_ref(x_28); lean_inc(x_39); -lean_inc_ref(x_35); +lean_inc_ref(x_37); lean_inc(x_87); -x_95 = l_Lean_Meta_Match_proveCondEqThm(x_18, x_87, x_93, x_94, x_40, x_36, x_35, x_39); +x_95 = l_Lean_Meta_Match_proveCondEqThm(x_18, x_87, x_93, x_94, x_36, x_38, x_37, x_39); if (lean_obj_tag(x_95) == 0) { lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; @@ -39976,7 +39965,7 @@ lean_ctor_set(x_103, 1, x_96); lean_ctor_set(x_103, 2, x_102); x_104 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_104, 0, x_103); -x_105 = l_Lean_addDecl(x_104, x_12, x_35, x_39); +x_105 = l_Lean_addDecl(x_104, x_12, x_37, x_39); if (lean_obj_tag(x_105) == 0) { lean_object* x_106; lean_object* x_107; @@ -39992,13 +39981,13 @@ if (lean_is_scalar(x_106)) { } else { x_107 = x_106; } -lean_ctor_set(x_107, 0, x_38); +lean_ctor_set(x_107, 0, x_34); return x_107; } else { lean_object* x_108; lean_object* x_109; lean_object* x_110; -lean_dec_ref(x_38); +lean_dec_ref(x_34); x_108 = lean_ctor_get(x_105, 0); lean_inc(x_108); if (lean_is_exclusive(x_105)) { @@ -40023,7 +40012,7 @@ lean_object* x_111; lean_dec(x_96); lean_dec(x_87); lean_dec(x_39); -lean_dec_ref(x_35); +lean_dec_ref(x_37); lean_dec(x_21); lean_dec(x_20); lean_dec(x_19); @@ -40032,7 +40021,7 @@ if (lean_is_scalar(x_97)) { } else { x_111 = x_97; } -lean_ctor_set(x_111, 0, x_38); +lean_ctor_set(x_111, 0, x_34); return x_111; } } @@ -40040,8 +40029,8 @@ else { lean_dec(x_87); lean_dec(x_39); -lean_dec_ref(x_38); -lean_dec_ref(x_35); +lean_dec_ref(x_37); +lean_dec_ref(x_34); lean_dec(x_21); lean_dec(x_20); lean_dec(x_19); @@ -40051,11 +40040,11 @@ return x_95; } else { -lean_dec_ref(x_40); lean_dec(x_39); -lean_dec_ref(x_38); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec_ref(x_36); +lean_dec_ref(x_34); lean_dec_ref(x_28); lean_dec(x_21); lean_dec(x_20); @@ -40066,11 +40055,11 @@ return x_47; } else { -lean_dec_ref(x_40); lean_dec(x_39); -lean_dec_ref(x_38); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec_ref(x_36); +lean_dec_ref(x_34); lean_dec_ref(x_28); lean_dec(x_21); lean_dec(x_20); @@ -40083,9 +40072,9 @@ else { lean_dec_ref(x_40); lean_dec(x_39); -lean_dec_ref(x_38); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec_ref(x_36); lean_dec_ref(x_34); lean_dec_ref(x_28); lean_dec(x_21); @@ -40119,7 +40108,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___lam__2___closed__1; x_2 = lean_unsigned_to_nat(8u); -x_3 = lean_unsigned_to_nat(662u); +x_3 = lean_unsigned_to_nat(668u); x_4 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___lam__2___closed__0; x_5 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___lam__0___closed__0; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -40361,7 +40350,7 @@ return x_1; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24) { _start: { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_71; uint8_t x_72; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_72; uint8_t x_73; x_26 = lean_ctor_get(x_19, 1); lean_inc(x_26); x_27 = lean_ctor_get(x_19, 0); @@ -40386,52 +40375,51 @@ if (lean_is_exclusive(x_26)) { lean_dec_ref(x_26); x_31 = lean_box(0); } -x_32 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___lam__0___boxed), 7, 0); -lean_inc_ref(x_1); -x_33 = l_Lean_Meta_Match_MatcherInfo_altNumParams(x_1); -lean_inc(x_2); -x_34 = lean_array_get(x_2, x_33, x_20); -lean_dec_ref(x_33); -x_35 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___closed__0; +x_32 = lean_ctor_get(x_1, 2); +x_33 = lean_ctor_get(x_1, 5); +x_34 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___lam__0___boxed), 7, 0); +lean_inc_ref(x_2); +x_35 = lean_array_get_borrowed(x_2, x_32, x_20); +x_36 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___closed__0; lean_inc(x_3); -x_36 = l_Lean_Name_str___override(x_3, x_35); +x_37 = l_Lean_Name_str___override(x_3, x_36); lean_inc(x_29); -x_37 = lean_name_append_index_after(x_36, x_29); -lean_inc(x_37); -x_38 = lean_array_push(x_27, x_37); -x_71 = l_Subarray_size___redArg(x_13); -x_72 = lean_nat_dec_lt(x_20, x_71); -lean_dec(x_71); -if (x_72 == 0) +x_38 = lean_name_append_index_after(x_37, x_29); +lean_inc(x_38); +x_39 = lean_array_push(x_27, x_38); +x_72 = l_Subarray_size___redArg(x_13); +x_73 = lean_nat_dec_lt(x_20, x_72); +lean_dec(x_72); +if (x_73 == 0) { -lean_object* x_73; +lean_object* x_74; lean_inc_ref(x_7); -x_73 = l_outOfBounds___redArg(x_7); -x_39 = x_73; -goto block_70; +x_74 = l_outOfBounds___redArg(x_7); +x_40 = x_74; +goto block_71; } else { -lean_object* x_74; -x_74 = l_Subarray_get___redArg(x_13, x_20); -x_39 = x_74; -goto block_70; +lean_object* x_75; +x_75 = l_Subarray_get___redArg(x_13, x_20); +x_40 = x_75; +goto block_71; } -block_70: +block_71: { -lean_object* x_40; +lean_object* x_41; lean_inc(x_24); lean_inc_ref(x_23); lean_inc(x_22); lean_inc_ref(x_21); -lean_inc_ref(x_39); -x_40 = lean_infer_type(x_39, x_21, x_22, x_23, x_24); -if (lean_obj_tag(x_40) == 0) +lean_inc_ref(x_40); +x_41 = lean_infer_type(x_40, x_21, x_22, x_23, x_24); +if (lean_obj_tag(x_41) == 0) { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_40, 0); -lean_inc(x_41); -lean_dec_ref(x_40); +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +lean_dec_ref(x_41); lean_inc_ref(x_13); lean_inc_ref(x_12); lean_inc(x_10); @@ -40445,69 +40433,69 @@ lean_inc_ref(x_8); lean_inc(x_30); lean_inc_ref(x_7); lean_inc(x_20); -lean_inc_ref(x_1); +lean_inc_ref(x_33); lean_inc(x_6); lean_inc(x_5); lean_inc_ref(x_4); -x_42 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___lam__2___boxed), 29, 20); -lean_closure_set(x_42, 0, x_32); -lean_closure_set(x_42, 1, x_4); -lean_closure_set(x_42, 2, x_5); -lean_closure_set(x_42, 3, x_39); -lean_closure_set(x_42, 4, x_6); -lean_closure_set(x_42, 5, x_1); -lean_closure_set(x_42, 6, x_20); -lean_closure_set(x_42, 7, x_7); -lean_closure_set(x_42, 8, x_30); -lean_closure_set(x_42, 9, x_8); -lean_closure_set(x_42, 10, x_11); -lean_closure_set(x_42, 11, x_14); -lean_closure_set(x_42, 12, x_15); -lean_closure_set(x_42, 13, x_37); -lean_closure_set(x_42, 14, x_16); -lean_closure_set(x_42, 15, x_17); -lean_closure_set(x_42, 16, x_9); -lean_closure_set(x_42, 17, x_10); -lean_closure_set(x_42, 18, x_12); -lean_closure_set(x_42, 19, x_13); +x_43 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___lam__2___boxed), 29, 20); +lean_closure_set(x_43, 0, x_34); +lean_closure_set(x_43, 1, x_4); +lean_closure_set(x_43, 2, x_5); +lean_closure_set(x_43, 3, x_40); +lean_closure_set(x_43, 4, x_6); +lean_closure_set(x_43, 5, x_33); +lean_closure_set(x_43, 6, x_20); +lean_closure_set(x_43, 7, x_7); +lean_closure_set(x_43, 8, x_30); +lean_closure_set(x_43, 9, x_8); +lean_closure_set(x_43, 10, x_11); +lean_closure_set(x_43, 11, x_14); +lean_closure_set(x_43, 12, x_15); +lean_closure_set(x_43, 13, x_38); +lean_closure_set(x_43, 14, x_16); +lean_closure_set(x_43, 15, x_17); +lean_closure_set(x_43, 16, x_9); +lean_closure_set(x_43, 17, x_10); +lean_closure_set(x_43, 18, x_12); +lean_closure_set(x_43, 19, x_13); lean_inc(x_24); lean_inc_ref(x_23); lean_inc(x_22); lean_inc_ref(x_21); -lean_inc(x_6); -x_43 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_41, x_34, x_6, x_42, x_21, x_22, x_23, x_24); -if (lean_obj_tag(x_43) == 0) +lean_inc_ref(x_35); +x_44 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_42, x_35, x_43, x_21, x_22, x_23, x_24); +if (lean_obj_tag(x_44) == 0) { -uint8_t x_44; -x_44 = !lean_is_exclusive(x_43); -if (x_44 == 0) +uint8_t x_45; +x_45 = !lean_is_exclusive(x_44); +if (x_45 == 0) { -lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; -x_45 = lean_ctor_get(x_43, 0); -x_46 = lean_array_push(x_30, x_45); -x_47 = lean_nat_add(x_29, x_5); +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; +x_46 = lean_ctor_get(x_44, 0); +x_47 = lean_array_push(x_30, x_46); +x_48 = lean_nat_add(x_29, x_5); lean_dec(x_29); if (lean_is_scalar(x_31)) { - x_48 = lean_alloc_ctor(0, 2, 0); -} else { - x_48 = x_31; -} -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_46); -if (lean_is_scalar(x_28)) { x_49 = lean_alloc_ctor(0, 2, 0); } else { - x_49 = x_28; + x_49 = x_31; } -lean_ctor_set(x_49, 0, x_38); -lean_ctor_set(x_49, 1, x_48); -x_50 = lean_unsigned_to_nat(1u); -x_51 = lean_nat_add(x_20, x_50); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_47); +if (lean_is_scalar(x_28)) { + x_50 = lean_alloc_ctor(0, 2, 0); +} else { + x_50 = x_28; +} +lean_ctor_set(x_50, 0, x_39); +lean_ctor_set(x_50, 1, x_49); +x_51 = lean_unsigned_to_nat(1u); +x_52 = lean_nat_add(x_20, x_51); lean_dec(x_20); -x_52 = lean_nat_dec_lt(x_51, x_18); -if (x_52 == 0) +x_53 = lean_nat_dec_lt(x_52, x_18); +if (x_53 == 0) { -lean_dec(x_51); +lean_dec(x_52); lean_dec(x_24); lean_dec_ref(x_23); lean_dec(x_22); @@ -40527,50 +40515,50 @@ lean_dec(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); -lean_dec(x_2); +lean_dec_ref(x_2); lean_dec_ref(x_1); -lean_ctor_set(x_43, 0, x_49); -return x_43; +lean_ctor_set(x_44, 0, x_50); +return x_44; } else { -lean_free_object(x_43); -x_19 = x_49; -x_20 = x_51; +lean_free_object(x_44); +x_19 = x_50; +x_20 = x_52; goto _start; } } else { -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; -x_54 = lean_ctor_get(x_43, 0); -lean_inc(x_54); -lean_dec(x_43); -x_55 = lean_array_push(x_30, x_54); -x_56 = lean_nat_add(x_29, x_5); +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; +x_55 = lean_ctor_get(x_44, 0); +lean_inc(x_55); +lean_dec(x_44); +x_56 = lean_array_push(x_30, x_55); +x_57 = lean_nat_add(x_29, x_5); lean_dec(x_29); if (lean_is_scalar(x_31)) { - x_57 = lean_alloc_ctor(0, 2, 0); -} else { - x_57 = x_31; -} -lean_ctor_set(x_57, 0, x_56); -lean_ctor_set(x_57, 1, x_55); -if (lean_is_scalar(x_28)) { x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_58 = x_28; + x_58 = x_31; } -lean_ctor_set(x_58, 0, x_38); -lean_ctor_set(x_58, 1, x_57); -x_59 = lean_unsigned_to_nat(1u); -x_60 = lean_nat_add(x_20, x_59); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_56); +if (lean_is_scalar(x_28)) { + x_59 = lean_alloc_ctor(0, 2, 0); +} else { + x_59 = x_28; +} +lean_ctor_set(x_59, 0, x_39); +lean_ctor_set(x_59, 1, x_58); +x_60 = lean_unsigned_to_nat(1u); +x_61 = lean_nat_add(x_20, x_60); lean_dec(x_20); -x_61 = lean_nat_dec_lt(x_60, x_18); -if (x_61 == 0) +x_62 = lean_nat_dec_lt(x_61, x_18); +if (x_62 == 0) { -lean_object* x_62; -lean_dec(x_60); +lean_object* x_63; +lean_dec(x_61); lean_dec(x_24); lean_dec_ref(x_23); lean_dec(x_22); @@ -40590,75 +40578,24 @@ lean_dec(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); -lean_dec(x_2); +lean_dec_ref(x_2); lean_dec_ref(x_1); -x_62 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_62, 0, x_58); -return x_62; +x_63 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_63, 0, x_59); +return x_63; } else { -x_19 = x_58; -x_20 = x_60; +x_19 = x_59; +x_20 = x_61; goto _start; } } } else { -uint8_t x_64; -lean_dec_ref(x_38); -lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_29); -lean_dec(x_28); -lean_dec(x_24); -lean_dec_ref(x_23); -lean_dec(x_22); -lean_dec_ref(x_21); -lean_dec(x_20); -lean_dec(x_17); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -x_64 = !lean_is_exclusive(x_43); -if (x_64 == 0) -{ -return x_43; -} -else -{ -lean_object* x_65; lean_object* x_66; -x_65 = lean_ctor_get(x_43, 0); -lean_inc(x_65); -lean_dec(x_43); -x_66 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_66, 0, x_65); -return x_66; -} -} -} -else -{ -uint8_t x_67; +uint8_t x_65; lean_dec_ref(x_39); -lean_dec_ref(x_38); -lean_dec(x_37); -lean_dec(x_34); -lean_dec_ref(x_32); lean_dec(x_31); lean_dec(x_30); lean_dec(x_29); @@ -40683,22 +40620,72 @@ lean_dec(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); -lean_dec(x_2); +lean_dec_ref(x_2); lean_dec_ref(x_1); -x_67 = !lean_is_exclusive(x_40); -if (x_67 == 0) +x_65 = !lean_is_exclusive(x_44); +if (x_65 == 0) { -return x_40; +return x_44; } else { -lean_object* x_68; lean_object* x_69; -x_68 = lean_ctor_get(x_40, 0); -lean_inc(x_68); -lean_dec(x_40); -x_69 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_69, 0, x_68); -return x_69; +lean_object* x_66; lean_object* x_67; +x_66 = lean_ctor_get(x_44, 0); +lean_inc(x_66); +lean_dec(x_44); +x_67 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_67, 0, x_66); +return x_67; +} +} +} +else +{ +uint8_t x_68; +lean_dec_ref(x_40); +lean_dec_ref(x_39); +lean_dec(x_38); +lean_dec_ref(x_34); +lean_dec(x_31); +lean_dec(x_30); +lean_dec(x_29); +lean_dec(x_28); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_20); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_68 = !lean_is_exclusive(x_41); +if (x_68 == 0) +{ +return x_41; +} +else +{ +lean_object* x_69; lean_object* x_70; +x_69 = lean_ctor_get(x_41, 0); +lean_inc(x_69); +lean_dec(x_41); +x_70 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_70, 0, x_69); +return x_70; } } } @@ -40715,7 +40702,7 @@ return x_32; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, uint8_t x_12, uint8_t x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27, lean_object* x_28, lean_object* x_29, lean_object* x_30, lean_object* x_31, lean_object* x_32) { _start: { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_113; lean_object* x_114; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; lean_object* x_41; lean_object* x_113; lean_object* x_114; x_113 = l_Lean_mkAppN(x_1, x_2); lean_inc(x_32); lean_inc_ref(x_31); @@ -40725,243 +40712,242 @@ lean_inc_ref(x_28); x_114 = l_Lean_Meta_Match_mkAppDiscrEqs(x_113, x_28, x_3, x_29, x_30, x_31, x_32); if (lean_obj_tag(x_114) == 0) { -lean_object* x_115; lean_object* x_116; lean_object* x_117; size_t x_118; size_t x_119; lean_object* x_120; +lean_object* x_115; lean_object* x_116; size_t x_117; size_t x_118; lean_object* x_119; x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); lean_dec_ref(x_114); -x_116 = lean_ctor_get(x_4, 5); -x_117 = l_Lean_Meta_Match_Overlaps_overlapping(x_116, x_5); -x_118 = lean_array_size(x_117); -x_119 = 0; +x_116 = l_Lean_Meta_Match_Overlaps_overlapping(x_4, x_5); +x_117 = lean_array_size(x_116); +x_118 = 0; lean_inc(x_32); lean_inc_ref(x_31); lean_inc(x_30); lean_inc_ref(x_29); -x_120 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__3(x_6, x_7, x_8, x_9, x_117, x_118, x_119, x_10, x_29, x_30, x_31, x_32); -lean_dec_ref(x_117); -if (lean_obj_tag(x_120) == 0) +x_119 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__3(x_6, x_7, x_8, x_9, x_116, x_117, x_118, x_10, x_29, x_30, x_31, x_32); +lean_dec_ref(x_116); +if (lean_obj_tag(x_119) == 0) { -lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_121 = lean_ctor_get(x_120, 0); -lean_inc(x_121); -lean_dec_ref(x_120); -x_162 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; -x_163 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_162, x_31); -x_164 = lean_ctor_get(x_163, 0); -lean_inc(x_164); -lean_dec_ref(x_163); -x_165 = lean_unbox(x_164); -lean_dec(x_164); -if (x_165 == 0) +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; +x_120 = lean_ctor_get(x_119, 0); +lean_inc(x_120); +lean_dec_ref(x_119); +x_161 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go___closed__14; +x_162 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__1___redArg(x_161, x_31); +x_163 = lean_ctor_get(x_162, 0); +lean_inc(x_163); +lean_dec_ref(x_162); +x_164 = lean_unbox(x_163); +lean_dec(x_163); +if (x_164 == 0) { -x_122 = x_29; -x_123 = x_30; -x_124 = x_31; -x_125 = x_32; -x_126 = lean_box(0); -goto block_161; +x_121 = x_29; +x_122 = x_30; +x_123 = x_31; +x_124 = x_32; +x_125 = lean_box(0); +goto block_160; } else { -lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; -x_166 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__5; -lean_inc(x_121); -x_167 = lean_array_to_list(x_121); -x_168 = lean_box(0); -x_169 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkAppDiscrEqs_go_spec__1(x_167, x_168); -x_170 = l_Lean_MessageData_ofList(x_169); -x_171 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_171, 0, x_166); -lean_ctor_set(x_171, 1, x_170); -x_172 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_162, x_171, x_29, x_30, x_31, x_32); -lean_dec_ref(x_172); -x_122 = x_29; -x_123 = x_30; -x_124 = x_31; -x_125 = x_32; -x_126 = lean_box(0); -goto block_161; +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; +x_165 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__6; +lean_inc(x_120); +x_166 = lean_array_to_list(x_120); +x_167 = lean_box(0); +x_168 = l_List_mapTR_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkAppDiscrEqs_go_spec__1(x_166, x_167); +x_169 = l_Lean_MessageData_ofList(x_168); +x_170 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_170, 0, x_165); +lean_ctor_set(x_170, 1, x_169); +x_171 = l_Lean_addTrace___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_proveCondEqThm_go_spec__2(x_161, x_170, x_29, x_30, x_31, x_32); +lean_dec_ref(x_171); +x_121 = x_29; +x_122 = x_30; +x_123 = x_31; +x_124 = x_32; +x_125 = lean_box(0); +goto block_160; } -block_161: +block_160: { -lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; size_t x_134; lean_object* x_135; -x_127 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__2; -x_128 = l_Array_reverse___redArg(x_8); -x_129 = lean_array_get_size(x_128); +lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; size_t x_133; lean_object* x_134; +x_126 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__2; +x_127 = l_Array_reverse___redArg(x_8); +x_128 = lean_array_get_size(x_127); lean_inc(x_22); -x_130 = l_Array_toSubarray___redArg(x_128, x_22, x_129); -x_131 = l_Array_ofSubarray___redArg(x_23); -lean_inc_ref(x_131); -x_132 = l_Array_reverse___redArg(x_131); -x_133 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_133, 0, x_130); -lean_ctor_set(x_133, 1, x_127); -x_134 = lean_array_size(x_132); -lean_inc(x_125); -lean_inc_ref(x_124); -lean_inc(x_123); -lean_inc_ref(x_122); -x_135 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__10(x_132, x_134, x_119, x_133, x_122, x_123, x_124, x_125); -lean_dec_ref(x_132); -if (lean_obj_tag(x_135) == 0) +x_129 = l_Array_toSubarray___redArg(x_127, x_22, x_128); +x_130 = l_Array_ofSubarray___redArg(x_23); +lean_inc_ref(x_130); +x_131 = l_Array_reverse___redArg(x_130); +x_132 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_132, 0, x_129); +lean_ctor_set(x_132, 1, x_126); +x_133 = lean_array_size(x_131); +lean_inc(x_124); +lean_inc_ref(x_123); +lean_inc(x_122); +lean_inc_ref(x_121); +x_134 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__10(x_131, x_133, x_118, x_132, x_121, x_122, x_123, x_124); +lean_dec_ref(x_131); +if (lean_obj_tag(x_134) == 0) { -lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; lean_object* x_140; -x_136 = lean_ctor_get(x_135, 0); +lean_object* x_135; lean_object* x_136; lean_object* x_137; uint8_t x_138; lean_object* x_139; +x_135 = lean_ctor_get(x_134, 0); +lean_inc(x_135); +lean_dec_ref(x_134); +x_136 = lean_ctor_get(x_135, 1); lean_inc(x_136); -lean_dec_ref(x_135); -x_137 = lean_ctor_get(x_136, 1); -lean_inc(x_137); -lean_dec(x_136); -lean_inc_ref(x_131); -x_138 = l_Array_append___redArg(x_131, x_11); -x_139 = 1; -x_140 = l_Lean_Meta_mkForallFVars(x_138, x_137, x_12, x_13, x_13, x_139, x_122, x_123, x_124, x_125); -lean_dec_ref(x_138); -if (lean_obj_tag(x_140) == 0) -{ -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; -x_141 = lean_ctor_get(x_140, 0); -lean_inc(x_141); -lean_dec_ref(x_140); -x_142 = l_Lean_ConstantInfo_name(x_24); -x_143 = l_Lean_mkConst(x_142, x_25); -x_144 = l_Array_ofSubarray___redArg(x_14); -x_145 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__5; -x_146 = lean_array_push(x_145, x_26); -x_147 = l_Array_append___redArg(x_144, x_146); -lean_dec_ref(x_146); -x_148 = l_Array_append___redArg(x_147, x_131); -lean_dec_ref(x_131); -x_149 = l_Array_ofSubarray___redArg(x_27); -x_150 = l_Array_append___redArg(x_148, x_149); -lean_dec_ref(x_149); -x_151 = l_Lean_mkAppN(x_143, x_150); -lean_inc(x_125); -lean_inc_ref(x_124); -lean_inc(x_123); -lean_inc_ref(x_122); -x_152 = l_Lean_Meta_mkHEq(x_151, x_115, x_122, x_123, x_124, x_125); -if (lean_obj_tag(x_152) == 0) -{ -lean_object* x_153; lean_object* x_154; uint8_t x_155; -x_153 = lean_ctor_get(x_152, 0); -lean_inc(x_153); -x_154 = lean_array_get_size(x_121); -x_155 = lean_nat_dec_lt(x_22, x_154); -lean_dec(x_22); -if (x_155 == 0) -{ -lean_dec(x_154); -lean_dec(x_153); -lean_dec(x_121); -x_34 = x_124; -x_35 = x_123; -x_36 = x_150; -x_37 = x_141; -x_38 = x_139; -x_39 = x_122; -x_40 = x_125; -x_41 = x_152; -goto block_112; -} -else -{ -size_t x_156; lean_object* x_157; -lean_dec_ref(x_152); -x_156 = lean_usize_of_nat(x_154); -lean_dec(x_154); -lean_inc(x_125); -lean_inc_ref(x_124); -x_157 = l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__11___redArg(x_121, x_156, x_119, x_153, x_124, x_125); -lean_dec(x_121); -x_34 = x_124; -x_35 = x_123; -x_36 = x_150; -x_37 = x_141; -x_38 = x_139; -x_39 = x_122; -x_40 = x_125; -x_41 = x_157; -goto block_112; -} -} -else -{ -lean_dec_ref(x_150); -lean_dec(x_141); -lean_dec(x_125); -lean_dec_ref(x_124); -lean_dec(x_123); -lean_dec_ref(x_122); -lean_dec(x_121); -lean_dec_ref(x_28); -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_20); -lean_dec(x_19); -lean_dec(x_18); -return x_152; -} -} -else -{ -lean_dec_ref(x_131); -lean_dec(x_125); -lean_dec_ref(x_124); -lean_dec(x_123); -lean_dec_ref(x_122); -lean_dec(x_121); -lean_dec(x_115); -lean_dec_ref(x_28); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_20); -lean_dec(x_19); -lean_dec(x_18); -return x_140; -} -} -else -{ -uint8_t x_158; -lean_dec_ref(x_131); -lean_dec(x_125); -lean_dec_ref(x_124); -lean_dec(x_123); -lean_dec_ref(x_122); -lean_dec(x_121); -lean_dec(x_115); -lean_dec_ref(x_28); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_20); -lean_dec(x_19); -lean_dec(x_18); -x_158 = !lean_is_exclusive(x_135); -if (x_158 == 0) -{ -return x_135; -} -else -{ -lean_object* x_159; lean_object* x_160; -x_159 = lean_ctor_get(x_135, 0); -lean_inc(x_159); lean_dec(x_135); -x_160 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_160, 0, x_159); -return x_160; +lean_inc_ref(x_130); +x_137 = l_Array_append___redArg(x_130, x_11); +x_138 = 1; +x_139 = l_Lean_Meta_mkForallFVars(x_137, x_136, x_12, x_13, x_13, x_138, x_121, x_122, x_123, x_124); +lean_dec_ref(x_137); +if (lean_obj_tag(x_139) == 0) +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; +x_140 = lean_ctor_get(x_139, 0); +lean_inc(x_140); +lean_dec_ref(x_139); +x_141 = l_Lean_ConstantInfo_name(x_24); +x_142 = l_Lean_mkConst(x_141, x_25); +x_143 = l_Array_ofSubarray___redArg(x_14); +x_144 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__7; +x_145 = lean_array_push(x_144, x_26); +x_146 = l_Array_append___redArg(x_143, x_145); +lean_dec_ref(x_145); +x_147 = l_Array_append___redArg(x_146, x_130); +lean_dec_ref(x_130); +x_148 = l_Array_ofSubarray___redArg(x_27); +x_149 = l_Array_append___redArg(x_147, x_148); +lean_dec_ref(x_148); +x_150 = l_Lean_mkAppN(x_142, x_149); +lean_inc(x_124); +lean_inc_ref(x_123); +lean_inc(x_122); +lean_inc_ref(x_121); +x_151 = l_Lean_Meta_mkHEq(x_150, x_115, x_121, x_122, x_123, x_124); +if (lean_obj_tag(x_151) == 0) +{ +lean_object* x_152; lean_object* x_153; uint8_t x_154; +x_152 = lean_ctor_get(x_151, 0); +lean_inc(x_152); +x_153 = lean_array_get_size(x_120); +x_154 = lean_nat_dec_lt(x_22, x_153); +lean_dec(x_22); +if (x_154 == 0) +{ +lean_dec(x_153); +lean_dec(x_152); +lean_dec(x_120); +x_34 = x_122; +x_35 = x_123; +x_36 = x_124; +x_37 = x_121; +x_38 = x_140; +x_39 = x_149; +x_40 = x_138; +x_41 = x_151; +goto block_112; +} +else +{ +size_t x_155; lean_object* x_156; +lean_dec_ref(x_151); +x_155 = lean_usize_of_nat(x_153); +lean_dec(x_153); +lean_inc(x_124); +lean_inc_ref(x_123); +x_156 = l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__11___redArg(x_120, x_155, x_118, x_152, x_123, x_124); +lean_dec(x_120); +x_34 = x_122; +x_35 = x_123; +x_36 = x_124; +x_37 = x_121; +x_38 = x_140; +x_39 = x_149; +x_40 = x_138; +x_41 = x_156; +goto block_112; +} +} +else +{ +lean_dec_ref(x_149); +lean_dec(x_140); +lean_dec(x_124); +lean_dec_ref(x_123); +lean_dec(x_122); +lean_dec_ref(x_121); +lean_dec(x_120); +lean_dec_ref(x_28); +lean_dec(x_22); +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +return x_151; +} +} +else +{ +lean_dec_ref(x_130); +lean_dec(x_124); +lean_dec_ref(x_123); +lean_dec(x_122); +lean_dec_ref(x_121); +lean_dec(x_120); +lean_dec(x_115); +lean_dec_ref(x_28); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec(x_22); +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +return x_139; +} +} +else +{ +uint8_t x_157; +lean_dec_ref(x_130); +lean_dec(x_124); +lean_dec_ref(x_123); +lean_dec(x_122); +lean_dec_ref(x_121); +lean_dec(x_120); +lean_dec(x_115); +lean_dec_ref(x_28); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec(x_22); +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +x_157 = !lean_is_exclusive(x_134); +if (x_157 == 0) +{ +return x_134; +} +else +{ +lean_object* x_158; lean_object* x_159; +x_158 = lean_ctor_get(x_134, 0); +lean_inc(x_158); +lean_dec(x_134); +x_159 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_159, 0, x_158); +return x_159; } } } } else { -uint8_t x_173; +uint8_t x_172; lean_dec(x_115); lean_dec(x_32); lean_dec_ref(x_31); @@ -40976,20 +40962,20 @@ lean_dec(x_20); lean_dec(x_19); lean_dec(x_18); lean_dec_ref(x_8); -x_173 = !lean_is_exclusive(x_120); -if (x_173 == 0) +x_172 = !lean_is_exclusive(x_119); +if (x_172 == 0) { -return x_120; +return x_119; } else { -lean_object* x_174; lean_object* x_175; -x_174 = lean_ctor_get(x_120, 0); -lean_inc(x_174); -lean_dec(x_120); -x_175 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_175, 0, x_174); -return x_175; +lean_object* x_173; lean_object* x_174; +x_173 = lean_ctor_get(x_119, 0); +lean_inc(x_173); +lean_dec(x_119); +x_174 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_174, 0, x_173); +return x_174; } } } @@ -41021,9 +41007,9 @@ lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; x_42 = lean_ctor_get(x_41, 0); lean_inc(x_42); lean_dec_ref(x_41); -x_43 = l_Array_append___redArg(x_36, x_11); +x_43 = l_Array_append___redArg(x_39, x_11); x_44 = l_Array_append___redArg(x_43, x_28); -x_45 = l_Lean_Meta_mkForallFVars(x_44, x_42, x_12, x_13, x_13, x_38, x_39, x_35, x_34, x_40); +x_45 = l_Lean_Meta_mkForallFVars(x_44, x_42, x_12, x_13, x_13, x_40, x_37, x_34, x_35, x_36); lean_dec_ref(x_44); if (lean_obj_tag(x_45) == 0) { @@ -41031,11 +41017,11 @@ lean_object* x_46; lean_object* x_47; x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); lean_dec_ref(x_45); -lean_inc(x_40); -lean_inc_ref(x_34); -lean_inc(x_35); -lean_inc_ref(x_39); -x_47 = l_Lean_Meta_Match_unfoldNamedPattern(x_46, x_39, x_35, x_34, x_40); +lean_inc(x_36); +lean_inc_ref(x_35); +lean_inc(x_34); +lean_inc_ref(x_37); +x_47 = l_Lean_Meta_Match_unfoldNamedPattern(x_46, x_37, x_34, x_35, x_36); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -41057,10 +41043,10 @@ lean_dec(x_54); lean_dec(x_53); x_56 = lean_array_get_size(x_28); lean_dec_ref(x_28); -lean_inc(x_40); -lean_inc_ref(x_34); +lean_inc(x_36); +lean_inc_ref(x_35); lean_inc(x_49); -x_57 = l_Lean_Meta_Match_proveCondEqThm(x_18, x_49, x_55, x_56, x_39, x_35, x_34, x_40); +x_57 = l_Lean_Meta_Match_proveCondEqThm(x_18, x_49, x_55, x_56, x_37, x_34, x_35, x_36); if (lean_obj_tag(x_57) == 0) { uint8_t x_58; @@ -41069,7 +41055,7 @@ if (x_58 == 0) { lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; x_59 = lean_ctor_get(x_57, 0); -x_60 = lean_st_ref_get(x_40); +x_60 = lean_st_ref_get(x_36); x_61 = lean_ctor_get(x_60, 0); lean_inc_ref(x_61); lean_dec_ref(x_60); @@ -41093,7 +41079,7 @@ lean_ctor_set(x_65, 1, x_59); lean_ctor_set(x_65, 2, x_64); lean_ctor_set_tag(x_47, 2); lean_ctor_set(x_47, 0, x_65); -x_66 = l_Lean_addDecl(x_47, x_12, x_34, x_40); +x_66 = l_Lean_addDecl(x_47, x_12, x_35, x_36); if (lean_obj_tag(x_66) == 0) { uint8_t x_67; @@ -41103,7 +41089,7 @@ if (x_67 == 0) lean_object* x_68; x_68 = lean_ctor_get(x_66, 0); lean_dec(x_68); -lean_ctor_set(x_66, 0, x_37); +lean_ctor_set(x_66, 0, x_38); return x_66; } else @@ -41111,14 +41097,14 @@ else lean_object* x_69; lean_dec(x_66); x_69 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_69, 0, x_37); +lean_ctor_set(x_69, 0, x_38); return x_69; } } else { uint8_t x_70; -lean_dec_ref(x_37); +lean_dec_ref(x_38); x_70 = !lean_is_exclusive(x_66); if (x_70 == 0) { @@ -41141,12 +41127,12 @@ else lean_dec(x_59); lean_free_object(x_47); lean_dec(x_49); -lean_dec(x_40); -lean_dec_ref(x_34); +lean_dec(x_36); +lean_dec_ref(x_35); lean_dec(x_21); lean_dec(x_20); lean_dec(x_19); -lean_ctor_set(x_57, 0, x_37); +lean_ctor_set(x_57, 0, x_38); return x_57; } } @@ -41156,7 +41142,7 @@ lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; x_73 = lean_ctor_get(x_57, 0); lean_inc(x_73); lean_dec(x_57); -x_74 = lean_st_ref_get(x_40); +x_74 = lean_st_ref_get(x_36); x_75 = lean_ctor_get(x_74, 0); lean_inc_ref(x_75); lean_dec_ref(x_74); @@ -41179,7 +41165,7 @@ lean_ctor_set(x_79, 1, x_73); lean_ctor_set(x_79, 2, x_78); lean_ctor_set_tag(x_47, 2); lean_ctor_set(x_47, 0, x_79); -x_80 = l_Lean_addDecl(x_47, x_12, x_34, x_40); +x_80 = l_Lean_addDecl(x_47, x_12, x_35, x_36); if (lean_obj_tag(x_80) == 0) { lean_object* x_81; lean_object* x_82; @@ -41195,13 +41181,13 @@ if (lean_is_scalar(x_81)) { } else { x_82 = x_81; } -lean_ctor_set(x_82, 0, x_37); +lean_ctor_set(x_82, 0, x_38); return x_82; } else { lean_object* x_83; lean_object* x_84; lean_object* x_85; -lean_dec_ref(x_37); +lean_dec_ref(x_38); x_83 = lean_ctor_get(x_80, 0); lean_inc(x_83); if (lean_is_exclusive(x_80)) { @@ -41226,13 +41212,13 @@ lean_object* x_86; lean_dec(x_73); lean_free_object(x_47); lean_dec(x_49); -lean_dec(x_40); -lean_dec_ref(x_34); +lean_dec(x_36); +lean_dec_ref(x_35); lean_dec(x_21); lean_dec(x_20); lean_dec(x_19); x_86 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_86, 0, x_37); +lean_ctor_set(x_86, 0, x_38); return x_86; } } @@ -41241,9 +41227,9 @@ else { lean_free_object(x_47); lean_dec(x_49); -lean_dec(x_40); -lean_dec_ref(x_37); -lean_dec_ref(x_34); +lean_dec_ref(x_38); +lean_dec(x_36); +lean_dec_ref(x_35); lean_dec(x_21); lean_dec(x_20); lean_dec(x_19); @@ -41269,10 +41255,10 @@ lean_dec(x_92); lean_dec(x_91); x_94 = lean_array_get_size(x_28); lean_dec_ref(x_28); -lean_inc(x_40); -lean_inc_ref(x_34); +lean_inc(x_36); +lean_inc_ref(x_35); lean_inc(x_87); -x_95 = l_Lean_Meta_Match_proveCondEqThm(x_18, x_87, x_93, x_94, x_39, x_35, x_34, x_40); +x_95 = l_Lean_Meta_Match_proveCondEqThm(x_18, x_87, x_93, x_94, x_37, x_34, x_35, x_36); if (lean_obj_tag(x_95) == 0) { lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; @@ -41285,7 +41271,7 @@ if (lean_is_exclusive(x_95)) { lean_dec_ref(x_95); x_97 = lean_box(0); } -x_98 = lean_st_ref_get(x_40); +x_98 = lean_st_ref_get(x_36); x_99 = lean_ctor_get(x_98, 0); lean_inc_ref(x_99); lean_dec_ref(x_98); @@ -41309,7 +41295,7 @@ lean_ctor_set(x_103, 1, x_96); lean_ctor_set(x_103, 2, x_102); x_104 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_104, 0, x_103); -x_105 = l_Lean_addDecl(x_104, x_12, x_34, x_40); +x_105 = l_Lean_addDecl(x_104, x_12, x_35, x_36); if (lean_obj_tag(x_105) == 0) { lean_object* x_106; lean_object* x_107; @@ -41325,13 +41311,13 @@ if (lean_is_scalar(x_106)) { } else { x_107 = x_106; } -lean_ctor_set(x_107, 0, x_37); +lean_ctor_set(x_107, 0, x_38); return x_107; } else { lean_object* x_108; lean_object* x_109; lean_object* x_110; -lean_dec_ref(x_37); +lean_dec_ref(x_38); x_108 = lean_ctor_get(x_105, 0); lean_inc(x_108); if (lean_is_exclusive(x_105)) { @@ -41355,8 +41341,8 @@ else lean_object* x_111; lean_dec(x_96); lean_dec(x_87); -lean_dec(x_40); -lean_dec_ref(x_34); +lean_dec(x_36); +lean_dec_ref(x_35); lean_dec(x_21); lean_dec(x_20); lean_dec(x_19); @@ -41365,16 +41351,16 @@ if (lean_is_scalar(x_97)) { } else { x_111 = x_97; } -lean_ctor_set(x_111, 0, x_37); +lean_ctor_set(x_111, 0, x_38); return x_111; } } else { lean_dec(x_87); -lean_dec(x_40); -lean_dec_ref(x_37); -lean_dec_ref(x_34); +lean_dec_ref(x_38); +lean_dec(x_36); +lean_dec_ref(x_35); lean_dec(x_21); lean_dec(x_20); lean_dec(x_19); @@ -41384,11 +41370,11 @@ return x_95; } else { -lean_dec(x_40); -lean_dec_ref(x_39); +lean_dec_ref(x_38); lean_dec_ref(x_37); -lean_dec(x_35); -lean_dec_ref(x_34); +lean_dec(x_36); +lean_dec_ref(x_35); +lean_dec(x_34); lean_dec_ref(x_28); lean_dec(x_21); lean_dec(x_20); @@ -41399,11 +41385,11 @@ return x_47; } else { -lean_dec(x_40); -lean_dec_ref(x_39); +lean_dec_ref(x_38); lean_dec_ref(x_37); -lean_dec(x_35); -lean_dec_ref(x_34); +lean_dec(x_36); +lean_dec_ref(x_35); +lean_dec(x_34); lean_dec_ref(x_28); lean_dec(x_21); lean_dec(x_20); @@ -41414,12 +41400,12 @@ return x_45; } else { -lean_dec(x_40); lean_dec_ref(x_39); +lean_dec_ref(x_38); lean_dec_ref(x_37); -lean_dec_ref(x_36); -lean_dec(x_35); -lean_dec_ref(x_34); +lean_dec(x_36); +lean_dec_ref(x_35); +lean_dec(x_34); lean_dec_ref(x_28); lean_dec(x_21); lean_dec(x_20); @@ -41648,7 +41634,7 @@ return x_59; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25) { _start: { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_72; uint8_t x_73; +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_73; uint8_t x_74; x_27 = lean_ctor_get(x_20, 1); lean_inc(x_27); x_28 = lean_ctor_get(x_20, 0); @@ -41673,52 +41659,51 @@ if (lean_is_exclusive(x_27)) { lean_dec_ref(x_27); x_32 = lean_box(0); } -x_33 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___lam__0___boxed), 7, 0); -lean_inc_ref(x_1); -x_34 = l_Lean_Meta_Match_MatcherInfo_altNumParams(x_1); -lean_inc(x_2); -x_35 = lean_array_get(x_2, x_34, x_21); -lean_dec_ref(x_34); -x_36 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___closed__0; +x_33 = lean_ctor_get(x_1, 2); +x_34 = lean_ctor_get(x_1, 5); +x_35 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___lam__0___boxed), 7, 0); +lean_inc_ref(x_2); +x_36 = lean_array_get_borrowed(x_2, x_33, x_21); +x_37 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg___closed__0; lean_inc(x_3); -x_37 = l_Lean_Name_str___override(x_3, x_36); +x_38 = l_Lean_Name_str___override(x_3, x_37); lean_inc(x_30); -x_38 = lean_name_append_index_after(x_37, x_30); -lean_inc(x_38); -x_39 = lean_array_push(x_28, x_38); -x_72 = l_Subarray_size___redArg(x_13); -x_73 = lean_nat_dec_lt(x_21, x_72); -lean_dec(x_72); -if (x_73 == 0) +x_39 = lean_name_append_index_after(x_38, x_30); +lean_inc(x_39); +x_40 = lean_array_push(x_28, x_39); +x_73 = l_Subarray_size___redArg(x_13); +x_74 = lean_nat_dec_lt(x_21, x_73); +lean_dec(x_73); +if (x_74 == 0) { -lean_object* x_74; +lean_object* x_75; lean_inc_ref(x_4); -x_74 = l_outOfBounds___redArg(x_4); -x_40 = x_74; -goto block_71; +x_75 = l_outOfBounds___redArg(x_4); +x_41 = x_75; +goto block_72; } else { -lean_object* x_75; -x_75 = l_Subarray_get___redArg(x_13, x_21); -x_40 = x_75; -goto block_71; +lean_object* x_76; +x_76 = l_Subarray_get___redArg(x_13, x_21); +x_41 = x_76; +goto block_72; } -block_71: +block_72: { -lean_object* x_41; +lean_object* x_42; lean_inc(x_25); lean_inc_ref(x_24); lean_inc(x_23); lean_inc_ref(x_22); -lean_inc_ref(x_40); -x_41 = lean_infer_type(x_40, x_22, x_23, x_24, x_25); -if (lean_obj_tag(x_41) == 0) +lean_inc_ref(x_41); +x_42 = lean_infer_type(x_41, x_22, x_23, x_24, x_25); +if (lean_obj_tag(x_42) == 0) { -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_41, 0); -lean_inc(x_42); -lean_dec_ref(x_41); +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +lean_dec_ref(x_42); lean_inc_ref(x_13); lean_inc_ref(x_12); lean_inc(x_10); @@ -41732,69 +41717,69 @@ lean_inc_ref(x_8); lean_inc(x_31); lean_inc_ref(x_4); lean_inc(x_21); -lean_inc_ref(x_1); +lean_inc_ref(x_34); lean_inc(x_7); lean_inc(x_6); lean_inc_ref(x_5); -x_43 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10___redArg___lam__0___boxed), 29, 20); -lean_closure_set(x_43, 0, x_33); -lean_closure_set(x_43, 1, x_5); -lean_closure_set(x_43, 2, x_6); -lean_closure_set(x_43, 3, x_40); -lean_closure_set(x_43, 4, x_7); -lean_closure_set(x_43, 5, x_1); -lean_closure_set(x_43, 6, x_21); -lean_closure_set(x_43, 7, x_4); -lean_closure_set(x_43, 8, x_31); -lean_closure_set(x_43, 9, x_8); -lean_closure_set(x_43, 10, x_11); -lean_closure_set(x_43, 11, x_14); -lean_closure_set(x_43, 12, x_15); -lean_closure_set(x_43, 13, x_38); -lean_closure_set(x_43, 14, x_16); -lean_closure_set(x_43, 15, x_17); -lean_closure_set(x_43, 16, x_9); -lean_closure_set(x_43, 17, x_10); -lean_closure_set(x_43, 18, x_12); -lean_closure_set(x_43, 19, x_13); +x_44 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10___redArg___lam__0___boxed), 29, 20); +lean_closure_set(x_44, 0, x_35); +lean_closure_set(x_44, 1, x_5); +lean_closure_set(x_44, 2, x_6); +lean_closure_set(x_44, 3, x_41); +lean_closure_set(x_44, 4, x_7); +lean_closure_set(x_44, 5, x_34); +lean_closure_set(x_44, 6, x_21); +lean_closure_set(x_44, 7, x_4); +lean_closure_set(x_44, 8, x_31); +lean_closure_set(x_44, 9, x_8); +lean_closure_set(x_44, 10, x_11); +lean_closure_set(x_44, 11, x_14); +lean_closure_set(x_44, 12, x_15); +lean_closure_set(x_44, 13, x_39); +lean_closure_set(x_44, 14, x_16); +lean_closure_set(x_44, 15, x_17); +lean_closure_set(x_44, 16, x_9); +lean_closure_set(x_44, 17, x_10); +lean_closure_set(x_44, 18, x_12); +lean_closure_set(x_44, 19, x_13); lean_inc(x_25); lean_inc_ref(x_24); lean_inc(x_23); lean_inc_ref(x_22); -lean_inc(x_7); -x_44 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_42, x_35, x_7, x_43, x_22, x_23, x_24, x_25); -if (lean_obj_tag(x_44) == 0) +lean_inc_ref(x_36); +x_45 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_43, x_36, x_44, x_22, x_23, x_24, x_25); +if (lean_obj_tag(x_45) == 0) { -uint8_t x_45; -x_45 = !lean_is_exclusive(x_44); -if (x_45 == 0) +uint8_t x_46; +x_46 = !lean_is_exclusive(x_45); +if (x_46 == 0) { -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; -x_46 = lean_ctor_get(x_44, 0); -x_47 = lean_array_push(x_31, x_46); -x_48 = lean_nat_add(x_30, x_6); +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; +x_47 = lean_ctor_get(x_45, 0); +x_48 = lean_array_push(x_31, x_47); +x_49 = lean_nat_add(x_30, x_6); lean_dec(x_30); if (lean_is_scalar(x_32)) { - x_49 = lean_alloc_ctor(0, 2, 0); -} else { - x_49 = x_32; -} -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set(x_49, 1, x_47); -if (lean_is_scalar(x_29)) { x_50 = lean_alloc_ctor(0, 2, 0); } else { - x_50 = x_29; + x_50 = x_32; } -lean_ctor_set(x_50, 0, x_39); -lean_ctor_set(x_50, 1, x_49); -x_51 = lean_unsigned_to_nat(1u); -x_52 = lean_nat_add(x_21, x_51); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_48); +if (lean_is_scalar(x_29)) { + x_51 = lean_alloc_ctor(0, 2, 0); +} else { + x_51 = x_29; +} +lean_ctor_set(x_51, 0, x_40); +lean_ctor_set(x_51, 1, x_50); +x_52 = lean_unsigned_to_nat(1u); +x_53 = lean_nat_add(x_21, x_52); lean_dec(x_21); -x_53 = lean_nat_dec_lt(x_52, x_18); -if (x_53 == 0) +x_54 = lean_nat_dec_lt(x_53, x_18); +if (x_54 == 0) { -lean_dec(x_52); +lean_dec(x_53); lean_dec(x_25); lean_dec_ref(x_24); lean_dec(x_23); @@ -41814,138 +41799,87 @@ lean_dec(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -lean_dec(x_2); +lean_dec_ref(x_2); lean_dec_ref(x_1); -lean_ctor_set(x_44, 0, x_50); -return x_44; +lean_ctor_set(x_45, 0, x_51); +return x_45; } else { -lean_object* x_54; -lean_free_object(x_44); -x_54 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg(x_1, x_2, x_3, x_5, x_6, x_7, x_4, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_50, x_52, x_22, x_23, x_24, x_25); -return x_54; +lean_object* x_55; +lean_free_object(x_45); +x_55 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg(x_1, x_2, x_3, x_5, x_6, x_7, x_4, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_51, x_53, x_22, x_23, x_24, x_25); +return x_55; } } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; -x_55 = lean_ctor_get(x_44, 0); -lean_inc(x_55); -lean_dec(x_44); -x_56 = lean_array_push(x_31, x_55); -x_57 = lean_nat_add(x_30, x_6); +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; +x_56 = lean_ctor_get(x_45, 0); +lean_inc(x_56); +lean_dec(x_45); +x_57 = lean_array_push(x_31, x_56); +x_58 = lean_nat_add(x_30, x_6); lean_dec(x_30); if (lean_is_scalar(x_32)) { - x_58 = lean_alloc_ctor(0, 2, 0); -} else { - x_58 = x_32; -} -lean_ctor_set(x_58, 0, x_57); -lean_ctor_set(x_58, 1, x_56); -if (lean_is_scalar(x_29)) { x_59 = lean_alloc_ctor(0, 2, 0); } else { - x_59 = x_29; + x_59 = x_32; } -lean_ctor_set(x_59, 0, x_39); -lean_ctor_set(x_59, 1, x_58); -x_60 = lean_unsigned_to_nat(1u); -x_61 = lean_nat_add(x_21, x_60); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_57); +if (lean_is_scalar(x_29)) { + x_60 = lean_alloc_ctor(0, 2, 0); +} else { + x_60 = x_29; +} +lean_ctor_set(x_60, 0, x_40); +lean_ctor_set(x_60, 1, x_59); +x_61 = lean_unsigned_to_nat(1u); +x_62 = lean_nat_add(x_21, x_61); lean_dec(x_21); -x_62 = lean_nat_dec_lt(x_61, x_18); -if (x_62 == 0) -{ -lean_object* x_63; -lean_dec(x_61); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_17); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -x_63 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_63, 0, x_59); -return x_63; -} -else +x_63 = lean_nat_dec_lt(x_62, x_18); +if (x_63 == 0) { lean_object* x_64; -x_64 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg(x_1, x_2, x_3, x_5, x_6, x_7, x_4, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_59, x_61, x_22, x_23, x_24, x_25); +lean_dec(x_62); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_64 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_64, 0, x_60); return x_64; } -} -} else { -uint8_t x_65; -lean_dec_ref(x_39); -lean_dec(x_32); -lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_29); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec(x_17); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -x_65 = !lean_is_exclusive(x_44); -if (x_65 == 0) -{ -return x_44; -} -else -{ -lean_object* x_66; lean_object* x_67; -x_66 = lean_ctor_get(x_44, 0); -lean_inc(x_66); -lean_dec(x_44); -x_67 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_67, 0, x_66); -return x_67; +lean_object* x_65; +x_65 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10_spec__10___redArg(x_1, x_2, x_3, x_5, x_6, x_7, x_4, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_60, x_62, x_22, x_23, x_24, x_25); +return x_65; } } } else { -uint8_t x_68; +uint8_t x_66; lean_dec_ref(x_40); -lean_dec_ref(x_39); -lean_dec(x_38); -lean_dec(x_35); -lean_dec_ref(x_33); lean_dec(x_32); lean_dec(x_31); lean_dec(x_30); @@ -41970,22 +41904,72 @@ lean_dec(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -lean_dec(x_2); +lean_dec_ref(x_2); lean_dec_ref(x_1); -x_68 = !lean_is_exclusive(x_41); -if (x_68 == 0) +x_66 = !lean_is_exclusive(x_45); +if (x_66 == 0) { -return x_41; +return x_45; } else { -lean_object* x_69; lean_object* x_70; -x_69 = lean_ctor_get(x_41, 0); -lean_inc(x_69); -lean_dec(x_41); -x_70 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_70, 0, x_69); -return x_70; +lean_object* x_67; lean_object* x_68; +x_67 = lean_ctor_get(x_45, 0); +lean_inc(x_67); +lean_dec(x_45); +x_68 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_68, 0, x_67); +return x_68; +} +} +} +else +{ +uint8_t x_69; +lean_dec_ref(x_41); +lean_dec_ref(x_40); +lean_dec(x_39); +lean_dec_ref(x_35); +lean_dec(x_32); +lean_dec(x_31); +lean_dec(x_30); +lean_dec(x_29); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_69 = !lean_is_exclusive(x_42); +if (x_69 == 0) +{ +return x_42; +} +else +{ +lean_object* x_70; lean_object* x_71; +x_70 = lean_ctor_get(x_42, 0); +lean_inc(x_70); +lean_dec(x_42); +x_71 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_71, 0, x_70); +return x_71; } } } @@ -42086,17 +42070,17 @@ goto block_86; block_54: { lean_object* x_27; uint8_t x_28; -x_27 = l_Subarray_size___redArg(x_24); +x_27 = l_Subarray_size___redArg(x_25); x_28 = lean_nat_dec_lt(x_20, x_27); if (x_28 == 0) { lean_object* x_29; lean_dec(x_27); lean_dec_ref(x_26); -lean_dec(x_25); +lean_dec_ref(x_25); lean_dec_ref(x_24); lean_dec_ref(x_23); -lean_dec_ref(x_22); +lean_dec(x_22); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); @@ -42107,7 +42091,7 @@ lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); -lean_dec(x_3); +lean_dec_ref(x_3); lean_dec_ref(x_1); x_29 = l_Lean_Meta_Match_registerMatchCongrEqns___redArg(x_2, x_21, x_15); lean_dec(x_15); @@ -42123,16 +42107,16 @@ lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean x_31 = lean_ctor_get(x_26, 0); x_32 = lean_ctor_get(x_26, 1); x_33 = l_Array_toSubarray___redArg(x_10, x_31, x_32); -lean_inc(x_25); +lean_inc(x_22); lean_ctor_set(x_26, 1, x_21); -lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 0, x_22); x_34 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_34, 0, x_21); lean_ctor_set(x_34, 1, x_26); lean_inc(x_15); lean_inc(x_2); lean_inc(x_27); -x_35 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10___redArg(x_1, x_3, x_4, x_5, x_33, x_25, x_6, x_21, x_7, x_8, x_23, x_22, x_24, x_27, x_2, x_9, x_19, x_27, x_20, x_34, x_20, x_12, x_13, x_14, x_15); +x_35 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10___redArg(x_1, x_3, x_4, x_5, x_33, x_22, x_6, x_21, x_7, x_8, x_23, x_24, x_25, x_27, x_2, x_9, x_19, x_27, x_20, x_34, x_20, x_12, x_13, x_14, x_15); lean_dec(x_27); if (lean_obj_tag(x_35) == 0) { @@ -42178,9 +42162,9 @@ lean_inc(x_43); lean_inc(x_42); lean_dec(x_26); x_44 = l_Array_toSubarray___redArg(x_10, x_42, x_43); -lean_inc(x_25); +lean_inc(x_22); x_45 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_45, 0, x_25); +lean_ctor_set(x_45, 0, x_22); lean_ctor_set(x_45, 1, x_21); x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_21); @@ -42188,7 +42172,7 @@ lean_ctor_set(x_46, 1, x_45); lean_inc(x_15); lean_inc(x_2); lean_inc(x_27); -x_47 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10___redArg(x_1, x_3, x_4, x_5, x_44, x_25, x_6, x_21, x_7, x_8, x_23, x_22, x_24, x_27, x_2, x_9, x_19, x_27, x_20, x_46, x_20, x_12, x_13, x_14, x_15); +x_47 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_genMatchCongrEqns_go_spec__10___redArg(x_1, x_3, x_4, x_5, x_44, x_22, x_6, x_21, x_7, x_8, x_23, x_24, x_25, x_27, x_2, x_9, x_19, x_27, x_20, x_46, x_20, x_12, x_13, x_14, x_15); lean_dec(x_27); if (lean_obj_tag(x_47) == 0) { @@ -42231,18 +42215,18 @@ return x_53; block_65: { uint8_t x_62; -x_62 = lean_nat_dec_le(x_60, x_56); +x_62 = lean_nat_dec_le(x_59, x_56); if (x_62 == 0) { lean_object* x_63; -lean_dec(x_60); +lean_dec(x_59); x_63 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_63, 0, x_61); lean_ctor_set(x_63, 1, x_56); x_22 = x_55; x_23 = x_57; x_24 = x_58; -x_25 = x_59; +x_25 = x_60; x_26 = x_63; goto block_54; } @@ -42252,11 +42236,11 @@ lean_object* x_64; lean_dec(x_56); x_64 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_64, 0, x_61); -lean_ctor_set(x_64, 1, x_60); +lean_ctor_set(x_64, 1, x_59); x_22 = x_55; x_23 = x_57; x_24 = x_58; -x_25 = x_59; +x_25 = x_60; x_26 = x_64; goto block_54; } @@ -42273,24 +42257,24 @@ x_74 = lean_array_get_size(x_10); x_75 = lean_nat_dec_le(x_72, x_20); if (x_75 == 0) { -x_55 = x_66; +x_55 = x_71; x_56 = x_74; -x_57 = x_67; -x_58 = x_70; -x_59 = x_71; -x_60 = x_73; +x_57 = x_66; +x_58 = x_67; +x_59 = x_73; +x_60 = x_70; x_61 = x_72; goto block_65; } else { lean_dec(x_72); -x_55 = x_66; +x_55 = x_71; x_56 = x_74; -x_57 = x_67; -x_58 = x_70; -x_59 = x_71; -x_60 = x_73; +x_57 = x_66; +x_58 = x_67; +x_59 = x_73; +x_60 = x_70; x_61 = x_20; goto block_65; } @@ -42312,8 +42296,8 @@ x_85 = lean_nat_dec_le(x_84, x_20); if (x_85 == 0) { lean_inc_ref(x_81); -x_66 = x_81; -x_67 = x_79; +x_66 = x_79; +x_67 = x_81; x_68 = x_84; x_69 = x_82; goto block_76; @@ -42322,8 +42306,8 @@ else { lean_dec(x_84); lean_inc_ref(x_81); -x_66 = x_81; -x_67 = x_79; +x_66 = x_79; +x_67 = x_81; x_68 = x_20; x_69 = x_82; goto block_76; @@ -42420,7 +42404,7 @@ x_38 = lean_ctor_get(x_37, 0); lean_inc(x_38); lean_dec_ref(x_37); x_39 = l_Lean_instInhabitedExpr; -x_40 = lean_unsigned_to_nat(0u); +x_40 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__0; x_41 = l_Lean_ConstantInfo_levelParams(x_35); x_42 = lean_box(0); lean_inc(x_41); @@ -42454,7 +42438,7 @@ x_50 = l_Lean_MessageData_ofName(x_1); x_51 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_51, 0, x_49); lean_ctor_set(x_51, 1, x_50); -x_52 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__1; +x_52 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__2; x_53 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_53, 0, x_51); lean_ctor_set(x_53, 1, x_52); @@ -42557,7 +42541,7 @@ x_71 = lean_ctor_get(x_70, 0); lean_inc(x_71); lean_dec_ref(x_70); x_72 = l_Lean_instInhabitedExpr; -x_73 = lean_unsigned_to_nat(0u); +x_73 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__0; x_74 = l_Lean_ConstantInfo_levelParams(x_68); x_75 = lean_box(0); lean_inc(x_74); @@ -42591,7 +42575,7 @@ x_83 = l_Lean_MessageData_ofName(x_1); x_84 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_84, 0, x_82); lean_ctor_set(x_84, 1, x_83); -x_85 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__1; +x_85 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__2; x_86 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_86, 0, x_84); lean_ctor_set(x_86, 1, x_85); @@ -44245,24 +44229,26 @@ l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_g lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__2); l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__3 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__3(); lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__3); -l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__4 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__4(); -lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__4); -l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__5 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__5(); -lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__5); -l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__6 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__6(); -lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__6); -l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__7 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__7(); -lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__7); -l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__8 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__8(); -lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__8); -l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__9 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__9(); -lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__9); -l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__10 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__10(); -lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__10); -l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__11 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__11(); -lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__11); -l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__12 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__12(); -lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltVarsTelescope_go___redArg___closed__12); +l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__0 = _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__0(); +lean_mark_persistent(l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__0); +l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__1 = _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__1(); +lean_mark_persistent(l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__1); +l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__2 = _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__2(); +lean_mark_persistent(l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__2); +l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__3 = _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__3(); +lean_mark_persistent(l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__3); +l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__4 = _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__4(); +lean_mark_persistent(l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__4); +l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__5 = _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__5(); +lean_mark_persistent(l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__5); +l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__6 = _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__6(); +lean_mark_persistent(l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__6); +l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__7 = _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__7(); +lean_mark_persistent(l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__7); +l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__8 = _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__8(); +lean_mark_persistent(l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__8); +l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__9 = _init_l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__9(); +lean_mark_persistent(l_Lean_Meta_Match_forallAltVarsTelescope___redArg___closed__9); l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___closed__0 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___closed__0(); lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___closed__0); l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___closed__1 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_forallAltTelescope_go___redArg___closed__1(); @@ -44574,6 +44560,8 @@ l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorL lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__4); l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__5 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__5(); lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__5); +l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__6 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__6(); +lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___closed__6); l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___boxed__const__1 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___boxed__const__1(); lean_mark_persistent(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___lam__1___boxed__const__1); l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__0 = _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go_spec__12_spec__12___redArg___closed__0(); @@ -44596,6 +44584,8 @@ l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go__ lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__0); l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__1 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__1(); lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__1); +l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__2 = _init_l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_getEquationsForImpl_go___closed__2); l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_Match_getEquationsForImpl_spec__0_spec__0___redArg___closed__0 = _init_l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_Match_getEquationsForImpl_spec__0_spec__0___redArg___closed__0(); l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_Match_getEquationsForImpl_spec__0_spec__0___redArg___closed__1 = _init_l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_Match_getEquationsForImpl_spec__0_spec__0___redArg___closed__1(); l_panic___at___00Lean_Meta_Match_getEquationsForImpl_spec__3___closed__0 = _init_l_panic___at___00Lean_Meta_Match_getEquationsForImpl_spec__3___closed__0(); diff --git a/stage0/stdlib/Lean/Meta/Match/MatchEqsExt.c b/stage0/stdlib/Lean/Meta/Match/MatchEqsExt.c index 68f83f1c7d..7641f5a068 100644 --- a/stage0/stdlib/Lean/Meta/Match/MatchEqsExt.c +++ b/stage0/stdlib/Lean/Meta/Match/MatchEqsExt.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Match.MatchEqsExt -// Imports: public import Lean.Meta.Basic import Lean.Meta.Eqns +// Imports: public import Lean.Meta.Basic public import Lean.Meta.Match.Basic import Lean.Meta.Eqns #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -40,7 +40,6 @@ lean_object* l_Lean_registerEnvExtension___redArg(lean_object*, lean_object*, le static lean_object* l_Lean_Meta_Match_instInhabitedMatchEqnsExtState_default___closed__1; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__0_spec__0___lam__0(lean_object*); -LEAN_EXPORT lean_object* l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5_spec__5_spec__5_spec__5(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatchEqnsExtState_ctorIdx(lean_object*); static lean_object* l_Lean_Meta_Match_instReprMatchEqns_repr___redArg___closed__11; static lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__0___closed__0; @@ -55,13 +54,13 @@ static lean_object* l_Lean_Meta_Match_instReprMatchEqns_repr___redArg___closed__ lean_object* lean_string_length(lean_object*); static lean_object* l_Lean_Meta_Match_instReprMatchEqns_repr___redArg___closed__16; LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00Lean_Meta_Match_isMatchEqnTheorem_spec__0(lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_reprFast(lean_object*); static lean_object* l_Lean_Meta_Match_instReprMatchEqns_repr___redArg___closed__15; static lean_object* l_Lean_Meta_Match_instReprMatchEqns_repr___redArg___closed__1; size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn_00___x40_Lean_Meta_Match_MatchEqsExt_1276161115____hygCtx___hyg_2_(); static lean_object* l_Lean_Meta_Match_registerMatchEqns___redArg___closed__2; lean_object* lean_st_ref_take(lean_object*); +static lean_object* l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__2; lean_object* lean_nat_to_int(lean_object*); lean_object* l_Array_empty(lean_object*); lean_object* l_Lean_EnvExtension_modifyState___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -78,7 +77,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_registerMatchEqns___redArg___boxed(le LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00Lean_Meta_Match_isMatchEqnTheorem_spec__0___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_empty___at___00Lean_Meta_Match_instInhabitedMatchEqnsExtState_default_spec__0(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Meta_Match_isMatchEqnTheorem_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn___lam__0_00___x40_Lean_Meta_Match_MatchEqsExt_1276161115____hygCtx___hyg_2_(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_Match_registerMatchEqns_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -94,7 +92,6 @@ static lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentH static lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__0___closed__9; LEAN_EXPORT lean_object* l_Lean_Meta_Match_instInhabitedMatchEqns_default; lean_object* lean_usize_to_nat(size_t); -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5_spec__5___lam__0(lean_object*); static size_t l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_Match_registerMatchEqns_spec__0_spec__0___redArg___closed__0; static lean_object* l_Lean_Meta_Match_instReprMatchEqns___closed__0; static lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__0___closed__4; @@ -117,19 +114,18 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_instInhabitedMatchEqns; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Meta_Match_registerMatchEqns_spec__0___redArg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Environment_0__Lean_EnvExtension_getStateUnsafe___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5_spec__5_spec__5(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_Match_registerMatchEqns_spec__0_spec__0(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); uint64_t l_Lean_Name_hash___override(lean_object*); static lean_object* l_Lean_Meta_Match_instReprMatchEqns_repr___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatchEqns_ctorIdx___boxed(lean_object*); static lean_object* l_Lean_Meta_Match_registerMatchEqns___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Match_matchEqnsExt; +extern lean_object* l_Lean_Meta_Match_instInhabitedMatcherInfo_default; static lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__0___closed__10; lean_object* lean_get_match_equations_for(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00Lean_Meta_Match_isMatchEqnTheorem_spec__0___redArg___boxed(lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Meta_Match_isMatchEqnTheorem_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5_spec__5(lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); static lean_object* l_Lean_Meta_Match_instReprMatchEqns_repr___redArg___closed__10; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Meta_Match_isMatchEqnTheorem_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); @@ -143,6 +139,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_Persist static lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__0___closed__6; lean_object* lean_st_ref_set(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_registerMatchEqns___redArg___lam__0(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg(lean_object*); size_t lean_usize_shift_left(size_t, size_t); static lean_object* l_Lean_Meta_Match_instReprMatchEqns_repr___redArg___closed__5; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Meta_Match_registerMatchEqns_spec__0(lean_object*, lean_object*, lean_object*, lean_object*); @@ -200,21 +197,30 @@ return x_1; static lean_object* _init_l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__0; -x_3 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -lean_ctor_set(x_3, 2, x_2); -return x_3; +lean_object* x_1; +x_1 = l_Lean_Meta_Match_instInhabitedMatcherInfo_default; +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__1; +x_2 = lean_box(0); +x_3 = l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__0; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; } } static lean_object* _init_l_Lean_Meta_Match_instInhabitedMatchEqns_default() { _start: { lean_object* x_1; -x_1 = l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__1; +x_1 = l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__2; return x_1; } } @@ -527,202 +533,6 @@ return x_15; } } } -LEAN_EXPORT lean_object* l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5_spec__5_spec__5_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_3) == 0) -{ -lean_dec(x_1); -return x_2; -} -else -{ -uint8_t x_4; -x_4 = !lean_is_exclusive(x_3); -if (x_4 == 0) -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_5 = lean_ctor_get(x_3, 0); -x_6 = lean_ctor_get(x_3, 1); -lean_inc(x_1); -lean_ctor_set_tag(x_3, 5); -lean_ctor_set(x_3, 1, x_1); -lean_ctor_set(x_3, 0, x_2); -x_7 = l_Nat_reprFast(x_5); -x_8 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_8, 0, x_7); -x_9 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_9, 0, x_3); -lean_ctor_set(x_9, 1, x_8); -x_2 = x_9; -x_3 = x_6; -goto _start; -} -else -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_11 = lean_ctor_get(x_3, 0); -x_12 = lean_ctor_get(x_3, 1); -lean_inc(x_12); -lean_inc(x_11); -lean_dec(x_3); -lean_inc(x_1); -x_13 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_13, 0, x_2); -lean_ctor_set(x_13, 1, x_1); -x_14 = l_Nat_reprFast(x_11); -x_15 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_15, 0, x_14); -x_16 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_16, 0, x_13); -lean_ctor_set(x_16, 1, x_15); -x_2 = x_16; -x_3 = x_12; -goto _start; -} -} -} -} -LEAN_EXPORT lean_object* l_List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5_spec__5_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_3) == 0) -{ -lean_dec(x_1); -return x_2; -} -else -{ -uint8_t x_4; -x_4 = !lean_is_exclusive(x_3); -if (x_4 == 0) -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_5 = lean_ctor_get(x_3, 0); -x_6 = lean_ctor_get(x_3, 1); -lean_inc(x_1); -lean_ctor_set_tag(x_3, 5); -lean_ctor_set(x_3, 1, x_1); -lean_ctor_set(x_3, 0, x_2); -x_7 = l_Nat_reprFast(x_5); -x_8 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_8, 0, x_7); -x_9 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_9, 0, x_3); -lean_ctor_set(x_9, 1, x_8); -x_10 = l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5_spec__5_spec__5_spec__5(x_1, x_9, x_6); -return x_10; -} -else -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_11 = lean_ctor_get(x_3, 0); -x_12 = lean_ctor_get(x_3, 1); -lean_inc(x_12); -lean_inc(x_11); -lean_dec(x_3); -lean_inc(x_1); -x_13 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_13, 0, x_2); -lean_ctor_set(x_13, 1, x_1); -x_14 = l_Nat_reprFast(x_11); -x_15 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_15, 0, x_14); -x_16 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_16, 0, x_13); -lean_ctor_set(x_16, 1, x_15); -x_17 = l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5_spec__5_spec__5_spec__5(x_1, x_16, x_12); -return x_17; -} -} -} -} -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5_spec__5___lam__0(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; -x_2 = l_Nat_reprFast(x_1); -x_3 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_3, 0, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5_spec__5(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_3; -lean_dec(x_2); -x_3 = lean_box(0); -return x_3; -} -else -{ -lean_object* x_4; -x_4 = lean_ctor_get(x_1, 1); -if (lean_obj_tag(x_4) == 0) -{ -lean_object* x_5; lean_object* x_6; -lean_dec(x_2); -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); -lean_dec_ref(x_1); -x_6 = l_Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5_spec__5___lam__0(x_5); -return x_6; -} -else -{ -lean_object* x_7; lean_object* x_8; lean_object* x_9; -lean_inc(x_4); -x_7 = lean_ctor_get(x_1, 0); -lean_inc(x_7); -lean_dec_ref(x_1); -x_8 = l_Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5_spec__5___lam__0(x_7); -x_9 = l_List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5_spec__5_spec__5(x_2, x_8, x_4); -return x_9; -} -} -} -} -LEAN_EXPORT lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; -x_2 = lean_array_get_size(x_1); -x_3 = lean_unsigned_to_nat(0u); -x_4 = lean_nat_dec_eq(x_2, x_3); -lean_dec(x_2); -if (x_4 == 0) -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_5 = lean_array_to_list(x_1); -x_6 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__0___closed__3; -x_7 = l_Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5_spec__5(x_5, x_6); -x_8 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__0___closed__6; -x_9 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__0___closed__7; -x_10 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_10, 1, x_7); -x_11 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__0___closed__8; -x_12 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_12, 0, x_10); -lean_ctor_set(x_12, 1, x_11); -x_13 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_13, 0, x_8); -lean_ctor_set(x_13, 1, x_12); -x_14 = l_Std_Format_fill(x_13); -return x_14; -} -else -{ -lean_object* x_15; -lean_dec_ref(x_1); -x_15 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__0___closed__10; -return x_15; -} -} -} static lean_object* _init_l_Lean_Meta_Match_instReprMatchEqns_repr___redArg___closed__0() { _start: { @@ -831,7 +641,7 @@ static lean_object* _init_l_Lean_Meta_Match_instReprMatchEqns_repr___redArg___cl _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("splitterAltNumParams", 20, 20); +x_1 = lean_mk_string_unchecked("splitterMatchInfo", 17, 17); return x_1; } } @@ -849,7 +659,7 @@ static lean_object* _init_l_Lean_Meta_Match_instReprMatchEqns_repr___redArg___cl _start: { lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(24u); +x_1 = lean_unsigned_to_nat(21u); x_2 = lean_nat_to_int(x_1); return x_2; } @@ -966,7 +776,7 @@ x_30 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_5); x_31 = l_Lean_Meta_Match_instReprMatchEqns_repr___redArg___closed__13; -x_32 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatchEqns_repr_spec__5(x_4); +x_32 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg(x_4); x_33 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_33, 0, x_31); lean_ctor_set(x_33, 1, x_32); @@ -2289,6 +2099,7 @@ return x_4; } } lean_object* initialize_Lean_Meta_Basic(uint8_t builtin); +lean_object* initialize_Lean_Meta_Match_Basic(uint8_t builtin); lean_object* initialize_Lean_Meta_Eqns(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta_Match_MatchEqsExt(uint8_t builtin) { @@ -2298,6 +2109,9 @@ _G_initialized = true; res = initialize_Lean_Meta_Basic(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_Match_Basic(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Lean_Meta_Eqns(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -2305,6 +2119,8 @@ l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__0 = _init_l_Lean_Meta lean_mark_persistent(l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__0); l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__1 = _init_l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__1(); lean_mark_persistent(l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__1); +l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__2 = _init_l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__2(); +lean_mark_persistent(l_Lean_Meta_Match_instInhabitedMatchEqns_default___closed__2); l_Lean_Meta_Match_instInhabitedMatchEqns_default = _init_l_Lean_Meta_Match_instInhabitedMatchEqns_default(); lean_mark_persistent(l_Lean_Meta_Match_instInhabitedMatchEqns_default); l_Lean_Meta_Match_instInhabitedMatchEqns = _init_l_Lean_Meta_Match_instInhabitedMatchEqns(); diff --git a/stage0/stdlib/Lean/Meta/Match/MatcherApp/Transform.c b/stage0/stdlib/Lean/Meta/Match/MatcherApp/Transform.c index aa96e8e8bf..f540bc592d 100644 --- a/stage0/stdlib/Lean/Meta/Match/MatcherApp/Transform.c +++ b/stage0/stdlib/Lean/Meta/Match/MatcherApp/Transform.c @@ -13,7 +13,6 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Lean_Meta_MatcherApp_inferMatchType_spec__5_spec__5___redArg___closed__4; lean_object* l_Lean_Meta_mkEqHEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -23,12 +22,14 @@ lean_object* l_Lean_Meta_inferArgumentTypesN(lean_object*, lean_object*, lean_ob LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Lean_Meta_MatcherApp_inferMatchType_spec__5_spec__5___redArg___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__1; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_zipWithMAux___at___00Array_zipWithMAux___at___00Lean_Meta_MatcherApp_refineThrough_spec__2_spec__2___lam__0___closed__0; +lean_object* l_Lean_Core_instMonadCoreM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__40(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__52(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__62(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__62(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_logError___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); @@ -38,13 +39,13 @@ lean_object* l_Lean_Meta_inferArgumentTypesN___boxed(lean_object*, lean_object*, LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__1; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__14___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__2___redArg(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__69___boxed(lean_object**); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_reverse___redArg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38___closed__1; @@ -55,12 +56,13 @@ uint8_t l_Lean_Exception_isInterrupt(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__37(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMatcherInfo_x3f___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__33___boxed(lean_object**); lean_object* l_Lean_Meta_lambdaTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0___closed__0; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_decLt___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__3(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_inferMatchType_spec__7_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -73,8 +75,8 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta uint8_t lean_usize_dec_eq(size_t, size_t); lean_object* l_Lean_KVMap_find(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__63(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lam__0(lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__52___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Log_0__Lean_MessageData_appendDescriptionWidgetIfNamed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__62___boxed(lean_object**); @@ -88,10 +90,11 @@ static lean_object* l_Lean_Meta_MatcherApp_addArg___lam__0___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__49(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_inferMatchType_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__47(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__47(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_instBEqMessageSeverity_beq(uint8_t, uint8_t); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38___closed__4; @@ -99,26 +102,31 @@ static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__20___closed LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__39(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_refl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__57(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MessageData_hasSyntheticSorry(lean_object*); static lean_object* l_Array_zipWithMAux___at___00Array_zipWithMAux___at___00Lean_Meta_MatcherApp_refineThrough_spec__2_spec__2___lam__0___closed__1; LEAN_EXPORT lean_object* l_Nat_foldRev___at___00Lean_Meta_MatcherApp_addArg_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget_borrowed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqMPR(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_panic___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__42___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_arrowDomainsN(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__1; lean_object* l_Lean_stringToMessageData(lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__64___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__40___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Nat_foldRev___at___00Nat_foldRev___at___00Lean_Meta_MatcherApp_addArg_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateForall___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_addArg___lam__0___closed__6; +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__68___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__41(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -129,19 +137,23 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Uns LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lam__0(lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__11(uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Expr_0__Lean_Expr_hasAnyFVar_visit___at___00Lean_Meta_MatcherApp_inferMatchType_spec__4(lean_object*, lean_object*); +lean_object* l_ReaderT_instMonad___redArg(lean_object*); static lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lam__1___closed__2; static lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__1; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__60(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__60(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__2; static lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0___lam__0___closed__2; +static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__8; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__48___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__43___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallBoundedTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_inferMatchType_spec__7_spec__7___lam__0(lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_reprFast(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_withUserNamesImpl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -149,11 +161,14 @@ static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__73___closed lean_object* l_Lean_Meta_isTypeCorrect(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__66(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_MatcherApp_refineThrough_spec__4___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__0; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__73___closed__0; size_t lean_usize_of_nat(lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_addArg_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__74(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38___closed__2; @@ -162,12 +177,12 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__15___b LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_MatcherApp_refineThrough_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; lean_object* lean_st_ref_take(lean_object*); lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FVarId_getUserName___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__3(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__3(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__55___boxed(lean_object**); lean_object* l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__33(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -179,8 +194,13 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51___b LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__59(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_instMonadEST(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__14___boxed(lean_object**); +static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__0; +lean_object* l_Array_empty(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__39___closed__1; LEAN_EXPORT lean_object* l_Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_admit(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -205,8 +225,11 @@ static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__64(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__60___boxed(lean_object**); +lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_getEquationsFor___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_instInhabitedOfMonad___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__58(lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__9___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -214,6 +237,8 @@ lean_object* l_Lean_Meta_mkAppM(lean_object*, lean_object*, lean_object*, lean_o LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___00Lean_throwError___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__2; LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___00Array_zipWithMAux___at___00Lean_Meta_MatcherApp_refineThrough_spec__2_spec__2(uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0___lam__0___closed__4; lean_object* l_Lean_Expr_replaceFVar(lean_object*, lean_object*, lean_object*); @@ -222,20 +247,22 @@ lean_object* lean_array_to_list(lean_object*); lean_object* l_Lean_Meta_mkEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__50(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MessageData_hasTag(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__48___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__48___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__14___redArg___lam__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_ofSubarray___redArg(lean_object*); static lean_object* l_Lean_Meta_MatcherApp_refineThrough___lam__1___closed__1; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__10(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_withUserNamesImpl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__28(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9___lam__2(lean_object*, lean_object*, lean_object*, uint8_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkArrowN(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__21___redArg(lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedExpr; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__2; @@ -243,6 +270,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__53(lea lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___00Lean_throwError___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_addArg___lam__0___closed__5; +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__48___closed__0; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -250,19 +278,23 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__26(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mapErrorImp___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__55(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__55(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__54___boxed(lean_object**); +static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Core_instMonadCoreM___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__3___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__3___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_warningAsError; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__61___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_addArg___lam__0___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__2(lean_object*); static lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Lean_Meta_MatcherApp_inferMatchType_spec__5_spec__5___redArg___closed__5; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_setUserName(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0___lam__0(uint8_t, uint8_t, lean_object*); @@ -271,11 +303,12 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__9(lean static lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lam__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__56(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__71(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__74___boxed(lean_object**); -lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx_x27___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_withUserNamesImpl_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__3; lean_object* l_Lean_Meta_mkAppM___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -286,53 +319,53 @@ static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed static lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Lean_Meta_MatcherApp_inferMatchType_spec__5_spec__5___redArg___closed__0; LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___00Lean_Meta_MatcherApp_refineThrough_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_addArg___lam__0___closed__0; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__31(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_borrowed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__42(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__54(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__54(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lam__1(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__2(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Expr_0__Lean_Expr_hasAnyFVar_visit___at___00Lean_Meta_MatcherApp_inferMatchType_spec__4___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9___boxed__const__1; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__57___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__14___redArg___lam__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Std_PRange_instUpwardEnumerableNat; lean_object* l_Lean_FVarId_getUserName___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Split_simpMatchTarget(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__2; lean_object* l_Lean_Meta_instantiateLambda___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__4___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__9(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgs(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_addArg_spec__2___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__69(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__2; static lean_object* l_Lean_Meta_MatcherApp_addArg___lam__0___closed__3; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__23(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__27(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0___lam__0___closed__0; LEAN_EXPORT lean_object* l___private_Init_Data_Nat_Control_0__Nat_foldRevM_loop___at___00Lean_Meta_MatcherApp_refineThrough_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); uint8_t l_Lean_instBEqFVarId_beq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(lean_object*, lean_object*); +lean_object* l_Subarray_empty(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_inferMatchType_spec__7(lean_object*, uint8_t, uint8_t, uint8_t, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__2___closed__1; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__44___boxed(lean_object**); @@ -340,12 +373,15 @@ LEAN_EXPORT lean_object* l_Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatch LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__70___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__67(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Meta_MatcherApp_refineThrough___lam__1___closed__3; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__48(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_instMonadMetaM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__48(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__73___closed__1; +lean_object* l_Lean_Meta_instMonadMetaM___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__65(lean_object*, lean_object*); @@ -364,30 +400,34 @@ static lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Met LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Lean_Meta_MatcherApp_inferMatchType_spec__5_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__64___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Lean_Meta_MatcherApp_inferMatchType_spec__5_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__67___closed__0; lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_refineThrough___lam__1___closed__2; lean_object* l_Lean_Meta_MatcherApp_toExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_MatcherApp_refineThrough_spec__4(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Array_toSubarray___redArg(lean_object*, lean_object*, lean_object*); +lean_object* lean_panic_fn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__66___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__44(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___00Array_zipWithMAux___at___00Lean_Meta_MatcherApp_refineThrough_spec__2_spec__2___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__10(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_get_match_equations_for(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Lean_Meta_MatcherApp_inferMatchType_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_append___redArg(lean_object*, lean_object*); extern lean_object* l_Lean_levelOne; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Init_Data_Nat_Control_0__Nat_foldRevM_loop___at___00Lean_Meta_MatcherApp_refineThrough_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__14___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__46(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -397,7 +437,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lea LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_addArg_spec__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__3___closed__0; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_check___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__35(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__39___closed__0; @@ -409,23 +448,25 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__30(lea LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_refineThrough_spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_MatcherApp_altNumParams(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__4(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__4(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_withUserNamesImpl_spec__1(lean_object*, size_t, size_t, lean_object*); size_t lean_usize_add(size_t, size_t); +lean_object* l_mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_get___at___00Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__9___redArg(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasFVar(lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAux(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__3___boxed(lean_object*); lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__8___closed__0; size_t lean_array_size(lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__4; lean_object* lean_st_ref_set(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Option_get___at___00Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr1(lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__61(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__61(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___00Array_zipWithMAux___at___00Lean_Meta_MatcherApp_refineThrough_spec__2_spec__2___lam__0(uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__2___closed__0; @@ -433,7 +474,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__27___b lean_object* l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs(lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__14___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__2___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_withUserNamesImpl___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx_x27___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_withUserNamesImpl_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__0; @@ -463,6 +503,7 @@ static lean_object* l_Lean_Meta_MatcherApp_addArg___lam__0___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__15(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Exception_isRuntime(lean_object*); static lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0___lam__0___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__21___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__14(uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -475,6 +516,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___redArg___lam__0( LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); static lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Lean_Meta_MatcherApp_inferMatchType_spec__5_spec__5___redArg___closed__3; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__59___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__14___redArg(uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -492,6 +534,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough_x3f___boxed(lean_o LEAN_EXPORT lean_object* l___private_Init_Data_Nat_Control_0__Nat_foldRevM_loop___at___00Lean_Meta_MatcherApp_refineThrough_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__68(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Lean_Meta_MatcherApp_inferMatchType_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Nat_Control_0__Nat_foldRevM_loop___at___00Lean_Meta_MatcherApp_refineThrough_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_addArg_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); @@ -500,11 +543,13 @@ lean_object* l_Lean_Meta_isProof(lean_object*, lean_object*, lean_object*, lean_ lean_object* l_Lean_MessageLog_add(lean_object*, lean_object*); static lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Lean_Meta_MatcherApp_inferMatchType_spec__5_spec__5___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__45(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__45(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___00Lean_Meta_MatcherApp_refineThrough_spec__2(uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__45___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__45___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___00Array_zipWithMAux___at___00Lean_Meta_MatcherApp_refineThrough_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__0(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___00Lean_throwError___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { @@ -3817,46 +3862,45 @@ x_13 = lean_apply_7(x_2, lean_box(0), x_12, x_7, x_8, x_9, x_10, lean_box(0)); return x_13; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_11; lean_object* x_12; -x_11 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__0___boxed), 11, 2); -lean_closure_set(x_11, 0, x_1); -lean_closure_set(x_11, 1, x_5); -x_12 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_2, x_3, x_4, x_11, x_6, x_7, x_8, x_9); +lean_object* x_10; lean_object* x_11; +x_10 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__0___boxed), 11, 2); +lean_closure_set(x_10, 0, x_1); +lean_closure_set(x_10, 1, x_4); +x_11 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_2, x_3, x_10, x_5, x_6, x_7, x_8); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_6 = lean_ctor_get(x_1, 1); +lean_inc(x_6); +lean_dec_ref(x_1); +x_7 = lean_ctor_get(x_2, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_2, 1); +lean_inc(x_8); +lean_dec_ref(x_2); +x_9 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__1___boxed), 9, 3); +lean_closure_set(x_9, 0, x_5); +lean_closure_set(x_9, 1, x_3); +lean_closure_set(x_9, 2, x_4); +x_10 = lean_apply_2(x_7, lean_box(0), x_9); +x_11 = lean_apply_1(x_8, lean_box(0)); +x_12 = lean_apply_4(x_6, lean_box(0), lean_box(0), x_10, x_11); return x_12; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_7 = lean_ctor_get(x_1, 1); -lean_inc(x_7); -lean_dec_ref(x_1); -x_8 = lean_ctor_get(x_2, 0); -lean_inc(x_8); -x_9 = lean_ctor_get(x_2, 1); -lean_inc(x_9); -lean_dec_ref(x_2); -x_10 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__1___boxed), 10, 4); -lean_closure_set(x_10, 0, x_6); -lean_closure_set(x_10, 1, x_3); -lean_closure_set(x_10, 2, x_4); -lean_closure_set(x_10, 3, x_5); -x_11 = lean_apply_2(x_8, lean_box(0), x_10); -x_12 = lean_apply_1(x_9, lean_box(0)); -x_13 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_11, x_12); -return x_13; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_2, x_3, x_5, x_6, x_7, x_8); -return x_9; +lean_object* x_8; +x_8 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_2, x_3, x_5, x_6, x_7); +return x_8; } } LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -3869,12 +3913,12 @@ lean_dec_ref(x_5); return x_12; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_11; -x_11 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; +lean_object* x_10; +x_10 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; } } LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__0(lean_object* x_1, lean_object* x_2) { @@ -3905,7 +3949,14 @@ lean_inc_ref(x_1); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__3(lean_object* x_1) { +_start: +{ +lean_inc_ref(x_1); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; @@ -3914,13 +3965,6 @@ x_5 = l_Lean_throwError___redArg(x_1, x_2, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__4(lean_object* x_1) { -_start: -{ -lean_inc_ref(x_1); -return x_1; -} -} LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { @@ -7760,32 +7804,30 @@ x_3 = lean_array_push(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -lean_object* x_7; uint8_t x_8; -x_7 = lean_nat_add(x_1, x_2); -x_8 = lean_nat_dec_eq(x_7, x_3); -lean_dec(x_7); -if (x_8 == 0) +uint8_t x_5; +x_5 = lean_ctor_get_uint8(x_1, sizeof(void*)*2); +if (x_5 == 0) { -lean_object* x_9; -lean_dec(x_5); -x_9 = lean_apply_2(x_4, lean_box(0), x_6); -return x_9; +lean_object* x_6; +lean_dec(x_3); +x_6 = lean_apply_2(x_2, lean_box(0), x_4); +return x_6; } else { -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -lean_dec(x_4); -x_10 = l_Lean_Meta_MatcherApp_transform___redArg___lam__38___closed__2; -x_11 = l_Lean_Meta_MatcherApp_transform___redArg___lam__38___closed__7; -x_12 = lean_array_push(x_11, x_6); -x_13 = lean_alloc_closure((void*)(l_Lean_Meta_mkAppM___boxed), 7, 2); -lean_closure_set(x_13, 0, x_10); -lean_closure_set(x_13, 1, x_12); -x_14 = lean_apply_2(x_5, lean_box(0), x_13); -return x_14; +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +lean_dec(x_2); +x_7 = l_Lean_Meta_MatcherApp_transform___redArg___lam__38___closed__2; +x_8 = l_Lean_Meta_MatcherApp_transform___redArg___lam__38___closed__7; +x_9 = lean_array_push(x_8, x_4); +x_10 = lean_alloc_closure((void*)(l_Lean_Meta_mkAppM___boxed), 7, 2); +lean_closure_set(x_10, 0, x_7); +lean_closure_set(x_10, 1, x_9); +x_11 = lean_apply_2(x_3, lean_box(0), x_10); +return x_11; } } } @@ -7921,18 +7963,17 @@ x_22 = l_Lean_Meta_forallBoundedTelescope___redArg(x_13, x_14, x_17, x_21, x_20, return x_22; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__45(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__45(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_10 = lean_array_get_size(x_1); -x_11 = lean_nat_sub(x_2, x_10); -lean_dec(x_10); -x_12 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_12, 0, x_11); -x_13 = l_Lean_Meta_forallBoundedTelescope___redArg(x_3, x_4, x_9, x_12, x_5, x_6, x_6); -x_14 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_13, x_8); -return x_14; +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_ctor_get(x_1, 1); +lean_inc(x_9); +x_10 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_10, 0, x_9); +x_11 = l_Lean_Meta_forallBoundedTelescope___redArg(x_2, x_3, x_8, x_10, x_4, x_5, x_5); +x_12 = lean_apply_4(x_6, lean_box(0), lean_box(0), x_11, x_7); +return x_12; } } LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__46(lean_object* x_1, lean_object* x_2) { @@ -7971,101 +8012,163 @@ x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__48(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__48(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_11; uint8_t x_12; -x_11 = lean_nat_add(x_1, x_2); -x_12 = lean_nat_dec_eq(x_11, x_3); -lean_dec(x_11); -if (x_12 == 0) +if (x_1 == 0) { -lean_object* x_13; lean_object* x_14; -lean_dec(x_9); -lean_dec(x_8); -x_13 = lean_apply_2(x_4, lean_box(0), x_10); -x_14 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_13, x_6); -return x_14; +lean_object* x_9; lean_object* x_10; +lean_dec(x_7); +lean_dec(x_6); +x_9 = lean_apply_2(x_2, lean_box(0), x_8); +x_10 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_9, x_4); +return x_10; } else { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -lean_dec(x_6); +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_dec(x_4); -x_15 = l_Lean_Meta_MatcherApp_transform___redArg___lam__48___closed__2; -x_16 = lean_mk_empty_array_with_capacity(x_7); -x_17 = lean_array_push(x_16, x_15); -x_18 = lean_alloc_closure((void*)(l_Lean_Meta_instantiateForall___boxed), 7, 2); -lean_closure_set(x_18, 0, x_10); -lean_closure_set(x_18, 1, x_17); -x_19 = lean_apply_2(x_8, lean_box(0), x_18); -x_20 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_19, x_9); -return x_20; +lean_dec(x_2); +x_11 = l_Lean_Meta_MatcherApp_transform___redArg___lam__48___closed__2; +x_12 = lean_mk_empty_array_with_capacity(x_5); +x_13 = lean_array_push(x_12, x_11); +x_14 = lean_alloc_closure((void*)(l_Lean_Meta_instantiateForall___boxed), 7, 2); +lean_closure_set(x_14, 0, x_8); +lean_closure_set(x_14, 1, x_13); +x_15 = lean_apply_2(x_6, lean_box(0), x_14); +x_16 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_15, x_7); +return x_16; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__47(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__0() { _start: { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_22 = lean_box(x_2); -x_23 = lean_box(x_3); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc_ref(x_11); -lean_inc(x_7); -lean_inc(x_4); +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Lean.Meta.Match.MatcherApp.Transform", 36, 36); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Lean.Meta.MatcherApp.transform", 30, 30); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("assertion violation: ys.size == splitterAltInfo.numFields\n ", 66, 66); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_1 = l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__2; +x_2 = lean_unsigned_to_nat(8u); +x_3 = lean_unsigned_to_nat(317u); +x_4 = l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__1; +x_5 = l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__0; +x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__47(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, uint8_t x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +_start: +{ +lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_22 = lean_ctor_get(x_1, 0); +x_23 = lean_array_get_size(x_20); +x_24 = lean_nat_dec_eq(x_23, x_22); +lean_dec(x_23); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +lean_dec_ref(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_25 = l_Lean_instInhabitedExpr; +x_26 = l_instInhabitedOfMonad___redArg(x_2, x_25); +x_27 = l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__3; +x_28 = l_panic___redArg(x_26, x_27); +return x_28; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_29 = lean_box(x_4); +x_30 = lean_box(x_5); +lean_inc_ref(x_2); +lean_inc_ref(x_13); +lean_inc(x_9); +lean_inc(x_6); lean_inc_ref(x_20); -x_24 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__44___boxed), 17, 15); -lean_closure_set(x_24, 0, x_1); -lean_closure_set(x_24, 1, x_20); -lean_closure_set(x_24, 2, x_22); -lean_closure_set(x_24, 3, x_23); -lean_closure_set(x_24, 4, x_4); -lean_closure_set(x_24, 5, x_21); -lean_closure_set(x_24, 6, x_5); -lean_closure_set(x_24, 7, x_6); -lean_closure_set(x_24, 8, x_7); -lean_closure_set(x_24, 9, x_8); -lean_closure_set(x_24, 10, x_9); -lean_closure_set(x_24, 11, x_10); -lean_closure_set(x_24, 12, x_11); -lean_closure_set(x_24, 13, x_12); -lean_closure_set(x_24, 14, x_13); -x_25 = lean_box(x_2); -lean_inc(x_7); -lean_inc(x_14); -lean_inc_ref(x_20); -x_26 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__45___boxed), 9, 8); -lean_closure_set(x_26, 0, x_20); -lean_closure_set(x_26, 1, x_14); -lean_closure_set(x_26, 2, x_11); -lean_closure_set(x_26, 3, x_12); -lean_closure_set(x_26, 4, x_24); -lean_closure_set(x_26, 5, x_25); -lean_closure_set(x_26, 6, x_7); -lean_closure_set(x_26, 7, x_15); -x_27 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__46), 2, 1); -lean_closure_set(x_27, 0, x_26); -lean_inc(x_4); -lean_inc_ref(x_27); -lean_inc(x_7); -x_28 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__48___boxed), 10, 9); -lean_closure_set(x_28, 0, x_14); -lean_closure_set(x_28, 1, x_13); -lean_closure_set(x_28, 2, x_16); -lean_closure_set(x_28, 3, x_17); -lean_closure_set(x_28, 4, x_7); -lean_closure_set(x_28, 5, x_27); -lean_closure_set(x_28, 6, x_18); -lean_closure_set(x_28, 7, x_4); -lean_closure_set(x_28, 8, x_27); -x_29 = lean_alloc_closure((void*)(l_Lean_Meta_instantiateForall___boxed), 7, 2); -lean_closure_set(x_29, 0, x_19); -lean_closure_set(x_29, 1, x_20); -x_30 = lean_apply_2(x_4, lean_box(0), x_29); -x_31 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_30, x_28); -return x_31; +x_31 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__44___boxed), 17, 15); +lean_closure_set(x_31, 0, x_3); +lean_closure_set(x_31, 1, x_20); +lean_closure_set(x_31, 2, x_29); +lean_closure_set(x_31, 3, x_30); +lean_closure_set(x_31, 4, x_6); +lean_closure_set(x_31, 5, x_21); +lean_closure_set(x_31, 6, x_7); +lean_closure_set(x_31, 7, x_8); +lean_closure_set(x_31, 8, x_9); +lean_closure_set(x_31, 9, x_10); +lean_closure_set(x_31, 10, x_11); +lean_closure_set(x_31, 11, x_12); +lean_closure_set(x_31, 12, x_13); +lean_closure_set(x_31, 13, x_2); +lean_closure_set(x_31, 14, x_14); +x_32 = lean_box(x_4); +lean_inc(x_9); +x_33 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__45___boxed), 8, 7); +lean_closure_set(x_33, 0, x_1); +lean_closure_set(x_33, 1, x_13); +lean_closure_set(x_33, 2, x_2); +lean_closure_set(x_33, 3, x_31); +lean_closure_set(x_33, 4, x_32); +lean_closure_set(x_33, 5, x_9); +lean_closure_set(x_33, 6, x_15); +x_34 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__46), 2, 1); +lean_closure_set(x_34, 0, x_33); +x_35 = lean_box(x_16); +lean_inc(x_6); +lean_inc_ref(x_34); +lean_inc(x_9); +x_36 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__48___boxed), 8, 7); +lean_closure_set(x_36, 0, x_35); +lean_closure_set(x_36, 1, x_17); +lean_closure_set(x_36, 2, x_9); +lean_closure_set(x_36, 3, x_34); +lean_closure_set(x_36, 4, x_18); +lean_closure_set(x_36, 5, x_6); +lean_closure_set(x_36, 6, x_34); +x_37 = lean_alloc_closure((void*)(l_Lean_Meta_instantiateForall___boxed), 7, 2); +lean_closure_set(x_37, 0, x_19); +lean_closure_set(x_37, 1, x_20); +x_38 = lean_apply_2(x_6, lean_box(0), x_37); +x_39 = lean_apply_4(x_9, lean_box(0), lean_box(0), x_38, x_36); +return x_39; +} } } LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__49(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { @@ -8113,6 +8216,113 @@ x_14 = lean_apply_4(x_8, lean_box(0), lean_box(0), x_13, x_11); return x_14; } } +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Subarray_empty(lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Array_empty(lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__1; +x_2 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__0; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__2; +x_2 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__0; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__3; +x_2 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__0; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__4; +x_2 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__0; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__5; +x_2 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__0; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__6; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("assertion violation: altInfo.numOverlaps = 0\n ", 51, 51); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_1 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__8; +x_2 = lean_unsigned_to_nat(6u); +x_3 = lean_unsigned_to_nat(315u); +x_4 = l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__1; +x_5 = l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__0; +x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); +return x_6; +} +} LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, uint8_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { _start: { @@ -8173,7 +8383,7 @@ if (x_44 == 0) { lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -8181,8 +8391,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); +lean_dec_ref(x_5); x_45 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_45, 0, x_19); x_46 = lean_apply_2(x_2, lean_box(0), x_45); @@ -8219,7 +8428,7 @@ lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_dec(x_42); lean_dec_ref(x_41); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -8227,8 +8436,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); +lean_dec_ref(x_5); x_58 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_58, 0, x_19); x_59 = lean_apply_2(x_2, lean_box(0), x_58); @@ -8266,7 +8474,7 @@ lean_dec_ref(x_52); lean_dec(x_42); lean_dec_ref(x_41); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -8274,8 +8482,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); +lean_dec_ref(x_5); x_70 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_70, 0, x_19); x_71 = lean_apply_2(x_2, lean_box(0), x_70); @@ -8315,7 +8522,7 @@ lean_dec_ref(x_52); lean_dec(x_42); lean_dec_ref(x_41); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -8323,8 +8530,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); +lean_dec_ref(x_5); x_82 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_82, 0, x_19); x_83 = lean_apply_2(x_2, lean_box(0), x_82); @@ -8366,7 +8572,7 @@ lean_dec_ref(x_52); lean_dec(x_42); lean_dec_ref(x_41); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -8374,8 +8580,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); +lean_dec_ref(x_5); x_94 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_94, 0, x_19); x_95 = lean_apply_2(x_2, lean_box(0), x_94); @@ -8396,187 +8601,256 @@ lean_free_object(x_19); x_97 = !lean_is_exclusive(x_27); if (x_97 == 0) { -lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; +lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; uint8_t x_103; uint8_t x_104; x_98 = lean_ctor_get(x_27, 2); lean_dec(x_98); x_99 = lean_ctor_get(x_27, 1); lean_dec(x_99); x_100 = lean_ctor_get(x_27, 0); lean_dec(x_100); -x_101 = lean_array_fget(x_41, x_42); -lean_dec(x_42); -lean_dec_ref(x_41); -x_102 = lean_array_fget(x_52, x_53); +x_101 = lean_array_fget(x_77, x_78); +lean_dec(x_78); +lean_dec_ref(x_77); +x_102 = lean_ctor_get(x_101, 1); +x_103 = lean_ctor_get_uint8(x_101, sizeof(void*)*2); +x_104 = lean_nat_dec_eq(x_102, x_4); +if (x_104 == 0) +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +lean_dec_ref(x_101); +lean_free_object(x_27); +lean_dec_ref(x_30); +lean_dec(x_91); +lean_dec(x_90); +lean_dec_ref(x_89); +lean_dec_ref(x_33); +lean_dec_ref(x_36); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec_ref(x_24); lean_dec(x_53); lean_dec_ref(x_52); -x_103 = lean_array_fget(x_65, x_66); +lean_dec(x_42); +lean_dec_ref(x_41); +lean_dec(x_39); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec(x_2); +x_105 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_106 = l_instInhabitedOfMonad___redArg(x_5, x_105); +x_107 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +x_108 = l_panic___redArg(x_106, x_107); +x_109 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_108); +return x_109; +} +else +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; +x_110 = lean_array_fget(x_41, x_42); +lean_dec(x_42); +lean_dec_ref(x_41); +x_111 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_112 = lean_array_fget(x_65, x_66); lean_dec(x_66); lean_dec_ref(x_65); lean_inc(x_6); lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_103); -x_104 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 6, 5); -lean_closure_set(x_104, 0, x_103); -lean_closure_set(x_104, 1, x_4); -lean_closure_set(x_104, 2, x_5); -lean_closure_set(x_104, 3, x_2); -lean_closure_set(x_104, 4, x_6); -x_105 = lean_array_fget(x_77, x_78); -lean_dec(x_78); -lean_dec_ref(x_77); -x_106 = lean_array_fget_borrowed(x_89, x_90); -x_107 = lean_box(x_8); -x_108 = lean_box(x_9); +lean_inc_ref(x_112); +x_113 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 4, 3); +lean_closure_set(x_113, 0, x_112); +lean_closure_set(x_113, 1, x_2); +lean_closure_set(x_113, 2, x_6); +x_114 = lean_array_fget_borrowed(x_89, x_90); +x_115 = lean_box(x_8); +x_116 = lean_box(x_9); +x_117 = lean_box(x_103); lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_15); lean_inc_ref(x_14); -lean_inc_ref(x_106); +lean_inc_ref(x_114); lean_inc(x_11); -x_109 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); -lean_closure_set(x_109, 0, x_7); -lean_closure_set(x_109, 1, x_107); -lean_closure_set(x_109, 2, x_108); -lean_closure_set(x_109, 3, x_6); -lean_closure_set(x_109, 4, x_10); -lean_closure_set(x_109, 5, x_16); -lean_closure_set(x_109, 6, x_11); -lean_closure_set(x_109, 7, x_106); -lean_closure_set(x_109, 8, x_12); -lean_closure_set(x_109, 9, x_13); -lean_closure_set(x_109, 10, x_14); -lean_closure_set(x_109, 11, x_15); -lean_closure_set(x_109, 12, x_4); -lean_closure_set(x_109, 13, x_103); -lean_closure_set(x_109, 14, x_104); -lean_closure_set(x_109, 15, x_5); -lean_closure_set(x_109, 16, x_2); -lean_closure_set(x_109, 17, x_55); -lean_closure_set(x_109, 18, x_101); -x_110 = lean_nat_add(x_90, x_55); +lean_inc_ref(x_5); +x_118 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); +lean_closure_set(x_118, 0, x_112); +lean_closure_set(x_118, 1, x_5); +lean_closure_set(x_118, 2, x_7); +lean_closure_set(x_118, 3, x_115); +lean_closure_set(x_118, 4, x_116); +lean_closure_set(x_118, 5, x_6); +lean_closure_set(x_118, 6, x_10); +lean_closure_set(x_118, 7, x_16); +lean_closure_set(x_118, 8, x_11); +lean_closure_set(x_118, 9, x_114); +lean_closure_set(x_118, 10, x_12); +lean_closure_set(x_118, 11, x_13); +lean_closure_set(x_118, 12, x_14); +lean_closure_set(x_118, 13, x_15); +lean_closure_set(x_118, 14, x_113); +lean_closure_set(x_118, 15, x_117); +lean_closure_set(x_118, 16, x_2); +lean_closure_set(x_118, 17, x_55); +lean_closure_set(x_118, 18, x_110); +x_119 = lean_nat_add(x_90, x_55); lean_dec(x_90); -lean_ctor_set(x_27, 1, x_110); +lean_ctor_set(x_27, 1, x_119); lean_inc(x_11); -x_111 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); -lean_closure_set(x_111, 0, x_39); -lean_closure_set(x_111, 1, x_24); -lean_closure_set(x_111, 2, x_36); -lean_closure_set(x_111, 3, x_33); -lean_closure_set(x_111, 4, x_30); -lean_closure_set(x_111, 5, x_27); -lean_closure_set(x_111, 6, x_2); -lean_closure_set(x_111, 7, x_11); -x_112 = lean_nat_sub(x_105, x_4); -lean_dec(x_4); -lean_dec(x_105); -x_113 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_15, x_14, x_102, x_112, x_5, x_109); -x_114 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_113, x_111); -x_115 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_114); -return x_115; +x_120 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); +lean_closure_set(x_120, 0, x_39); +lean_closure_set(x_120, 1, x_24); +lean_closure_set(x_120, 2, x_36); +lean_closure_set(x_120, 3, x_33); +lean_closure_set(x_120, 4, x_30); +lean_closure_set(x_120, 5, x_27); +lean_closure_set(x_120, 6, x_2); +lean_closure_set(x_120, 7, x_11); +x_121 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_5, x_14, x_111, x_101, x_118); +x_122 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_121, x_120); +x_123 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_122); +return x_123; +} } else { -lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; +lean_object* x_124; lean_object* x_125; uint8_t x_126; uint8_t x_127; lean_dec(x_27); -x_116 = lean_array_fget(x_41, x_42); -lean_dec(x_42); -lean_dec_ref(x_41); -x_117 = lean_array_fget(x_52, x_53); +x_124 = lean_array_fget(x_77, x_78); +lean_dec(x_78); +lean_dec_ref(x_77); +x_125 = lean_ctor_get(x_124, 1); +x_126 = lean_ctor_get_uint8(x_124, sizeof(void*)*2); +x_127 = lean_nat_dec_eq(x_125, x_4); +if (x_127 == 0) +{ +lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; +lean_dec_ref(x_124); +lean_dec_ref(x_30); +lean_dec(x_91); +lean_dec(x_90); +lean_dec_ref(x_89); +lean_dec_ref(x_33); +lean_dec_ref(x_36); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec_ref(x_24); lean_dec(x_53); lean_dec_ref(x_52); -x_118 = lean_array_fget(x_65, x_66); +lean_dec(x_42); +lean_dec_ref(x_41); +lean_dec(x_39); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec(x_2); +x_128 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_129 = l_instInhabitedOfMonad___redArg(x_5, x_128); +x_130 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +x_131 = l_panic___redArg(x_129, x_130); +x_132 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_131); +return x_132; +} +else +{ +lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; +x_133 = lean_array_fget(x_41, x_42); +lean_dec(x_42); +lean_dec_ref(x_41); +x_134 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_135 = lean_array_fget(x_65, x_66); lean_dec(x_66); lean_dec_ref(x_65); lean_inc(x_6); lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_118); -x_119 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 6, 5); -lean_closure_set(x_119, 0, x_118); -lean_closure_set(x_119, 1, x_4); -lean_closure_set(x_119, 2, x_5); -lean_closure_set(x_119, 3, x_2); -lean_closure_set(x_119, 4, x_6); -x_120 = lean_array_fget(x_77, x_78); -lean_dec(x_78); -lean_dec_ref(x_77); -x_121 = lean_array_fget_borrowed(x_89, x_90); -x_122 = lean_box(x_8); -x_123 = lean_box(x_9); +lean_inc_ref(x_135); +x_136 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 4, 3); +lean_closure_set(x_136, 0, x_135); +lean_closure_set(x_136, 1, x_2); +lean_closure_set(x_136, 2, x_6); +x_137 = lean_array_fget_borrowed(x_89, x_90); +x_138 = lean_box(x_8); +x_139 = lean_box(x_9); +x_140 = lean_box(x_126); lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_15); lean_inc_ref(x_14); -lean_inc_ref(x_121); +lean_inc_ref(x_137); lean_inc(x_11); -x_124 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); -lean_closure_set(x_124, 0, x_7); -lean_closure_set(x_124, 1, x_122); -lean_closure_set(x_124, 2, x_123); -lean_closure_set(x_124, 3, x_6); -lean_closure_set(x_124, 4, x_10); -lean_closure_set(x_124, 5, x_16); -lean_closure_set(x_124, 6, x_11); -lean_closure_set(x_124, 7, x_121); -lean_closure_set(x_124, 8, x_12); -lean_closure_set(x_124, 9, x_13); -lean_closure_set(x_124, 10, x_14); -lean_closure_set(x_124, 11, x_15); -lean_closure_set(x_124, 12, x_4); -lean_closure_set(x_124, 13, x_118); -lean_closure_set(x_124, 14, x_119); -lean_closure_set(x_124, 15, x_5); -lean_closure_set(x_124, 16, x_2); -lean_closure_set(x_124, 17, x_55); -lean_closure_set(x_124, 18, x_116); -x_125 = lean_nat_add(x_90, x_55); +lean_inc_ref(x_5); +x_141 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); +lean_closure_set(x_141, 0, x_135); +lean_closure_set(x_141, 1, x_5); +lean_closure_set(x_141, 2, x_7); +lean_closure_set(x_141, 3, x_138); +lean_closure_set(x_141, 4, x_139); +lean_closure_set(x_141, 5, x_6); +lean_closure_set(x_141, 6, x_10); +lean_closure_set(x_141, 7, x_16); +lean_closure_set(x_141, 8, x_11); +lean_closure_set(x_141, 9, x_137); +lean_closure_set(x_141, 10, x_12); +lean_closure_set(x_141, 11, x_13); +lean_closure_set(x_141, 12, x_14); +lean_closure_set(x_141, 13, x_15); +lean_closure_set(x_141, 14, x_136); +lean_closure_set(x_141, 15, x_140); +lean_closure_set(x_141, 16, x_2); +lean_closure_set(x_141, 17, x_55); +lean_closure_set(x_141, 18, x_133); +x_142 = lean_nat_add(x_90, x_55); lean_dec(x_90); -x_126 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_126, 0, x_89); -lean_ctor_set(x_126, 1, x_125); -lean_ctor_set(x_126, 2, x_91); +x_143 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_143, 0, x_89); +lean_ctor_set(x_143, 1, x_142); +lean_ctor_set(x_143, 2, x_91); lean_inc(x_11); -x_127 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); -lean_closure_set(x_127, 0, x_39); -lean_closure_set(x_127, 1, x_24); -lean_closure_set(x_127, 2, x_36); -lean_closure_set(x_127, 3, x_33); -lean_closure_set(x_127, 4, x_30); -lean_closure_set(x_127, 5, x_126); -lean_closure_set(x_127, 6, x_2); -lean_closure_set(x_127, 7, x_11); -x_128 = lean_nat_sub(x_120, x_4); -lean_dec(x_4); -lean_dec(x_120); -x_129 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_15, x_14, x_117, x_128, x_5, x_124); -x_130 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_129, x_127); -x_131 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_130); -return x_131; +x_144 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); +lean_closure_set(x_144, 0, x_39); +lean_closure_set(x_144, 1, x_24); +lean_closure_set(x_144, 2, x_36); +lean_closure_set(x_144, 3, x_33); +lean_closure_set(x_144, 4, x_30); +lean_closure_set(x_144, 5, x_143); +lean_closure_set(x_144, 6, x_2); +lean_closure_set(x_144, 7, x_11); +x_145 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_5, x_14, x_134, x_124, x_141); +x_146 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_145, x_144); +x_147 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_146); +return x_147; +} } } } else { -lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; uint8_t x_137; +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_dec(x_30); -x_132 = lean_ctor_get(x_27, 0); -x_133 = lean_ctor_get(x_27, 1); -x_134 = lean_ctor_get(x_27, 2); -x_135 = lean_nat_add(x_78, x_55); +x_148 = lean_ctor_get(x_27, 0); +x_149 = lean_ctor_get(x_27, 1); +x_150 = lean_ctor_get(x_27, 2); +x_151 = lean_nat_add(x_78, x_55); lean_inc_ref(x_77); -x_136 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_136, 0, x_77); -lean_ctor_set(x_136, 1, x_135); -lean_ctor_set(x_136, 2, x_79); -x_137 = lean_nat_dec_lt(x_133, x_134); -if (x_137 == 0) +x_152 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_152, 0, x_77); +lean_ctor_set(x_152, 1, x_151); +lean_ctor_set(x_152, 2, x_79); +x_153 = lean_nat_dec_lt(x_149, x_150); +if (x_153 == 0) { -lean_object* x_138; lean_object* x_139; lean_object* x_140; +lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_dec(x_78); lean_dec_ref(x_77); lean_dec(x_66); @@ -8586,7 +8860,7 @@ lean_dec_ref(x_52); lean_dec(x_42); lean_dec_ref(x_41); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -8594,21 +8868,20 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_ctor_set(x_20, 0, x_136); -x_138 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_138, 0, x_19); -x_139 = lean_apply_2(x_2, lean_box(0), x_138); -x_140 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_139); -return x_140; +lean_dec_ref(x_5); +lean_ctor_set(x_20, 0, x_152); +x_154 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_154, 0, x_19); +x_155 = lean_apply_2(x_2, lean_box(0), x_154); +x_156 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_155); +return x_156; } else { -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -lean_inc(x_134); -lean_inc(x_133); -lean_inc_ref(x_132); +lean_object* x_157; lean_object* x_158; lean_object* x_159; uint8_t x_160; uint8_t x_161; +lean_inc(x_150); +lean_inc(x_149); +lean_inc_ref(x_148); lean_free_object(x_23); lean_free_object(x_22); lean_free_object(x_21); @@ -8618,120 +8891,38 @@ if (lean_is_exclusive(x_27)) { lean_ctor_release(x_27, 0); lean_ctor_release(x_27, 1); lean_ctor_release(x_27, 2); - x_141 = x_27; + x_157 = x_27; } else { lean_dec_ref(x_27); - x_141 = lean_box(0); + x_157 = lean_box(0); } -x_142 = lean_array_fget(x_41, x_42); -lean_dec(x_42); -lean_dec_ref(x_41); -x_143 = lean_array_fget(x_52, x_53); -lean_dec(x_53); -lean_dec_ref(x_52); -x_144 = lean_array_fget(x_65, x_66); -lean_dec(x_66); -lean_dec_ref(x_65); -lean_inc(x_6); -lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_144); -x_145 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 6, 5); -lean_closure_set(x_145, 0, x_144); -lean_closure_set(x_145, 1, x_4); -lean_closure_set(x_145, 2, x_5); -lean_closure_set(x_145, 3, x_2); -lean_closure_set(x_145, 4, x_6); -x_146 = lean_array_fget(x_77, x_78); +x_158 = lean_array_fget(x_77, x_78); lean_dec(x_78); lean_dec_ref(x_77); -x_147 = lean_array_fget_borrowed(x_132, x_133); -x_148 = lean_box(x_8); -x_149 = lean_box(x_9); -lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_15); -lean_inc_ref(x_14); -lean_inc_ref(x_147); -lean_inc(x_11); -x_150 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); -lean_closure_set(x_150, 0, x_7); -lean_closure_set(x_150, 1, x_148); -lean_closure_set(x_150, 2, x_149); -lean_closure_set(x_150, 3, x_6); -lean_closure_set(x_150, 4, x_10); -lean_closure_set(x_150, 5, x_16); -lean_closure_set(x_150, 6, x_11); -lean_closure_set(x_150, 7, x_147); -lean_closure_set(x_150, 8, x_12); -lean_closure_set(x_150, 9, x_13); -lean_closure_set(x_150, 10, x_14); -lean_closure_set(x_150, 11, x_15); -lean_closure_set(x_150, 12, x_4); -lean_closure_set(x_150, 13, x_144); -lean_closure_set(x_150, 14, x_145); -lean_closure_set(x_150, 15, x_5); -lean_closure_set(x_150, 16, x_2); -lean_closure_set(x_150, 17, x_55); -lean_closure_set(x_150, 18, x_142); -x_151 = lean_nat_add(x_133, x_55); -lean_dec(x_133); -if (lean_is_scalar(x_141)) { - x_152 = lean_alloc_ctor(0, 3, 0); -} else { - x_152 = x_141; -} -lean_ctor_set(x_152, 0, x_132); -lean_ctor_set(x_152, 1, x_151); -lean_ctor_set(x_152, 2, x_134); -lean_inc(x_11); -x_153 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); -lean_closure_set(x_153, 0, x_39); -lean_closure_set(x_153, 1, x_24); -lean_closure_set(x_153, 2, x_36); -lean_closure_set(x_153, 3, x_33); -lean_closure_set(x_153, 4, x_136); -lean_closure_set(x_153, 5, x_152); -lean_closure_set(x_153, 6, x_2); -lean_closure_set(x_153, 7, x_11); -x_154 = lean_nat_sub(x_146, x_4); -lean_dec(x_4); -lean_dec(x_146); -x_155 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_15, x_14, x_143, x_154, x_5, x_150); -x_156 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_155, x_153); -x_157 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_156); -return x_157; -} -} -} -} -else +x_159 = lean_ctor_get(x_158, 1); +x_160 = lean_ctor_get_uint8(x_158, sizeof(void*)*2); +x_161 = lean_nat_dec_eq(x_159, x_4); +if (x_161 == 0) { -lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; -lean_dec(x_33); -x_158 = lean_ctor_get(x_30, 0); -x_159 = lean_ctor_get(x_30, 1); -x_160 = lean_ctor_get(x_30, 2); -x_161 = lean_nat_add(x_66, x_55); -lean_inc_ref(x_65); -x_162 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_162, 0, x_65); -lean_ctor_set(x_162, 1, x_161); -lean_ctor_set(x_162, 2, x_67); -x_163 = lean_nat_dec_lt(x_159, x_160); -if (x_163 == 0) -{ -lean_object* x_164; lean_object* x_165; lean_object* x_166; +lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; +lean_dec_ref(x_158); +lean_dec(x_157); +lean_dec_ref(x_152); +lean_dec(x_150); +lean_dec(x_149); +lean_dec_ref(x_148); +lean_dec_ref(x_33); +lean_dec_ref(x_36); lean_dec(x_66); lean_dec_ref(x_65); +lean_dec_ref(x_24); lean_dec(x_53); lean_dec_ref(x_52); lean_dec(x_42); lean_dec_ref(x_41); +lean_dec(x_39); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -8739,49 +8930,108 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_ctor_set(x_21, 0, x_162); -x_164 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_164, 0, x_19); -x_165 = lean_apply_2(x_2, lean_box(0), x_164); +lean_dec(x_2); +x_162 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_163 = l_instInhabitedOfMonad___redArg(x_5, x_162); +x_164 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +x_165 = l_panic___redArg(x_163, x_164); x_166 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_165); return x_166; } else { -lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; uint8_t x_173; -lean_inc(x_160); -lean_inc(x_159); -lean_inc_ref(x_158); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - lean_ctor_release(x_30, 1); - lean_ctor_release(x_30, 2); - x_167 = x_30; +lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; +x_167 = lean_array_fget(x_41, x_42); +lean_dec(x_42); +lean_dec_ref(x_41); +x_168 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_169 = lean_array_fget(x_65, x_66); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_inc(x_6); +lean_inc(x_2); +lean_inc_ref(x_169); +x_170 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 4, 3); +lean_closure_set(x_170, 0, x_169); +lean_closure_set(x_170, 1, x_2); +lean_closure_set(x_170, 2, x_6); +x_171 = lean_array_fget_borrowed(x_148, x_149); +x_172 = lean_box(x_8); +x_173 = lean_box(x_9); +x_174 = lean_box(x_160); +lean_inc(x_2); +lean_inc_ref(x_14); +lean_inc_ref(x_171); +lean_inc(x_11); +lean_inc_ref(x_5); +x_175 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); +lean_closure_set(x_175, 0, x_169); +lean_closure_set(x_175, 1, x_5); +lean_closure_set(x_175, 2, x_7); +lean_closure_set(x_175, 3, x_172); +lean_closure_set(x_175, 4, x_173); +lean_closure_set(x_175, 5, x_6); +lean_closure_set(x_175, 6, x_10); +lean_closure_set(x_175, 7, x_16); +lean_closure_set(x_175, 8, x_11); +lean_closure_set(x_175, 9, x_171); +lean_closure_set(x_175, 10, x_12); +lean_closure_set(x_175, 11, x_13); +lean_closure_set(x_175, 12, x_14); +lean_closure_set(x_175, 13, x_15); +lean_closure_set(x_175, 14, x_170); +lean_closure_set(x_175, 15, x_174); +lean_closure_set(x_175, 16, x_2); +lean_closure_set(x_175, 17, x_55); +lean_closure_set(x_175, 18, x_167); +x_176 = lean_nat_add(x_149, x_55); +lean_dec(x_149); +if (lean_is_scalar(x_157)) { + x_177 = lean_alloc_ctor(0, 3, 0); } else { - lean_dec_ref(x_30); - x_167 = lean_box(0); + x_177 = x_157; } -x_168 = lean_ctor_get(x_27, 0); -x_169 = lean_ctor_get(x_27, 1); -x_170 = lean_ctor_get(x_27, 2); -x_171 = lean_nat_add(x_159, x_55); -lean_inc_ref(x_158); -if (lean_is_scalar(x_167)) { - x_172 = lean_alloc_ctor(0, 3, 0); -} else { - x_172 = x_167; +lean_ctor_set(x_177, 0, x_148); +lean_ctor_set(x_177, 1, x_176); +lean_ctor_set(x_177, 2, x_150); +lean_inc(x_11); +x_178 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); +lean_closure_set(x_178, 0, x_39); +lean_closure_set(x_178, 1, x_24); +lean_closure_set(x_178, 2, x_36); +lean_closure_set(x_178, 3, x_33); +lean_closure_set(x_178, 4, x_152); +lean_closure_set(x_178, 5, x_177); +lean_closure_set(x_178, 6, x_2); +lean_closure_set(x_178, 7, x_11); +x_179 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_5, x_14, x_168, x_158, x_175); +x_180 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_179, x_178); +x_181 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_180); +return x_181; } -lean_ctor_set(x_172, 0, x_158); -lean_ctor_set(x_172, 1, x_171); -lean_ctor_set(x_172, 2, x_160); -x_173 = lean_nat_dec_lt(x_169, x_170); -if (x_173 == 0) +} +} +} +} +else { -lean_object* x_174; lean_object* x_175; lean_object* x_176; -lean_dec(x_159); -lean_dec_ref(x_158); +lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; uint8_t x_187; +lean_dec(x_33); +x_182 = lean_ctor_get(x_30, 0); +x_183 = lean_ctor_get(x_30, 1); +x_184 = lean_ctor_get(x_30, 2); +x_185 = lean_nat_add(x_66, x_55); +lean_inc_ref(x_65); +x_186 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_186, 0, x_65); +lean_ctor_set(x_186, 1, x_185); +lean_ctor_set(x_186, 2, x_67); +x_187 = lean_nat_dec_lt(x_183, x_184); +if (x_187 == 0) +{ +lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_dec(x_66); lean_dec_ref(x_65); lean_dec(x_53); @@ -8789,7 +9039,7 @@ lean_dec_ref(x_52); lean_dec(x_42); lean_dec_ref(x_41); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -8797,22 +9047,78 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_ctor_set(x_21, 0, x_162); -lean_ctor_set(x_20, 0, x_172); -x_174 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_174, 0, x_19); -x_175 = lean_apply_2(x_2, lean_box(0), x_174); -x_176 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_175); -return x_176; +lean_dec_ref(x_5); +lean_ctor_set(x_21, 0, x_186); +x_188 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_188, 0, x_19); +x_189 = lean_apply_2(x_2, lean_box(0), x_188); +x_190 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_189); +return x_190; } else { -lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; -lean_inc(x_170); -lean_inc(x_169); -lean_inc_ref(x_168); +lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; uint8_t x_197; +lean_inc(x_184); +lean_inc(x_183); +lean_inc_ref(x_182); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_191 = x_30; +} else { + lean_dec_ref(x_30); + x_191 = lean_box(0); +} +x_192 = lean_ctor_get(x_27, 0); +x_193 = lean_ctor_get(x_27, 1); +x_194 = lean_ctor_get(x_27, 2); +x_195 = lean_nat_add(x_183, x_55); +lean_inc_ref(x_182); +if (lean_is_scalar(x_191)) { + x_196 = lean_alloc_ctor(0, 3, 0); +} else { + x_196 = x_191; +} +lean_ctor_set(x_196, 0, x_182); +lean_ctor_set(x_196, 1, x_195); +lean_ctor_set(x_196, 2, x_184); +x_197 = lean_nat_dec_lt(x_193, x_194); +if (x_197 == 0) +{ +lean_object* x_198; lean_object* x_199; lean_object* x_200; +lean_dec(x_183); +lean_dec_ref(x_182); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_42); +lean_dec_ref(x_41); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_ctor_set(x_21, 0, x_186); +lean_ctor_set(x_20, 0, x_196); +x_198 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_198, 0, x_19); +x_199 = lean_apply_2(x_2, lean_box(0), x_198); +x_200 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_199); +return x_200; +} +else +{ +lean_object* x_201; lean_object* x_202; lean_object* x_203; uint8_t x_204; uint8_t x_205; +lean_inc(x_194); +lean_inc(x_193); +lean_inc_ref(x_192); lean_free_object(x_23); lean_free_object(x_22); lean_free_object(x_21); @@ -8822,91 +9128,126 @@ if (lean_is_exclusive(x_27)) { lean_ctor_release(x_27, 0); lean_ctor_release(x_27, 1); lean_ctor_release(x_27, 2); - x_177 = x_27; + x_201 = x_27; } else { lean_dec_ref(x_27); - x_177 = lean_box(0); + x_201 = lean_box(0); } -x_178 = lean_array_fget(x_41, x_42); -lean_dec(x_42); -lean_dec_ref(x_41); -x_179 = lean_array_fget(x_52, x_53); +x_202 = lean_array_fget(x_182, x_183); +lean_dec(x_183); +lean_dec_ref(x_182); +x_203 = lean_ctor_get(x_202, 1); +x_204 = lean_ctor_get_uint8(x_202, sizeof(void*)*2); +x_205 = lean_nat_dec_eq(x_203, x_4); +if (x_205 == 0) +{ +lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +lean_dec_ref(x_202); +lean_dec(x_201); +lean_dec_ref(x_196); +lean_dec(x_194); +lean_dec(x_193); +lean_dec_ref(x_192); +lean_dec_ref(x_186); +lean_dec_ref(x_36); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec_ref(x_24); lean_dec(x_53); lean_dec_ref(x_52); -x_180 = lean_array_fget(x_65, x_66); +lean_dec(x_42); +lean_dec_ref(x_41); +lean_dec(x_39); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec(x_2); +x_206 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_207 = l_instInhabitedOfMonad___redArg(x_5, x_206); +x_208 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +x_209 = l_panic___redArg(x_207, x_208); +x_210 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_209); +return x_210; +} +else +{ +lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; +x_211 = lean_array_fget(x_41, x_42); +lean_dec(x_42); +lean_dec_ref(x_41); +x_212 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_213 = lean_array_fget(x_65, x_66); lean_dec(x_66); lean_dec_ref(x_65); lean_inc(x_6); lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_180); -x_181 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 6, 5); -lean_closure_set(x_181, 0, x_180); -lean_closure_set(x_181, 1, x_4); -lean_closure_set(x_181, 2, x_5); -lean_closure_set(x_181, 3, x_2); -lean_closure_set(x_181, 4, x_6); -x_182 = lean_array_fget(x_158, x_159); -lean_dec(x_159); -lean_dec_ref(x_158); -x_183 = lean_array_fget_borrowed(x_168, x_169); -x_184 = lean_box(x_8); -x_185 = lean_box(x_9); +lean_inc_ref(x_213); +x_214 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 4, 3); +lean_closure_set(x_214, 0, x_213); +lean_closure_set(x_214, 1, x_2); +lean_closure_set(x_214, 2, x_6); +x_215 = lean_array_fget_borrowed(x_192, x_193); +x_216 = lean_box(x_8); +x_217 = lean_box(x_9); +x_218 = lean_box(x_204); lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_15); lean_inc_ref(x_14); -lean_inc_ref(x_183); +lean_inc_ref(x_215); lean_inc(x_11); -x_186 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); -lean_closure_set(x_186, 0, x_7); -lean_closure_set(x_186, 1, x_184); -lean_closure_set(x_186, 2, x_185); -lean_closure_set(x_186, 3, x_6); -lean_closure_set(x_186, 4, x_10); -lean_closure_set(x_186, 5, x_16); -lean_closure_set(x_186, 6, x_11); -lean_closure_set(x_186, 7, x_183); -lean_closure_set(x_186, 8, x_12); -lean_closure_set(x_186, 9, x_13); -lean_closure_set(x_186, 10, x_14); -lean_closure_set(x_186, 11, x_15); -lean_closure_set(x_186, 12, x_4); -lean_closure_set(x_186, 13, x_180); -lean_closure_set(x_186, 14, x_181); -lean_closure_set(x_186, 15, x_5); -lean_closure_set(x_186, 16, x_2); -lean_closure_set(x_186, 17, x_55); -lean_closure_set(x_186, 18, x_178); -x_187 = lean_nat_add(x_169, x_55); -lean_dec(x_169); -if (lean_is_scalar(x_177)) { - x_188 = lean_alloc_ctor(0, 3, 0); +lean_inc_ref(x_5); +x_219 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); +lean_closure_set(x_219, 0, x_213); +lean_closure_set(x_219, 1, x_5); +lean_closure_set(x_219, 2, x_7); +lean_closure_set(x_219, 3, x_216); +lean_closure_set(x_219, 4, x_217); +lean_closure_set(x_219, 5, x_6); +lean_closure_set(x_219, 6, x_10); +lean_closure_set(x_219, 7, x_16); +lean_closure_set(x_219, 8, x_11); +lean_closure_set(x_219, 9, x_215); +lean_closure_set(x_219, 10, x_12); +lean_closure_set(x_219, 11, x_13); +lean_closure_set(x_219, 12, x_14); +lean_closure_set(x_219, 13, x_15); +lean_closure_set(x_219, 14, x_214); +lean_closure_set(x_219, 15, x_218); +lean_closure_set(x_219, 16, x_2); +lean_closure_set(x_219, 17, x_55); +lean_closure_set(x_219, 18, x_211); +x_220 = lean_nat_add(x_193, x_55); +lean_dec(x_193); +if (lean_is_scalar(x_201)) { + x_221 = lean_alloc_ctor(0, 3, 0); } else { - x_188 = x_177; + x_221 = x_201; } -lean_ctor_set(x_188, 0, x_168); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set(x_188, 2, x_170); +lean_ctor_set(x_221, 0, x_192); +lean_ctor_set(x_221, 1, x_220); +lean_ctor_set(x_221, 2, x_194); lean_inc(x_11); -x_189 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); -lean_closure_set(x_189, 0, x_39); -lean_closure_set(x_189, 1, x_24); -lean_closure_set(x_189, 2, x_36); -lean_closure_set(x_189, 3, x_162); -lean_closure_set(x_189, 4, x_172); -lean_closure_set(x_189, 5, x_188); -lean_closure_set(x_189, 6, x_2); -lean_closure_set(x_189, 7, x_11); -x_190 = lean_nat_sub(x_182, x_4); -lean_dec(x_4); -lean_dec(x_182); -x_191 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_15, x_14, x_179, x_190, x_5, x_186); -x_192 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_191, x_189); -x_193 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_192); -return x_193; +x_222 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); +lean_closure_set(x_222, 0, x_39); +lean_closure_set(x_222, 1, x_24); +lean_closure_set(x_222, 2, x_36); +lean_closure_set(x_222, 3, x_186); +lean_closure_set(x_222, 4, x_196); +lean_closure_set(x_222, 5, x_221); +lean_closure_set(x_222, 6, x_2); +lean_closure_set(x_222, 7, x_11); +x_223 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_5, x_14, x_212, x_202, x_219); +x_224 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_223, x_222); +x_225 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_224); +return x_225; +} } } } @@ -8914,27 +9255,27 @@ return x_193; } else { -lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; uint8_t x_199; +lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; uint8_t x_231; lean_dec(x_36); -x_194 = lean_ctor_get(x_33, 0); -x_195 = lean_ctor_get(x_33, 1); -x_196 = lean_ctor_get(x_33, 2); -x_197 = lean_nat_add(x_53, x_55); +x_226 = lean_ctor_get(x_33, 0); +x_227 = lean_ctor_get(x_33, 1); +x_228 = lean_ctor_get(x_33, 2); +x_229 = lean_nat_add(x_53, x_55); lean_inc_ref(x_52); -x_198 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_198, 0, x_52); -lean_ctor_set(x_198, 1, x_197); -lean_ctor_set(x_198, 2, x_54); -x_199 = lean_nat_dec_lt(x_195, x_196); -if (x_199 == 0) +x_230 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_230, 0, x_52); +lean_ctor_set(x_230, 1, x_229); +lean_ctor_set(x_230, 2, x_54); +x_231 = lean_nat_dec_lt(x_227, x_228); +if (x_231 == 0) { -lean_object* x_200; lean_object* x_201; lean_object* x_202; +lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_dec(x_53); lean_dec_ref(x_52); lean_dec(x_42); lean_dec_ref(x_41); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -8942,55 +9283,54 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_ctor_set(x_22, 0, x_198); -x_200 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_200, 0, x_19); -x_201 = lean_apply_2(x_2, lean_box(0), x_200); -x_202 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_201); -return x_202; +lean_dec_ref(x_5); +lean_ctor_set(x_22, 0, x_230); +x_232 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_232, 0, x_19); +x_233 = lean_apply_2(x_2, lean_box(0), x_232); +x_234 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_233); +return x_234; } else { -lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; uint8_t x_209; -lean_inc(x_196); -lean_inc(x_195); -lean_inc_ref(x_194); +lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; uint8_t x_241; +lean_inc(x_228); +lean_inc(x_227); +lean_inc_ref(x_226); if (lean_is_exclusive(x_33)) { lean_ctor_release(x_33, 0); lean_ctor_release(x_33, 1); lean_ctor_release(x_33, 2); - x_203 = x_33; + x_235 = x_33; } else { lean_dec_ref(x_33); - x_203 = lean_box(0); + x_235 = lean_box(0); } -x_204 = lean_ctor_get(x_30, 0); -x_205 = lean_ctor_get(x_30, 1); -x_206 = lean_ctor_get(x_30, 2); -x_207 = lean_nat_add(x_195, x_55); -lean_inc_ref(x_194); -if (lean_is_scalar(x_203)) { - x_208 = lean_alloc_ctor(0, 3, 0); +x_236 = lean_ctor_get(x_30, 0); +x_237 = lean_ctor_get(x_30, 1); +x_238 = lean_ctor_get(x_30, 2); +x_239 = lean_nat_add(x_227, x_55); +lean_inc_ref(x_226); +if (lean_is_scalar(x_235)) { + x_240 = lean_alloc_ctor(0, 3, 0); } else { - x_208 = x_203; + x_240 = x_235; } -lean_ctor_set(x_208, 0, x_194); -lean_ctor_set(x_208, 1, x_207); -lean_ctor_set(x_208, 2, x_196); -x_209 = lean_nat_dec_lt(x_205, x_206); -if (x_209 == 0) +lean_ctor_set(x_240, 0, x_226); +lean_ctor_set(x_240, 1, x_239); +lean_ctor_set(x_240, 2, x_228); +x_241 = lean_nat_dec_lt(x_237, x_238); +if (x_241 == 0) { -lean_object* x_210; lean_object* x_211; lean_object* x_212; -lean_dec(x_195); -lean_dec_ref(x_194); +lean_object* x_242; lean_object* x_243; lean_object* x_244; +lean_dec(x_227); +lean_dec_ref(x_226); lean_dec(x_53); lean_dec_ref(x_52); lean_dec(x_42); lean_dec_ref(x_41); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -8998,58 +9338,57 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_ctor_set(x_22, 0, x_198); -lean_ctor_set(x_21, 0, x_208); -x_210 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_210, 0, x_19); -x_211 = lean_apply_2(x_2, lean_box(0), x_210); -x_212 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_211); -return x_212; +lean_dec_ref(x_5); +lean_ctor_set(x_22, 0, x_230); +lean_ctor_set(x_21, 0, x_240); +x_242 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_242, 0, x_19); +x_243 = lean_apply_2(x_2, lean_box(0), x_242); +x_244 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_243); +return x_244; } else { -lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; uint8_t x_219; -lean_inc(x_206); -lean_inc(x_205); -lean_inc_ref(x_204); +lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; uint8_t x_251; +lean_inc(x_238); +lean_inc(x_237); +lean_inc_ref(x_236); if (lean_is_exclusive(x_30)) { lean_ctor_release(x_30, 0); lean_ctor_release(x_30, 1); lean_ctor_release(x_30, 2); - x_213 = x_30; + x_245 = x_30; } else { lean_dec_ref(x_30); - x_213 = lean_box(0); + x_245 = lean_box(0); } -x_214 = lean_ctor_get(x_27, 0); -x_215 = lean_ctor_get(x_27, 1); -x_216 = lean_ctor_get(x_27, 2); -x_217 = lean_nat_add(x_205, x_55); -lean_inc_ref(x_204); -if (lean_is_scalar(x_213)) { - x_218 = lean_alloc_ctor(0, 3, 0); +x_246 = lean_ctor_get(x_27, 0); +x_247 = lean_ctor_get(x_27, 1); +x_248 = lean_ctor_get(x_27, 2); +x_249 = lean_nat_add(x_237, x_55); +lean_inc_ref(x_236); +if (lean_is_scalar(x_245)) { + x_250 = lean_alloc_ctor(0, 3, 0); } else { - x_218 = x_213; + x_250 = x_245; } -lean_ctor_set(x_218, 0, x_204); -lean_ctor_set(x_218, 1, x_217); -lean_ctor_set(x_218, 2, x_206); -x_219 = lean_nat_dec_lt(x_215, x_216); -if (x_219 == 0) +lean_ctor_set(x_250, 0, x_236); +lean_ctor_set(x_250, 1, x_249); +lean_ctor_set(x_250, 2, x_238); +x_251 = lean_nat_dec_lt(x_247, x_248); +if (x_251 == 0) { -lean_object* x_220; lean_object* x_221; lean_object* x_222; -lean_dec(x_205); -lean_dec_ref(x_204); -lean_dec(x_195); -lean_dec_ref(x_194); +lean_object* x_252; lean_object* x_253; lean_object* x_254; +lean_dec(x_237); +lean_dec_ref(x_236); +lean_dec(x_227); +lean_dec_ref(x_226); lean_dec(x_53); lean_dec_ref(x_52); lean_dec(x_42); lean_dec_ref(x_41); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -9057,23 +9396,22 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_ctor_set(x_22, 0, x_198); -lean_ctor_set(x_21, 0, x_208); -lean_ctor_set(x_20, 0, x_218); -x_220 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_220, 0, x_19); -x_221 = lean_apply_2(x_2, lean_box(0), x_220); -x_222 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_221); -return x_222; +lean_dec_ref(x_5); +lean_ctor_set(x_22, 0, x_230); +lean_ctor_set(x_21, 0, x_240); +lean_ctor_set(x_20, 0, x_250); +x_252 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_252, 0, x_19); +x_253 = lean_apply_2(x_2, lean_box(0), x_252); +x_254 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_253); +return x_254; } else { -lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; -lean_inc(x_216); -lean_inc(x_215); -lean_inc_ref(x_214); +lean_object* x_255; lean_object* x_256; lean_object* x_257; uint8_t x_258; uint8_t x_259; +lean_inc(x_248); +lean_inc(x_247); +lean_inc_ref(x_246); lean_free_object(x_23); lean_free_object(x_22); lean_free_object(x_21); @@ -9083,315 +9421,346 @@ if (lean_is_exclusive(x_27)) { lean_ctor_release(x_27, 0); lean_ctor_release(x_27, 1); lean_ctor_release(x_27, 2); - x_223 = x_27; + x_255 = x_27; } else { lean_dec_ref(x_27); - x_223 = lean_box(0); + x_255 = lean_box(0); } -x_224 = lean_array_fget(x_41, x_42); -lean_dec(x_42); -lean_dec_ref(x_41); -x_225 = lean_array_fget(x_52, x_53); +x_256 = lean_array_fget(x_236, x_237); +lean_dec(x_237); +lean_dec_ref(x_236); +x_257 = lean_ctor_get(x_256, 1); +x_258 = lean_ctor_get_uint8(x_256, sizeof(void*)*2); +x_259 = lean_nat_dec_eq(x_257, x_4); +if (x_259 == 0) +{ +lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; +lean_dec_ref(x_256); +lean_dec(x_255); +lean_dec_ref(x_250); +lean_dec(x_248); +lean_dec(x_247); +lean_dec_ref(x_246); +lean_dec_ref(x_240); +lean_dec_ref(x_230); +lean_dec(x_227); +lean_dec_ref(x_226); +lean_dec_ref(x_24); lean_dec(x_53); lean_dec_ref(x_52); -x_226 = lean_array_fget(x_194, x_195); -lean_dec(x_195); -lean_dec_ref(x_194); +lean_dec(x_42); +lean_dec_ref(x_41); +lean_dec(x_39); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec(x_2); +x_260 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_261 = l_instInhabitedOfMonad___redArg(x_5, x_260); +x_262 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +x_263 = l_panic___redArg(x_261, x_262); +x_264 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_263); +return x_264; +} +else +{ +lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; +x_265 = lean_array_fget(x_41, x_42); +lean_dec(x_42); +lean_dec_ref(x_41); +x_266 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_267 = lean_array_fget(x_226, x_227); +lean_dec(x_227); +lean_dec_ref(x_226); lean_inc(x_6); lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_226); -x_227 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 6, 5); -lean_closure_set(x_227, 0, x_226); -lean_closure_set(x_227, 1, x_4); -lean_closure_set(x_227, 2, x_5); -lean_closure_set(x_227, 3, x_2); -lean_closure_set(x_227, 4, x_6); -x_228 = lean_array_fget(x_204, x_205); -lean_dec(x_205); -lean_dec_ref(x_204); -x_229 = lean_array_fget_borrowed(x_214, x_215); -x_230 = lean_box(x_8); -x_231 = lean_box(x_9); +lean_inc_ref(x_267); +x_268 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 4, 3); +lean_closure_set(x_268, 0, x_267); +lean_closure_set(x_268, 1, x_2); +lean_closure_set(x_268, 2, x_6); +x_269 = lean_array_fget_borrowed(x_246, x_247); +x_270 = lean_box(x_8); +x_271 = lean_box(x_9); +x_272 = lean_box(x_258); lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_15); lean_inc_ref(x_14); -lean_inc_ref(x_229); +lean_inc_ref(x_269); lean_inc(x_11); -x_232 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); -lean_closure_set(x_232, 0, x_7); -lean_closure_set(x_232, 1, x_230); -lean_closure_set(x_232, 2, x_231); -lean_closure_set(x_232, 3, x_6); -lean_closure_set(x_232, 4, x_10); -lean_closure_set(x_232, 5, x_16); -lean_closure_set(x_232, 6, x_11); -lean_closure_set(x_232, 7, x_229); -lean_closure_set(x_232, 8, x_12); -lean_closure_set(x_232, 9, x_13); -lean_closure_set(x_232, 10, x_14); -lean_closure_set(x_232, 11, x_15); -lean_closure_set(x_232, 12, x_4); -lean_closure_set(x_232, 13, x_226); -lean_closure_set(x_232, 14, x_227); -lean_closure_set(x_232, 15, x_5); -lean_closure_set(x_232, 16, x_2); -lean_closure_set(x_232, 17, x_55); -lean_closure_set(x_232, 18, x_224); -x_233 = lean_nat_add(x_215, x_55); -lean_dec(x_215); -if (lean_is_scalar(x_223)) { - x_234 = lean_alloc_ctor(0, 3, 0); -} else { - x_234 = x_223; -} -lean_ctor_set(x_234, 0, x_214); -lean_ctor_set(x_234, 1, x_233); -lean_ctor_set(x_234, 2, x_216); -lean_inc(x_11); -x_235 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); -lean_closure_set(x_235, 0, x_39); -lean_closure_set(x_235, 1, x_24); -lean_closure_set(x_235, 2, x_198); -lean_closure_set(x_235, 3, x_208); -lean_closure_set(x_235, 4, x_218); -lean_closure_set(x_235, 5, x_234); -lean_closure_set(x_235, 6, x_2); -lean_closure_set(x_235, 7, x_11); -x_236 = lean_nat_sub(x_228, x_4); -lean_dec(x_4); -lean_dec(x_228); -x_237 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_15, x_14, x_225, x_236, x_5, x_232); -x_238 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_237, x_235); -x_239 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_238); -return x_239; -} -} -} -} -} -} -else -{ -lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; uint8_t x_246; -lean_dec(x_24); -x_240 = lean_ctor_get(x_36, 0); -x_241 = lean_ctor_get(x_36, 1); -x_242 = lean_ctor_get(x_36, 2); -x_243 = lean_unsigned_to_nat(1u); -x_244 = lean_nat_add(x_42, x_243); -lean_inc_ref(x_41); -x_245 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_245, 0, x_41); -lean_ctor_set(x_245, 1, x_244); -lean_ctor_set(x_245, 2, x_43); -x_246 = lean_nat_dec_lt(x_241, x_242); -if (x_246 == 0) -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; -lean_dec(x_42); -lean_dec_ref(x_41); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_ctor_set(x_23, 0, x_245); -x_247 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_247, 0, x_19); -x_248 = lean_apply_2(x_2, lean_box(0), x_247); -x_249 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_248); -return x_249; -} -else -{ -lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint8_t x_256; -lean_inc(x_242); -lean_inc(x_241); -lean_inc_ref(x_240); -if (lean_is_exclusive(x_36)) { - lean_ctor_release(x_36, 0); - lean_ctor_release(x_36, 1); - lean_ctor_release(x_36, 2); - x_250 = x_36; -} else { - lean_dec_ref(x_36); - x_250 = lean_box(0); -} -x_251 = lean_ctor_get(x_33, 0); -x_252 = lean_ctor_get(x_33, 1); -x_253 = lean_ctor_get(x_33, 2); -x_254 = lean_nat_add(x_241, x_243); -lean_inc_ref(x_240); -if (lean_is_scalar(x_250)) { - x_255 = lean_alloc_ctor(0, 3, 0); -} else { - x_255 = x_250; -} -lean_ctor_set(x_255, 0, x_240); -lean_ctor_set(x_255, 1, x_254); -lean_ctor_set(x_255, 2, x_242); -x_256 = lean_nat_dec_lt(x_252, x_253); -if (x_256 == 0) -{ -lean_object* x_257; lean_object* x_258; lean_object* x_259; -lean_dec(x_241); -lean_dec_ref(x_240); -lean_dec(x_42); -lean_dec_ref(x_41); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_ctor_set(x_23, 0, x_245); -lean_ctor_set(x_22, 0, x_255); -x_257 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_257, 0, x_19); -x_258 = lean_apply_2(x_2, lean_box(0), x_257); -x_259 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_258); -return x_259; -} -else -{ -lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; uint8_t x_266; -lean_inc(x_253); -lean_inc(x_252); -lean_inc_ref(x_251); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - lean_ctor_release(x_33, 1); - lean_ctor_release(x_33, 2); - x_260 = x_33; -} else { - lean_dec_ref(x_33); - x_260 = lean_box(0); -} -x_261 = lean_ctor_get(x_30, 0); -x_262 = lean_ctor_get(x_30, 1); -x_263 = lean_ctor_get(x_30, 2); -x_264 = lean_nat_add(x_252, x_243); -lean_inc_ref(x_251); -if (lean_is_scalar(x_260)) { - x_265 = lean_alloc_ctor(0, 3, 0); -} else { - x_265 = x_260; -} -lean_ctor_set(x_265, 0, x_251); -lean_ctor_set(x_265, 1, x_264); -lean_ctor_set(x_265, 2, x_253); -x_266 = lean_nat_dec_lt(x_262, x_263); -if (x_266 == 0) -{ -lean_object* x_267; lean_object* x_268; lean_object* x_269; -lean_dec(x_252); -lean_dec_ref(x_251); -lean_dec(x_241); -lean_dec_ref(x_240); -lean_dec(x_42); -lean_dec_ref(x_41); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_ctor_set(x_23, 0, x_245); -lean_ctor_set(x_22, 0, x_255); -lean_ctor_set(x_21, 0, x_265); -x_267 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_267, 0, x_19); -x_268 = lean_apply_2(x_2, lean_box(0), x_267); -x_269 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_268); -return x_269; -} -else -{ -lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; uint8_t x_276; -lean_inc(x_263); -lean_inc(x_262); -lean_inc_ref(x_261); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - lean_ctor_release(x_30, 1); - lean_ctor_release(x_30, 2); - x_270 = x_30; -} else { - lean_dec_ref(x_30); - x_270 = lean_box(0); -} -x_271 = lean_ctor_get(x_27, 0); -x_272 = lean_ctor_get(x_27, 1); -x_273 = lean_ctor_get(x_27, 2); -x_274 = lean_nat_add(x_262, x_243); -lean_inc_ref(x_261); -if (lean_is_scalar(x_270)) { +lean_inc_ref(x_5); +x_273 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); +lean_closure_set(x_273, 0, x_267); +lean_closure_set(x_273, 1, x_5); +lean_closure_set(x_273, 2, x_7); +lean_closure_set(x_273, 3, x_270); +lean_closure_set(x_273, 4, x_271); +lean_closure_set(x_273, 5, x_6); +lean_closure_set(x_273, 6, x_10); +lean_closure_set(x_273, 7, x_16); +lean_closure_set(x_273, 8, x_11); +lean_closure_set(x_273, 9, x_269); +lean_closure_set(x_273, 10, x_12); +lean_closure_set(x_273, 11, x_13); +lean_closure_set(x_273, 12, x_14); +lean_closure_set(x_273, 13, x_15); +lean_closure_set(x_273, 14, x_268); +lean_closure_set(x_273, 15, x_272); +lean_closure_set(x_273, 16, x_2); +lean_closure_set(x_273, 17, x_55); +lean_closure_set(x_273, 18, x_265); +x_274 = lean_nat_add(x_247, x_55); +lean_dec(x_247); +if (lean_is_scalar(x_255)) { x_275 = lean_alloc_ctor(0, 3, 0); } else { - x_275 = x_270; + x_275 = x_255; } -lean_ctor_set(x_275, 0, x_261); +lean_ctor_set(x_275, 0, x_246); lean_ctor_set(x_275, 1, x_274); -lean_ctor_set(x_275, 2, x_263); -x_276 = lean_nat_dec_lt(x_272, x_273); -if (x_276 == 0) -{ -lean_object* x_277; lean_object* x_278; lean_object* x_279; -lean_dec(x_262); -lean_dec_ref(x_261); -lean_dec(x_252); -lean_dec_ref(x_251); -lean_dec(x_241); -lean_dec_ref(x_240); -lean_dec(x_42); -lean_dec_ref(x_41); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_ctor_set(x_23, 0, x_245); -lean_ctor_set(x_22, 0, x_255); -lean_ctor_set(x_21, 0, x_265); -lean_ctor_set(x_20, 0, x_275); -x_277 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_277, 0, x_19); -x_278 = lean_apply_2(x_2, lean_box(0), x_277); +lean_ctor_set(x_275, 2, x_248); +lean_inc(x_11); +x_276 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); +lean_closure_set(x_276, 0, x_39); +lean_closure_set(x_276, 1, x_24); +lean_closure_set(x_276, 2, x_230); +lean_closure_set(x_276, 3, x_240); +lean_closure_set(x_276, 4, x_250); +lean_closure_set(x_276, 5, x_275); +lean_closure_set(x_276, 6, x_2); +lean_closure_set(x_276, 7, x_11); +x_277 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_5, x_14, x_266, x_256, x_273); +x_278 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_277, x_276); x_279 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_278); return x_279; } +} +} +} +} +} +} else { -lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; -lean_inc(x_273); -lean_inc(x_272); -lean_inc_ref(x_271); +lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; uint8_t x_286; +lean_dec(x_24); +x_280 = lean_ctor_get(x_36, 0); +x_281 = lean_ctor_get(x_36, 1); +x_282 = lean_ctor_get(x_36, 2); +x_283 = lean_unsigned_to_nat(1u); +x_284 = lean_nat_add(x_42, x_283); +lean_inc_ref(x_41); +x_285 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_285, 0, x_41); +lean_ctor_set(x_285, 1, x_284); +lean_ctor_set(x_285, 2, x_43); +x_286 = lean_nat_dec_lt(x_281, x_282); +if (x_286 == 0) +{ +lean_object* x_287; lean_object* x_288; lean_object* x_289; +lean_dec(x_42); +lean_dec_ref(x_41); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_ctor_set(x_23, 0, x_285); +x_287 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_287, 0, x_19); +x_288 = lean_apply_2(x_2, lean_box(0), x_287); +x_289 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_288); +return x_289; +} +else +{ +lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; uint8_t x_296; +lean_inc(x_282); +lean_inc(x_281); +lean_inc_ref(x_280); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + lean_ctor_release(x_36, 1); + lean_ctor_release(x_36, 2); + x_290 = x_36; +} else { + lean_dec_ref(x_36); + x_290 = lean_box(0); +} +x_291 = lean_ctor_get(x_33, 0); +x_292 = lean_ctor_get(x_33, 1); +x_293 = lean_ctor_get(x_33, 2); +x_294 = lean_nat_add(x_281, x_283); +lean_inc_ref(x_280); +if (lean_is_scalar(x_290)) { + x_295 = lean_alloc_ctor(0, 3, 0); +} else { + x_295 = x_290; +} +lean_ctor_set(x_295, 0, x_280); +lean_ctor_set(x_295, 1, x_294); +lean_ctor_set(x_295, 2, x_282); +x_296 = lean_nat_dec_lt(x_292, x_293); +if (x_296 == 0) +{ +lean_object* x_297; lean_object* x_298; lean_object* x_299; +lean_dec(x_281); +lean_dec_ref(x_280); +lean_dec(x_42); +lean_dec_ref(x_41); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_ctor_set(x_23, 0, x_285); +lean_ctor_set(x_22, 0, x_295); +x_297 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_297, 0, x_19); +x_298 = lean_apply_2(x_2, lean_box(0), x_297); +x_299 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_298); +return x_299; +} +else +{ +lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; uint8_t x_306; +lean_inc(x_293); +lean_inc(x_292); +lean_inc_ref(x_291); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_300 = x_33; +} else { + lean_dec_ref(x_33); + x_300 = lean_box(0); +} +x_301 = lean_ctor_get(x_30, 0); +x_302 = lean_ctor_get(x_30, 1); +x_303 = lean_ctor_get(x_30, 2); +x_304 = lean_nat_add(x_292, x_283); +lean_inc_ref(x_291); +if (lean_is_scalar(x_300)) { + x_305 = lean_alloc_ctor(0, 3, 0); +} else { + x_305 = x_300; +} +lean_ctor_set(x_305, 0, x_291); +lean_ctor_set(x_305, 1, x_304); +lean_ctor_set(x_305, 2, x_293); +x_306 = lean_nat_dec_lt(x_302, x_303); +if (x_306 == 0) +{ +lean_object* x_307; lean_object* x_308; lean_object* x_309; +lean_dec(x_292); +lean_dec_ref(x_291); +lean_dec(x_281); +lean_dec_ref(x_280); +lean_dec(x_42); +lean_dec_ref(x_41); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_ctor_set(x_23, 0, x_285); +lean_ctor_set(x_22, 0, x_295); +lean_ctor_set(x_21, 0, x_305); +x_307 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_307, 0, x_19); +x_308 = lean_apply_2(x_2, lean_box(0), x_307); +x_309 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_308); +return x_309; +} +else +{ +lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; uint8_t x_316; +lean_inc(x_303); +lean_inc(x_302); +lean_inc_ref(x_301); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_310 = x_30; +} else { + lean_dec_ref(x_30); + x_310 = lean_box(0); +} +x_311 = lean_ctor_get(x_27, 0); +x_312 = lean_ctor_get(x_27, 1); +x_313 = lean_ctor_get(x_27, 2); +x_314 = lean_nat_add(x_302, x_283); +lean_inc_ref(x_301); +if (lean_is_scalar(x_310)) { + x_315 = lean_alloc_ctor(0, 3, 0); +} else { + x_315 = x_310; +} +lean_ctor_set(x_315, 0, x_301); +lean_ctor_set(x_315, 1, x_314); +lean_ctor_set(x_315, 2, x_303); +x_316 = lean_nat_dec_lt(x_312, x_313); +if (x_316 == 0) +{ +lean_object* x_317; lean_object* x_318; lean_object* x_319; +lean_dec(x_302); +lean_dec_ref(x_301); +lean_dec(x_292); +lean_dec_ref(x_291); +lean_dec(x_281); +lean_dec_ref(x_280); +lean_dec(x_42); +lean_dec_ref(x_41); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_ctor_set(x_23, 0, x_285); +lean_ctor_set(x_22, 0, x_295); +lean_ctor_set(x_21, 0, x_305); +lean_ctor_set(x_20, 0, x_315); +x_317 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_317, 0, x_19); +x_318 = lean_apply_2(x_2, lean_box(0), x_317); +x_319 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_318); +return x_319; +} +else +{ +lean_object* x_320; lean_object* x_321; lean_object* x_322; uint8_t x_323; uint8_t x_324; +lean_inc(x_313); +lean_inc(x_312); +lean_inc_ref(x_311); lean_free_object(x_23); lean_free_object(x_22); lean_free_object(x_21); @@ -9401,113 +9770,38 @@ if (lean_is_exclusive(x_27)) { lean_ctor_release(x_27, 0); lean_ctor_release(x_27, 1); lean_ctor_release(x_27, 2); - x_280 = x_27; + x_320 = x_27; } else { lean_dec_ref(x_27); - x_280 = lean_box(0); + x_320 = lean_box(0); } -x_281 = lean_array_fget(x_41, x_42); +x_321 = lean_array_fget(x_301, x_302); +lean_dec(x_302); +lean_dec_ref(x_301); +x_322 = lean_ctor_get(x_321, 1); +x_323 = lean_ctor_get_uint8(x_321, sizeof(void*)*2); +x_324 = lean_nat_dec_eq(x_322, x_4); +if (x_324 == 0) +{ +lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +lean_dec_ref(x_321); +lean_dec(x_320); +lean_dec_ref(x_315); +lean_dec(x_313); +lean_dec(x_312); +lean_dec_ref(x_311); +lean_dec_ref(x_305); +lean_dec_ref(x_295); +lean_dec(x_292); +lean_dec_ref(x_291); +lean_dec_ref(x_285); +lean_dec(x_281); +lean_dec_ref(x_280); lean_dec(x_42); lean_dec_ref(x_41); -x_282 = lean_array_fget(x_240, x_241); -lean_dec(x_241); -lean_dec_ref(x_240); -x_283 = lean_array_fget(x_251, x_252); -lean_dec(x_252); -lean_dec_ref(x_251); -lean_inc(x_6); -lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_283); -x_284 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 6, 5); -lean_closure_set(x_284, 0, x_283); -lean_closure_set(x_284, 1, x_4); -lean_closure_set(x_284, 2, x_5); -lean_closure_set(x_284, 3, x_2); -lean_closure_set(x_284, 4, x_6); -x_285 = lean_array_fget(x_261, x_262); -lean_dec(x_262); -lean_dec_ref(x_261); -x_286 = lean_array_fget_borrowed(x_271, x_272); -x_287 = lean_box(x_8); -x_288 = lean_box(x_9); -lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_15); -lean_inc_ref(x_14); -lean_inc_ref(x_286); -lean_inc(x_11); -x_289 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); -lean_closure_set(x_289, 0, x_7); -lean_closure_set(x_289, 1, x_287); -lean_closure_set(x_289, 2, x_288); -lean_closure_set(x_289, 3, x_6); -lean_closure_set(x_289, 4, x_10); -lean_closure_set(x_289, 5, x_16); -lean_closure_set(x_289, 6, x_11); -lean_closure_set(x_289, 7, x_286); -lean_closure_set(x_289, 8, x_12); -lean_closure_set(x_289, 9, x_13); -lean_closure_set(x_289, 10, x_14); -lean_closure_set(x_289, 11, x_15); -lean_closure_set(x_289, 12, x_4); -lean_closure_set(x_289, 13, x_283); -lean_closure_set(x_289, 14, x_284); -lean_closure_set(x_289, 15, x_5); -lean_closure_set(x_289, 16, x_2); -lean_closure_set(x_289, 17, x_243); -lean_closure_set(x_289, 18, x_281); -x_290 = lean_nat_add(x_272, x_243); -lean_dec(x_272); -if (lean_is_scalar(x_280)) { - x_291 = lean_alloc_ctor(0, 3, 0); -} else { - x_291 = x_280; -} -lean_ctor_set(x_291, 0, x_271); -lean_ctor_set(x_291, 1, x_290); -lean_ctor_set(x_291, 2, x_273); -lean_inc(x_11); -x_292 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); -lean_closure_set(x_292, 0, x_39); -lean_closure_set(x_292, 1, x_245); -lean_closure_set(x_292, 2, x_255); -lean_closure_set(x_292, 3, x_265); -lean_closure_set(x_292, 4, x_275); -lean_closure_set(x_292, 5, x_291); -lean_closure_set(x_292, 6, x_2); -lean_closure_set(x_292, 7, x_11); -x_293 = lean_nat_sub(x_285, x_4); -lean_dec(x_4); -lean_dec(x_285); -x_294 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_15, x_14, x_282, x_293, x_5, x_289); -x_295 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_294, x_292); -x_296 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_295); -return x_296; -} -} -} -} -} -} -} -else -{ -lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; uint8_t x_301; -x_297 = lean_ctor_get(x_23, 1); -lean_inc(x_297); -lean_dec(x_23); -x_298 = lean_ctor_get(x_24, 0); -x_299 = lean_ctor_get(x_24, 1); -x_300 = lean_ctor_get(x_24, 2); -x_301 = lean_nat_dec_lt(x_299, x_300); -if (x_301 == 0) -{ -lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; +lean_dec(x_39); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -9515,55 +9809,164 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_302 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_302, 0, x_24); -lean_ctor_set(x_302, 1, x_297); -lean_ctor_set(x_22, 1, x_302); -x_303 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_303, 0, x_19); -x_304 = lean_apply_2(x_2, lean_box(0), x_303); -x_305 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_304); -return x_305; +lean_dec(x_2); +x_325 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_326 = l_instInhabitedOfMonad___redArg(x_5, x_325); +x_327 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +x_328 = l_panic___redArg(x_326, x_327); +x_329 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_328); +return x_329; } else { -lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; uint8_t x_313; -lean_inc(x_300); -lean_inc(x_299); -lean_inc_ref(x_298); +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_array_fget(x_41, x_42); +lean_dec(x_42); +lean_dec_ref(x_41); +x_331 = lean_array_fget(x_280, x_281); +lean_dec(x_281); +lean_dec_ref(x_280); +x_332 = lean_array_fget(x_291, x_292); +lean_dec(x_292); +lean_dec_ref(x_291); +lean_inc(x_6); +lean_inc(x_2); +lean_inc_ref(x_332); +x_333 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 4, 3); +lean_closure_set(x_333, 0, x_332); +lean_closure_set(x_333, 1, x_2); +lean_closure_set(x_333, 2, x_6); +x_334 = lean_array_fget_borrowed(x_311, x_312); +x_335 = lean_box(x_8); +x_336 = lean_box(x_9); +x_337 = lean_box(x_323); +lean_inc(x_2); +lean_inc_ref(x_14); +lean_inc_ref(x_334); +lean_inc(x_11); +lean_inc_ref(x_5); +x_338 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); +lean_closure_set(x_338, 0, x_332); +lean_closure_set(x_338, 1, x_5); +lean_closure_set(x_338, 2, x_7); +lean_closure_set(x_338, 3, x_335); +lean_closure_set(x_338, 4, x_336); +lean_closure_set(x_338, 5, x_6); +lean_closure_set(x_338, 6, x_10); +lean_closure_set(x_338, 7, x_16); +lean_closure_set(x_338, 8, x_11); +lean_closure_set(x_338, 9, x_334); +lean_closure_set(x_338, 10, x_12); +lean_closure_set(x_338, 11, x_13); +lean_closure_set(x_338, 12, x_14); +lean_closure_set(x_338, 13, x_15); +lean_closure_set(x_338, 14, x_333); +lean_closure_set(x_338, 15, x_337); +lean_closure_set(x_338, 16, x_2); +lean_closure_set(x_338, 17, x_283); +lean_closure_set(x_338, 18, x_330); +x_339 = lean_nat_add(x_312, x_283); +lean_dec(x_312); +if (lean_is_scalar(x_320)) { + x_340 = lean_alloc_ctor(0, 3, 0); +} else { + x_340 = x_320; +} +lean_ctor_set(x_340, 0, x_311); +lean_ctor_set(x_340, 1, x_339); +lean_ctor_set(x_340, 2, x_313); +lean_inc(x_11); +x_341 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); +lean_closure_set(x_341, 0, x_39); +lean_closure_set(x_341, 1, x_285); +lean_closure_set(x_341, 2, x_295); +lean_closure_set(x_341, 3, x_305); +lean_closure_set(x_341, 4, x_315); +lean_closure_set(x_341, 5, x_340); +lean_closure_set(x_341, 6, x_2); +lean_closure_set(x_341, 7, x_11); +x_342 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_5, x_14, x_331, x_321, x_338); +x_343 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_342, x_341); +x_344 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_343); +return x_344; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; uint8_t x_349; +x_345 = lean_ctor_get(x_23, 1); +lean_inc(x_345); +lean_dec(x_23); +x_346 = lean_ctor_get(x_24, 0); +x_347 = lean_ctor_get(x_24, 1); +x_348 = lean_ctor_get(x_24, 2); +x_349 = lean_nat_dec_lt(x_347, x_348); +if (x_349 == 0) +{ +lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +x_350 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_350, 0, x_24); +lean_ctor_set(x_350, 1, x_345); +lean_ctor_set(x_22, 1, x_350); +x_351 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_351, 0, x_19); +x_352 = lean_apply_2(x_2, lean_box(0), x_351); +x_353 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_352); +return x_353; +} +else +{ +lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; uint8_t x_361; +lean_inc(x_348); +lean_inc(x_347); +lean_inc_ref(x_346); if (lean_is_exclusive(x_24)) { lean_ctor_release(x_24, 0); lean_ctor_release(x_24, 1); lean_ctor_release(x_24, 2); - x_306 = x_24; + x_354 = x_24; } else { lean_dec_ref(x_24); - x_306 = lean_box(0); + x_354 = lean_box(0); } -x_307 = lean_ctor_get(x_36, 0); -x_308 = lean_ctor_get(x_36, 1); -x_309 = lean_ctor_get(x_36, 2); -x_310 = lean_unsigned_to_nat(1u); -x_311 = lean_nat_add(x_299, x_310); -lean_inc_ref(x_298); -if (lean_is_scalar(x_306)) { - x_312 = lean_alloc_ctor(0, 3, 0); +x_355 = lean_ctor_get(x_36, 0); +x_356 = lean_ctor_get(x_36, 1); +x_357 = lean_ctor_get(x_36, 2); +x_358 = lean_unsigned_to_nat(1u); +x_359 = lean_nat_add(x_347, x_358); +lean_inc_ref(x_346); +if (lean_is_scalar(x_354)) { + x_360 = lean_alloc_ctor(0, 3, 0); } else { - x_312 = x_306; + x_360 = x_354; } -lean_ctor_set(x_312, 0, x_298); -lean_ctor_set(x_312, 1, x_311); -lean_ctor_set(x_312, 2, x_300); -x_313 = lean_nat_dec_lt(x_308, x_309); -if (x_313 == 0) +lean_ctor_set(x_360, 0, x_346); +lean_ctor_set(x_360, 1, x_359); +lean_ctor_set(x_360, 2, x_348); +x_361 = lean_nat_dec_lt(x_356, x_357); +if (x_361 == 0) { -lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; -lean_dec(x_299); -lean_dec_ref(x_298); +lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; +lean_dec(x_347); +lean_dec_ref(x_346); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -9571,56 +9974,55 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_314 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_314, 0, x_312); -lean_ctor_set(x_314, 1, x_297); -lean_ctor_set(x_22, 1, x_314); -x_315 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_315, 0, x_19); -x_316 = lean_apply_2(x_2, lean_box(0), x_315); -x_317 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_316); -return x_317; +lean_dec_ref(x_5); +x_362 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_362, 0, x_360); +lean_ctor_set(x_362, 1, x_345); +lean_ctor_set(x_22, 1, x_362); +x_363 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_363, 0, x_19); +x_364 = lean_apply_2(x_2, lean_box(0), x_363); +x_365 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_364); +return x_365; } else { -lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; uint8_t x_324; -lean_inc(x_309); -lean_inc(x_308); -lean_inc_ref(x_307); +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; uint8_t x_372; +lean_inc(x_357); +lean_inc(x_356); +lean_inc_ref(x_355); if (lean_is_exclusive(x_36)) { lean_ctor_release(x_36, 0); lean_ctor_release(x_36, 1); lean_ctor_release(x_36, 2); - x_318 = x_36; + x_366 = x_36; } else { lean_dec_ref(x_36); - x_318 = lean_box(0); + x_366 = lean_box(0); } -x_319 = lean_ctor_get(x_33, 0); -x_320 = lean_ctor_get(x_33, 1); -x_321 = lean_ctor_get(x_33, 2); -x_322 = lean_nat_add(x_308, x_310); -lean_inc_ref(x_307); -if (lean_is_scalar(x_318)) { - x_323 = lean_alloc_ctor(0, 3, 0); +x_367 = lean_ctor_get(x_33, 0); +x_368 = lean_ctor_get(x_33, 1); +x_369 = lean_ctor_get(x_33, 2); +x_370 = lean_nat_add(x_356, x_358); +lean_inc_ref(x_355); +if (lean_is_scalar(x_366)) { + x_371 = lean_alloc_ctor(0, 3, 0); } else { - x_323 = x_318; + x_371 = x_366; } -lean_ctor_set(x_323, 0, x_307); -lean_ctor_set(x_323, 1, x_322); -lean_ctor_set(x_323, 2, x_309); -x_324 = lean_nat_dec_lt(x_320, x_321); -if (x_324 == 0) +lean_ctor_set(x_371, 0, x_355); +lean_ctor_set(x_371, 1, x_370); +lean_ctor_set(x_371, 2, x_357); +x_372 = lean_nat_dec_lt(x_368, x_369); +if (x_372 == 0) { -lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; -lean_dec(x_308); -lean_dec_ref(x_307); -lean_dec(x_299); -lean_dec_ref(x_298); +lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; +lean_dec(x_356); +lean_dec_ref(x_355); +lean_dec(x_347); +lean_dec_ref(x_346); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -9628,59 +10030,58 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_325 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_325, 0, x_312); -lean_ctor_set(x_325, 1, x_297); -lean_ctor_set(x_22, 1, x_325); -lean_ctor_set(x_22, 0, x_323); -x_326 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_326, 0, x_19); -x_327 = lean_apply_2(x_2, lean_box(0), x_326); -x_328 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_327); -return x_328; +lean_dec_ref(x_5); +x_373 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_373, 0, x_360); +lean_ctor_set(x_373, 1, x_345); +lean_ctor_set(x_22, 1, x_373); +lean_ctor_set(x_22, 0, x_371); +x_374 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_374, 0, x_19); +x_375 = lean_apply_2(x_2, lean_box(0), x_374); +x_376 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_375); +return x_376; } else { -lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; -lean_inc(x_321); -lean_inc(x_320); -lean_inc_ref(x_319); +lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; uint8_t x_383; +lean_inc(x_369); +lean_inc(x_368); +lean_inc_ref(x_367); if (lean_is_exclusive(x_33)) { lean_ctor_release(x_33, 0); lean_ctor_release(x_33, 1); lean_ctor_release(x_33, 2); - x_329 = x_33; + x_377 = x_33; } else { lean_dec_ref(x_33); - x_329 = lean_box(0); + x_377 = lean_box(0); } -x_330 = lean_ctor_get(x_30, 0); -x_331 = lean_ctor_get(x_30, 1); -x_332 = lean_ctor_get(x_30, 2); -x_333 = lean_nat_add(x_320, x_310); -lean_inc_ref(x_319); -if (lean_is_scalar(x_329)) { - x_334 = lean_alloc_ctor(0, 3, 0); +x_378 = lean_ctor_get(x_30, 0); +x_379 = lean_ctor_get(x_30, 1); +x_380 = lean_ctor_get(x_30, 2); +x_381 = lean_nat_add(x_368, x_358); +lean_inc_ref(x_367); +if (lean_is_scalar(x_377)) { + x_382 = lean_alloc_ctor(0, 3, 0); } else { - x_334 = x_329; + x_382 = x_377; } -lean_ctor_set(x_334, 0, x_319); -lean_ctor_set(x_334, 1, x_333); -lean_ctor_set(x_334, 2, x_321); -x_335 = lean_nat_dec_lt(x_331, x_332); -if (x_335 == 0) +lean_ctor_set(x_382, 0, x_367); +lean_ctor_set(x_382, 1, x_381); +lean_ctor_set(x_382, 2, x_369); +x_383 = lean_nat_dec_lt(x_379, x_380); +if (x_383 == 0) { -lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; -lean_dec(x_320); -lean_dec_ref(x_319); -lean_dec(x_308); -lean_dec_ref(x_307); -lean_dec(x_299); -lean_dec_ref(x_298); +lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; +lean_dec(x_368); +lean_dec_ref(x_367); +lean_dec(x_356); +lean_dec_ref(x_355); +lean_dec(x_347); +lean_dec_ref(x_346); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -9688,62 +10089,61 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_312); -lean_ctor_set(x_336, 1, x_297); -lean_ctor_set(x_22, 1, x_336); -lean_ctor_set(x_22, 0, x_323); -lean_ctor_set(x_21, 0, x_334); -x_337 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_337, 0, x_19); -x_338 = lean_apply_2(x_2, lean_box(0), x_337); -x_339 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_338); -return x_339; +lean_dec_ref(x_5); +x_384 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_384, 0, x_360); +lean_ctor_set(x_384, 1, x_345); +lean_ctor_set(x_22, 1, x_384); +lean_ctor_set(x_22, 0, x_371); +lean_ctor_set(x_21, 0, x_382); +x_385 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_385, 0, x_19); +x_386 = lean_apply_2(x_2, lean_box(0), x_385); +x_387 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_386); +return x_387; } else { -lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; uint8_t x_346; -lean_inc(x_332); -lean_inc(x_331); -lean_inc_ref(x_330); +lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; uint8_t x_394; +lean_inc(x_380); +lean_inc(x_379); +lean_inc_ref(x_378); if (lean_is_exclusive(x_30)) { lean_ctor_release(x_30, 0); lean_ctor_release(x_30, 1); lean_ctor_release(x_30, 2); - x_340 = x_30; + x_388 = x_30; } else { lean_dec_ref(x_30); - x_340 = lean_box(0); + x_388 = lean_box(0); } -x_341 = lean_ctor_get(x_27, 0); -x_342 = lean_ctor_get(x_27, 1); -x_343 = lean_ctor_get(x_27, 2); -x_344 = lean_nat_add(x_331, x_310); -lean_inc_ref(x_330); -if (lean_is_scalar(x_340)) { - x_345 = lean_alloc_ctor(0, 3, 0); +x_389 = lean_ctor_get(x_27, 0); +x_390 = lean_ctor_get(x_27, 1); +x_391 = lean_ctor_get(x_27, 2); +x_392 = lean_nat_add(x_379, x_358); +lean_inc_ref(x_378); +if (lean_is_scalar(x_388)) { + x_393 = lean_alloc_ctor(0, 3, 0); } else { - x_345 = x_340; + x_393 = x_388; } -lean_ctor_set(x_345, 0, x_330); -lean_ctor_set(x_345, 1, x_344); -lean_ctor_set(x_345, 2, x_332); -x_346 = lean_nat_dec_lt(x_342, x_343); -if (x_346 == 0) +lean_ctor_set(x_393, 0, x_378); +lean_ctor_set(x_393, 1, x_392); +lean_ctor_set(x_393, 2, x_380); +x_394 = lean_nat_dec_lt(x_390, x_391); +if (x_394 == 0) { -lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; -lean_dec(x_331); -lean_dec_ref(x_330); -lean_dec(x_320); -lean_dec_ref(x_319); -lean_dec(x_308); -lean_dec_ref(x_307); -lean_dec(x_299); -lean_dec_ref(x_298); +lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; +lean_dec(x_379); +lean_dec_ref(x_378); +lean_dec(x_368); +lean_dec_ref(x_367); +lean_dec(x_356); +lean_dec_ref(x_355); +lean_dec(x_347); +lean_dec_ref(x_346); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -9751,27 +10151,26 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_347 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_347, 0, x_312); -lean_ctor_set(x_347, 1, x_297); -lean_ctor_set(x_22, 1, x_347); -lean_ctor_set(x_22, 0, x_323); -lean_ctor_set(x_21, 0, x_334); -lean_ctor_set(x_20, 0, x_345); -x_348 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_348, 0, x_19); -x_349 = lean_apply_2(x_2, lean_box(0), x_348); -x_350 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_349); -return x_350; +lean_dec_ref(x_5); +x_395 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_395, 0, x_360); +lean_ctor_set(x_395, 1, x_345); +lean_ctor_set(x_22, 1, x_395); +lean_ctor_set(x_22, 0, x_371); +lean_ctor_set(x_21, 0, x_382); +lean_ctor_set(x_20, 0, x_393); +x_396 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_396, 0, x_19); +x_397 = lean_apply_2(x_2, lean_box(0), x_396); +x_398 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_397); +return x_398; } else { -lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; -lean_inc(x_343); -lean_inc(x_342); -lean_inc_ref(x_341); +lean_object* x_399; lean_object* x_400; lean_object* x_401; uint8_t x_402; uint8_t x_403; +lean_inc(x_391); +lean_inc(x_390); +lean_inc_ref(x_389); lean_free_object(x_22); lean_free_object(x_21); lean_free_object(x_20); @@ -9780,123 +10179,38 @@ if (lean_is_exclusive(x_27)) { lean_ctor_release(x_27, 0); lean_ctor_release(x_27, 1); lean_ctor_release(x_27, 2); - x_351 = x_27; + x_399 = x_27; } else { lean_dec_ref(x_27); - x_351 = lean_box(0); + x_399 = lean_box(0); } -x_352 = lean_array_fget(x_298, x_299); -lean_dec(x_299); -lean_dec_ref(x_298); -x_353 = lean_array_fget(x_307, x_308); -lean_dec(x_308); -lean_dec_ref(x_307); -x_354 = lean_array_fget(x_319, x_320); -lean_dec(x_320); -lean_dec_ref(x_319); -lean_inc(x_6); -lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_354); -x_355 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 6, 5); -lean_closure_set(x_355, 0, x_354); -lean_closure_set(x_355, 1, x_4); -lean_closure_set(x_355, 2, x_5); -lean_closure_set(x_355, 3, x_2); -lean_closure_set(x_355, 4, x_6); -x_356 = lean_array_fget(x_330, x_331); -lean_dec(x_331); -lean_dec_ref(x_330); -x_357 = lean_array_fget_borrowed(x_341, x_342); -x_358 = lean_box(x_8); -x_359 = lean_box(x_9); -lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_15); -lean_inc_ref(x_14); -lean_inc_ref(x_357); -lean_inc(x_11); -x_360 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); -lean_closure_set(x_360, 0, x_7); -lean_closure_set(x_360, 1, x_358); -lean_closure_set(x_360, 2, x_359); -lean_closure_set(x_360, 3, x_6); -lean_closure_set(x_360, 4, x_10); -lean_closure_set(x_360, 5, x_16); -lean_closure_set(x_360, 6, x_11); -lean_closure_set(x_360, 7, x_357); -lean_closure_set(x_360, 8, x_12); -lean_closure_set(x_360, 9, x_13); -lean_closure_set(x_360, 10, x_14); -lean_closure_set(x_360, 11, x_15); -lean_closure_set(x_360, 12, x_4); -lean_closure_set(x_360, 13, x_354); -lean_closure_set(x_360, 14, x_355); -lean_closure_set(x_360, 15, x_5); -lean_closure_set(x_360, 16, x_2); -lean_closure_set(x_360, 17, x_310); -lean_closure_set(x_360, 18, x_352); -x_361 = lean_nat_add(x_342, x_310); -lean_dec(x_342); -if (lean_is_scalar(x_351)) { - x_362 = lean_alloc_ctor(0, 3, 0); -} else { - x_362 = x_351; -} -lean_ctor_set(x_362, 0, x_341); -lean_ctor_set(x_362, 1, x_361); -lean_ctor_set(x_362, 2, x_343); -lean_inc(x_11); -x_363 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); -lean_closure_set(x_363, 0, x_297); -lean_closure_set(x_363, 1, x_312); -lean_closure_set(x_363, 2, x_323); -lean_closure_set(x_363, 3, x_334); -lean_closure_set(x_363, 4, x_345); -lean_closure_set(x_363, 5, x_362); -lean_closure_set(x_363, 6, x_2); -lean_closure_set(x_363, 7, x_11); -x_364 = lean_nat_sub(x_356, x_4); -lean_dec(x_4); +x_400 = lean_array_fget(x_378, x_379); +lean_dec(x_379); +lean_dec_ref(x_378); +x_401 = lean_ctor_get(x_400, 1); +x_402 = lean_ctor_get_uint8(x_400, sizeof(void*)*2); +x_403 = lean_nat_dec_eq(x_401, x_4); +if (x_403 == 0) +{ +lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; +lean_dec_ref(x_400); +lean_dec(x_399); +lean_dec_ref(x_393); +lean_dec(x_391); +lean_dec(x_390); +lean_dec_ref(x_389); +lean_dec_ref(x_382); +lean_dec_ref(x_371); +lean_dec(x_368); +lean_dec_ref(x_367); +lean_dec_ref(x_360); lean_dec(x_356); -x_365 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_15, x_14, x_353, x_364, x_5, x_360); -x_366 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_365, x_363); -x_367 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_366); -return x_367; -} -} -} -} -} -} -} -else -{ -lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; uint8_t x_374; -x_368 = lean_ctor_get(x_22, 0); -lean_inc(x_368); -lean_dec(x_22); -x_369 = lean_ctor_get(x_23, 1); -lean_inc(x_369); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - x_370 = x_23; -} else { - lean_dec_ref(x_23); - x_370 = lean_box(0); -} -x_371 = lean_ctor_get(x_24, 0); -x_372 = lean_ctor_get(x_24, 1); -x_373 = lean_ctor_get(x_24, 2); -x_374 = lean_nat_dec_lt(x_372, x_373); -if (x_374 == 0) -{ -lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; +lean_dec_ref(x_355); +lean_dec(x_347); +lean_dec_ref(x_346); +lean_dec(x_345); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -9904,62 +10218,181 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_370)) { - x_375 = lean_alloc_ctor(0, 2, 0); -} else { - x_375 = x_370; -} -lean_ctor_set(x_375, 0, x_24); -lean_ctor_set(x_375, 1, x_369); -x_376 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_376, 0, x_368); -lean_ctor_set(x_376, 1, x_375); -lean_ctor_set(x_21, 1, x_376); -x_377 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_377, 0, x_19); -x_378 = lean_apply_2(x_2, lean_box(0), x_377); -x_379 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_378); -return x_379; +lean_dec(x_2); +x_404 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_405 = l_instInhabitedOfMonad___redArg(x_5, x_404); +x_406 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +x_407 = l_panic___redArg(x_405, x_406); +x_408 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_407); +return x_408; } else { -lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; uint8_t x_387; -lean_inc(x_373); -lean_inc(x_372); -lean_inc_ref(x_371); +lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; +x_409 = lean_array_fget(x_346, x_347); +lean_dec(x_347); +lean_dec_ref(x_346); +x_410 = lean_array_fget(x_355, x_356); +lean_dec(x_356); +lean_dec_ref(x_355); +x_411 = lean_array_fget(x_367, x_368); +lean_dec(x_368); +lean_dec_ref(x_367); +lean_inc(x_6); +lean_inc(x_2); +lean_inc_ref(x_411); +x_412 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 4, 3); +lean_closure_set(x_412, 0, x_411); +lean_closure_set(x_412, 1, x_2); +lean_closure_set(x_412, 2, x_6); +x_413 = lean_array_fget_borrowed(x_389, x_390); +x_414 = lean_box(x_8); +x_415 = lean_box(x_9); +x_416 = lean_box(x_402); +lean_inc(x_2); +lean_inc_ref(x_14); +lean_inc_ref(x_413); +lean_inc(x_11); +lean_inc_ref(x_5); +x_417 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); +lean_closure_set(x_417, 0, x_411); +lean_closure_set(x_417, 1, x_5); +lean_closure_set(x_417, 2, x_7); +lean_closure_set(x_417, 3, x_414); +lean_closure_set(x_417, 4, x_415); +lean_closure_set(x_417, 5, x_6); +lean_closure_set(x_417, 6, x_10); +lean_closure_set(x_417, 7, x_16); +lean_closure_set(x_417, 8, x_11); +lean_closure_set(x_417, 9, x_413); +lean_closure_set(x_417, 10, x_12); +lean_closure_set(x_417, 11, x_13); +lean_closure_set(x_417, 12, x_14); +lean_closure_set(x_417, 13, x_15); +lean_closure_set(x_417, 14, x_412); +lean_closure_set(x_417, 15, x_416); +lean_closure_set(x_417, 16, x_2); +lean_closure_set(x_417, 17, x_358); +lean_closure_set(x_417, 18, x_409); +x_418 = lean_nat_add(x_390, x_358); +lean_dec(x_390); +if (lean_is_scalar(x_399)) { + x_419 = lean_alloc_ctor(0, 3, 0); +} else { + x_419 = x_399; +} +lean_ctor_set(x_419, 0, x_389); +lean_ctor_set(x_419, 1, x_418); +lean_ctor_set(x_419, 2, x_391); +lean_inc(x_11); +x_420 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); +lean_closure_set(x_420, 0, x_345); +lean_closure_set(x_420, 1, x_360); +lean_closure_set(x_420, 2, x_371); +lean_closure_set(x_420, 3, x_382); +lean_closure_set(x_420, 4, x_393); +lean_closure_set(x_420, 5, x_419); +lean_closure_set(x_420, 6, x_2); +lean_closure_set(x_420, 7, x_11); +x_421 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_5, x_14, x_410, x_400, x_417); +x_422 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_421, x_420); +x_423 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_422); +return x_423; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; uint8_t x_430; +x_424 = lean_ctor_get(x_22, 0); +lean_inc(x_424); +lean_dec(x_22); +x_425 = lean_ctor_get(x_23, 1); +lean_inc(x_425); +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + x_426 = x_23; +} else { + lean_dec_ref(x_23); + x_426 = lean_box(0); +} +x_427 = lean_ctor_get(x_24, 0); +x_428 = lean_ctor_get(x_24, 1); +x_429 = lean_ctor_get(x_24, 2); +x_430 = lean_nat_dec_lt(x_428, x_429); +if (x_430 == 0) +{ +lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +if (lean_is_scalar(x_426)) { + x_431 = lean_alloc_ctor(0, 2, 0); +} else { + x_431 = x_426; +} +lean_ctor_set(x_431, 0, x_24); +lean_ctor_set(x_431, 1, x_425); +x_432 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_432, 0, x_424); +lean_ctor_set(x_432, 1, x_431); +lean_ctor_set(x_21, 1, x_432); +x_433 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_433, 0, x_19); +x_434 = lean_apply_2(x_2, lean_box(0), x_433); +x_435 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_434); +return x_435; +} +else +{ +lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; uint8_t x_443; +lean_inc(x_429); +lean_inc(x_428); +lean_inc_ref(x_427); if (lean_is_exclusive(x_24)) { lean_ctor_release(x_24, 0); lean_ctor_release(x_24, 1); lean_ctor_release(x_24, 2); - x_380 = x_24; + x_436 = x_24; } else { lean_dec_ref(x_24); - x_380 = lean_box(0); + x_436 = lean_box(0); } -x_381 = lean_ctor_get(x_368, 0); -x_382 = lean_ctor_get(x_368, 1); -x_383 = lean_ctor_get(x_368, 2); -x_384 = lean_unsigned_to_nat(1u); -x_385 = lean_nat_add(x_372, x_384); -lean_inc_ref(x_371); -if (lean_is_scalar(x_380)) { - x_386 = lean_alloc_ctor(0, 3, 0); +x_437 = lean_ctor_get(x_424, 0); +x_438 = lean_ctor_get(x_424, 1); +x_439 = lean_ctor_get(x_424, 2); +x_440 = lean_unsigned_to_nat(1u); +x_441 = lean_nat_add(x_428, x_440); +lean_inc_ref(x_427); +if (lean_is_scalar(x_436)) { + x_442 = lean_alloc_ctor(0, 3, 0); } else { - x_386 = x_380; + x_442 = x_436; } -lean_ctor_set(x_386, 0, x_371); -lean_ctor_set(x_386, 1, x_385); -lean_ctor_set(x_386, 2, x_373); -x_387 = lean_nat_dec_lt(x_382, x_383); -if (x_387 == 0) +lean_ctor_set(x_442, 0, x_427); +lean_ctor_set(x_442, 1, x_441); +lean_ctor_set(x_442, 2, x_429); +x_443 = lean_nat_dec_lt(x_438, x_439); +if (x_443 == 0) { -lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; -lean_dec(x_372); -lean_dec_ref(x_371); +lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; +lean_dec(x_428); +lean_dec_ref(x_427); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -9967,63 +10400,62 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_370)) { - x_388 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_5); +if (lean_is_scalar(x_426)) { + x_444 = lean_alloc_ctor(0, 2, 0); } else { - x_388 = x_370; + x_444 = x_426; } -lean_ctor_set(x_388, 0, x_386); -lean_ctor_set(x_388, 1, x_369); -x_389 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_389, 0, x_368); -lean_ctor_set(x_389, 1, x_388); -lean_ctor_set(x_21, 1, x_389); -x_390 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_390, 0, x_19); -x_391 = lean_apply_2(x_2, lean_box(0), x_390); -x_392 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_391); -return x_392; +lean_ctor_set(x_444, 0, x_442); +lean_ctor_set(x_444, 1, x_425); +x_445 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_445, 0, x_424); +lean_ctor_set(x_445, 1, x_444); +lean_ctor_set(x_21, 1, x_445); +x_446 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_446, 0, x_19); +x_447 = lean_apply_2(x_2, lean_box(0), x_446); +x_448 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_447); +return x_448; } else { -lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; uint8_t x_399; -lean_inc(x_383); -lean_inc(x_382); -lean_inc_ref(x_381); -if (lean_is_exclusive(x_368)) { - lean_ctor_release(x_368, 0); - lean_ctor_release(x_368, 1); - lean_ctor_release(x_368, 2); - x_393 = x_368; +lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; uint8_t x_455; +lean_inc(x_439); +lean_inc(x_438); +lean_inc_ref(x_437); +if (lean_is_exclusive(x_424)) { + lean_ctor_release(x_424, 0); + lean_ctor_release(x_424, 1); + lean_ctor_release(x_424, 2); + x_449 = x_424; } else { - lean_dec_ref(x_368); - x_393 = lean_box(0); + lean_dec_ref(x_424); + x_449 = lean_box(0); } -x_394 = lean_ctor_get(x_33, 0); -x_395 = lean_ctor_get(x_33, 1); -x_396 = lean_ctor_get(x_33, 2); -x_397 = lean_nat_add(x_382, x_384); -lean_inc_ref(x_381); -if (lean_is_scalar(x_393)) { - x_398 = lean_alloc_ctor(0, 3, 0); +x_450 = lean_ctor_get(x_33, 0); +x_451 = lean_ctor_get(x_33, 1); +x_452 = lean_ctor_get(x_33, 2); +x_453 = lean_nat_add(x_438, x_440); +lean_inc_ref(x_437); +if (lean_is_scalar(x_449)) { + x_454 = lean_alloc_ctor(0, 3, 0); } else { - x_398 = x_393; + x_454 = x_449; } -lean_ctor_set(x_398, 0, x_381); -lean_ctor_set(x_398, 1, x_397); -lean_ctor_set(x_398, 2, x_383); -x_399 = lean_nat_dec_lt(x_395, x_396); -if (x_399 == 0) +lean_ctor_set(x_454, 0, x_437); +lean_ctor_set(x_454, 1, x_453); +lean_ctor_set(x_454, 2, x_439); +x_455 = lean_nat_dec_lt(x_451, x_452); +if (x_455 == 0) { -lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; -lean_dec(x_382); -lean_dec_ref(x_381); -lean_dec(x_372); -lean_dec_ref(x_371); +lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; +lean_dec(x_438); +lean_dec_ref(x_437); +lean_dec(x_428); +lean_dec_ref(x_427); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -10031,330 +10463,18 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_370)) { - x_400 = lean_alloc_ctor(0, 2, 0); -} else { - x_400 = x_370; -} -lean_ctor_set(x_400, 0, x_386); -lean_ctor_set(x_400, 1, x_369); -x_401 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_401, 0, x_398); -lean_ctor_set(x_401, 1, x_400); -lean_ctor_set(x_21, 1, x_401); -x_402 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_402, 0, x_19); -x_403 = lean_apply_2(x_2, lean_box(0), x_402); -x_404 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_403); -return x_404; -} -else -{ -lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; uint8_t x_411; -lean_inc(x_396); -lean_inc(x_395); -lean_inc_ref(x_394); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - lean_ctor_release(x_33, 1); - lean_ctor_release(x_33, 2); - x_405 = x_33; -} else { - lean_dec_ref(x_33); - x_405 = lean_box(0); -} -x_406 = lean_ctor_get(x_30, 0); -x_407 = lean_ctor_get(x_30, 1); -x_408 = lean_ctor_get(x_30, 2); -x_409 = lean_nat_add(x_395, x_384); -lean_inc_ref(x_394); -if (lean_is_scalar(x_405)) { - x_410 = lean_alloc_ctor(0, 3, 0); -} else { - x_410 = x_405; -} -lean_ctor_set(x_410, 0, x_394); -lean_ctor_set(x_410, 1, x_409); -lean_ctor_set(x_410, 2, x_396); -x_411 = lean_nat_dec_lt(x_407, x_408); -if (x_411 == 0) -{ -lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; -lean_dec(x_395); -lean_dec_ref(x_394); -lean_dec(x_382); -lean_dec_ref(x_381); -lean_dec(x_372); -lean_dec_ref(x_371); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_370)) { - x_412 = lean_alloc_ctor(0, 2, 0); -} else { - x_412 = x_370; -} -lean_ctor_set(x_412, 0, x_386); -lean_ctor_set(x_412, 1, x_369); -x_413 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_413, 0, x_398); -lean_ctor_set(x_413, 1, x_412); -lean_ctor_set(x_21, 1, x_413); -lean_ctor_set(x_21, 0, x_410); -x_414 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_414, 0, x_19); -x_415 = lean_apply_2(x_2, lean_box(0), x_414); -x_416 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_415); -return x_416; -} -else -{ -lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; uint8_t x_423; -lean_inc(x_408); -lean_inc(x_407); -lean_inc_ref(x_406); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - lean_ctor_release(x_30, 1); - lean_ctor_release(x_30, 2); - x_417 = x_30; -} else { - lean_dec_ref(x_30); - x_417 = lean_box(0); -} -x_418 = lean_ctor_get(x_27, 0); -x_419 = lean_ctor_get(x_27, 1); -x_420 = lean_ctor_get(x_27, 2); -x_421 = lean_nat_add(x_407, x_384); -lean_inc_ref(x_406); -if (lean_is_scalar(x_417)) { - x_422 = lean_alloc_ctor(0, 3, 0); -} else { - x_422 = x_417; -} -lean_ctor_set(x_422, 0, x_406); -lean_ctor_set(x_422, 1, x_421); -lean_ctor_set(x_422, 2, x_408); -x_423 = lean_nat_dec_lt(x_419, x_420); -if (x_423 == 0) -{ -lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; -lean_dec(x_407); -lean_dec_ref(x_406); -lean_dec(x_395); -lean_dec_ref(x_394); -lean_dec(x_382); -lean_dec_ref(x_381); -lean_dec(x_372); -lean_dec_ref(x_371); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_370)) { - x_424 = lean_alloc_ctor(0, 2, 0); -} else { - x_424 = x_370; -} -lean_ctor_set(x_424, 0, x_386); -lean_ctor_set(x_424, 1, x_369); -x_425 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_425, 0, x_398); -lean_ctor_set(x_425, 1, x_424); -lean_ctor_set(x_21, 1, x_425); -lean_ctor_set(x_21, 0, x_410); -lean_ctor_set(x_20, 0, x_422); -x_426 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_426, 0, x_19); -x_427 = lean_apply_2(x_2, lean_box(0), x_426); -x_428 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_427); -return x_428; -} -else -{ -lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; -lean_inc(x_420); -lean_inc(x_419); -lean_inc_ref(x_418); -lean_dec(x_370); -lean_free_object(x_21); -lean_free_object(x_20); -lean_free_object(x_19); -if (lean_is_exclusive(x_27)) { - lean_ctor_release(x_27, 0); - lean_ctor_release(x_27, 1); - lean_ctor_release(x_27, 2); - x_429 = x_27; -} else { - lean_dec_ref(x_27); - x_429 = lean_box(0); -} -x_430 = lean_array_fget(x_371, x_372); -lean_dec(x_372); -lean_dec_ref(x_371); -x_431 = lean_array_fget(x_381, x_382); -lean_dec(x_382); -lean_dec_ref(x_381); -x_432 = lean_array_fget(x_394, x_395); -lean_dec(x_395); -lean_dec_ref(x_394); -lean_inc(x_6); -lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_432); -x_433 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 6, 5); -lean_closure_set(x_433, 0, x_432); -lean_closure_set(x_433, 1, x_4); -lean_closure_set(x_433, 2, x_5); -lean_closure_set(x_433, 3, x_2); -lean_closure_set(x_433, 4, x_6); -x_434 = lean_array_fget(x_406, x_407); -lean_dec(x_407); -lean_dec_ref(x_406); -x_435 = lean_array_fget_borrowed(x_418, x_419); -x_436 = lean_box(x_8); -x_437 = lean_box(x_9); -lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_15); -lean_inc_ref(x_14); -lean_inc_ref(x_435); -lean_inc(x_11); -x_438 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); -lean_closure_set(x_438, 0, x_7); -lean_closure_set(x_438, 1, x_436); -lean_closure_set(x_438, 2, x_437); -lean_closure_set(x_438, 3, x_6); -lean_closure_set(x_438, 4, x_10); -lean_closure_set(x_438, 5, x_16); -lean_closure_set(x_438, 6, x_11); -lean_closure_set(x_438, 7, x_435); -lean_closure_set(x_438, 8, x_12); -lean_closure_set(x_438, 9, x_13); -lean_closure_set(x_438, 10, x_14); -lean_closure_set(x_438, 11, x_15); -lean_closure_set(x_438, 12, x_4); -lean_closure_set(x_438, 13, x_432); -lean_closure_set(x_438, 14, x_433); -lean_closure_set(x_438, 15, x_5); -lean_closure_set(x_438, 16, x_2); -lean_closure_set(x_438, 17, x_384); -lean_closure_set(x_438, 18, x_430); -x_439 = lean_nat_add(x_419, x_384); -lean_dec(x_419); -if (lean_is_scalar(x_429)) { - x_440 = lean_alloc_ctor(0, 3, 0); -} else { - x_440 = x_429; -} -lean_ctor_set(x_440, 0, x_418); -lean_ctor_set(x_440, 1, x_439); -lean_ctor_set(x_440, 2, x_420); -lean_inc(x_11); -x_441 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); -lean_closure_set(x_441, 0, x_369); -lean_closure_set(x_441, 1, x_386); -lean_closure_set(x_441, 2, x_398); -lean_closure_set(x_441, 3, x_410); -lean_closure_set(x_441, 4, x_422); -lean_closure_set(x_441, 5, x_440); -lean_closure_set(x_441, 6, x_2); -lean_closure_set(x_441, 7, x_11); -x_442 = lean_nat_sub(x_434, x_4); -lean_dec(x_4); -lean_dec(x_434); -x_443 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_15, x_14, x_431, x_442, x_5, x_438); -x_444 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_443, x_441); -x_445 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_444); -return x_445; -} -} -} -} -} -} -} -else -{ -lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; uint8_t x_454; -x_446 = lean_ctor_get(x_21, 0); -lean_inc(x_446); -lean_dec(x_21); -x_447 = lean_ctor_get(x_22, 0); -lean_inc(x_447); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - lean_ctor_release(x_22, 1); - x_448 = x_22; -} else { - lean_dec_ref(x_22); - x_448 = lean_box(0); -} -x_449 = lean_ctor_get(x_23, 1); -lean_inc(x_449); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - x_450 = x_23; -} else { - lean_dec_ref(x_23); - x_450 = lean_box(0); -} -x_451 = lean_ctor_get(x_24, 0); -x_452 = lean_ctor_get(x_24, 1); -x_453 = lean_ctor_get(x_24, 2); -x_454 = lean_nat_dec_lt(x_452, x_453); -if (x_454 == 0) -{ -lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_450)) { - x_455 = lean_alloc_ctor(0, 2, 0); -} else { - x_455 = x_450; -} -lean_ctor_set(x_455, 0, x_24); -lean_ctor_set(x_455, 1, x_449); -if (lean_is_scalar(x_448)) { +lean_dec_ref(x_5); +if (lean_is_scalar(x_426)) { x_456 = lean_alloc_ctor(0, 2, 0); } else { - x_456 = x_448; + x_456 = x_426; } -lean_ctor_set(x_456, 0, x_447); -lean_ctor_set(x_456, 1, x_455); +lean_ctor_set(x_456, 0, x_442); +lean_ctor_set(x_456, 1, x_425); x_457 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_457, 0, x_446); +lean_ctor_set(x_457, 0, x_454); lean_ctor_set(x_457, 1, x_456); -lean_ctor_set(x_20, 1, x_457); +lean_ctor_set(x_21, 1, x_457); x_458 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_458, 0, x_19); x_459 = lean_apply_2(x_2, lean_box(0), x_458); @@ -10363,41 +10483,44 @@ return x_460; } else { -lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; uint8_t x_468; -lean_inc(x_453); +lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; uint8_t x_467; lean_inc(x_452); -lean_inc_ref(x_451); -if (lean_is_exclusive(x_24)) { - lean_ctor_release(x_24, 0); - lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_461 = x_24; +lean_inc(x_451); +lean_inc_ref(x_450); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_461 = x_33; } else { - lean_dec_ref(x_24); + lean_dec_ref(x_33); x_461 = lean_box(0); } -x_462 = lean_ctor_get(x_447, 0); -x_463 = lean_ctor_get(x_447, 1); -x_464 = lean_ctor_get(x_447, 2); -x_465 = lean_unsigned_to_nat(1u); -x_466 = lean_nat_add(x_452, x_465); -lean_inc_ref(x_451); +x_462 = lean_ctor_get(x_30, 0); +x_463 = lean_ctor_get(x_30, 1); +x_464 = lean_ctor_get(x_30, 2); +x_465 = lean_nat_add(x_451, x_440); +lean_inc_ref(x_450); if (lean_is_scalar(x_461)) { - x_467 = lean_alloc_ctor(0, 3, 0); + x_466 = lean_alloc_ctor(0, 3, 0); } else { - x_467 = x_461; + x_466 = x_461; } -lean_ctor_set(x_467, 0, x_451); -lean_ctor_set(x_467, 1, x_466); -lean_ctor_set(x_467, 2, x_453); -x_468 = lean_nat_dec_lt(x_463, x_464); -if (x_468 == 0) +lean_ctor_set(x_466, 0, x_450); +lean_ctor_set(x_466, 1, x_465); +lean_ctor_set(x_466, 2, x_452); +x_467 = lean_nat_dec_lt(x_463, x_464); +if (x_467 == 0) { -lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; -lean_dec(x_452); -lean_dec_ref(x_451); +lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; +lean_dec(x_451); +lean_dec_ref(x_450); +lean_dec(x_438); +lean_dec_ref(x_437); +lean_dec(x_428); +lean_dec_ref(x_427); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -10405,218 +10528,67 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_450)) { - x_469 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_5); +if (lean_is_scalar(x_426)) { + x_468 = lean_alloc_ctor(0, 2, 0); } else { - x_469 = x_450; + x_468 = x_426; } -lean_ctor_set(x_469, 0, x_467); -lean_ctor_set(x_469, 1, x_449); -if (lean_is_scalar(x_448)) { - x_470 = lean_alloc_ctor(0, 2, 0); -} else { - x_470 = x_448; -} -lean_ctor_set(x_470, 0, x_447); -lean_ctor_set(x_470, 1, x_469); -x_471 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_471, 0, x_446); -lean_ctor_set(x_471, 1, x_470); -lean_ctor_set(x_20, 1, x_471); -x_472 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_472, 0, x_19); -x_473 = lean_apply_2(x_2, lean_box(0), x_472); -x_474 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_473); -return x_474; +lean_ctor_set(x_468, 0, x_442); +lean_ctor_set(x_468, 1, x_425); +x_469 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_469, 0, x_454); +lean_ctor_set(x_469, 1, x_468); +lean_ctor_set(x_21, 1, x_469); +lean_ctor_set(x_21, 0, x_466); +x_470 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_470, 0, x_19); +x_471 = lean_apply_2(x_2, lean_box(0), x_470); +x_472 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_471); +return x_472; } else { -lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; uint8_t x_481; +lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; uint8_t x_479; lean_inc(x_464); lean_inc(x_463); lean_inc_ref(x_462); -if (lean_is_exclusive(x_447)) { - lean_ctor_release(x_447, 0); - lean_ctor_release(x_447, 1); - lean_ctor_release(x_447, 2); - x_475 = x_447; -} else { - lean_dec_ref(x_447); - x_475 = lean_box(0); -} -x_476 = lean_ctor_get(x_446, 0); -x_477 = lean_ctor_get(x_446, 1); -x_478 = lean_ctor_get(x_446, 2); -x_479 = lean_nat_add(x_463, x_465); -lean_inc_ref(x_462); -if (lean_is_scalar(x_475)) { - x_480 = lean_alloc_ctor(0, 3, 0); -} else { - x_480 = x_475; -} -lean_ctor_set(x_480, 0, x_462); -lean_ctor_set(x_480, 1, x_479); -lean_ctor_set(x_480, 2, x_464); -x_481 = lean_nat_dec_lt(x_477, x_478); -if (x_481 == 0) -{ -lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; -lean_dec(x_463); -lean_dec_ref(x_462); -lean_dec(x_452); -lean_dec_ref(x_451); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_450)) { - x_482 = lean_alloc_ctor(0, 2, 0); -} else { - x_482 = x_450; -} -lean_ctor_set(x_482, 0, x_467); -lean_ctor_set(x_482, 1, x_449); -if (lean_is_scalar(x_448)) { - x_483 = lean_alloc_ctor(0, 2, 0); -} else { - x_483 = x_448; -} -lean_ctor_set(x_483, 0, x_480); -lean_ctor_set(x_483, 1, x_482); -x_484 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_484, 0, x_446); -lean_ctor_set(x_484, 1, x_483); -lean_ctor_set(x_20, 1, x_484); -x_485 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_485, 0, x_19); -x_486 = lean_apply_2(x_2, lean_box(0), x_485); -x_487 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_486); -return x_487; -} -else -{ -lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; uint8_t x_494; -lean_inc(x_478); -lean_inc(x_477); -lean_inc_ref(x_476); -if (lean_is_exclusive(x_446)) { - lean_ctor_release(x_446, 0); - lean_ctor_release(x_446, 1); - lean_ctor_release(x_446, 2); - x_488 = x_446; -} else { - lean_dec_ref(x_446); - x_488 = lean_box(0); -} -x_489 = lean_ctor_get(x_30, 0); -x_490 = lean_ctor_get(x_30, 1); -x_491 = lean_ctor_get(x_30, 2); -x_492 = lean_nat_add(x_477, x_465); -lean_inc_ref(x_476); -if (lean_is_scalar(x_488)) { - x_493 = lean_alloc_ctor(0, 3, 0); -} else { - x_493 = x_488; -} -lean_ctor_set(x_493, 0, x_476); -lean_ctor_set(x_493, 1, x_492); -lean_ctor_set(x_493, 2, x_478); -x_494 = lean_nat_dec_lt(x_490, x_491); -if (x_494 == 0) -{ -lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; -lean_dec(x_477); -lean_dec_ref(x_476); -lean_dec(x_463); -lean_dec_ref(x_462); -lean_dec(x_452); -lean_dec_ref(x_451); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_450)) { - x_495 = lean_alloc_ctor(0, 2, 0); -} else { - x_495 = x_450; -} -lean_ctor_set(x_495, 0, x_467); -lean_ctor_set(x_495, 1, x_449); -if (lean_is_scalar(x_448)) { - x_496 = lean_alloc_ctor(0, 2, 0); -} else { - x_496 = x_448; -} -lean_ctor_set(x_496, 0, x_480); -lean_ctor_set(x_496, 1, x_495); -x_497 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_497, 0, x_493); -lean_ctor_set(x_497, 1, x_496); -lean_ctor_set(x_20, 1, x_497); -x_498 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_498, 0, x_19); -x_499 = lean_apply_2(x_2, lean_box(0), x_498); -x_500 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_499); -return x_500; -} -else -{ -lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; uint8_t x_507; -lean_inc(x_491); -lean_inc(x_490); -lean_inc_ref(x_489); if (lean_is_exclusive(x_30)) { lean_ctor_release(x_30, 0); lean_ctor_release(x_30, 1); lean_ctor_release(x_30, 2); - x_501 = x_30; + x_473 = x_30; } else { lean_dec_ref(x_30); - x_501 = lean_box(0); + x_473 = lean_box(0); } -x_502 = lean_ctor_get(x_27, 0); -x_503 = lean_ctor_get(x_27, 1); -x_504 = lean_ctor_get(x_27, 2); -x_505 = lean_nat_add(x_490, x_465); -lean_inc_ref(x_489); -if (lean_is_scalar(x_501)) { - x_506 = lean_alloc_ctor(0, 3, 0); +x_474 = lean_ctor_get(x_27, 0); +x_475 = lean_ctor_get(x_27, 1); +x_476 = lean_ctor_get(x_27, 2); +x_477 = lean_nat_add(x_463, x_440); +lean_inc_ref(x_462); +if (lean_is_scalar(x_473)) { + x_478 = lean_alloc_ctor(0, 3, 0); } else { - x_506 = x_501; + x_478 = x_473; } -lean_ctor_set(x_506, 0, x_489); -lean_ctor_set(x_506, 1, x_505); -lean_ctor_set(x_506, 2, x_491); -x_507 = lean_nat_dec_lt(x_503, x_504); -if (x_507 == 0) +lean_ctor_set(x_478, 0, x_462); +lean_ctor_set(x_478, 1, x_477); +lean_ctor_set(x_478, 2, x_464); +x_479 = lean_nat_dec_lt(x_475, x_476); +if (x_479 == 0) { -lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; -lean_dec(x_490); -lean_dec_ref(x_489); -lean_dec(x_477); -lean_dec_ref(x_476); +lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_dec(x_463); lean_dec_ref(x_462); -lean_dec(x_452); -lean_dec_ref(x_451); +lean_dec(x_451); +lean_dec_ref(x_450); +lean_dec(x_438); +lean_dec_ref(x_437); +lean_dec(x_428); +lean_dec_ref(x_427); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -10624,184 +10596,72 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_450)) { - x_508 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_5); +if (lean_is_scalar(x_426)) { + x_480 = lean_alloc_ctor(0, 2, 0); } else { - x_508 = x_450; + x_480 = x_426; } -lean_ctor_set(x_508, 0, x_467); -lean_ctor_set(x_508, 1, x_449); -if (lean_is_scalar(x_448)) { - x_509 = lean_alloc_ctor(0, 2, 0); -} else { - x_509 = x_448; -} -lean_ctor_set(x_509, 0, x_480); -lean_ctor_set(x_509, 1, x_508); -x_510 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_510, 0, x_493); -lean_ctor_set(x_510, 1, x_509); -lean_ctor_set(x_20, 1, x_510); -lean_ctor_set(x_20, 0, x_506); -x_511 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_511, 0, x_19); -x_512 = lean_apply_2(x_2, lean_box(0), x_511); -x_513 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_512); -return x_513; +lean_ctor_set(x_480, 0, x_442); +lean_ctor_set(x_480, 1, x_425); +x_481 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_481, 0, x_454); +lean_ctor_set(x_481, 1, x_480); +lean_ctor_set(x_21, 1, x_481); +lean_ctor_set(x_21, 0, x_466); +lean_ctor_set(x_20, 0, x_478); +x_482 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_482, 0, x_19); +x_483 = lean_apply_2(x_2, lean_box(0), x_482); +x_484 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_483); +return x_484; } else { -lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; -lean_inc(x_504); -lean_inc(x_503); -lean_inc_ref(x_502); -lean_dec(x_450); -lean_dec(x_448); +lean_object* x_485; lean_object* x_486; lean_object* x_487; uint8_t x_488; uint8_t x_489; +lean_inc(x_476); +lean_inc(x_475); +lean_inc_ref(x_474); +lean_dec(x_426); +lean_free_object(x_21); lean_free_object(x_20); lean_free_object(x_19); if (lean_is_exclusive(x_27)) { lean_ctor_release(x_27, 0); lean_ctor_release(x_27, 1); lean_ctor_release(x_27, 2); - x_514 = x_27; + x_485 = x_27; } else { lean_dec_ref(x_27); - x_514 = lean_box(0); + x_485 = lean_box(0); } -x_515 = lean_array_fget(x_451, x_452); -lean_dec(x_452); -lean_dec_ref(x_451); -x_516 = lean_array_fget(x_462, x_463); +x_486 = lean_array_fget(x_462, x_463); lean_dec(x_463); lean_dec_ref(x_462); -x_517 = lean_array_fget(x_476, x_477); -lean_dec(x_477); -lean_dec_ref(x_476); -lean_inc(x_6); -lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_517); -x_518 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 6, 5); -lean_closure_set(x_518, 0, x_517); -lean_closure_set(x_518, 1, x_4); -lean_closure_set(x_518, 2, x_5); -lean_closure_set(x_518, 3, x_2); -lean_closure_set(x_518, 4, x_6); -x_519 = lean_array_fget(x_489, x_490); -lean_dec(x_490); -lean_dec_ref(x_489); -x_520 = lean_array_fget_borrowed(x_502, x_503); -x_521 = lean_box(x_8); -x_522 = lean_box(x_9); -lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_15); -lean_inc_ref(x_14); -lean_inc_ref(x_520); -lean_inc(x_11); -x_523 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); -lean_closure_set(x_523, 0, x_7); -lean_closure_set(x_523, 1, x_521); -lean_closure_set(x_523, 2, x_522); -lean_closure_set(x_523, 3, x_6); -lean_closure_set(x_523, 4, x_10); -lean_closure_set(x_523, 5, x_16); -lean_closure_set(x_523, 6, x_11); -lean_closure_set(x_523, 7, x_520); -lean_closure_set(x_523, 8, x_12); -lean_closure_set(x_523, 9, x_13); -lean_closure_set(x_523, 10, x_14); -lean_closure_set(x_523, 11, x_15); -lean_closure_set(x_523, 12, x_4); -lean_closure_set(x_523, 13, x_517); -lean_closure_set(x_523, 14, x_518); -lean_closure_set(x_523, 15, x_5); -lean_closure_set(x_523, 16, x_2); -lean_closure_set(x_523, 17, x_465); -lean_closure_set(x_523, 18, x_515); -x_524 = lean_nat_add(x_503, x_465); -lean_dec(x_503); -if (lean_is_scalar(x_514)) { - x_525 = lean_alloc_ctor(0, 3, 0); -} else { - x_525 = x_514; -} -lean_ctor_set(x_525, 0, x_502); -lean_ctor_set(x_525, 1, x_524); -lean_ctor_set(x_525, 2, x_504); -lean_inc(x_11); -x_526 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); -lean_closure_set(x_526, 0, x_449); -lean_closure_set(x_526, 1, x_467); -lean_closure_set(x_526, 2, x_480); -lean_closure_set(x_526, 3, x_493); -lean_closure_set(x_526, 4, x_506); -lean_closure_set(x_526, 5, x_525); -lean_closure_set(x_526, 6, x_2); -lean_closure_set(x_526, 7, x_11); -x_527 = lean_nat_sub(x_519, x_4); -lean_dec(x_4); -lean_dec(x_519); -x_528 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_15, x_14, x_516, x_527, x_5, x_523); -x_529 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_528, x_526); -x_530 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_529); -return x_530; -} -} -} -} -} -} -} -else +x_487 = lean_ctor_get(x_486, 1); +x_488 = lean_ctor_get_uint8(x_486, sizeof(void*)*2); +x_489 = lean_nat_dec_eq(x_487, x_4); +if (x_489 == 0) { -lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; uint8_t x_541; -x_531 = lean_ctor_get(x_20, 0); -lean_inc(x_531); -lean_dec(x_20); -x_532 = lean_ctor_get(x_21, 0); -lean_inc(x_532); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - x_533 = x_21; -} else { - lean_dec_ref(x_21); - x_533 = lean_box(0); -} -x_534 = lean_ctor_get(x_22, 0); -lean_inc(x_534); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - lean_ctor_release(x_22, 1); - x_535 = x_22; -} else { - lean_dec_ref(x_22); - x_535 = lean_box(0); -} -x_536 = lean_ctor_get(x_23, 1); -lean_inc(x_536); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - x_537 = x_23; -} else { - lean_dec_ref(x_23); - x_537 = lean_box(0); -} -x_538 = lean_ctor_get(x_24, 0); -x_539 = lean_ctor_get(x_24, 1); -x_540 = lean_ctor_get(x_24, 2); -x_541 = lean_nat_dec_lt(x_539, x_540); -if (x_541 == 0) -{ -lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; +lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; +lean_dec_ref(x_486); +lean_dec(x_485); +lean_dec_ref(x_478); +lean_dec(x_476); +lean_dec(x_475); +lean_dec_ref(x_474); +lean_dec_ref(x_466); +lean_dec_ref(x_454); +lean_dec(x_451); +lean_dec_ref(x_450); +lean_dec_ref(x_442); +lean_dec(x_438); +lean_dec_ref(x_437); +lean_dec(x_428); +lean_dec_ref(x_427); +lean_dec(x_425); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -10809,76 +10669,198 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_537)) { - x_542 = lean_alloc_ctor(0, 2, 0); -} else { - x_542 = x_537; -} -lean_ctor_set(x_542, 0, x_24); -lean_ctor_set(x_542, 1, x_536); -if (lean_is_scalar(x_535)) { - x_543 = lean_alloc_ctor(0, 2, 0); -} else { - x_543 = x_535; -} -lean_ctor_set(x_543, 0, x_534); -lean_ctor_set(x_543, 1, x_542); -if (lean_is_scalar(x_533)) { - x_544 = lean_alloc_ctor(0, 2, 0); -} else { - x_544 = x_533; -} -lean_ctor_set(x_544, 0, x_532); -lean_ctor_set(x_544, 1, x_543); -x_545 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_545, 0, x_531); -lean_ctor_set(x_545, 1, x_544); -lean_ctor_set(x_19, 1, x_545); -x_546 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_546, 0, x_19); -x_547 = lean_apply_2(x_2, lean_box(0), x_546); -x_548 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_547); -return x_548; +lean_dec(x_2); +x_490 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_491 = l_instInhabitedOfMonad___redArg(x_5, x_490); +x_492 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +x_493 = l_panic___redArg(x_491, x_492); +x_494 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_493); +return x_494; } else { -lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; uint8_t x_556; -lean_inc(x_540); -lean_inc(x_539); -lean_inc_ref(x_538); +lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; +x_495 = lean_array_fget(x_427, x_428); +lean_dec(x_428); +lean_dec_ref(x_427); +x_496 = lean_array_fget(x_437, x_438); +lean_dec(x_438); +lean_dec_ref(x_437); +x_497 = lean_array_fget(x_450, x_451); +lean_dec(x_451); +lean_dec_ref(x_450); +lean_inc(x_6); +lean_inc(x_2); +lean_inc_ref(x_497); +x_498 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 4, 3); +lean_closure_set(x_498, 0, x_497); +lean_closure_set(x_498, 1, x_2); +lean_closure_set(x_498, 2, x_6); +x_499 = lean_array_fget_borrowed(x_474, x_475); +x_500 = lean_box(x_8); +x_501 = lean_box(x_9); +x_502 = lean_box(x_488); +lean_inc(x_2); +lean_inc_ref(x_14); +lean_inc_ref(x_499); +lean_inc(x_11); +lean_inc_ref(x_5); +x_503 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); +lean_closure_set(x_503, 0, x_497); +lean_closure_set(x_503, 1, x_5); +lean_closure_set(x_503, 2, x_7); +lean_closure_set(x_503, 3, x_500); +lean_closure_set(x_503, 4, x_501); +lean_closure_set(x_503, 5, x_6); +lean_closure_set(x_503, 6, x_10); +lean_closure_set(x_503, 7, x_16); +lean_closure_set(x_503, 8, x_11); +lean_closure_set(x_503, 9, x_499); +lean_closure_set(x_503, 10, x_12); +lean_closure_set(x_503, 11, x_13); +lean_closure_set(x_503, 12, x_14); +lean_closure_set(x_503, 13, x_15); +lean_closure_set(x_503, 14, x_498); +lean_closure_set(x_503, 15, x_502); +lean_closure_set(x_503, 16, x_2); +lean_closure_set(x_503, 17, x_440); +lean_closure_set(x_503, 18, x_495); +x_504 = lean_nat_add(x_475, x_440); +lean_dec(x_475); +if (lean_is_scalar(x_485)) { + x_505 = lean_alloc_ctor(0, 3, 0); +} else { + x_505 = x_485; +} +lean_ctor_set(x_505, 0, x_474); +lean_ctor_set(x_505, 1, x_504); +lean_ctor_set(x_505, 2, x_476); +lean_inc(x_11); +x_506 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); +lean_closure_set(x_506, 0, x_425); +lean_closure_set(x_506, 1, x_442); +lean_closure_set(x_506, 2, x_454); +lean_closure_set(x_506, 3, x_466); +lean_closure_set(x_506, 4, x_478); +lean_closure_set(x_506, 5, x_505); +lean_closure_set(x_506, 6, x_2); +lean_closure_set(x_506, 7, x_11); +x_507 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_5, x_14, x_496, x_486, x_503); +x_508 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_507, x_506); +x_509 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_508); +return x_509; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; uint8_t x_518; +x_510 = lean_ctor_get(x_21, 0); +lean_inc(x_510); +lean_dec(x_21); +x_511 = lean_ctor_get(x_22, 0); +lean_inc(x_511); +if (lean_is_exclusive(x_22)) { + lean_ctor_release(x_22, 0); + lean_ctor_release(x_22, 1); + x_512 = x_22; +} else { + lean_dec_ref(x_22); + x_512 = lean_box(0); +} +x_513 = lean_ctor_get(x_23, 1); +lean_inc(x_513); +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + x_514 = x_23; +} else { + lean_dec_ref(x_23); + x_514 = lean_box(0); +} +x_515 = lean_ctor_get(x_24, 0); +x_516 = lean_ctor_get(x_24, 1); +x_517 = lean_ctor_get(x_24, 2); +x_518 = lean_nat_dec_lt(x_516, x_517); +if (x_518 == 0) +{ +lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +if (lean_is_scalar(x_514)) { + x_519 = lean_alloc_ctor(0, 2, 0); +} else { + x_519 = x_514; +} +lean_ctor_set(x_519, 0, x_24); +lean_ctor_set(x_519, 1, x_513); +if (lean_is_scalar(x_512)) { + x_520 = lean_alloc_ctor(0, 2, 0); +} else { + x_520 = x_512; +} +lean_ctor_set(x_520, 0, x_511); +lean_ctor_set(x_520, 1, x_519); +x_521 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_521, 0, x_510); +lean_ctor_set(x_521, 1, x_520); +lean_ctor_set(x_20, 1, x_521); +x_522 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_522, 0, x_19); +x_523 = lean_apply_2(x_2, lean_box(0), x_522); +x_524 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_523); +return x_524; +} +else +{ +lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; uint8_t x_532; +lean_inc(x_517); +lean_inc(x_516); +lean_inc_ref(x_515); if (lean_is_exclusive(x_24)) { lean_ctor_release(x_24, 0); lean_ctor_release(x_24, 1); lean_ctor_release(x_24, 2); - x_549 = x_24; + x_525 = x_24; } else { lean_dec_ref(x_24); - x_549 = lean_box(0); + x_525 = lean_box(0); } -x_550 = lean_ctor_get(x_534, 0); -x_551 = lean_ctor_get(x_534, 1); -x_552 = lean_ctor_get(x_534, 2); -x_553 = lean_unsigned_to_nat(1u); -x_554 = lean_nat_add(x_539, x_553); -lean_inc_ref(x_538); -if (lean_is_scalar(x_549)) { - x_555 = lean_alloc_ctor(0, 3, 0); +x_526 = lean_ctor_get(x_511, 0); +x_527 = lean_ctor_get(x_511, 1); +x_528 = lean_ctor_get(x_511, 2); +x_529 = lean_unsigned_to_nat(1u); +x_530 = lean_nat_add(x_516, x_529); +lean_inc_ref(x_515); +if (lean_is_scalar(x_525)) { + x_531 = lean_alloc_ctor(0, 3, 0); } else { - x_555 = x_549; + x_531 = x_525; } -lean_ctor_set(x_555, 0, x_538); -lean_ctor_set(x_555, 1, x_554); -lean_ctor_set(x_555, 2, x_540); -x_556 = lean_nat_dec_lt(x_551, x_552); -if (x_556 == 0) +lean_ctor_set(x_531, 0, x_515); +lean_ctor_set(x_531, 1, x_530); +lean_ctor_set(x_531, 2, x_517); +x_532 = lean_nat_dec_lt(x_527, x_528); +if (x_532 == 0) { -lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; -lean_dec(x_539); -lean_dec_ref(x_538); +lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; +lean_dec(x_516); +lean_dec_ref(x_515); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -10886,77 +10868,69 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_537)) { - x_557 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_5); +if (lean_is_scalar(x_514)) { + x_533 = lean_alloc_ctor(0, 2, 0); } else { - x_557 = x_537; + x_533 = x_514; } -lean_ctor_set(x_557, 0, x_555); -lean_ctor_set(x_557, 1, x_536); -if (lean_is_scalar(x_535)) { - x_558 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_533, 0, x_531); +lean_ctor_set(x_533, 1, x_513); +if (lean_is_scalar(x_512)) { + x_534 = lean_alloc_ctor(0, 2, 0); } else { - x_558 = x_535; + x_534 = x_512; } -lean_ctor_set(x_558, 0, x_534); -lean_ctor_set(x_558, 1, x_557); -if (lean_is_scalar(x_533)) { - x_559 = lean_alloc_ctor(0, 2, 0); -} else { - x_559 = x_533; -} -lean_ctor_set(x_559, 0, x_532); -lean_ctor_set(x_559, 1, x_558); -x_560 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_560, 0, x_531); -lean_ctor_set(x_560, 1, x_559); -lean_ctor_set(x_19, 1, x_560); -x_561 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_561, 0, x_19); -x_562 = lean_apply_2(x_2, lean_box(0), x_561); -x_563 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_562); -return x_563; +lean_ctor_set(x_534, 0, x_511); +lean_ctor_set(x_534, 1, x_533); +x_535 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_535, 0, x_510); +lean_ctor_set(x_535, 1, x_534); +lean_ctor_set(x_20, 1, x_535); +x_536 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_536, 0, x_19); +x_537 = lean_apply_2(x_2, lean_box(0), x_536); +x_538 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_537); +return x_538; } else { -lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; uint8_t x_570; -lean_inc(x_552); -lean_inc(x_551); -lean_inc_ref(x_550); -if (lean_is_exclusive(x_534)) { - lean_ctor_release(x_534, 0); - lean_ctor_release(x_534, 1); - lean_ctor_release(x_534, 2); - x_564 = x_534; +lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; uint8_t x_545; +lean_inc(x_528); +lean_inc(x_527); +lean_inc_ref(x_526); +if (lean_is_exclusive(x_511)) { + lean_ctor_release(x_511, 0); + lean_ctor_release(x_511, 1); + lean_ctor_release(x_511, 2); + x_539 = x_511; } else { - lean_dec_ref(x_534); - x_564 = lean_box(0); + lean_dec_ref(x_511); + x_539 = lean_box(0); } -x_565 = lean_ctor_get(x_532, 0); -x_566 = lean_ctor_get(x_532, 1); -x_567 = lean_ctor_get(x_532, 2); -x_568 = lean_nat_add(x_551, x_553); -lean_inc_ref(x_550); -if (lean_is_scalar(x_564)) { - x_569 = lean_alloc_ctor(0, 3, 0); +x_540 = lean_ctor_get(x_510, 0); +x_541 = lean_ctor_get(x_510, 1); +x_542 = lean_ctor_get(x_510, 2); +x_543 = lean_nat_add(x_527, x_529); +lean_inc_ref(x_526); +if (lean_is_scalar(x_539)) { + x_544 = lean_alloc_ctor(0, 3, 0); } else { - x_569 = x_564; + x_544 = x_539; } -lean_ctor_set(x_569, 0, x_550); -lean_ctor_set(x_569, 1, x_568); -lean_ctor_set(x_569, 2, x_552); -x_570 = lean_nat_dec_lt(x_566, x_567); -if (x_570 == 0) +lean_ctor_set(x_544, 0, x_526); +lean_ctor_set(x_544, 1, x_543); +lean_ctor_set(x_544, 2, x_528); +x_545 = lean_nat_dec_lt(x_541, x_542); +if (x_545 == 0) { -lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; -lean_dec(x_551); -lean_dec_ref(x_550); -lean_dec(x_539); -lean_dec_ref(x_538); +lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; +lean_dec(x_527); +lean_dec_ref(x_526); +lean_dec(x_516); +lean_dec_ref(x_515); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -10964,33 +10938,172 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_537)) { - x_571 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_5); +if (lean_is_scalar(x_514)) { + x_546 = lean_alloc_ctor(0, 2, 0); } else { - x_571 = x_537; + x_546 = x_514; } -lean_ctor_set(x_571, 0, x_555); -lean_ctor_set(x_571, 1, x_536); -if (lean_is_scalar(x_535)) { +lean_ctor_set(x_546, 0, x_531); +lean_ctor_set(x_546, 1, x_513); +if (lean_is_scalar(x_512)) { + x_547 = lean_alloc_ctor(0, 2, 0); +} else { + x_547 = x_512; +} +lean_ctor_set(x_547, 0, x_544); +lean_ctor_set(x_547, 1, x_546); +x_548 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_548, 0, x_510); +lean_ctor_set(x_548, 1, x_547); +lean_ctor_set(x_20, 1, x_548); +x_549 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_549, 0, x_19); +x_550 = lean_apply_2(x_2, lean_box(0), x_549); +x_551 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_550); +return x_551; +} +else +{ +lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; uint8_t x_558; +lean_inc(x_542); +lean_inc(x_541); +lean_inc_ref(x_540); +if (lean_is_exclusive(x_510)) { + lean_ctor_release(x_510, 0); + lean_ctor_release(x_510, 1); + lean_ctor_release(x_510, 2); + x_552 = x_510; +} else { + lean_dec_ref(x_510); + x_552 = lean_box(0); +} +x_553 = lean_ctor_get(x_30, 0); +x_554 = lean_ctor_get(x_30, 1); +x_555 = lean_ctor_get(x_30, 2); +x_556 = lean_nat_add(x_541, x_529); +lean_inc_ref(x_540); +if (lean_is_scalar(x_552)) { + x_557 = lean_alloc_ctor(0, 3, 0); +} else { + x_557 = x_552; +} +lean_ctor_set(x_557, 0, x_540); +lean_ctor_set(x_557, 1, x_556); +lean_ctor_set(x_557, 2, x_542); +x_558 = lean_nat_dec_lt(x_554, x_555); +if (x_558 == 0) +{ +lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; +lean_dec(x_541); +lean_dec_ref(x_540); +lean_dec(x_527); +lean_dec_ref(x_526); +lean_dec(x_516); +lean_dec_ref(x_515); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +if (lean_is_scalar(x_514)) { + x_559 = lean_alloc_ctor(0, 2, 0); +} else { + x_559 = x_514; +} +lean_ctor_set(x_559, 0, x_531); +lean_ctor_set(x_559, 1, x_513); +if (lean_is_scalar(x_512)) { + x_560 = lean_alloc_ctor(0, 2, 0); +} else { + x_560 = x_512; +} +lean_ctor_set(x_560, 0, x_544); +lean_ctor_set(x_560, 1, x_559); +x_561 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_561, 0, x_557); +lean_ctor_set(x_561, 1, x_560); +lean_ctor_set(x_20, 1, x_561); +x_562 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_562, 0, x_19); +x_563 = lean_apply_2(x_2, lean_box(0), x_562); +x_564 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_563); +return x_564; +} +else +{ +lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; uint8_t x_571; +lean_inc(x_555); +lean_inc(x_554); +lean_inc_ref(x_553); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_565 = x_30; +} else { + lean_dec_ref(x_30); + x_565 = lean_box(0); +} +x_566 = lean_ctor_get(x_27, 0); +x_567 = lean_ctor_get(x_27, 1); +x_568 = lean_ctor_get(x_27, 2); +x_569 = lean_nat_add(x_554, x_529); +lean_inc_ref(x_553); +if (lean_is_scalar(x_565)) { + x_570 = lean_alloc_ctor(0, 3, 0); +} else { + x_570 = x_565; +} +lean_ctor_set(x_570, 0, x_553); +lean_ctor_set(x_570, 1, x_569); +lean_ctor_set(x_570, 2, x_555); +x_571 = lean_nat_dec_lt(x_567, x_568); +if (x_571 == 0) +{ +lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; +lean_dec(x_554); +lean_dec_ref(x_553); +lean_dec(x_541); +lean_dec_ref(x_540); +lean_dec(x_527); +lean_dec_ref(x_526); +lean_dec(x_516); +lean_dec_ref(x_515); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +if (lean_is_scalar(x_514)) { x_572 = lean_alloc_ctor(0, 2, 0); } else { - x_572 = x_535; + x_572 = x_514; } -lean_ctor_set(x_572, 0, x_569); -lean_ctor_set(x_572, 1, x_571); -if (lean_is_scalar(x_533)) { +lean_ctor_set(x_572, 0, x_531); +lean_ctor_set(x_572, 1, x_513); +if (lean_is_scalar(x_512)) { x_573 = lean_alloc_ctor(0, 2, 0); } else { - x_573 = x_533; + x_573 = x_512; } -lean_ctor_set(x_573, 0, x_532); +lean_ctor_set(x_573, 0, x_544); lean_ctor_set(x_573, 1, x_572); x_574 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_574, 0, x_531); +lean_ctor_set(x_574, 0, x_557); lean_ctor_set(x_574, 1, x_573); -lean_ctor_set(x_19, 1, x_574); +lean_ctor_set(x_20, 1, x_574); +lean_ctor_set(x_20, 0, x_570); x_575 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_575, 0, x_19); x_576 = lean_apply_2(x_2, lean_box(0), x_575); @@ -10999,327 +11112,50 @@ return x_577; } else { -lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; uint8_t x_584; +lean_object* x_578; lean_object* x_579; lean_object* x_580; uint8_t x_581; uint8_t x_582; +lean_inc(x_568); lean_inc(x_567); -lean_inc(x_566); -lean_inc_ref(x_565); -if (lean_is_exclusive(x_532)) { - lean_ctor_release(x_532, 0); - lean_ctor_release(x_532, 1); - lean_ctor_release(x_532, 2); - x_578 = x_532; -} else { - lean_dec_ref(x_532); - x_578 = lean_box(0); -} -x_579 = lean_ctor_get(x_531, 0); -x_580 = lean_ctor_get(x_531, 1); -x_581 = lean_ctor_get(x_531, 2); -x_582 = lean_nat_add(x_566, x_553); -lean_inc_ref(x_565); -if (lean_is_scalar(x_578)) { - x_583 = lean_alloc_ctor(0, 3, 0); -} else { - x_583 = x_578; -} -lean_ctor_set(x_583, 0, x_565); -lean_ctor_set(x_583, 1, x_582); -lean_ctor_set(x_583, 2, x_567); -x_584 = lean_nat_dec_lt(x_580, x_581); -if (x_584 == 0) -{ -lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; -lean_dec(x_566); -lean_dec_ref(x_565); -lean_dec(x_551); -lean_dec_ref(x_550); -lean_dec(x_539); -lean_dec_ref(x_538); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_537)) { - x_585 = lean_alloc_ctor(0, 2, 0); -} else { - x_585 = x_537; -} -lean_ctor_set(x_585, 0, x_555); -lean_ctor_set(x_585, 1, x_536); -if (lean_is_scalar(x_535)) { - x_586 = lean_alloc_ctor(0, 2, 0); -} else { - x_586 = x_535; -} -lean_ctor_set(x_586, 0, x_569); -lean_ctor_set(x_586, 1, x_585); -if (lean_is_scalar(x_533)) { - x_587 = lean_alloc_ctor(0, 2, 0); -} else { - x_587 = x_533; -} -lean_ctor_set(x_587, 0, x_583); -lean_ctor_set(x_587, 1, x_586); -x_588 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_588, 0, x_531); -lean_ctor_set(x_588, 1, x_587); -lean_ctor_set(x_19, 1, x_588); -x_589 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_589, 0, x_19); -x_590 = lean_apply_2(x_2, lean_box(0), x_589); -x_591 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_590); -return x_591; -} -else -{ -lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; uint8_t x_598; -lean_inc(x_581); -lean_inc(x_580); -lean_inc_ref(x_579); -if (lean_is_exclusive(x_531)) { - lean_ctor_release(x_531, 0); - lean_ctor_release(x_531, 1); - lean_ctor_release(x_531, 2); - x_592 = x_531; -} else { - lean_dec_ref(x_531); - x_592 = lean_box(0); -} -x_593 = lean_ctor_get(x_27, 0); -x_594 = lean_ctor_get(x_27, 1); -x_595 = lean_ctor_get(x_27, 2); -x_596 = lean_nat_add(x_580, x_553); -lean_inc_ref(x_579); -if (lean_is_scalar(x_592)) { - x_597 = lean_alloc_ctor(0, 3, 0); -} else { - x_597 = x_592; -} -lean_ctor_set(x_597, 0, x_579); -lean_ctor_set(x_597, 1, x_596); -lean_ctor_set(x_597, 2, x_581); -x_598 = lean_nat_dec_lt(x_594, x_595); -if (x_598 == 0) -{ -lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; -lean_dec(x_580); -lean_dec_ref(x_579); -lean_dec(x_566); -lean_dec_ref(x_565); -lean_dec(x_551); -lean_dec_ref(x_550); -lean_dec(x_539); -lean_dec_ref(x_538); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_537)) { - x_599 = lean_alloc_ctor(0, 2, 0); -} else { - x_599 = x_537; -} -lean_ctor_set(x_599, 0, x_555); -lean_ctor_set(x_599, 1, x_536); -if (lean_is_scalar(x_535)) { - x_600 = lean_alloc_ctor(0, 2, 0); -} else { - x_600 = x_535; -} -lean_ctor_set(x_600, 0, x_569); -lean_ctor_set(x_600, 1, x_599); -if (lean_is_scalar(x_533)) { - x_601 = lean_alloc_ctor(0, 2, 0); -} else { - x_601 = x_533; -} -lean_ctor_set(x_601, 0, x_583); -lean_ctor_set(x_601, 1, x_600); -x_602 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_602, 0, x_597); -lean_ctor_set(x_602, 1, x_601); -lean_ctor_set(x_19, 1, x_602); -x_603 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_603, 0, x_19); -x_604 = lean_apply_2(x_2, lean_box(0), x_603); -x_605 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_604); -return x_605; -} -else -{ -lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; -lean_inc(x_595); -lean_inc(x_594); -lean_inc_ref(x_593); -lean_dec(x_537); -lean_dec(x_535); -lean_dec(x_533); +lean_inc_ref(x_566); +lean_dec(x_514); +lean_dec(x_512); +lean_free_object(x_20); lean_free_object(x_19); if (lean_is_exclusive(x_27)) { lean_ctor_release(x_27, 0); lean_ctor_release(x_27, 1); lean_ctor_release(x_27, 2); - x_606 = x_27; + x_578 = x_27; } else { lean_dec_ref(x_27); - x_606 = lean_box(0); + x_578 = lean_box(0); } -x_607 = lean_array_fget(x_538, x_539); -lean_dec(x_539); -lean_dec_ref(x_538); -x_608 = lean_array_fget(x_550, x_551); -lean_dec(x_551); -lean_dec_ref(x_550); -x_609 = lean_array_fget(x_565, x_566); -lean_dec(x_566); -lean_dec_ref(x_565); -lean_inc(x_6); -lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_609); -x_610 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 6, 5); -lean_closure_set(x_610, 0, x_609); -lean_closure_set(x_610, 1, x_4); -lean_closure_set(x_610, 2, x_5); -lean_closure_set(x_610, 3, x_2); -lean_closure_set(x_610, 4, x_6); -x_611 = lean_array_fget(x_579, x_580); -lean_dec(x_580); +x_579 = lean_array_fget(x_553, x_554); +lean_dec(x_554); +lean_dec_ref(x_553); +x_580 = lean_ctor_get(x_579, 1); +x_581 = lean_ctor_get_uint8(x_579, sizeof(void*)*2); +x_582 = lean_nat_dec_eq(x_580, x_4); +if (x_582 == 0) +{ +lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_dec_ref(x_579); -x_612 = lean_array_fget_borrowed(x_593, x_594); -x_613 = lean_box(x_8); -x_614 = lean_box(x_9); -lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_15); -lean_inc_ref(x_14); -lean_inc_ref(x_612); -lean_inc(x_11); -x_615 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); -lean_closure_set(x_615, 0, x_7); -lean_closure_set(x_615, 1, x_613); -lean_closure_set(x_615, 2, x_614); -lean_closure_set(x_615, 3, x_6); -lean_closure_set(x_615, 4, x_10); -lean_closure_set(x_615, 5, x_16); -lean_closure_set(x_615, 6, x_11); -lean_closure_set(x_615, 7, x_612); -lean_closure_set(x_615, 8, x_12); -lean_closure_set(x_615, 9, x_13); -lean_closure_set(x_615, 10, x_14); -lean_closure_set(x_615, 11, x_15); -lean_closure_set(x_615, 12, x_4); -lean_closure_set(x_615, 13, x_609); -lean_closure_set(x_615, 14, x_610); -lean_closure_set(x_615, 15, x_5); -lean_closure_set(x_615, 16, x_2); -lean_closure_set(x_615, 17, x_553); -lean_closure_set(x_615, 18, x_607); -x_616 = lean_nat_add(x_594, x_553); -lean_dec(x_594); -if (lean_is_scalar(x_606)) { - x_617 = lean_alloc_ctor(0, 3, 0); -} else { - x_617 = x_606; -} -lean_ctor_set(x_617, 0, x_593); -lean_ctor_set(x_617, 1, x_616); -lean_ctor_set(x_617, 2, x_595); -lean_inc(x_11); -x_618 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); -lean_closure_set(x_618, 0, x_536); -lean_closure_set(x_618, 1, x_555); -lean_closure_set(x_618, 2, x_569); -lean_closure_set(x_618, 3, x_583); -lean_closure_set(x_618, 4, x_597); -lean_closure_set(x_618, 5, x_617); -lean_closure_set(x_618, 6, x_2); -lean_closure_set(x_618, 7, x_11); -x_619 = lean_nat_sub(x_611, x_4); -lean_dec(x_4); -lean_dec(x_611); -x_620 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_15, x_14, x_608, x_619, x_5, x_615); -x_621 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_620, x_618); -x_622 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_621); -return x_622; -} -} -} -} -} -} -} -else -{ -lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; uint8_t x_635; -x_623 = lean_ctor_get(x_19, 0); -lean_inc(x_623); -lean_dec(x_19); -x_624 = lean_ctor_get(x_20, 0); -lean_inc(x_624); -if (lean_is_exclusive(x_20)) { - lean_ctor_release(x_20, 0); - lean_ctor_release(x_20, 1); - x_625 = x_20; -} else { - lean_dec_ref(x_20); - x_625 = lean_box(0); -} -x_626 = lean_ctor_get(x_21, 0); -lean_inc(x_626); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - x_627 = x_21; -} else { - lean_dec_ref(x_21); - x_627 = lean_box(0); -} -x_628 = lean_ctor_get(x_22, 0); -lean_inc(x_628); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - lean_ctor_release(x_22, 1); - x_629 = x_22; -} else { - lean_dec_ref(x_22); - x_629 = lean_box(0); -} -x_630 = lean_ctor_get(x_23, 1); -lean_inc(x_630); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - x_631 = x_23; -} else { - lean_dec_ref(x_23); - x_631 = lean_box(0); -} -x_632 = lean_ctor_get(x_24, 0); -x_633 = lean_ctor_get(x_24, 1); -x_634 = lean_ctor_get(x_24, 2); -x_635 = lean_nat_dec_lt(x_633, x_634); -if (x_635 == 0) -{ -lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; +lean_dec(x_578); +lean_dec_ref(x_570); +lean_dec(x_568); +lean_dec(x_567); +lean_dec_ref(x_566); +lean_dec_ref(x_557); +lean_dec_ref(x_544); +lean_dec(x_541); +lean_dec_ref(x_540); +lean_dec_ref(x_531); +lean_dec(x_527); +lean_dec_ref(x_526); +lean_dec(x_516); +lean_dec_ref(x_515); +lean_dec(x_513); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -11327,82 +11163,215 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_631)) { - x_636 = lean_alloc_ctor(0, 2, 0); -} else { - x_636 = x_631; -} -lean_ctor_set(x_636, 0, x_24); -lean_ctor_set(x_636, 1, x_630); -if (lean_is_scalar(x_629)) { - x_637 = lean_alloc_ctor(0, 2, 0); -} else { - x_637 = x_629; -} -lean_ctor_set(x_637, 0, x_628); -lean_ctor_set(x_637, 1, x_636); -if (lean_is_scalar(x_627)) { - x_638 = lean_alloc_ctor(0, 2, 0); -} else { - x_638 = x_627; -} -lean_ctor_set(x_638, 0, x_626); -lean_ctor_set(x_638, 1, x_637); -if (lean_is_scalar(x_625)) { - x_639 = lean_alloc_ctor(0, 2, 0); -} else { - x_639 = x_625; -} -lean_ctor_set(x_639, 0, x_624); -lean_ctor_set(x_639, 1, x_638); -x_640 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_640, 0, x_623); -lean_ctor_set(x_640, 1, x_639); -x_641 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_641, 0, x_640); -x_642 = lean_apply_2(x_2, lean_box(0), x_641); -x_643 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_642); -return x_643; +lean_dec(x_2); +x_583 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_584 = l_instInhabitedOfMonad___redArg(x_5, x_583); +x_585 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +x_586 = l_panic___redArg(x_584, x_585); +x_587 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_586); +return x_587; } else { -lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; uint8_t x_651; -lean_inc(x_634); -lean_inc(x_633); -lean_inc_ref(x_632); +lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; +x_588 = lean_array_fget(x_515, x_516); +lean_dec(x_516); +lean_dec_ref(x_515); +x_589 = lean_array_fget(x_526, x_527); +lean_dec(x_527); +lean_dec_ref(x_526); +x_590 = lean_array_fget(x_540, x_541); +lean_dec(x_541); +lean_dec_ref(x_540); +lean_inc(x_6); +lean_inc(x_2); +lean_inc_ref(x_590); +x_591 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 4, 3); +lean_closure_set(x_591, 0, x_590); +lean_closure_set(x_591, 1, x_2); +lean_closure_set(x_591, 2, x_6); +x_592 = lean_array_fget_borrowed(x_566, x_567); +x_593 = lean_box(x_8); +x_594 = lean_box(x_9); +x_595 = lean_box(x_581); +lean_inc(x_2); +lean_inc_ref(x_14); +lean_inc_ref(x_592); +lean_inc(x_11); +lean_inc_ref(x_5); +x_596 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); +lean_closure_set(x_596, 0, x_590); +lean_closure_set(x_596, 1, x_5); +lean_closure_set(x_596, 2, x_7); +lean_closure_set(x_596, 3, x_593); +lean_closure_set(x_596, 4, x_594); +lean_closure_set(x_596, 5, x_6); +lean_closure_set(x_596, 6, x_10); +lean_closure_set(x_596, 7, x_16); +lean_closure_set(x_596, 8, x_11); +lean_closure_set(x_596, 9, x_592); +lean_closure_set(x_596, 10, x_12); +lean_closure_set(x_596, 11, x_13); +lean_closure_set(x_596, 12, x_14); +lean_closure_set(x_596, 13, x_15); +lean_closure_set(x_596, 14, x_591); +lean_closure_set(x_596, 15, x_595); +lean_closure_set(x_596, 16, x_2); +lean_closure_set(x_596, 17, x_529); +lean_closure_set(x_596, 18, x_588); +x_597 = lean_nat_add(x_567, x_529); +lean_dec(x_567); +if (lean_is_scalar(x_578)) { + x_598 = lean_alloc_ctor(0, 3, 0); +} else { + x_598 = x_578; +} +lean_ctor_set(x_598, 0, x_566); +lean_ctor_set(x_598, 1, x_597); +lean_ctor_set(x_598, 2, x_568); +lean_inc(x_11); +x_599 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); +lean_closure_set(x_599, 0, x_513); +lean_closure_set(x_599, 1, x_531); +lean_closure_set(x_599, 2, x_544); +lean_closure_set(x_599, 3, x_557); +lean_closure_set(x_599, 4, x_570); +lean_closure_set(x_599, 5, x_598); +lean_closure_set(x_599, 6, x_2); +lean_closure_set(x_599, 7, x_11); +x_600 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_5, x_14, x_589, x_579, x_596); +x_601 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_600, x_599); +x_602 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_601); +return x_602; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; uint8_t x_613; +x_603 = lean_ctor_get(x_20, 0); +lean_inc(x_603); +lean_dec(x_20); +x_604 = lean_ctor_get(x_21, 0); +lean_inc(x_604); +if (lean_is_exclusive(x_21)) { + lean_ctor_release(x_21, 0); + lean_ctor_release(x_21, 1); + x_605 = x_21; +} else { + lean_dec_ref(x_21); + x_605 = lean_box(0); +} +x_606 = lean_ctor_get(x_22, 0); +lean_inc(x_606); +if (lean_is_exclusive(x_22)) { + lean_ctor_release(x_22, 0); + lean_ctor_release(x_22, 1); + x_607 = x_22; +} else { + lean_dec_ref(x_22); + x_607 = lean_box(0); +} +x_608 = lean_ctor_get(x_23, 1); +lean_inc(x_608); +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + x_609 = x_23; +} else { + lean_dec_ref(x_23); + x_609 = lean_box(0); +} +x_610 = lean_ctor_get(x_24, 0); +x_611 = lean_ctor_get(x_24, 1); +x_612 = lean_ctor_get(x_24, 2); +x_613 = lean_nat_dec_lt(x_611, x_612); +if (x_613 == 0) +{ +lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +if (lean_is_scalar(x_609)) { + x_614 = lean_alloc_ctor(0, 2, 0); +} else { + x_614 = x_609; +} +lean_ctor_set(x_614, 0, x_24); +lean_ctor_set(x_614, 1, x_608); +if (lean_is_scalar(x_607)) { + x_615 = lean_alloc_ctor(0, 2, 0); +} else { + x_615 = x_607; +} +lean_ctor_set(x_615, 0, x_606); +lean_ctor_set(x_615, 1, x_614); +if (lean_is_scalar(x_605)) { + x_616 = lean_alloc_ctor(0, 2, 0); +} else { + x_616 = x_605; +} +lean_ctor_set(x_616, 0, x_604); +lean_ctor_set(x_616, 1, x_615); +x_617 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_617, 0, x_603); +lean_ctor_set(x_617, 1, x_616); +lean_ctor_set(x_19, 1, x_617); +x_618 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_618, 0, x_19); +x_619 = lean_apply_2(x_2, lean_box(0), x_618); +x_620 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_619); +return x_620; +} +else +{ +lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; uint8_t x_628; +lean_inc(x_612); +lean_inc(x_611); +lean_inc_ref(x_610); if (lean_is_exclusive(x_24)) { lean_ctor_release(x_24, 0); lean_ctor_release(x_24, 1); lean_ctor_release(x_24, 2); - x_644 = x_24; + x_621 = x_24; } else { lean_dec_ref(x_24); - x_644 = lean_box(0); + x_621 = lean_box(0); } -x_645 = lean_ctor_get(x_628, 0); -x_646 = lean_ctor_get(x_628, 1); -x_647 = lean_ctor_get(x_628, 2); -x_648 = lean_unsigned_to_nat(1u); -x_649 = lean_nat_add(x_633, x_648); -lean_inc_ref(x_632); -if (lean_is_scalar(x_644)) { - x_650 = lean_alloc_ctor(0, 3, 0); +x_622 = lean_ctor_get(x_606, 0); +x_623 = lean_ctor_get(x_606, 1); +x_624 = lean_ctor_get(x_606, 2); +x_625 = lean_unsigned_to_nat(1u); +x_626 = lean_nat_add(x_611, x_625); +lean_inc_ref(x_610); +if (lean_is_scalar(x_621)) { + x_627 = lean_alloc_ctor(0, 3, 0); } else { - x_650 = x_644; + x_627 = x_621; } -lean_ctor_set(x_650, 0, x_632); -lean_ctor_set(x_650, 1, x_649); -lean_ctor_set(x_650, 2, x_634); -x_651 = lean_nat_dec_lt(x_646, x_647); -if (x_651 == 0) +lean_ctor_set(x_627, 0, x_610); +lean_ctor_set(x_627, 1, x_626); +lean_ctor_set(x_627, 2, x_612); +x_628 = lean_nat_dec_lt(x_623, x_624); +if (x_628 == 0) { -lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; -lean_dec(x_633); -lean_dec_ref(x_632); +lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; +lean_dec(x_611); +lean_dec_ref(x_610); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -11410,83 +11379,155 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_631)) { - x_652 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_5); +if (lean_is_scalar(x_609)) { + x_629 = lean_alloc_ctor(0, 2, 0); } else { - x_652 = x_631; + x_629 = x_609; } -lean_ctor_set(x_652, 0, x_650); -lean_ctor_set(x_652, 1, x_630); -if (lean_is_scalar(x_629)) { - x_653 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_629, 0, x_627); +lean_ctor_set(x_629, 1, x_608); +if (lean_is_scalar(x_607)) { + x_630 = lean_alloc_ctor(0, 2, 0); } else { - x_653 = x_629; + x_630 = x_607; } -lean_ctor_set(x_653, 0, x_628); -lean_ctor_set(x_653, 1, x_652); -if (lean_is_scalar(x_627)) { - x_654 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_630, 0, x_606); +lean_ctor_set(x_630, 1, x_629); +if (lean_is_scalar(x_605)) { + x_631 = lean_alloc_ctor(0, 2, 0); } else { - x_654 = x_627; + x_631 = x_605; } -lean_ctor_set(x_654, 0, x_626); -lean_ctor_set(x_654, 1, x_653); -if (lean_is_scalar(x_625)) { - x_655 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_631, 0, x_604); +lean_ctor_set(x_631, 1, x_630); +x_632 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_632, 0, x_603); +lean_ctor_set(x_632, 1, x_631); +lean_ctor_set(x_19, 1, x_632); +x_633 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_633, 0, x_19); +x_634 = lean_apply_2(x_2, lean_box(0), x_633); +x_635 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_634); +return x_635; +} +else +{ +lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; uint8_t x_642; +lean_inc(x_624); +lean_inc(x_623); +lean_inc_ref(x_622); +if (lean_is_exclusive(x_606)) { + lean_ctor_release(x_606, 0); + lean_ctor_release(x_606, 1); + lean_ctor_release(x_606, 2); + x_636 = x_606; } else { - x_655 = x_625; + lean_dec_ref(x_606); + x_636 = lean_box(0); } -lean_ctor_set(x_655, 0, x_624); +x_637 = lean_ctor_get(x_604, 0); +x_638 = lean_ctor_get(x_604, 1); +x_639 = lean_ctor_get(x_604, 2); +x_640 = lean_nat_add(x_623, x_625); +lean_inc_ref(x_622); +if (lean_is_scalar(x_636)) { + x_641 = lean_alloc_ctor(0, 3, 0); +} else { + x_641 = x_636; +} +lean_ctor_set(x_641, 0, x_622); +lean_ctor_set(x_641, 1, x_640); +lean_ctor_set(x_641, 2, x_624); +x_642 = lean_nat_dec_lt(x_638, x_639); +if (x_642 == 0) +{ +lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; +lean_dec(x_623); +lean_dec_ref(x_622); +lean_dec(x_611); +lean_dec_ref(x_610); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +if (lean_is_scalar(x_609)) { + x_643 = lean_alloc_ctor(0, 2, 0); +} else { + x_643 = x_609; +} +lean_ctor_set(x_643, 0, x_627); +lean_ctor_set(x_643, 1, x_608); +if (lean_is_scalar(x_607)) { + x_644 = lean_alloc_ctor(0, 2, 0); +} else { + x_644 = x_607; +} +lean_ctor_set(x_644, 0, x_641); +lean_ctor_set(x_644, 1, x_643); +if (lean_is_scalar(x_605)) { + x_645 = lean_alloc_ctor(0, 2, 0); +} else { + x_645 = x_605; +} +lean_ctor_set(x_645, 0, x_604); +lean_ctor_set(x_645, 1, x_644); +x_646 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_646, 0, x_603); +lean_ctor_set(x_646, 1, x_645); +lean_ctor_set(x_19, 1, x_646); +x_647 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_647, 0, x_19); +x_648 = lean_apply_2(x_2, lean_box(0), x_647); +x_649 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_648); +return x_649; +} +else +{ +lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; uint8_t x_656; +lean_inc(x_639); +lean_inc(x_638); +lean_inc_ref(x_637); +if (lean_is_exclusive(x_604)) { + lean_ctor_release(x_604, 0); + lean_ctor_release(x_604, 1); + lean_ctor_release(x_604, 2); + x_650 = x_604; +} else { + lean_dec_ref(x_604); + x_650 = lean_box(0); +} +x_651 = lean_ctor_get(x_603, 0); +x_652 = lean_ctor_get(x_603, 1); +x_653 = lean_ctor_get(x_603, 2); +x_654 = lean_nat_add(x_638, x_625); +lean_inc_ref(x_637); +if (lean_is_scalar(x_650)) { + x_655 = lean_alloc_ctor(0, 3, 0); +} else { + x_655 = x_650; +} +lean_ctor_set(x_655, 0, x_637); lean_ctor_set(x_655, 1, x_654); -x_656 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_656, 0, x_623); -lean_ctor_set(x_656, 1, x_655); -x_657 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_657, 0, x_656); -x_658 = lean_apply_2(x_2, lean_box(0), x_657); -x_659 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_658); -return x_659; -} -else +lean_ctor_set(x_655, 2, x_639); +x_656 = lean_nat_dec_lt(x_652, x_653); +if (x_656 == 0) { -lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; uint8_t x_666; -lean_inc(x_647); -lean_inc(x_646); -lean_inc_ref(x_645); -if (lean_is_exclusive(x_628)) { - lean_ctor_release(x_628, 0); - lean_ctor_release(x_628, 1); - lean_ctor_release(x_628, 2); - x_660 = x_628; -} else { - lean_dec_ref(x_628); - x_660 = lean_box(0); -} -x_661 = lean_ctor_get(x_626, 0); -x_662 = lean_ctor_get(x_626, 1); -x_663 = lean_ctor_get(x_626, 2); -x_664 = lean_nat_add(x_646, x_648); -lean_inc_ref(x_645); -if (lean_is_scalar(x_660)) { - x_665 = lean_alloc_ctor(0, 3, 0); -} else { - x_665 = x_660; -} -lean_ctor_set(x_665, 0, x_645); -lean_ctor_set(x_665, 1, x_664); -lean_ctor_set(x_665, 2, x_647); -x_666 = lean_nat_dec_lt(x_662, x_663); -if (x_666 == 0) -{ -lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; -lean_dec(x_646); -lean_dec_ref(x_645); -lean_dec(x_633); -lean_dec_ref(x_632); +lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; +lean_dec(x_638); +lean_dec_ref(x_637); +lean_dec(x_623); +lean_dec_ref(x_622); +lean_dec(x_611); +lean_dec_ref(x_610); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -11494,85 +11535,80 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_631)) { - x_667 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_5); +if (lean_is_scalar(x_609)) { + x_657 = lean_alloc_ctor(0, 2, 0); } else { - x_667 = x_631; + x_657 = x_609; } -lean_ctor_set(x_667, 0, x_650); -lean_ctor_set(x_667, 1, x_630); -if (lean_is_scalar(x_629)) { - x_668 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_657, 0, x_627); +lean_ctor_set(x_657, 1, x_608); +if (lean_is_scalar(x_607)) { + x_658 = lean_alloc_ctor(0, 2, 0); } else { - x_668 = x_629; + x_658 = x_607; } -lean_ctor_set(x_668, 0, x_665); -lean_ctor_set(x_668, 1, x_667); -if (lean_is_scalar(x_627)) { - x_669 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_658, 0, x_641); +lean_ctor_set(x_658, 1, x_657); +if (lean_is_scalar(x_605)) { + x_659 = lean_alloc_ctor(0, 2, 0); } else { - x_669 = x_627; + x_659 = x_605; } -lean_ctor_set(x_669, 0, x_626); +lean_ctor_set(x_659, 0, x_655); +lean_ctor_set(x_659, 1, x_658); +x_660 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_660, 0, x_603); +lean_ctor_set(x_660, 1, x_659); +lean_ctor_set(x_19, 1, x_660); +x_661 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_661, 0, x_19); +x_662 = lean_apply_2(x_2, lean_box(0), x_661); +x_663 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_662); +return x_663; +} +else +{ +lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; uint8_t x_670; +lean_inc(x_653); +lean_inc(x_652); +lean_inc_ref(x_651); +if (lean_is_exclusive(x_603)) { + lean_ctor_release(x_603, 0); + lean_ctor_release(x_603, 1); + lean_ctor_release(x_603, 2); + x_664 = x_603; +} else { + lean_dec_ref(x_603); + x_664 = lean_box(0); +} +x_665 = lean_ctor_get(x_27, 0); +x_666 = lean_ctor_get(x_27, 1); +x_667 = lean_ctor_get(x_27, 2); +x_668 = lean_nat_add(x_652, x_625); +lean_inc_ref(x_651); +if (lean_is_scalar(x_664)) { + x_669 = lean_alloc_ctor(0, 3, 0); +} else { + x_669 = x_664; +} +lean_ctor_set(x_669, 0, x_651); lean_ctor_set(x_669, 1, x_668); -if (lean_is_scalar(x_625)) { - x_670 = lean_alloc_ctor(0, 2, 0); -} else { - x_670 = x_625; -} -lean_ctor_set(x_670, 0, x_624); -lean_ctor_set(x_670, 1, x_669); -x_671 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_671, 0, x_623); -lean_ctor_set(x_671, 1, x_670); -x_672 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_672, 0, x_671); -x_673 = lean_apply_2(x_2, lean_box(0), x_672); -x_674 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_673); -return x_674; -} -else +lean_ctor_set(x_669, 2, x_653); +x_670 = lean_nat_dec_lt(x_666, x_667); +if (x_670 == 0) { -lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; uint8_t x_681; -lean_inc(x_663); -lean_inc(x_662); -lean_inc_ref(x_661); -if (lean_is_exclusive(x_626)) { - lean_ctor_release(x_626, 0); - lean_ctor_release(x_626, 1); - lean_ctor_release(x_626, 2); - x_675 = x_626; -} else { - lean_dec_ref(x_626); - x_675 = lean_box(0); -} -x_676 = lean_ctor_get(x_624, 0); -x_677 = lean_ctor_get(x_624, 1); -x_678 = lean_ctor_get(x_624, 2); -x_679 = lean_nat_add(x_662, x_648); -lean_inc_ref(x_661); -if (lean_is_scalar(x_675)) { - x_680 = lean_alloc_ctor(0, 3, 0); -} else { - x_680 = x_675; -} -lean_ctor_set(x_680, 0, x_661); -lean_ctor_set(x_680, 1, x_679); -lean_ctor_set(x_680, 2, x_663); -x_681 = lean_nat_dec_lt(x_677, x_678); -if (x_681 == 0) -{ -lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; -lean_dec(x_662); -lean_dec_ref(x_661); -lean_dec(x_646); -lean_dec_ref(x_645); -lean_dec(x_633); -lean_dec_ref(x_632); +lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; +lean_dec(x_652); +lean_dec_ref(x_651); +lean_dec(x_638); +lean_dec_ref(x_637); +lean_dec(x_623); +lean_dec_ref(x_622); +lean_dec(x_611); +lean_dec_ref(x_610); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -11580,87 +11616,84 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_631)) { - x_682 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_5); +if (lean_is_scalar(x_609)) { + x_671 = lean_alloc_ctor(0, 2, 0); } else { - x_682 = x_631; + x_671 = x_609; } -lean_ctor_set(x_682, 0, x_650); -lean_ctor_set(x_682, 1, x_630); -if (lean_is_scalar(x_629)) { - x_683 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_671, 0, x_627); +lean_ctor_set(x_671, 1, x_608); +if (lean_is_scalar(x_607)) { + x_672 = lean_alloc_ctor(0, 2, 0); } else { - x_683 = x_629; + x_672 = x_607; } -lean_ctor_set(x_683, 0, x_665); -lean_ctor_set(x_683, 1, x_682); -if (lean_is_scalar(x_627)) { - x_684 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_672, 0, x_641); +lean_ctor_set(x_672, 1, x_671); +if (lean_is_scalar(x_605)) { + x_673 = lean_alloc_ctor(0, 2, 0); } else { - x_684 = x_627; + x_673 = x_605; } -lean_ctor_set(x_684, 0, x_680); -lean_ctor_set(x_684, 1, x_683); -if (lean_is_scalar(x_625)) { - x_685 = lean_alloc_ctor(0, 2, 0); -} else { - x_685 = x_625; -} -lean_ctor_set(x_685, 0, x_624); -lean_ctor_set(x_685, 1, x_684); -x_686 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_686, 0, x_623); -lean_ctor_set(x_686, 1, x_685); -x_687 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_687, 0, x_686); -x_688 = lean_apply_2(x_2, lean_box(0), x_687); -x_689 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_688); -return x_689; +lean_ctor_set(x_673, 0, x_655); +lean_ctor_set(x_673, 1, x_672); +x_674 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_674, 0, x_669); +lean_ctor_set(x_674, 1, x_673); +lean_ctor_set(x_19, 1, x_674); +x_675 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_675, 0, x_19); +x_676 = lean_apply_2(x_2, lean_box(0), x_675); +x_677 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_676); +return x_677; } else { -lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; uint8_t x_696; -lean_inc(x_678); -lean_inc(x_677); -lean_inc_ref(x_676); -if (lean_is_exclusive(x_624)) { - lean_ctor_release(x_624, 0); - lean_ctor_release(x_624, 1); - lean_ctor_release(x_624, 2); - x_690 = x_624; +lean_object* x_678; lean_object* x_679; lean_object* x_680; uint8_t x_681; uint8_t x_682; +lean_inc(x_667); +lean_inc(x_666); +lean_inc_ref(x_665); +lean_dec(x_609); +lean_dec(x_607); +lean_dec(x_605); +lean_free_object(x_19); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + lean_ctor_release(x_27, 2); + x_678 = x_27; } else { - lean_dec_ref(x_624); - x_690 = lean_box(0); + lean_dec_ref(x_27); + x_678 = lean_box(0); } -x_691 = lean_ctor_get(x_623, 0); -x_692 = lean_ctor_get(x_623, 1); -x_693 = lean_ctor_get(x_623, 2); -x_694 = lean_nat_add(x_677, x_648); -lean_inc_ref(x_676); -if (lean_is_scalar(x_690)) { - x_695 = lean_alloc_ctor(0, 3, 0); -} else { - x_695 = x_690; -} -lean_ctor_set(x_695, 0, x_676); -lean_ctor_set(x_695, 1, x_694); -lean_ctor_set(x_695, 2, x_678); -x_696 = lean_nat_dec_lt(x_692, x_693); -if (x_696 == 0) +x_679 = lean_array_fget(x_651, x_652); +lean_dec(x_652); +lean_dec_ref(x_651); +x_680 = lean_ctor_get(x_679, 1); +x_681 = lean_ctor_get_uint8(x_679, sizeof(void*)*2); +x_682 = lean_nat_dec_eq(x_680, x_4); +if (x_682 == 0) { -lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; -lean_dec(x_677); -lean_dec_ref(x_676); -lean_dec(x_662); -lean_dec_ref(x_661); -lean_dec(x_646); -lean_dec_ref(x_645); -lean_dec(x_633); -lean_dec_ref(x_632); +lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; +lean_dec_ref(x_679); +lean_dec(x_678); +lean_dec_ref(x_669); +lean_dec(x_667); +lean_dec(x_666); +lean_dec_ref(x_665); +lean_dec_ref(x_655); +lean_dec_ref(x_641); +lean_dec(x_638); +lean_dec_ref(x_637); +lean_dec_ref(x_627); +lean_dec(x_623); +lean_dec_ref(x_622); +lean_dec(x_611); +lean_dec_ref(x_610); +lean_dec(x_608); lean_dec(x_16); -lean_dec_ref(x_15); +lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec(x_12); @@ -11668,144 +11701,665 @@ lean_dec(x_11); lean_dec(x_10); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -if (lean_is_scalar(x_631)) { - x_697 = lean_alloc_ctor(0, 2, 0); -} else { - x_697 = x_631; +lean_dec(x_2); +x_683 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_684 = l_instInhabitedOfMonad___redArg(x_5, x_683); +x_685 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +x_686 = l_panic___redArg(x_684, x_685); +x_687 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_686); +return x_687; } -lean_ctor_set(x_697, 0, x_650); -lean_ctor_set(x_697, 1, x_630); -if (lean_is_scalar(x_629)) { - x_698 = lean_alloc_ctor(0, 2, 0); +else +{ +lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; +x_688 = lean_array_fget(x_610, x_611); +lean_dec(x_611); +lean_dec_ref(x_610); +x_689 = lean_array_fget(x_622, x_623); +lean_dec(x_623); +lean_dec_ref(x_622); +x_690 = lean_array_fget(x_637, x_638); +lean_dec(x_638); +lean_dec_ref(x_637); +lean_inc(x_6); +lean_inc(x_2); +lean_inc_ref(x_690); +x_691 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 4, 3); +lean_closure_set(x_691, 0, x_690); +lean_closure_set(x_691, 1, x_2); +lean_closure_set(x_691, 2, x_6); +x_692 = lean_array_fget_borrowed(x_665, x_666); +x_693 = lean_box(x_8); +x_694 = lean_box(x_9); +x_695 = lean_box(x_681); +lean_inc(x_2); +lean_inc_ref(x_14); +lean_inc_ref(x_692); +lean_inc(x_11); +lean_inc_ref(x_5); +x_696 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); +lean_closure_set(x_696, 0, x_690); +lean_closure_set(x_696, 1, x_5); +lean_closure_set(x_696, 2, x_7); +lean_closure_set(x_696, 3, x_693); +lean_closure_set(x_696, 4, x_694); +lean_closure_set(x_696, 5, x_6); +lean_closure_set(x_696, 6, x_10); +lean_closure_set(x_696, 7, x_16); +lean_closure_set(x_696, 8, x_11); +lean_closure_set(x_696, 9, x_692); +lean_closure_set(x_696, 10, x_12); +lean_closure_set(x_696, 11, x_13); +lean_closure_set(x_696, 12, x_14); +lean_closure_set(x_696, 13, x_15); +lean_closure_set(x_696, 14, x_691); +lean_closure_set(x_696, 15, x_695); +lean_closure_set(x_696, 16, x_2); +lean_closure_set(x_696, 17, x_625); +lean_closure_set(x_696, 18, x_688); +x_697 = lean_nat_add(x_666, x_625); +lean_dec(x_666); +if (lean_is_scalar(x_678)) { + x_698 = lean_alloc_ctor(0, 3, 0); } else { - x_698 = x_629; + x_698 = x_678; } lean_ctor_set(x_698, 0, x_665); lean_ctor_set(x_698, 1, x_697); -if (lean_is_scalar(x_627)) { - x_699 = lean_alloc_ctor(0, 2, 0); -} else { - x_699 = x_627; +lean_ctor_set(x_698, 2, x_667); +lean_inc(x_11); +x_699 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); +lean_closure_set(x_699, 0, x_608); +lean_closure_set(x_699, 1, x_627); +lean_closure_set(x_699, 2, x_641); +lean_closure_set(x_699, 3, x_655); +lean_closure_set(x_699, 4, x_669); +lean_closure_set(x_699, 5, x_698); +lean_closure_set(x_699, 6, x_2); +lean_closure_set(x_699, 7, x_11); +x_700 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_5, x_14, x_689, x_679, x_696); +x_701 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_700, x_699); +x_702 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_701); +return x_702; +} +} +} +} +} } -lean_ctor_set(x_699, 0, x_680); -lean_ctor_set(x_699, 1, x_698); -if (lean_is_scalar(x_625)) { - x_700 = lean_alloc_ctor(0, 2, 0); -} else { - x_700 = x_625; } -lean_ctor_set(x_700, 0, x_695); -lean_ctor_set(x_700, 1, x_699); -x_701 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_701, 0, x_623); -lean_ctor_set(x_701, 1, x_700); -x_702 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_702, 0, x_701); -x_703 = lean_apply_2(x_2, lean_box(0), x_702); -x_704 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_703); -return x_704; } else { -lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; -lean_inc(x_693); -lean_inc(x_692); -lean_inc_ref(x_691); -lean_dec(x_631); -lean_dec(x_629); -lean_dec(x_627); -lean_dec(x_625); -if (lean_is_exclusive(x_623)) { - lean_ctor_release(x_623, 0); - lean_ctor_release(x_623, 1); - lean_ctor_release(x_623, 2); - x_705 = x_623; +lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; uint8_t x_715; +x_703 = lean_ctor_get(x_19, 0); +lean_inc(x_703); +lean_dec(x_19); +x_704 = lean_ctor_get(x_20, 0); +lean_inc(x_704); +if (lean_is_exclusive(x_20)) { + lean_ctor_release(x_20, 0); + lean_ctor_release(x_20, 1); + x_705 = x_20; } else { - lean_dec_ref(x_623); + lean_dec_ref(x_20); x_705 = lean_box(0); } -x_706 = lean_array_fget(x_632, x_633); -lean_dec(x_633); -lean_dec_ref(x_632); -x_707 = lean_array_fget(x_645, x_646); -lean_dec(x_646); -lean_dec_ref(x_645); -x_708 = lean_array_fget(x_661, x_662); -lean_dec(x_662); -lean_dec_ref(x_661); +x_706 = lean_ctor_get(x_21, 0); +lean_inc(x_706); +if (lean_is_exclusive(x_21)) { + lean_ctor_release(x_21, 0); + lean_ctor_release(x_21, 1); + x_707 = x_21; +} else { + lean_dec_ref(x_21); + x_707 = lean_box(0); +} +x_708 = lean_ctor_get(x_22, 0); +lean_inc(x_708); +if (lean_is_exclusive(x_22)) { + lean_ctor_release(x_22, 0); + lean_ctor_release(x_22, 1); + x_709 = x_22; +} else { + lean_dec_ref(x_22); + x_709 = lean_box(0); +} +x_710 = lean_ctor_get(x_23, 1); +lean_inc(x_710); +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + x_711 = x_23; +} else { + lean_dec_ref(x_23); + x_711 = lean_box(0); +} +x_712 = lean_ctor_get(x_24, 0); +x_713 = lean_ctor_get(x_24, 1); +x_714 = lean_ctor_get(x_24, 2); +x_715 = lean_nat_dec_lt(x_713, x_714); +if (x_715 == 0) +{ +lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +if (lean_is_scalar(x_711)) { + x_716 = lean_alloc_ctor(0, 2, 0); +} else { + x_716 = x_711; +} +lean_ctor_set(x_716, 0, x_24); +lean_ctor_set(x_716, 1, x_710); +if (lean_is_scalar(x_709)) { + x_717 = lean_alloc_ctor(0, 2, 0); +} else { + x_717 = x_709; +} +lean_ctor_set(x_717, 0, x_708); +lean_ctor_set(x_717, 1, x_716); +if (lean_is_scalar(x_707)) { + x_718 = lean_alloc_ctor(0, 2, 0); +} else { + x_718 = x_707; +} +lean_ctor_set(x_718, 0, x_706); +lean_ctor_set(x_718, 1, x_717); +if (lean_is_scalar(x_705)) { + x_719 = lean_alloc_ctor(0, 2, 0); +} else { + x_719 = x_705; +} +lean_ctor_set(x_719, 0, x_704); +lean_ctor_set(x_719, 1, x_718); +x_720 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_720, 0, x_703); +lean_ctor_set(x_720, 1, x_719); +x_721 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_721, 0, x_720); +x_722 = lean_apply_2(x_2, lean_box(0), x_721); +x_723 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_722); +return x_723; +} +else +{ +lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; uint8_t x_731; +lean_inc(x_714); +lean_inc(x_713); +lean_inc_ref(x_712); +if (lean_is_exclusive(x_24)) { + lean_ctor_release(x_24, 0); + lean_ctor_release(x_24, 1); + lean_ctor_release(x_24, 2); + x_724 = x_24; +} else { + lean_dec_ref(x_24); + x_724 = lean_box(0); +} +x_725 = lean_ctor_get(x_708, 0); +x_726 = lean_ctor_get(x_708, 1); +x_727 = lean_ctor_get(x_708, 2); +x_728 = lean_unsigned_to_nat(1u); +x_729 = lean_nat_add(x_713, x_728); +lean_inc_ref(x_712); +if (lean_is_scalar(x_724)) { + x_730 = lean_alloc_ctor(0, 3, 0); +} else { + x_730 = x_724; +} +lean_ctor_set(x_730, 0, x_712); +lean_ctor_set(x_730, 1, x_729); +lean_ctor_set(x_730, 2, x_714); +x_731 = lean_nat_dec_lt(x_726, x_727); +if (x_731 == 0) +{ +lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; +lean_dec(x_713); +lean_dec_ref(x_712); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +if (lean_is_scalar(x_711)) { + x_732 = lean_alloc_ctor(0, 2, 0); +} else { + x_732 = x_711; +} +lean_ctor_set(x_732, 0, x_730); +lean_ctor_set(x_732, 1, x_710); +if (lean_is_scalar(x_709)) { + x_733 = lean_alloc_ctor(0, 2, 0); +} else { + x_733 = x_709; +} +lean_ctor_set(x_733, 0, x_708); +lean_ctor_set(x_733, 1, x_732); +if (lean_is_scalar(x_707)) { + x_734 = lean_alloc_ctor(0, 2, 0); +} else { + x_734 = x_707; +} +lean_ctor_set(x_734, 0, x_706); +lean_ctor_set(x_734, 1, x_733); +if (lean_is_scalar(x_705)) { + x_735 = lean_alloc_ctor(0, 2, 0); +} else { + x_735 = x_705; +} +lean_ctor_set(x_735, 0, x_704); +lean_ctor_set(x_735, 1, x_734); +x_736 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_736, 0, x_703); +lean_ctor_set(x_736, 1, x_735); +x_737 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_737, 0, x_736); +x_738 = lean_apply_2(x_2, lean_box(0), x_737); +x_739 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_738); +return x_739; +} +else +{ +lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; uint8_t x_746; +lean_inc(x_727); +lean_inc(x_726); +lean_inc_ref(x_725); +if (lean_is_exclusive(x_708)) { + lean_ctor_release(x_708, 0); + lean_ctor_release(x_708, 1); + lean_ctor_release(x_708, 2); + x_740 = x_708; +} else { + lean_dec_ref(x_708); + x_740 = lean_box(0); +} +x_741 = lean_ctor_get(x_706, 0); +x_742 = lean_ctor_get(x_706, 1); +x_743 = lean_ctor_get(x_706, 2); +x_744 = lean_nat_add(x_726, x_728); +lean_inc_ref(x_725); +if (lean_is_scalar(x_740)) { + x_745 = lean_alloc_ctor(0, 3, 0); +} else { + x_745 = x_740; +} +lean_ctor_set(x_745, 0, x_725); +lean_ctor_set(x_745, 1, x_744); +lean_ctor_set(x_745, 2, x_727); +x_746 = lean_nat_dec_lt(x_742, x_743); +if (x_746 == 0) +{ +lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; +lean_dec(x_726); +lean_dec_ref(x_725); +lean_dec(x_713); +lean_dec_ref(x_712); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +if (lean_is_scalar(x_711)) { + x_747 = lean_alloc_ctor(0, 2, 0); +} else { + x_747 = x_711; +} +lean_ctor_set(x_747, 0, x_730); +lean_ctor_set(x_747, 1, x_710); +if (lean_is_scalar(x_709)) { + x_748 = lean_alloc_ctor(0, 2, 0); +} else { + x_748 = x_709; +} +lean_ctor_set(x_748, 0, x_745); +lean_ctor_set(x_748, 1, x_747); +if (lean_is_scalar(x_707)) { + x_749 = lean_alloc_ctor(0, 2, 0); +} else { + x_749 = x_707; +} +lean_ctor_set(x_749, 0, x_706); +lean_ctor_set(x_749, 1, x_748); +if (lean_is_scalar(x_705)) { + x_750 = lean_alloc_ctor(0, 2, 0); +} else { + x_750 = x_705; +} +lean_ctor_set(x_750, 0, x_704); +lean_ctor_set(x_750, 1, x_749); +x_751 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_751, 0, x_703); +lean_ctor_set(x_751, 1, x_750); +x_752 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_752, 0, x_751); +x_753 = lean_apply_2(x_2, lean_box(0), x_752); +x_754 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_753); +return x_754; +} +else +{ +lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; uint8_t x_761; +lean_inc(x_743); +lean_inc(x_742); +lean_inc_ref(x_741); +if (lean_is_exclusive(x_706)) { + lean_ctor_release(x_706, 0); + lean_ctor_release(x_706, 1); + lean_ctor_release(x_706, 2); + x_755 = x_706; +} else { + lean_dec_ref(x_706); + x_755 = lean_box(0); +} +x_756 = lean_ctor_get(x_704, 0); +x_757 = lean_ctor_get(x_704, 1); +x_758 = lean_ctor_get(x_704, 2); +x_759 = lean_nat_add(x_742, x_728); +lean_inc_ref(x_741); +if (lean_is_scalar(x_755)) { + x_760 = lean_alloc_ctor(0, 3, 0); +} else { + x_760 = x_755; +} +lean_ctor_set(x_760, 0, x_741); +lean_ctor_set(x_760, 1, x_759); +lean_ctor_set(x_760, 2, x_743); +x_761 = lean_nat_dec_lt(x_757, x_758); +if (x_761 == 0) +{ +lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; +lean_dec(x_742); +lean_dec_ref(x_741); +lean_dec(x_726); +lean_dec_ref(x_725); +lean_dec(x_713); +lean_dec_ref(x_712); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +if (lean_is_scalar(x_711)) { + x_762 = lean_alloc_ctor(0, 2, 0); +} else { + x_762 = x_711; +} +lean_ctor_set(x_762, 0, x_730); +lean_ctor_set(x_762, 1, x_710); +if (lean_is_scalar(x_709)) { + x_763 = lean_alloc_ctor(0, 2, 0); +} else { + x_763 = x_709; +} +lean_ctor_set(x_763, 0, x_745); +lean_ctor_set(x_763, 1, x_762); +if (lean_is_scalar(x_707)) { + x_764 = lean_alloc_ctor(0, 2, 0); +} else { + x_764 = x_707; +} +lean_ctor_set(x_764, 0, x_760); +lean_ctor_set(x_764, 1, x_763); +if (lean_is_scalar(x_705)) { + x_765 = lean_alloc_ctor(0, 2, 0); +} else { + x_765 = x_705; +} +lean_ctor_set(x_765, 0, x_704); +lean_ctor_set(x_765, 1, x_764); +x_766 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_766, 0, x_703); +lean_ctor_set(x_766, 1, x_765); +x_767 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_767, 0, x_766); +x_768 = lean_apply_2(x_2, lean_box(0), x_767); +x_769 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_768); +return x_769; +} +else +{ +lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; uint8_t x_776; +lean_inc(x_758); +lean_inc(x_757); +lean_inc_ref(x_756); +if (lean_is_exclusive(x_704)) { + lean_ctor_release(x_704, 0); + lean_ctor_release(x_704, 1); + lean_ctor_release(x_704, 2); + x_770 = x_704; +} else { + lean_dec_ref(x_704); + x_770 = lean_box(0); +} +x_771 = lean_ctor_get(x_703, 0); +x_772 = lean_ctor_get(x_703, 1); +x_773 = lean_ctor_get(x_703, 2); +x_774 = lean_nat_add(x_757, x_728); +lean_inc_ref(x_756); +if (lean_is_scalar(x_770)) { + x_775 = lean_alloc_ctor(0, 3, 0); +} else { + x_775 = x_770; +} +lean_ctor_set(x_775, 0, x_756); +lean_ctor_set(x_775, 1, x_774); +lean_ctor_set(x_775, 2, x_758); +x_776 = lean_nat_dec_lt(x_772, x_773); +if (x_776 == 0) +{ +lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; +lean_dec(x_757); +lean_dec_ref(x_756); +lean_dec(x_742); +lean_dec_ref(x_741); +lean_dec(x_726); +lean_dec_ref(x_725); +lean_dec(x_713); +lean_dec_ref(x_712); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +if (lean_is_scalar(x_711)) { + x_777 = lean_alloc_ctor(0, 2, 0); +} else { + x_777 = x_711; +} +lean_ctor_set(x_777, 0, x_730); +lean_ctor_set(x_777, 1, x_710); +if (lean_is_scalar(x_709)) { + x_778 = lean_alloc_ctor(0, 2, 0); +} else { + x_778 = x_709; +} +lean_ctor_set(x_778, 0, x_745); +lean_ctor_set(x_778, 1, x_777); +if (lean_is_scalar(x_707)) { + x_779 = lean_alloc_ctor(0, 2, 0); +} else { + x_779 = x_707; +} +lean_ctor_set(x_779, 0, x_760); +lean_ctor_set(x_779, 1, x_778); +if (lean_is_scalar(x_705)) { + x_780 = lean_alloc_ctor(0, 2, 0); +} else { + x_780 = x_705; +} +lean_ctor_set(x_780, 0, x_775); +lean_ctor_set(x_780, 1, x_779); +x_781 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_781, 0, x_703); +lean_ctor_set(x_781, 1, x_780); +x_782 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_782, 0, x_781); +x_783 = lean_apply_2(x_2, lean_box(0), x_782); +x_784 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_783); +return x_784; +} +else +{ +lean_object* x_785; lean_object* x_786; lean_object* x_787; uint8_t x_788; uint8_t x_789; +lean_inc(x_773); +lean_inc(x_772); +lean_inc_ref(x_771); +lean_dec(x_711); +lean_dec(x_709); +lean_dec(x_707); +lean_dec(x_705); +if (lean_is_exclusive(x_703)) { + lean_ctor_release(x_703, 0); + lean_ctor_release(x_703, 1); + lean_ctor_release(x_703, 2); + x_785 = x_703; +} else { + lean_dec_ref(x_703); + x_785 = lean_box(0); +} +x_786 = lean_array_fget(x_756, x_757); +lean_dec(x_757); +lean_dec_ref(x_756); +x_787 = lean_ctor_get(x_786, 1); +x_788 = lean_ctor_get_uint8(x_786, sizeof(void*)*2); +x_789 = lean_nat_dec_eq(x_787, x_4); +if (x_789 == 0) +{ +lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; +lean_dec_ref(x_786); +lean_dec(x_785); +lean_dec_ref(x_775); +lean_dec(x_773); +lean_dec(x_772); +lean_dec_ref(x_771); +lean_dec_ref(x_760); +lean_dec_ref(x_745); +lean_dec(x_742); +lean_dec_ref(x_741); +lean_dec_ref(x_730); +lean_dec(x_726); +lean_dec_ref(x_725); +lean_dec(x_713); +lean_dec_ref(x_712); +lean_dec(x_710); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec(x_2); +x_790 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_791 = l_instInhabitedOfMonad___redArg(x_5, x_790); +x_792 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +x_793 = l_panic___redArg(x_791, x_792); +x_794 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_793); +return x_794; +} +else +{ +lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; +x_795 = lean_array_fget(x_712, x_713); +lean_dec(x_713); +lean_dec_ref(x_712); +x_796 = lean_array_fget(x_725, x_726); +lean_dec(x_726); +lean_dec_ref(x_725); +x_797 = lean_array_fget(x_741, x_742); +lean_dec(x_742); +lean_dec_ref(x_741); lean_inc(x_6); lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_708); -x_709 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 6, 5); -lean_closure_set(x_709, 0, x_708); -lean_closure_set(x_709, 1, x_4); -lean_closure_set(x_709, 2, x_5); -lean_closure_set(x_709, 3, x_2); -lean_closure_set(x_709, 4, x_6); -x_710 = lean_array_fget(x_676, x_677); -lean_dec(x_677); -lean_dec_ref(x_676); -x_711 = lean_array_fget_borrowed(x_691, x_692); -x_712 = lean_box(x_8); -x_713 = lean_box(x_9); +lean_inc_ref(x_797); +x_798 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed), 4, 3); +lean_closure_set(x_798, 0, x_797); +lean_closure_set(x_798, 1, x_2); +lean_closure_set(x_798, 2, x_6); +x_799 = lean_array_fget_borrowed(x_771, x_772); +x_800 = lean_box(x_8); +x_801 = lean_box(x_9); +x_802 = lean_box(x_788); lean_inc(x_2); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_15); lean_inc_ref(x_14); -lean_inc_ref(x_711); +lean_inc_ref(x_799); lean_inc(x_11); -x_714 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); -lean_closure_set(x_714, 0, x_7); -lean_closure_set(x_714, 1, x_712); -lean_closure_set(x_714, 2, x_713); -lean_closure_set(x_714, 3, x_6); -lean_closure_set(x_714, 4, x_10); -lean_closure_set(x_714, 5, x_16); -lean_closure_set(x_714, 6, x_11); -lean_closure_set(x_714, 7, x_711); -lean_closure_set(x_714, 8, x_12); -lean_closure_set(x_714, 9, x_13); -lean_closure_set(x_714, 10, x_14); -lean_closure_set(x_714, 11, x_15); -lean_closure_set(x_714, 12, x_4); -lean_closure_set(x_714, 13, x_708); -lean_closure_set(x_714, 14, x_709); -lean_closure_set(x_714, 15, x_5); -lean_closure_set(x_714, 16, x_2); -lean_closure_set(x_714, 17, x_648); -lean_closure_set(x_714, 18, x_706); -x_715 = lean_nat_add(x_692, x_648); -lean_dec(x_692); -if (lean_is_scalar(x_705)) { - x_716 = lean_alloc_ctor(0, 3, 0); +lean_inc_ref(x_5); +x_803 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed), 21, 19); +lean_closure_set(x_803, 0, x_797); +lean_closure_set(x_803, 1, x_5); +lean_closure_set(x_803, 2, x_7); +lean_closure_set(x_803, 3, x_800); +lean_closure_set(x_803, 4, x_801); +lean_closure_set(x_803, 5, x_6); +lean_closure_set(x_803, 6, x_10); +lean_closure_set(x_803, 7, x_16); +lean_closure_set(x_803, 8, x_11); +lean_closure_set(x_803, 9, x_799); +lean_closure_set(x_803, 10, x_12); +lean_closure_set(x_803, 11, x_13); +lean_closure_set(x_803, 12, x_14); +lean_closure_set(x_803, 13, x_15); +lean_closure_set(x_803, 14, x_798); +lean_closure_set(x_803, 15, x_802); +lean_closure_set(x_803, 16, x_2); +lean_closure_set(x_803, 17, x_728); +lean_closure_set(x_803, 18, x_795); +x_804 = lean_nat_add(x_772, x_728); +lean_dec(x_772); +if (lean_is_scalar(x_785)) { + x_805 = lean_alloc_ctor(0, 3, 0); } else { - x_716 = x_705; + x_805 = x_785; } -lean_ctor_set(x_716, 0, x_691); -lean_ctor_set(x_716, 1, x_715); -lean_ctor_set(x_716, 2, x_693); +lean_ctor_set(x_805, 0, x_771); +lean_ctor_set(x_805, 1, x_804); +lean_ctor_set(x_805, 2, x_773); lean_inc(x_11); -x_717 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); -lean_closure_set(x_717, 0, x_630); -lean_closure_set(x_717, 1, x_650); -lean_closure_set(x_717, 2, x_665); -lean_closure_set(x_717, 3, x_680); -lean_closure_set(x_717, 4, x_695); -lean_closure_set(x_717, 5, x_716); -lean_closure_set(x_717, 6, x_2); -lean_closure_set(x_717, 7, x_11); -x_718 = lean_nat_sub(x_710, x_4); -lean_dec(x_4); -lean_dec(x_710); -x_719 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_15, x_14, x_707, x_718, x_5, x_714); -x_720 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_719, x_717); -x_721 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_720); -return x_721; +x_806 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__50), 9, 8); +lean_closure_set(x_806, 0, x_710); +lean_closure_set(x_806, 1, x_730); +lean_closure_set(x_806, 2, x_745); +lean_closure_set(x_806, 3, x_760); +lean_closure_set(x_806, 4, x_775); +lean_closure_set(x_806, 5, x_805); +lean_closure_set(x_806, 6, x_2); +lean_closure_set(x_806, 7, x_11); +x_807 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg(x_5, x_14, x_796, x_786, x_803); +x_808 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_807, x_806); +x_809 = lean_apply_4(x_25, lean_box(0), lean_box(0), x_3, x_808); +return x_809; +} } } } @@ -11878,109 +12432,124 @@ x_25 = lean_apply_4(x_16, lean_box(0), lean_box(0), x_24, x_23); return x_25; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__54(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__54(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25) { _start: { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_14 = l_Std_PRange_instUpwardEnumerableNat; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_26 = l_Std_PRange_instUpwardEnumerableNat; +x_27 = lean_ctor_get(x_1, 2); +lean_inc_ref(x_27); +lean_dec_ref(x_1); +lean_inc(x_4); lean_inc(x_3); -lean_inc(x_2); -x_15 = l_Array_toSubarray___redArg(x_1, x_2, x_3); -x_16 = l_Lean_Meta_MatcherApp_altNumParams(x_4); -x_17 = lean_array_get_size(x_16); -lean_inc(x_2); -x_18 = l_Array_toSubarray___redArg(x_16, x_2, x_17); -x_19 = lean_array_get_size(x_5); -lean_inc(x_2); -x_20 = l_Array_toSubarray___redArg(x_5, x_2, x_19); -x_21 = lean_array_get_size(x_6); -lean_inc(x_2); -x_22 = l_Array_toSubarray___redArg(x_6, x_2, x_21); -x_23 = lean_array_get_size(x_13); -lean_inc(x_2); -x_24 = l_Array_toSubarray___redArg(x_13, x_2, x_23); -x_25 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_25, 0, x_24); -lean_ctor_set(x_25, 1, x_7); -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_22); -lean_ctor_set(x_26, 1, x_25); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_20); -lean_ctor_set(x_27, 1, x_26); -x_28 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_28, 0, x_18); -lean_ctor_set(x_28, 1, x_27); -x_29 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_29, 0, x_15); -lean_ctor_set(x_29, 1, x_28); -x_30 = lean_nat_dec_lt(x_2, x_3); -if (x_30 == 0) +x_28 = l_Array_toSubarray___redArg(x_2, x_3, x_4); +lean_inc(x_20); +lean_inc(x_17); +lean_inc_ref(x_8); +x_29 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__53___boxed), 17, 16); +lean_closure_set(x_29, 0, x_5); +lean_closure_set(x_29, 1, x_6); +lean_closure_set(x_29, 2, x_7); +lean_closure_set(x_29, 3, x_8); +lean_closure_set(x_29, 4, x_9); +lean_closure_set(x_29, 5, x_10); +lean_closure_set(x_29, 6, x_11); +lean_closure_set(x_29, 7, x_12); +lean_closure_set(x_29, 8, x_13); +lean_closure_set(x_29, 9, x_14); +lean_closure_set(x_29, 10, x_15); +lean_closure_set(x_29, 11, x_16); +lean_closure_set(x_29, 12, x_17); +lean_closure_set(x_29, 13, x_18); +lean_closure_set(x_29, 14, x_19); +lean_closure_set(x_29, 15, x_20); +x_30 = lean_array_get_size(x_8); +lean_inc(x_3); +x_31 = l_Array_toSubarray___redArg(x_8, x_3, x_30); +x_32 = lean_array_get_size(x_27); +lean_inc(x_3); +x_33 = l_Array_toSubarray___redArg(x_27, x_3, x_32); +x_34 = lean_array_get_size(x_21); +lean_inc(x_3); +x_35 = l_Array_toSubarray___redArg(x_21, x_3, x_34); +x_36 = lean_array_get_size(x_25); +lean_inc(x_3); +x_37 = l_Array_toSubarray___redArg(x_25, x_3, x_36); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_22); +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_35); +lean_ctor_set(x_39, 1, x_38); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_33); +lean_ctor_set(x_40, 1, x_39); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_31); +lean_ctor_set(x_41, 1, x_40); +x_42 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_42, 0, x_28); +lean_ctor_set(x_42, 1, x_41); +x_43 = lean_nat_dec_lt(x_3, x_4); +if (x_43 == 0) { -lean_object* x_31; lean_object* x_32; -lean_dec(x_12); -lean_dec_ref(x_11); +lean_object* x_44; lean_object* x_45; +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_4); lean_dec(x_3); -lean_dec(x_2); -x_31 = lean_apply_2(x_8, lean_box(0), x_29); -x_32 = lean_apply_4(x_9, lean_box(0), lean_box(0), x_31, x_10); -return x_32; +x_44 = lean_apply_2(x_17, lean_box(0), x_42); +x_45 = lean_apply_4(x_20, lean_box(0), lean_box(0), x_44, x_29); +return x_45; } else { -lean_object* x_33; lean_object* x_34; lean_object* x_35; -lean_dec(x_8); -x_33 = l_Lean_Meta_MatcherApp_transform___redArg___lam__34___closed__0; -x_34 = l_Std_Rxo_Iterator_instIteratorLoop_loop___redArg(x_14, x_33, x_11, x_3, x_29, x_12, x_2); -x_35 = lean_apply_4(x_9, lean_box(0), lean_box(0), x_34, x_10); -return x_35; +lean_object* x_46; lean_object* x_47; lean_object* x_48; +lean_dec(x_17); +x_46 = l_Lean_Meta_MatcherApp_transform___redArg___lam__34___closed__0; +x_47 = l_Std_Rxo_Iterator_instIteratorLoop_loop___redArg(x_26, x_46, x_23, x_4, x_42, x_24, x_3); +x_48 = lean_apply_4(x_20, lean_box(0), lean_box(0), x_47, x_29); +return x_48; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__55(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27, lean_object* x_28) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__55(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27) { _start: { -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; -lean_inc(x_15); -lean_inc(x_12); -x_29 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__53___boxed), 17, 16); -lean_closure_set(x_29, 0, x_27); -lean_closure_set(x_29, 1, x_1); -lean_closure_set(x_29, 2, x_2); -lean_closure_set(x_29, 3, x_3); -lean_closure_set(x_29, 4, x_4); -lean_closure_set(x_29, 5, x_5); -lean_closure_set(x_29, 6, x_6); -lean_closure_set(x_29, 7, x_7); -lean_closure_set(x_29, 8, x_8); -lean_closure_set(x_29, 9, x_9); -lean_closure_set(x_29, 10, x_10); -lean_closure_set(x_29, 11, x_11); -lean_closure_set(x_29, 12, x_12); -lean_closure_set(x_29, 13, x_13); -lean_closure_set(x_29, 14, x_14); -lean_closure_set(x_29, 15, x_15); -lean_inc(x_15); -lean_inc(x_18); -x_30 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__54), 13, 12); -lean_closure_set(x_30, 0, x_16); -lean_closure_set(x_30, 1, x_17); -lean_closure_set(x_30, 2, x_18); -lean_closure_set(x_30, 3, x_19); -lean_closure_set(x_30, 4, x_20); -lean_closure_set(x_30, 5, x_21); -lean_closure_set(x_30, 6, x_22); -lean_closure_set(x_30, 7, x_12); -lean_closure_set(x_30, 8, x_15); -lean_closure_set(x_30, 9, x_29); -lean_closure_set(x_30, 10, x_23); -lean_closure_set(x_30, 11, x_24); -x_31 = lean_alloc_closure((void*)(l_Lean_Meta_inferArgumentTypesN___boxed), 7, 2); -lean_closure_set(x_31, 0, x_18); -lean_closure_set(x_31, 1, x_25); -x_32 = lean_apply_2(x_26, lean_box(0), x_31); -x_33 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_32, x_30); -return x_33; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_inc(x_19); +lean_inc(x_4); +x_28 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__54___boxed), 25, 24); +lean_closure_set(x_28, 0, x_1); +lean_closure_set(x_28, 1, x_2); +lean_closure_set(x_28, 2, x_3); +lean_closure_set(x_28, 3, x_4); +lean_closure_set(x_28, 4, x_26); +lean_closure_set(x_28, 5, x_5); +lean_closure_set(x_28, 6, x_6); +lean_closure_set(x_28, 7, x_7); +lean_closure_set(x_28, 8, x_8); +lean_closure_set(x_28, 9, x_9); +lean_closure_set(x_28, 10, x_10); +lean_closure_set(x_28, 11, x_11); +lean_closure_set(x_28, 12, x_12); +lean_closure_set(x_28, 13, x_13); +lean_closure_set(x_28, 14, x_14); +lean_closure_set(x_28, 15, x_15); +lean_closure_set(x_28, 16, x_16); +lean_closure_set(x_28, 17, x_17); +lean_closure_set(x_28, 18, x_18); +lean_closure_set(x_28, 19, x_19); +lean_closure_set(x_28, 20, x_20); +lean_closure_set(x_28, 21, x_21); +lean_closure_set(x_28, 22, x_22); +lean_closure_set(x_28, 23, x_23); +x_29 = lean_alloc_closure((void*)(l_Lean_Meta_inferArgumentTypesN___boxed), 7, 2); +lean_closure_set(x_29, 0, x_4); +lean_closure_set(x_29, 1, x_24); +x_30 = lean_apply_2(x_25, lean_box(0), x_29); +x_31 = lean_apply_4(x_19, lean_box(0), lean_box(0), x_30, x_28); +return x_31; } } LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__56(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -12132,157 +12701,154 @@ return x_41; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__60(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__60(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26) { _start: { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_28 = lean_ctor_get(x_27, 1); -lean_inc(x_28); -x_29 = lean_ctor_get(x_27, 2); -lean_inc_ref(x_29); -lean_dec_ref(x_27); -lean_inc(x_28); -x_30 = l_Lean_mkConst(x_28, x_1); -x_31 = l_Lean_mkAppN(x_30, x_2); +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_27 = lean_ctor_get(x_26, 1); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 2); +lean_inc_ref(x_28); +lean_dec_ref(x_26); +lean_inc(x_27); +x_29 = l_Lean_mkConst(x_27, x_1); +x_30 = l_Lean_mkAppN(x_29, x_2); lean_inc_ref(x_3); -x_32 = l_Lean_Expr_app___override(x_31, x_3); -x_33 = l_Lean_mkAppN(x_32, x_4); -lean_inc(x_24); -lean_inc_ref(x_33); +x_31 = l_Lean_Expr_app___override(x_30, x_3); +x_32 = l_Lean_mkAppN(x_31, x_4); +lean_inc(x_23); +lean_inc_ref(x_32); +lean_inc(x_18); lean_inc(x_15); -lean_inc(x_12); -x_34 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__55___boxed), 28, 26); -lean_closure_set(x_34, 0, x_5); -lean_closure_set(x_34, 1, x_6); -lean_closure_set(x_34, 2, x_7); -lean_closure_set(x_34, 3, x_8); -lean_closure_set(x_34, 4, x_9); -lean_closure_set(x_34, 5, x_10); -lean_closure_set(x_34, 6, x_28); -lean_closure_set(x_34, 7, x_11); -lean_closure_set(x_34, 8, x_2); -lean_closure_set(x_34, 9, x_3); -lean_closure_set(x_34, 10, x_4); -lean_closure_set(x_34, 11, x_12); -lean_closure_set(x_34, 12, x_13); -lean_closure_set(x_34, 13, x_14); -lean_closure_set(x_34, 14, x_15); -lean_closure_set(x_34, 15, x_16); -lean_closure_set(x_34, 16, x_17); -lean_closure_set(x_34, 17, x_18); -lean_closure_set(x_34, 18, x_19); -lean_closure_set(x_34, 19, x_29); -lean_closure_set(x_34, 20, x_20); -lean_closure_set(x_34, 21, x_21); -lean_closure_set(x_34, 22, x_22); -lean_closure_set(x_34, 23, x_23); -lean_closure_set(x_34, 24, x_33); -lean_closure_set(x_34, 25, x_24); -x_35 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__56), 3, 2); -lean_closure_set(x_35, 0, x_34); -lean_closure_set(x_35, 1, x_25); -lean_inc_ref(x_35); -lean_inc(x_15); -lean_inc(x_24); -lean_inc_ref(x_33); -x_36 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__59___boxed), 8, 7); -lean_closure_set(x_36, 0, x_26); -lean_closure_set(x_36, 1, x_33); -lean_closure_set(x_36, 2, x_24); -lean_closure_set(x_36, 3, x_15); -lean_closure_set(x_36, 4, x_35); -lean_closure_set(x_36, 5, x_12); -lean_closure_set(x_36, 6, x_35); -x_37 = lean_alloc_closure((void*)(l_Lean_Meta_isTypeCorrect___boxed), 6, 1); -lean_closure_set(x_37, 0, x_33); -x_38 = lean_apply_2(x_24, lean_box(0), x_37); -x_39 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_38, x_36); -return x_39; +x_33 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__55___boxed), 27, 25); +lean_closure_set(x_33, 0, x_28); +lean_closure_set(x_33, 1, x_5); +lean_closure_set(x_33, 2, x_6); +lean_closure_set(x_33, 3, x_7); +lean_closure_set(x_33, 4, x_8); +lean_closure_set(x_33, 5, x_9); +lean_closure_set(x_33, 6, x_10); +lean_closure_set(x_33, 7, x_11); +lean_closure_set(x_33, 8, x_12); +lean_closure_set(x_33, 9, x_13); +lean_closure_set(x_33, 10, x_27); +lean_closure_set(x_33, 11, x_14); +lean_closure_set(x_33, 12, x_2); +lean_closure_set(x_33, 13, x_3); +lean_closure_set(x_33, 14, x_4); +lean_closure_set(x_33, 15, x_15); +lean_closure_set(x_33, 16, x_16); +lean_closure_set(x_33, 17, x_17); +lean_closure_set(x_33, 18, x_18); +lean_closure_set(x_33, 19, x_19); +lean_closure_set(x_33, 20, x_20); +lean_closure_set(x_33, 21, x_21); +lean_closure_set(x_33, 22, x_22); +lean_closure_set(x_33, 23, x_32); +lean_closure_set(x_33, 24, x_23); +x_34 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__56), 3, 2); +lean_closure_set(x_34, 0, x_33); +lean_closure_set(x_34, 1, x_24); +lean_inc_ref(x_34); +lean_inc(x_18); +lean_inc(x_23); +lean_inc_ref(x_32); +x_35 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__59___boxed), 8, 7); +lean_closure_set(x_35, 0, x_25); +lean_closure_set(x_35, 1, x_32); +lean_closure_set(x_35, 2, x_23); +lean_closure_set(x_35, 3, x_18); +lean_closure_set(x_35, 4, x_34); +lean_closure_set(x_35, 5, x_15); +lean_closure_set(x_35, 6, x_34); +x_36 = lean_alloc_closure((void*)(l_Lean_Meta_isTypeCorrect___boxed), 6, 1); +lean_closure_set(x_36, 0, x_32); +x_37 = lean_apply_2(x_23, lean_box(0), x_36); +x_38 = lean_apply_4(x_18, lean_box(0), lean_box(0), x_37, x_35); +return x_38; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__61(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__61(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26) { _start: { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; -lean_inc(x_23); -lean_inc(x_15); -x_28 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__60___boxed), 27, 26); -lean_closure_set(x_28, 0, x_1); -lean_closure_set(x_28, 1, x_2); -lean_closure_set(x_28, 2, x_3); -lean_closure_set(x_28, 3, x_4); -lean_closure_set(x_28, 4, x_5); +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_inc(x_22); +lean_inc(x_18); +x_27 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__60___boxed), 26, 25); +lean_closure_set(x_27, 0, x_1); +lean_closure_set(x_27, 1, x_2); +lean_closure_set(x_27, 2, x_3); +lean_closure_set(x_27, 3, x_4); +lean_closure_set(x_27, 4, x_5); +lean_closure_set(x_27, 5, x_6); +lean_closure_set(x_27, 6, x_7); +lean_closure_set(x_27, 7, x_8); +lean_closure_set(x_27, 8, x_9); +lean_closure_set(x_27, 9, x_10); +lean_closure_set(x_27, 10, x_11); +lean_closure_set(x_27, 11, x_12); +lean_closure_set(x_27, 12, x_13); +lean_closure_set(x_27, 13, x_14); +lean_closure_set(x_27, 14, x_15); +lean_closure_set(x_27, 15, x_16); +lean_closure_set(x_27, 16, x_17); +lean_closure_set(x_27, 17, x_18); +lean_closure_set(x_27, 18, x_26); +lean_closure_set(x_27, 19, x_19); +lean_closure_set(x_27, 20, x_20); +lean_closure_set(x_27, 21, x_21); +lean_closure_set(x_27, 22, x_22); +lean_closure_set(x_27, 23, x_23); +lean_closure_set(x_27, 24, x_24); +x_28 = lean_alloc_closure((void*)(l_Lean_Meta_Match_getEquationsFor___boxed), 6, 1); +lean_closure_set(x_28, 0, x_25); +x_29 = lean_apply_2(x_22, lean_box(0), x_28); +x_30 = lean_apply_4(x_18, lean_box(0), lean_box(0), x_29, x_27); +return x_30; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__62(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26) { +_start: +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_27 = lean_array_get_size(x_1); +lean_inc(x_21); +lean_inc(x_17); +lean_inc(x_27); +x_28 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__61___boxed), 26, 25); +lean_closure_set(x_28, 0, x_2); +lean_closure_set(x_28, 1, x_3); +lean_closure_set(x_28, 2, x_4); +lean_closure_set(x_28, 3, x_5); +lean_closure_set(x_28, 4, x_1); lean_closure_set(x_28, 5, x_6); -lean_closure_set(x_28, 6, x_7); -lean_closure_set(x_28, 7, x_8); -lean_closure_set(x_28, 8, x_9); -lean_closure_set(x_28, 9, x_10); -lean_closure_set(x_28, 10, x_11); -lean_closure_set(x_28, 11, x_12); -lean_closure_set(x_28, 12, x_13); -lean_closure_set(x_28, 13, x_14); -lean_closure_set(x_28, 14, x_15); -lean_closure_set(x_28, 15, x_16); -lean_closure_set(x_28, 16, x_17); -lean_closure_set(x_28, 17, x_18); -lean_closure_set(x_28, 18, x_19); -lean_closure_set(x_28, 19, x_27); +lean_closure_set(x_28, 6, x_27); +lean_closure_set(x_28, 7, x_7); +lean_closure_set(x_28, 8, x_8); +lean_closure_set(x_28, 9, x_9); +lean_closure_set(x_28, 10, x_10); +lean_closure_set(x_28, 11, x_11); +lean_closure_set(x_28, 12, x_12); +lean_closure_set(x_28, 13, x_13); +lean_closure_set(x_28, 14, x_14); +lean_closure_set(x_28, 15, x_15); +lean_closure_set(x_28, 16, x_16); +lean_closure_set(x_28, 17, x_17); +lean_closure_set(x_28, 18, x_18); +lean_closure_set(x_28, 19, x_19); lean_closure_set(x_28, 20, x_20); lean_closure_set(x_28, 21, x_21); -lean_closure_set(x_28, 22, x_22); -lean_closure_set(x_28, 23, x_23); -lean_closure_set(x_28, 24, x_24); -lean_closure_set(x_28, 25, x_25); -x_29 = lean_alloc_closure((void*)(l_Lean_Meta_Match_getEquationsFor___boxed), 6, 1); -lean_closure_set(x_29, 0, x_26); -x_30 = lean_apply_2(x_23, lean_box(0), x_29); -x_31 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_30, x_28); +lean_closure_set(x_28, 22, x_25); +lean_closure_set(x_28, 23, x_22); +lean_closure_set(x_28, 24, x_23); +x_29 = lean_alloc_closure((void*)(l_Lean_Meta_inferArgumentTypesN___boxed), 7, 2); +lean_closure_set(x_29, 0, x_27); +lean_closure_set(x_29, 1, x_24); +x_30 = lean_apply_2(x_21, lean_box(0), x_29); +x_31 = lean_apply_4(x_17, lean_box(0), lean_box(0), x_30, x_28); return x_31; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__62(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27) { -_start: -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_28 = lean_array_get_size(x_1); -lean_inc(x_22); -lean_inc(x_28); -lean_inc(x_16); -x_29 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__61___boxed), 27, 26); -lean_closure_set(x_29, 0, x_2); -lean_closure_set(x_29, 1, x_3); -lean_closure_set(x_29, 2, x_4); -lean_closure_set(x_29, 3, x_5); -lean_closure_set(x_29, 4, x_6); -lean_closure_set(x_29, 5, x_7); -lean_closure_set(x_29, 6, x_8); -lean_closure_set(x_29, 7, x_9); -lean_closure_set(x_29, 8, x_10); -lean_closure_set(x_29, 9, x_11); -lean_closure_set(x_29, 10, x_12); -lean_closure_set(x_29, 11, x_13); -lean_closure_set(x_29, 12, x_14); -lean_closure_set(x_29, 13, x_15); -lean_closure_set(x_29, 14, x_16); -lean_closure_set(x_29, 15, x_1); -lean_closure_set(x_29, 16, x_17); -lean_closure_set(x_29, 17, x_28); -lean_closure_set(x_29, 18, x_18); -lean_closure_set(x_29, 19, x_19); -lean_closure_set(x_29, 20, x_20); -lean_closure_set(x_29, 21, x_21); -lean_closure_set(x_29, 22, x_22); -lean_closure_set(x_29, 23, x_26); -lean_closure_set(x_29, 24, x_23); -lean_closure_set(x_29, 25, x_24); -x_30 = lean_alloc_closure((void*)(l_Lean_Meta_inferArgumentTypesN___boxed), 7, 2); -lean_closure_set(x_30, 0, x_28); -lean_closure_set(x_30, 1, x_25); -x_31 = lean_apply_2(x_22, lean_box(0), x_30); -x_32 = lean_apply_4(x_16, lean_box(0), lean_box(0), x_31, x_29); -return x_32; -} -} static lean_object* _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__67___closed__0() { _start: { @@ -12402,8 +12968,8 @@ lean_dec(x_38); if (x_31 == 0) { lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec(x_34); +lean_dec(x_35); +lean_dec_ref(x_34); lean_dec_ref(x_33); goto block_57; } @@ -12415,32 +12981,33 @@ lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean lean_dec(x_30); lean_dec(x_29); lean_dec_ref(x_28); +lean_dec_ref(x_26); lean_dec(x_10); lean_dec_ref(x_3); x_58 = lean_box(x_4); x_59 = lean_box(x_31); -lean_inc_ref(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc(x_5); +lean_inc_ref(x_9); lean_inc(x_25); lean_inc(x_2); x_60 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__51___boxed), 19, 15); lean_closure_set(x_60, 0, x_1); lean_closure_set(x_60, 1, x_2); lean_closure_set(x_60, 2, x_33); -lean_closure_set(x_60, 3, x_34); -lean_closure_set(x_60, 4, x_25); +lean_closure_set(x_60, 3, x_25); +lean_closure_set(x_60, 4, x_9); lean_closure_set(x_60, 5, x_5); -lean_closure_set(x_60, 6, x_35); +lean_closure_set(x_60, 6, x_34); lean_closure_set(x_60, 7, x_58); lean_closure_set(x_60, 8, x_59); lean_closure_set(x_60, 9, x_6); lean_closure_set(x_60, 10, x_7); -lean_closure_set(x_60, 11, x_36); +lean_closure_set(x_60, 11, x_35); lean_closure_set(x_60, 12, x_39); lean_closure_set(x_60, 13, x_8); -lean_closure_set(x_60, 14, x_9); +lean_closure_set(x_60, 14, x_36); lean_inc_ref(x_11); x_61 = lean_array_to_list(x_11); lean_inc(x_61); @@ -12455,32 +13022,31 @@ lean_inc_ref(x_8); lean_inc(x_5); lean_inc(x_7); lean_inc(x_2); -x_66 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__62___boxed), 27, 25); +x_66 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__62___boxed), 26, 24); lean_closure_set(x_66, 0, x_24); lean_closure_set(x_66, 1, x_61); lean_closure_set(x_66, 2, x_13); lean_closure_set(x_66, 3, x_14); lean_closure_set(x_66, 4, x_15); -lean_closure_set(x_66, 5, x_16); -lean_closure_set(x_66, 6, x_17); -lean_closure_set(x_66, 7, x_18); -lean_closure_set(x_66, 8, x_19); -lean_closure_set(x_66, 9, x_20); -lean_closure_set(x_66, 10, x_21); -lean_closure_set(x_66, 11, x_11); -lean_closure_set(x_66, 12, x_2); -lean_closure_set(x_66, 13, x_22); -lean_closure_set(x_66, 14, x_23); -lean_closure_set(x_66, 15, x_7); -lean_closure_set(x_66, 16, x_25); -lean_closure_set(x_66, 17, x_26); -lean_closure_set(x_66, 18, x_27); -lean_closure_set(x_66, 19, x_9); -lean_closure_set(x_66, 20, x_60); -lean_closure_set(x_66, 21, x_5); -lean_closure_set(x_66, 22, x_8); -lean_closure_set(x_66, 23, x_12); -lean_closure_set(x_66, 24, x_65); +lean_closure_set(x_66, 5, x_25); +lean_closure_set(x_66, 6, x_16); +lean_closure_set(x_66, 7, x_17); +lean_closure_set(x_66, 8, x_18); +lean_closure_set(x_66, 9, x_19); +lean_closure_set(x_66, 10, x_20); +lean_closure_set(x_66, 11, x_21); +lean_closure_set(x_66, 12, x_11); +lean_closure_set(x_66, 13, x_2); +lean_closure_set(x_66, 14, x_22); +lean_closure_set(x_66, 15, x_23); +lean_closure_set(x_66, 16, x_7); +lean_closure_set(x_66, 17, x_27); +lean_closure_set(x_66, 18, x_9); +lean_closure_set(x_66, 19, x_60); +lean_closure_set(x_66, 20, x_5); +lean_closure_set(x_66, 21, x_8); +lean_closure_set(x_66, 22, x_12); +lean_closure_set(x_66, 23, x_65); x_67 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__36), 3, 2); lean_closure_set(x_67, 0, x_66); lean_closure_set(x_67, 1, x_40); @@ -12505,8 +13071,8 @@ return x_71; else { lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec(x_34); +lean_dec(x_35); +lean_dec_ref(x_34); lean_dec_ref(x_33); goto block_57; } @@ -12839,8 +13405,8 @@ lean_closure_set(x_38, 20, x_23); lean_closure_set(x_38, 21, x_36); lean_closure_set(x_38, 22, x_37); lean_closure_set(x_38, 23, x_26); -lean_closure_set(x_38, 24, x_27); -lean_closure_set(x_38, 25, x_9); +lean_closure_set(x_38, 24, x_9); +lean_closure_set(x_38, 25, x_27); lean_closure_set(x_38, 26, x_28); lean_closure_set(x_38, 27, x_29); lean_closure_set(x_38, 28, x_30); @@ -12932,8 +13498,8 @@ lean_closure_set(x_35, 21, x_22); lean_closure_set(x_35, 22, x_33); lean_closure_set(x_35, 23, x_34); lean_closure_set(x_35, 24, x_25); -lean_closure_set(x_35, 25, x_32); -lean_closure_set(x_35, 26, x_26); +lean_closure_set(x_35, 25, x_26); +lean_closure_set(x_35, 26, x_32); lean_closure_set(x_35, 27, x_27); lean_closure_set(x_35, 28, x_28); lean_closure_set(x_35, 29, x_29); @@ -13142,12 +13708,12 @@ x_22 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___la lean_closure_set(x_22, 0, x_3); lean_closure_set(x_22, 1, x_21); x_23 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__2___boxed), 1, 0); +x_24 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__3___boxed), 1, 0); lean_inc_ref(x_4); lean_inc_ref(x_3); -x_24 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__3___boxed), 3, 2); -lean_closure_set(x_24, 0, x_3); -lean_closure_set(x_24, 1, x_4); -x_25 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__4___boxed), 1, 0); +x_25 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__4___boxed), 3, 2); +lean_closure_set(x_25, 0, x_3); +lean_closure_set(x_25, 1, x_4); x_26 = lean_box(x_11); lean_inc(x_1); lean_inc(x_17); @@ -13185,8 +13751,8 @@ lean_closure_set(x_30, 14, x_6); lean_closure_set(x_30, 15, x_7); lean_closure_set(x_30, 16, x_8); lean_closure_set(x_30, 17, x_29); -lean_closure_set(x_30, 18, x_25); -lean_closure_set(x_30, 19, x_24); +lean_closure_set(x_30, 18, x_24); +lean_closure_set(x_30, 19, x_25); lean_closure_set(x_30, 20, x_28); lean_closure_set(x_30, 21, x_12); lean_closure_set(x_30, 22, x_5); @@ -13229,24 +13795,24 @@ lean_dec_ref(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_Meta_MatcherApp_transform___redArg___lam__3(x_1, x_2, x_3); -lean_dec_ref(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__4___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__3___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Lean_Meta_MatcherApp_transform___redArg___lam__4(x_1); +x_2 = l_Lean_Meta_MatcherApp_transform___redArg___lam__3(x_1); lean_dec_ref(x_1); return x_2; } } +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Meta_MatcherApp_transform___redArg___lam__4(x_1, x_2, x_3); +lean_dec_ref(x_3); +return x_4; +} +} LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { @@ -13429,15 +13995,13 @@ x_12 = l_Lean_Meta_MatcherApp_transform___redArg___lam__39(x_1, x_2, x_3, x_4, x return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -lean_object* x_7; -x_7 = l_Lean_Meta_MatcherApp_transform___redArg___lam__38(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_7; +lean_object* x_5; +x_5 = l_Lean_Meta_MatcherApp_transform___redArg___lam__38(x_1, x_2, x_3, x_4); +lean_dec_ref(x_1); +return x_5; } } LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__40___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { @@ -13517,27 +14081,24 @@ x_20 = l_Lean_Meta_MatcherApp_transform___redArg___lam__44(x_1, x_2, x_18, x_19, return x_20; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__45___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__45___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -uint8_t x_10; lean_object* x_11; -x_10 = lean_unbox(x_6); -x_11 = l_Lean_Meta_MatcherApp_transform___redArg___lam__45(x_1, x_2, x_3, x_4, x_5, x_10, x_7, x_8, x_9); -lean_dec(x_2); +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_5); +x_10 = l_Lean_Meta_MatcherApp_transform___redArg___lam__45(x_1, x_2, x_3, x_4, x_9, x_6, x_7, x_8); lean_dec_ref(x_1); -return x_11; +return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__48___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__48___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_11; -x_11 = l_Lean_Meta_MatcherApp_transform___redArg___lam__48(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_7); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_11; +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_1); +x_10 = l_Lean_Meta_MatcherApp_transform___redArg___lam__48(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_5); +return x_10; } } LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__47___boxed(lean_object** _args) { @@ -13564,11 +14125,12 @@ lean_object* x_20 = _args[19]; lean_object* x_21 = _args[20]; _start: { -uint8_t x_22; uint8_t x_23; lean_object* x_24; -x_22 = lean_unbox(x_2); -x_23 = lean_unbox(x_3); -x_24 = l_Lean_Meta_MatcherApp_transform___redArg___lam__47(x_1, x_22, x_23, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); -return x_24; +uint8_t x_22; uint8_t x_23; uint8_t x_24; lean_object* x_25; +x_22 = lean_unbox(x_4); +x_23 = lean_unbox(x_5); +x_24 = lean_unbox(x_16); +x_25 = l_Lean_Meta_MatcherApp_transform___redArg___lam__47(x_1, x_2, x_3, x_22, x_23, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_24, x_17, x_18, x_19, x_20, x_21); +return x_25; } } LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51___boxed(lean_object** _args) { @@ -13597,6 +14159,7 @@ uint8_t x_20; uint8_t x_21; lean_object* x_22; x_20 = lean_unbox(x_8); x_21 = lean_unbox(x_9); x_22 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_20, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec(x_4); return x_22; } } @@ -13634,6 +14197,39 @@ x_18 = l_Lean_Meta_MatcherApp_transform___redArg___lam__53(x_1, x_2, x_3, x_4, x return x_18; } } +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__54___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; +lean_object* x_23 = _args[22]; +lean_object* x_24 = _args[23]; +lean_object* x_25 = _args[24]; +_start: +{ +lean_object* x_26; +x_26 = l_Lean_Meta_MatcherApp_transform___redArg___lam__54(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25); +return x_26; +} +} LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__55___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; @@ -13662,12 +14258,11 @@ lean_object* x_24 = _args[23]; lean_object* x_25 = _args[24]; lean_object* x_26 = _args[25]; lean_object* x_27 = _args[26]; -lean_object* x_28 = _args[27]; _start: { -lean_object* x_29; -x_29 = l_Lean_Meta_MatcherApp_transform___redArg___lam__55(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28); -return x_29; +lean_object* x_28; +x_28 = l_Lean_Meta_MatcherApp_transform___redArg___lam__55(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27); +return x_28; } } LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__57___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { @@ -13714,12 +14309,11 @@ lean_object* x_23 = _args[22]; lean_object* x_24 = _args[23]; lean_object* x_25 = _args[24]; lean_object* x_26 = _args[25]; -lean_object* x_27 = _args[26]; _start: { -lean_object* x_28; -x_28 = l_Lean_Meta_MatcherApp_transform___redArg___lam__60(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27); -return x_28; +lean_object* x_27; +x_27 = l_Lean_Meta_MatcherApp_transform___redArg___lam__60(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26); +return x_27; } } LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__61___boxed(lean_object** _args) { @@ -13749,12 +14343,11 @@ lean_object* x_23 = _args[22]; lean_object* x_24 = _args[23]; lean_object* x_25 = _args[24]; lean_object* x_26 = _args[25]; -lean_object* x_27 = _args[26]; _start: { -lean_object* x_28; -x_28 = l_Lean_Meta_MatcherApp_transform___redArg___lam__61(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27); -return x_28; +lean_object* x_27; +x_27 = l_Lean_Meta_MatcherApp_transform___redArg___lam__61(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26); +return x_27; } } LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__62___boxed(lean_object** _args) { @@ -13784,12 +14377,11 @@ lean_object* x_23 = _args[22]; lean_object* x_24 = _args[23]; lean_object* x_25 = _args[24]; lean_object* x_26 = _args[25]; -lean_object* x_27 = _args[26]; _start: { -lean_object* x_28; -x_28 = l_Lean_Meta_MatcherApp_transform___redArg___lam__62(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27); -return x_28; +lean_object* x_27; +x_27 = l_Lean_Meta_MatcherApp_transform___redArg___lam__62(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26); +return x_27; } } LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__67___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { @@ -14310,7 +14902,7 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_50; lean_object* x_51; uint8_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_77; lean_object* x_78; uint8_t x_79; lean_object* x_80; uint8_t x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; lean_object* x_88; lean_object* x_89; uint8_t x_90; lean_object* x_91; uint8_t x_92; lean_object* x_93; uint8_t x_94; uint8_t x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; +uint8_t x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_50; uint8_t x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_77; uint8_t x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; lean_object* x_88; uint8_t x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; uint8_t x_94; uint8_t x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; x_100 = 2; x_125 = l_Lean_instBEqMessageSeverity_beq(x_3, x_100); if (x_125 == 0) @@ -14347,13 +14939,13 @@ x_26 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_13); x_27 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_27, 0, x_12); -lean_ctor_set(x_27, 1, x_10); -lean_ctor_set(x_27, 2, x_15); -lean_ctor_set(x_27, 3, x_14); +lean_ctor_set(x_27, 0, x_14); +lean_ctor_set(x_27, 1, x_12); +lean_ctor_set(x_27, 2, x_16); +lean_ctor_set(x_27, 3, x_15); lean_ctor_set(x_27, 4, x_26); -lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_11); -lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_16); +lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_10); +lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_11); lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 2, x_4); x_28 = l_Lean_MessageLog_add(x_27, x_24); lean_ctor_set(x_20, 6, x_28); @@ -14392,13 +14984,13 @@ x_42 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_42, 0, x_41); lean_ctor_set(x_42, 1, x_13); x_43 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_43, 0, x_12); -lean_ctor_set(x_43, 1, x_10); -lean_ctor_set(x_43, 2, x_15); -lean_ctor_set(x_43, 3, x_14); +lean_ctor_set(x_43, 0, x_14); +lean_ctor_set(x_43, 1, x_12); +lean_ctor_set(x_43, 2, x_16); +lean_ctor_set(x_43, 3, x_15); lean_ctor_set(x_43, 4, x_42); -lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_11); -lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_16); +lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_10); +lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_11); lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 2, x_4); x_44 = l_Lean_MessageLog_add(x_43, x_38); x_45 = lean_alloc_ctor(0, 9, 0); @@ -14428,25 +15020,25 @@ if (x_60 == 0) { lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_61 = lean_ctor_get(x_59, 0); -lean_inc_ref(x_51); -x_62 = l_Lean_FileMap_toPosition(x_51, x_55); -lean_dec(x_55); -x_63 = l_Lean_FileMap_toPosition(x_51, x_57); +lean_inc_ref(x_53); +x_62 = l_Lean_FileMap_toPosition(x_53, x_52); +lean_dec(x_52); +x_63 = l_Lean_FileMap_toPosition(x_53, x_57); lean_dec(x_57); x_64 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_64, 0, x_63); x_65 = l_Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0___closed__0; -if (x_53 == 0) +if (x_56 == 0) { lean_free_object(x_59); lean_dec_ref(x_50); -x_10 = x_62; -x_11 = x_52; -x_12 = x_54; +x_10 = x_51; +x_11 = x_54; +x_12 = x_62; x_13 = x_61; -x_14 = x_65; -x_15 = x_64; -x_16 = x_56; +x_14 = x_55; +x_15 = x_65; +x_16 = x_64; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -14463,7 +15055,7 @@ lean_object* x_67; lean_dec_ref(x_64); lean_dec_ref(x_62); lean_dec(x_61); -lean_dec_ref(x_54); +lean_dec_ref(x_55); lean_dec_ref(x_7); x_67 = lean_box(0); lean_ctor_set(x_59, 0, x_67); @@ -14472,13 +15064,13 @@ return x_59; else { lean_free_object(x_59); -x_10 = x_62; -x_11 = x_52; -x_12 = x_54; +x_10 = x_51; +x_11 = x_54; +x_12 = x_62; x_13 = x_61; -x_14 = x_65; -x_15 = x_64; -x_16 = x_56; +x_14 = x_55; +x_15 = x_65; +x_16 = x_64; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -14492,24 +15084,24 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean x_68 = lean_ctor_get(x_59, 0); lean_inc(x_68); lean_dec(x_59); -lean_inc_ref(x_51); -x_69 = l_Lean_FileMap_toPosition(x_51, x_55); -lean_dec(x_55); -x_70 = l_Lean_FileMap_toPosition(x_51, x_57); +lean_inc_ref(x_53); +x_69 = l_Lean_FileMap_toPosition(x_53, x_52); +lean_dec(x_52); +x_70 = l_Lean_FileMap_toPosition(x_53, x_57); lean_dec(x_57); x_71 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_71, 0, x_70); x_72 = l_Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0___closed__0; -if (x_53 == 0) +if (x_56 == 0) { lean_dec_ref(x_50); -x_10 = x_69; -x_11 = x_52; -x_12 = x_54; +x_10 = x_51; +x_11 = x_54; +x_12 = x_69; x_13 = x_68; -x_14 = x_72; -x_15 = x_71; -x_16 = x_56; +x_14 = x_55; +x_15 = x_72; +x_16 = x_71; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -14526,7 +15118,7 @@ lean_object* x_74; lean_object* x_75; lean_dec_ref(x_71); lean_dec_ref(x_69); lean_dec(x_68); -lean_dec_ref(x_54); +lean_dec_ref(x_55); lean_dec_ref(x_7); x_74 = lean_box(0); x_75 = lean_alloc_ctor(0, 1, 0); @@ -14535,13 +15127,13 @@ return x_75; } else { -x_10 = x_69; -x_11 = x_52; -x_12 = x_54; +x_10 = x_51; +x_11 = x_54; +x_12 = x_69; x_13 = x_68; -x_14 = x_72; -x_15 = x_71; -x_16 = x_56; +x_14 = x_55; +x_15 = x_72; +x_16 = x_71; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -14553,17 +15145,17 @@ goto block_49; block_87: { lean_object* x_85; -x_85 = l_Lean_Syntax_getTailPos_x3f(x_82, x_79); -lean_dec(x_82); +x_85 = l_Lean_Syntax_getTailPos_x3f(x_79, x_78); +lean_dec(x_79); if (lean_obj_tag(x_85) == 0) { lean_inc(x_84); x_50 = x_77; x_51 = x_78; -x_52 = x_79; -x_53 = x_81; -x_54 = x_80; -x_55 = x_84; +x_52 = x_84; +x_53 = x_80; +x_54 = x_81; +x_55 = x_82; x_56 = x_83; x_57 = x_84; goto block_76; @@ -14576,10 +15168,10 @@ lean_inc(x_86); lean_dec_ref(x_85); x_50 = x_77; x_51 = x_78; -x_52 = x_79; -x_53 = x_81; -x_54 = x_80; -x_55 = x_84; +x_52 = x_84; +x_53 = x_80; +x_54 = x_81; +x_55 = x_82; x_56 = x_83; x_57 = x_86; goto block_76; @@ -14590,18 +15182,18 @@ block_99: lean_object* x_95; lean_object* x_96; x_95 = l_Lean_replaceRef(x_1, x_91); lean_dec(x_91); -x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_90); +x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_89); if (lean_obj_tag(x_96) == 0) { lean_object* x_97; x_97 = lean_unsigned_to_nat(0u); x_77 = x_88; x_78 = x_89; -x_79 = x_90; -x_80 = x_93; -x_81 = x_92; -x_82 = x_95; -x_83 = x_94; +x_79 = x_95; +x_80 = x_90; +x_81 = x_94; +x_82 = x_92; +x_83 = x_93; x_84 = x_97; goto block_87; } @@ -14613,11 +15205,11 @@ lean_inc(x_98); lean_dec_ref(x_96); x_77 = x_88; x_78 = x_89; -x_79 = x_90; -x_80 = x_93; -x_81 = x_92; -x_82 = x_95; -x_83 = x_94; +x_79 = x_95; +x_80 = x_90; +x_81 = x_94; +x_82 = x_92; +x_83 = x_93; x_84 = x_98; goto block_87; } @@ -14626,23 +15218,23 @@ block_108: { if (x_107 == 0) { -x_88 = x_105; -x_89 = x_101; -x_90 = x_106; -x_91 = x_102; +x_88 = x_102; +x_89 = x_106; +x_90 = x_101; +x_91 = x_103; x_92 = x_104; -x_93 = x_103; +x_93 = x_105; x_94 = x_3; goto block_99; } else { -x_88 = x_105; -x_89 = x_101; -x_90 = x_106; -x_91 = x_102; +x_88 = x_102; +x_89 = x_106; +x_90 = x_101; +x_91 = x_103; x_92 = x_104; -x_93 = x_103; +x_93 = x_105; x_94 = x_100; goto block_99; } @@ -14670,10 +15262,10 @@ lean_inc_ref(x_110); lean_inc(x_113); lean_inc_ref(x_111); x_101 = x_111; -x_102 = x_113; -x_103 = x_110; -x_104 = x_114; -x_105 = x_117; +x_102 = x_117; +x_103 = x_113; +x_104 = x_110; +x_105 = x_114; x_106 = x_109; x_107 = x_119; goto block_108; @@ -14687,10 +15279,10 @@ lean_inc_ref(x_110); lean_inc(x_113); lean_inc_ref(x_111); x_101 = x_111; -x_102 = x_113; -x_103 = x_110; -x_104 = x_114; -x_105 = x_117; +x_102 = x_117; +x_103 = x_113; +x_104 = x_110; +x_105 = x_114; x_106 = x_109; x_107 = x_121; goto block_108; @@ -19228,7 +19820,899 @@ x_9 = l_Lean_log___at___00Lean_logInfo___at___00Lean_Meta_MatcherApp_inferMatchT return x_9; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +static lean_object* _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_instMonadEST(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Core_instMonadCoreM___lam__0___boxed), 5, 0); +return x_1; +} +} +static lean_object* _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Core_instMonadCoreM___lam__1___boxed), 7, 0); +return x_1; +} +} +static lean_object* _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_instMonadMetaM___lam__0___boxed), 7, 0); +return x_1; +} +} +static lean_object* _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_instMonadMetaM___lam__1___boxed), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__0; +x_8 = l_ReaderT_instMonad___redArg(x_7); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_8, 1); +lean_dec(x_11); +x_12 = !lean_is_exclusive(x_10); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_13 = lean_ctor_get(x_10, 0); +x_14 = lean_ctor_get(x_10, 2); +x_15 = lean_ctor_get(x_10, 3); +x_16 = lean_ctor_get(x_10, 4); +x_17 = lean_ctor_get(x_10, 1); +lean_dec(x_17); +x_18 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__1; +x_19 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__2; +lean_inc_ref(x_13); +x_20 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_20, 0, x_13); +x_21 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_21, 0, x_13); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_23, 0, x_16); +x_24 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_24, 0, x_15); +x_25 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_25, 0, x_14); +lean_ctor_set(x_10, 4, x_23); +lean_ctor_set(x_10, 3, x_24); +lean_ctor_set(x_10, 2, x_25); +lean_ctor_set(x_10, 1, x_18); +lean_ctor_set(x_10, 0, x_22); +lean_ctor_set(x_8, 1, x_19); +x_26 = l_ReaderT_instMonad___redArg(x_8); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_28 = lean_ctor_get(x_26, 0); +x_29 = lean_ctor_get(x_26, 1); +lean_dec(x_29); +x_30 = !lean_is_exclusive(x_28); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_31 = lean_ctor_get(x_28, 0); +x_32 = lean_ctor_get(x_28, 2); +x_33 = lean_ctor_get(x_28, 3); +x_34 = lean_ctor_get(x_28, 4); +x_35 = lean_ctor_get(x_28, 1); +lean_dec(x_35); +x_36 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3; +x_37 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4; +lean_inc_ref(x_31); +x_38 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_38, 0, x_31); +x_39 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_39, 0, x_31); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +x_41 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_41, 0, x_34); +x_42 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_42, 0, x_33); +x_43 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_43, 0, x_32); +lean_ctor_set(x_28, 4, x_41); +lean_ctor_set(x_28, 3, x_42); +lean_ctor_set(x_28, 2, x_43); +lean_ctor_set(x_28, 1, x_36); +lean_ctor_set(x_28, 0, x_40); +lean_ctor_set(x_26, 1, x_37); +x_44 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_45 = l_instInhabitedOfMonad___redArg(x_26, x_44); +x_46 = lean_panic_fn(x_45, x_1); +x_47 = lean_apply_5(x_46, x_2, x_3, x_4, x_5, lean_box(0)); +return x_47; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_48 = lean_ctor_get(x_28, 0); +x_49 = lean_ctor_get(x_28, 2); +x_50 = lean_ctor_get(x_28, 3); +x_51 = lean_ctor_get(x_28, 4); +lean_inc(x_51); +lean_inc(x_50); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_28); +x_52 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3; +x_53 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4; +lean_inc_ref(x_48); +x_54 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_54, 0, x_48); +x_55 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_55, 0, x_48); +x_56 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +x_57 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_57, 0, x_51); +x_58 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_58, 0, x_50); +x_59 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_59, 0, x_49); +x_60 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_60, 0, x_56); +lean_ctor_set(x_60, 1, x_52); +lean_ctor_set(x_60, 2, x_59); +lean_ctor_set(x_60, 3, x_58); +lean_ctor_set(x_60, 4, x_57); +lean_ctor_set(x_26, 1, x_53); +lean_ctor_set(x_26, 0, x_60); +x_61 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_62 = l_instInhabitedOfMonad___redArg(x_26, x_61); +x_63 = lean_panic_fn(x_62, x_1); +x_64 = lean_apply_5(x_63, x_2, x_3, x_4, x_5, lean_box(0)); +return x_64; +} +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_65 = lean_ctor_get(x_26, 0); +lean_inc(x_65); +lean_dec(x_26); +x_66 = lean_ctor_get(x_65, 0); +lean_inc_ref(x_66); +x_67 = lean_ctor_get(x_65, 2); +lean_inc(x_67); +x_68 = lean_ctor_get(x_65, 3); +lean_inc(x_68); +x_69 = lean_ctor_get(x_65, 4); +lean_inc(x_69); +if (lean_is_exclusive(x_65)) { + lean_ctor_release(x_65, 0); + lean_ctor_release(x_65, 1); + lean_ctor_release(x_65, 2); + lean_ctor_release(x_65, 3); + lean_ctor_release(x_65, 4); + x_70 = x_65; +} else { + lean_dec_ref(x_65); + x_70 = lean_box(0); +} +x_71 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3; +x_72 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4; +lean_inc_ref(x_66); +x_73 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_73, 0, x_66); +x_74 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_74, 0, x_66); +x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_75, 0, x_73); +lean_ctor_set(x_75, 1, x_74); +x_76 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_76, 0, x_69); +x_77 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_77, 0, x_68); +x_78 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_78, 0, x_67); +if (lean_is_scalar(x_70)) { + x_79 = lean_alloc_ctor(0, 5, 0); +} else { + x_79 = x_70; +} +lean_ctor_set(x_79, 0, x_75); +lean_ctor_set(x_79, 1, x_71); +lean_ctor_set(x_79, 2, x_78); +lean_ctor_set(x_79, 3, x_77); +lean_ctor_set(x_79, 4, x_76); +x_80 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_79); +lean_ctor_set(x_80, 1, x_72); +x_81 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_82 = l_instInhabitedOfMonad___redArg(x_80, x_81); +x_83 = lean_panic_fn(x_82, x_1); +x_84 = lean_apply_5(x_83, x_2, x_3, x_4, x_5, lean_box(0)); +return x_84; +} +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_85 = lean_ctor_get(x_10, 0); +x_86 = lean_ctor_get(x_10, 2); +x_87 = lean_ctor_get(x_10, 3); +x_88 = lean_ctor_get(x_10, 4); +lean_inc(x_88); +lean_inc(x_87); +lean_inc(x_86); +lean_inc(x_85); +lean_dec(x_10); +x_89 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__1; +x_90 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__2; +lean_inc_ref(x_85); +x_91 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_91, 0, x_85); +x_92 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_92, 0, x_85); +x_93 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_93, 0, x_91); +lean_ctor_set(x_93, 1, x_92); +x_94 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_94, 0, x_88); +x_95 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_95, 0, x_87); +x_96 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_96, 0, x_86); +x_97 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_97, 0, x_93); +lean_ctor_set(x_97, 1, x_89); +lean_ctor_set(x_97, 2, x_96); +lean_ctor_set(x_97, 3, x_95); +lean_ctor_set(x_97, 4, x_94); +lean_ctor_set(x_8, 1, x_90); +lean_ctor_set(x_8, 0, x_97); +x_98 = l_ReaderT_instMonad___redArg(x_8); +x_99 = lean_ctor_get(x_98, 0); +lean_inc_ref(x_99); +if (lean_is_exclusive(x_98)) { + lean_ctor_release(x_98, 0); + lean_ctor_release(x_98, 1); + x_100 = x_98; +} else { + lean_dec_ref(x_98); + x_100 = lean_box(0); +} +x_101 = lean_ctor_get(x_99, 0); +lean_inc_ref(x_101); +x_102 = lean_ctor_get(x_99, 2); +lean_inc(x_102); +x_103 = lean_ctor_get(x_99, 3); +lean_inc(x_103); +x_104 = lean_ctor_get(x_99, 4); +lean_inc(x_104); +if (lean_is_exclusive(x_99)) { + lean_ctor_release(x_99, 0); + lean_ctor_release(x_99, 1); + lean_ctor_release(x_99, 2); + lean_ctor_release(x_99, 3); + lean_ctor_release(x_99, 4); + x_105 = x_99; +} else { + lean_dec_ref(x_99); + x_105 = lean_box(0); +} +x_106 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3; +x_107 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4; +lean_inc_ref(x_101); +x_108 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_108, 0, x_101); +x_109 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_109, 0, x_101); +x_110 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_110, 0, x_108); +lean_ctor_set(x_110, 1, x_109); +x_111 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_111, 0, x_104); +x_112 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_112, 0, x_103); +x_113 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_113, 0, x_102); +if (lean_is_scalar(x_105)) { + x_114 = lean_alloc_ctor(0, 5, 0); +} else { + x_114 = x_105; +} +lean_ctor_set(x_114, 0, x_110); +lean_ctor_set(x_114, 1, x_106); +lean_ctor_set(x_114, 2, x_113); +lean_ctor_set(x_114, 3, x_112); +lean_ctor_set(x_114, 4, x_111); +if (lean_is_scalar(x_100)) { + x_115 = lean_alloc_ctor(0, 2, 0); +} else { + x_115 = x_100; +} +lean_ctor_set(x_115, 0, x_114); +lean_ctor_set(x_115, 1, x_107); +x_116 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_117 = l_instInhabitedOfMonad___redArg(x_115, x_116); +x_118 = lean_panic_fn(x_117, x_1); +x_119 = lean_apply_5(x_118, x_2, x_3, x_4, x_5, lean_box(0)); +return x_119; +} +} +else +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; +x_120 = lean_ctor_get(x_8, 0); +lean_inc(x_120); +lean_dec(x_8); +x_121 = lean_ctor_get(x_120, 0); +lean_inc_ref(x_121); +x_122 = lean_ctor_get(x_120, 2); +lean_inc(x_122); +x_123 = lean_ctor_get(x_120, 3); +lean_inc(x_123); +x_124 = lean_ctor_get(x_120, 4); +lean_inc(x_124); +if (lean_is_exclusive(x_120)) { + lean_ctor_release(x_120, 0); + lean_ctor_release(x_120, 1); + lean_ctor_release(x_120, 2); + lean_ctor_release(x_120, 3); + lean_ctor_release(x_120, 4); + x_125 = x_120; +} else { + lean_dec_ref(x_120); + x_125 = lean_box(0); +} +x_126 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__1; +x_127 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__2; +lean_inc_ref(x_121); +x_128 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_128, 0, x_121); +x_129 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_129, 0, x_121); +x_130 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_130, 0, x_128); +lean_ctor_set(x_130, 1, x_129); +x_131 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_131, 0, x_124); +x_132 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_132, 0, x_123); +x_133 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_133, 0, x_122); +if (lean_is_scalar(x_125)) { + x_134 = lean_alloc_ctor(0, 5, 0); +} else { + x_134 = x_125; +} +lean_ctor_set(x_134, 0, x_130); +lean_ctor_set(x_134, 1, x_126); +lean_ctor_set(x_134, 2, x_133); +lean_ctor_set(x_134, 3, x_132); +lean_ctor_set(x_134, 4, x_131); +x_135 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_127); +x_136 = l_ReaderT_instMonad___redArg(x_135); +x_137 = lean_ctor_get(x_136, 0); +lean_inc_ref(x_137); +if (lean_is_exclusive(x_136)) { + lean_ctor_release(x_136, 0); + lean_ctor_release(x_136, 1); + x_138 = x_136; +} else { + lean_dec_ref(x_136); + x_138 = lean_box(0); +} +x_139 = lean_ctor_get(x_137, 0); +lean_inc_ref(x_139); +x_140 = lean_ctor_get(x_137, 2); +lean_inc(x_140); +x_141 = lean_ctor_get(x_137, 3); +lean_inc(x_141); +x_142 = lean_ctor_get(x_137, 4); +lean_inc(x_142); +if (lean_is_exclusive(x_137)) { + lean_ctor_release(x_137, 0); + lean_ctor_release(x_137, 1); + lean_ctor_release(x_137, 2); + lean_ctor_release(x_137, 3); + lean_ctor_release(x_137, 4); + x_143 = x_137; +} else { + lean_dec_ref(x_137); + x_143 = lean_box(0); +} +x_144 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3; +x_145 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4; +lean_inc_ref(x_139); +x_146 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_146, 0, x_139); +x_147 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_147, 0, x_139); +x_148 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_148, 0, x_146); +lean_ctor_set(x_148, 1, x_147); +x_149 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_149, 0, x_142); +x_150 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_150, 0, x_141); +x_151 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_151, 0, x_140); +if (lean_is_scalar(x_143)) { + x_152 = lean_alloc_ctor(0, 5, 0); +} else { + x_152 = x_143; +} +lean_ctor_set(x_152, 0, x_148); +lean_ctor_set(x_152, 1, x_144); +lean_ctor_set(x_152, 2, x_151); +lean_ctor_set(x_152, 3, x_150); +lean_ctor_set(x_152, 4, x_149); +if (lean_is_scalar(x_138)) { + x_153 = lean_alloc_ctor(0, 2, 0); +} else { + x_153 = x_138; +} +lean_ctor_set(x_153, 0, x_152); +lean_ctor_set(x_153, 1, x_145); +x_154 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7; +x_155 = l_instInhabitedOfMonad___redArg(x_153, x_154); +x_156 = lean_panic_fn(x_155, x_1); +x_157 = lean_apply_5(x_156, x_2, x_3, x_4, x_5, lean_box(0)); +return x_157; +} +} +} +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__0; +x_8 = l_ReaderT_instMonad___redArg(x_7); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_8, 1); +lean_dec(x_11); +x_12 = !lean_is_exclusive(x_10); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_13 = lean_ctor_get(x_10, 0); +x_14 = lean_ctor_get(x_10, 2); +x_15 = lean_ctor_get(x_10, 3); +x_16 = lean_ctor_get(x_10, 4); +x_17 = lean_ctor_get(x_10, 1); +lean_dec(x_17); +x_18 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__1; +x_19 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__2; +lean_inc_ref(x_13); +x_20 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_20, 0, x_13); +x_21 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_21, 0, x_13); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_23, 0, x_16); +x_24 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_24, 0, x_15); +x_25 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_25, 0, x_14); +lean_ctor_set(x_10, 4, x_23); +lean_ctor_set(x_10, 3, x_24); +lean_ctor_set(x_10, 2, x_25); +lean_ctor_set(x_10, 1, x_18); +lean_ctor_set(x_10, 0, x_22); +lean_ctor_set(x_8, 1, x_19); +x_26 = l_ReaderT_instMonad___redArg(x_8); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_28 = lean_ctor_get(x_26, 0); +x_29 = lean_ctor_get(x_26, 1); +lean_dec(x_29); +x_30 = !lean_is_exclusive(x_28); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_31 = lean_ctor_get(x_28, 0); +x_32 = lean_ctor_get(x_28, 2); +x_33 = lean_ctor_get(x_28, 3); +x_34 = lean_ctor_get(x_28, 4); +x_35 = lean_ctor_get(x_28, 1); +lean_dec(x_35); +x_36 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3; +x_37 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4; +lean_inc_ref(x_31); +x_38 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_38, 0, x_31); +x_39 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_39, 0, x_31); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +x_41 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_41, 0, x_34); +x_42 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_42, 0, x_33); +x_43 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_43, 0, x_32); +lean_ctor_set(x_28, 4, x_41); +lean_ctor_set(x_28, 3, x_42); +lean_ctor_set(x_28, 2, x_43); +lean_ctor_set(x_28, 1, x_36); +lean_ctor_set(x_28, 0, x_40); +lean_ctor_set(x_26, 1, x_37); +x_44 = l_Lean_instInhabitedExpr; +x_45 = l_instInhabitedOfMonad___redArg(x_26, x_44); +x_46 = lean_panic_fn(x_45, x_1); +x_47 = lean_apply_5(x_46, x_2, x_3, x_4, x_5, lean_box(0)); +return x_47; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_48 = lean_ctor_get(x_28, 0); +x_49 = lean_ctor_get(x_28, 2); +x_50 = lean_ctor_get(x_28, 3); +x_51 = lean_ctor_get(x_28, 4); +lean_inc(x_51); +lean_inc(x_50); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_28); +x_52 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3; +x_53 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4; +lean_inc_ref(x_48); +x_54 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_54, 0, x_48); +x_55 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_55, 0, x_48); +x_56 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +x_57 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_57, 0, x_51); +x_58 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_58, 0, x_50); +x_59 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_59, 0, x_49); +x_60 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_60, 0, x_56); +lean_ctor_set(x_60, 1, x_52); +lean_ctor_set(x_60, 2, x_59); +lean_ctor_set(x_60, 3, x_58); +lean_ctor_set(x_60, 4, x_57); +lean_ctor_set(x_26, 1, x_53); +lean_ctor_set(x_26, 0, x_60); +x_61 = l_Lean_instInhabitedExpr; +x_62 = l_instInhabitedOfMonad___redArg(x_26, x_61); +x_63 = lean_panic_fn(x_62, x_1); +x_64 = lean_apply_5(x_63, x_2, x_3, x_4, x_5, lean_box(0)); +return x_64; +} +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_65 = lean_ctor_get(x_26, 0); +lean_inc(x_65); +lean_dec(x_26); +x_66 = lean_ctor_get(x_65, 0); +lean_inc_ref(x_66); +x_67 = lean_ctor_get(x_65, 2); +lean_inc(x_67); +x_68 = lean_ctor_get(x_65, 3); +lean_inc(x_68); +x_69 = lean_ctor_get(x_65, 4); +lean_inc(x_69); +if (lean_is_exclusive(x_65)) { + lean_ctor_release(x_65, 0); + lean_ctor_release(x_65, 1); + lean_ctor_release(x_65, 2); + lean_ctor_release(x_65, 3); + lean_ctor_release(x_65, 4); + x_70 = x_65; +} else { + lean_dec_ref(x_65); + x_70 = lean_box(0); +} +x_71 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3; +x_72 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4; +lean_inc_ref(x_66); +x_73 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_73, 0, x_66); +x_74 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_74, 0, x_66); +x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_75, 0, x_73); +lean_ctor_set(x_75, 1, x_74); +x_76 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_76, 0, x_69); +x_77 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_77, 0, x_68); +x_78 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_78, 0, x_67); +if (lean_is_scalar(x_70)) { + x_79 = lean_alloc_ctor(0, 5, 0); +} else { + x_79 = x_70; +} +lean_ctor_set(x_79, 0, x_75); +lean_ctor_set(x_79, 1, x_71); +lean_ctor_set(x_79, 2, x_78); +lean_ctor_set(x_79, 3, x_77); +lean_ctor_set(x_79, 4, x_76); +x_80 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_79); +lean_ctor_set(x_80, 1, x_72); +x_81 = l_Lean_instInhabitedExpr; +x_82 = l_instInhabitedOfMonad___redArg(x_80, x_81); +x_83 = lean_panic_fn(x_82, x_1); +x_84 = lean_apply_5(x_83, x_2, x_3, x_4, x_5, lean_box(0)); +return x_84; +} +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_85 = lean_ctor_get(x_10, 0); +x_86 = lean_ctor_get(x_10, 2); +x_87 = lean_ctor_get(x_10, 3); +x_88 = lean_ctor_get(x_10, 4); +lean_inc(x_88); +lean_inc(x_87); +lean_inc(x_86); +lean_inc(x_85); +lean_dec(x_10); +x_89 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__1; +x_90 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__2; +lean_inc_ref(x_85); +x_91 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_91, 0, x_85); +x_92 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_92, 0, x_85); +x_93 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_93, 0, x_91); +lean_ctor_set(x_93, 1, x_92); +x_94 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_94, 0, x_88); +x_95 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_95, 0, x_87); +x_96 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_96, 0, x_86); +x_97 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_97, 0, x_93); +lean_ctor_set(x_97, 1, x_89); +lean_ctor_set(x_97, 2, x_96); +lean_ctor_set(x_97, 3, x_95); +lean_ctor_set(x_97, 4, x_94); +lean_ctor_set(x_8, 1, x_90); +lean_ctor_set(x_8, 0, x_97); +x_98 = l_ReaderT_instMonad___redArg(x_8); +x_99 = lean_ctor_get(x_98, 0); +lean_inc_ref(x_99); +if (lean_is_exclusive(x_98)) { + lean_ctor_release(x_98, 0); + lean_ctor_release(x_98, 1); + x_100 = x_98; +} else { + lean_dec_ref(x_98); + x_100 = lean_box(0); +} +x_101 = lean_ctor_get(x_99, 0); +lean_inc_ref(x_101); +x_102 = lean_ctor_get(x_99, 2); +lean_inc(x_102); +x_103 = lean_ctor_get(x_99, 3); +lean_inc(x_103); +x_104 = lean_ctor_get(x_99, 4); +lean_inc(x_104); +if (lean_is_exclusive(x_99)) { + lean_ctor_release(x_99, 0); + lean_ctor_release(x_99, 1); + lean_ctor_release(x_99, 2); + lean_ctor_release(x_99, 3); + lean_ctor_release(x_99, 4); + x_105 = x_99; +} else { + lean_dec_ref(x_99); + x_105 = lean_box(0); +} +x_106 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3; +x_107 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4; +lean_inc_ref(x_101); +x_108 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_108, 0, x_101); +x_109 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_109, 0, x_101); +x_110 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_110, 0, x_108); +lean_ctor_set(x_110, 1, x_109); +x_111 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_111, 0, x_104); +x_112 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_112, 0, x_103); +x_113 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_113, 0, x_102); +if (lean_is_scalar(x_105)) { + x_114 = lean_alloc_ctor(0, 5, 0); +} else { + x_114 = x_105; +} +lean_ctor_set(x_114, 0, x_110); +lean_ctor_set(x_114, 1, x_106); +lean_ctor_set(x_114, 2, x_113); +lean_ctor_set(x_114, 3, x_112); +lean_ctor_set(x_114, 4, x_111); +if (lean_is_scalar(x_100)) { + x_115 = lean_alloc_ctor(0, 2, 0); +} else { + x_115 = x_100; +} +lean_ctor_set(x_115, 0, x_114); +lean_ctor_set(x_115, 1, x_107); +x_116 = l_Lean_instInhabitedExpr; +x_117 = l_instInhabitedOfMonad___redArg(x_115, x_116); +x_118 = lean_panic_fn(x_117, x_1); +x_119 = lean_apply_5(x_118, x_2, x_3, x_4, x_5, lean_box(0)); +return x_119; +} +} +else +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; +x_120 = lean_ctor_get(x_8, 0); +lean_inc(x_120); +lean_dec(x_8); +x_121 = lean_ctor_get(x_120, 0); +lean_inc_ref(x_121); +x_122 = lean_ctor_get(x_120, 2); +lean_inc(x_122); +x_123 = lean_ctor_get(x_120, 3); +lean_inc(x_123); +x_124 = lean_ctor_get(x_120, 4); +lean_inc(x_124); +if (lean_is_exclusive(x_120)) { + lean_ctor_release(x_120, 0); + lean_ctor_release(x_120, 1); + lean_ctor_release(x_120, 2); + lean_ctor_release(x_120, 3); + lean_ctor_release(x_120, 4); + x_125 = x_120; +} else { + lean_dec_ref(x_120); + x_125 = lean_box(0); +} +x_126 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__1; +x_127 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__2; +lean_inc_ref(x_121); +x_128 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_128, 0, x_121); +x_129 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_129, 0, x_121); +x_130 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_130, 0, x_128); +lean_ctor_set(x_130, 1, x_129); +x_131 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_131, 0, x_124); +x_132 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_132, 0, x_123); +x_133 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_133, 0, x_122); +if (lean_is_scalar(x_125)) { + x_134 = lean_alloc_ctor(0, 5, 0); +} else { + x_134 = x_125; +} +lean_ctor_set(x_134, 0, x_130); +lean_ctor_set(x_134, 1, x_126); +lean_ctor_set(x_134, 2, x_133); +lean_ctor_set(x_134, 3, x_132); +lean_ctor_set(x_134, 4, x_131); +x_135 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_127); +x_136 = l_ReaderT_instMonad___redArg(x_135); +x_137 = lean_ctor_get(x_136, 0); +lean_inc_ref(x_137); +if (lean_is_exclusive(x_136)) { + lean_ctor_release(x_136, 0); + lean_ctor_release(x_136, 1); + x_138 = x_136; +} else { + lean_dec_ref(x_136); + x_138 = lean_box(0); +} +x_139 = lean_ctor_get(x_137, 0); +lean_inc_ref(x_139); +x_140 = lean_ctor_get(x_137, 2); +lean_inc(x_140); +x_141 = lean_ctor_get(x_137, 3); +lean_inc(x_141); +x_142 = lean_ctor_get(x_137, 4); +lean_inc(x_142); +if (lean_is_exclusive(x_137)) { + lean_ctor_release(x_137, 0); + lean_ctor_release(x_137, 1); + lean_ctor_release(x_137, 2); + lean_ctor_release(x_137, 3); + lean_ctor_release(x_137, 4); + x_143 = x_137; +} else { + lean_dec_ref(x_137); + x_143 = lean_box(0); +} +x_144 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3; +x_145 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4; +lean_inc_ref(x_139); +x_146 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_146, 0, x_139); +x_147 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_147, 0, x_139); +x_148 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_148, 0, x_146); +lean_ctor_set(x_148, 1, x_147); +x_149 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_149, 0, x_142); +x_150 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_150, 0, x_141); +x_151 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_151, 0, x_140); +if (lean_is_scalar(x_143)) { + x_152 = lean_alloc_ctor(0, 5, 0); +} else { + x_152 = x_143; +} +lean_ctor_set(x_152, 0, x_148); +lean_ctor_set(x_152, 1, x_144); +lean_ctor_set(x_152, 2, x_151); +lean_ctor_set(x_152, 3, x_150); +lean_ctor_set(x_152, 4, x_149); +if (lean_is_scalar(x_138)) { + x_153 = lean_alloc_ctor(0, 2, 0); +} else { + x_153 = x_138; +} +lean_ctor_set(x_153, 0, x_152); +lean_ctor_set(x_153, 1, x_145); +x_154 = l_Lean_instInhabitedExpr; +x_155 = l_instInhabitedOfMonad___redArg(x_153, x_154); +x_156 = lean_panic_fn(x_155, x_1); +x_157 = lean_apply_5(x_156, x_2, x_3, x_4, x_5, lean_box(0)); +return x_157; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_11; @@ -19236,62 +20720,62 @@ x_11 = lean_apply_7(x_1, x_2, x_3, x_6, x_7, x_8, x_9, lean_box(0)); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_10; lean_object* x_11; -x_10 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg___lam__0___boxed), 10, 1); -lean_closure_set(x_10, 0, x_4); -x_11 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_1, x_2, x_3, x_10, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_11) == 0) +lean_object* x_9; lean_object* x_10; +x_9 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__0___boxed), 10, 1); +lean_closure_set(x_9, 0, x_3); +x_10 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_1, x_2, x_9, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_10) == 0) { -uint8_t x_12; -x_12 = !lean_is_exclusive(x_11); -if (x_12 == 0) +uint8_t x_11; +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) { -return x_11; +return x_10; } else { -lean_object* x_13; lean_object* x_14; -x_13 = lean_ctor_get(x_11, 0); -lean_inc(x_13); -lean_dec(x_11); -x_14 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_14, 0, x_13); -return x_14; +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_13, 0, x_12); +return x_13; } } else { -uint8_t x_15; -x_15 = !lean_is_exclusive(x_11); -if (x_15 == 0) +uint8_t x_14; +x_14 = !lean_is_exclusive(x_10); +if (x_14 == 0) { -return x_11; +return x_10; } else { -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_11, 0); -lean_inc(x_16); -lean_dec(x_11); -x_17 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_17, 0, x_16); -return x_17; +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_10, 0); +lean_inc(x_15); +lean_dec(x_10); +x_16 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_16, 0, x_15); +return x_16; } } } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_11; -x_11 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; +lean_object* x_10; +x_10 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_17; lean_object* x_18; lean_object* x_28; @@ -19401,13 +20885,13 @@ return x_18; } } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_17 = lean_box(x_6); x_18 = lean_box(x_7); -x_19 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__0___boxed), 16, 9); +x_19 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__0___boxed), 16, 9); lean_closure_set(x_19, 0, x_1); lean_closure_set(x_19, 1, x_10); lean_closure_set(x_19, 2, x_2); @@ -19423,13 +20907,13 @@ x_21 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_Mat return x_21; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_17 = lean_box(x_5); x_18 = lean_box(x_6); -x_19 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__1___boxed), 16, 9); +x_19 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__1___boxed), 16, 9); lean_closure_set(x_19, 0, x_1); lean_closure_set(x_19, 1, x_2); lean_closure_set(x_19, 2, x_3); @@ -19445,149 +20929,156 @@ x_21 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_Mat return x_21; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, uint8_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_19; +lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; uint8_t x_23; +x_19 = lean_ctor_get(x_1, 0); +x_20 = lean_ctor_get(x_1, 1); +x_21 = lean_ctor_get_uint8(x_1, sizeof(void*)*2); +x_22 = lean_array_get_size(x_12); +x_23 = lean_nat_dec_eq(x_22, x_19); +lean_dec(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_24 = l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__3; +x_25 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17(x_24, x_14, x_15, x_16, x_17); +return x_25; +} +else +{ +lean_object* x_26; lean_inc(x_17); lean_inc_ref(x_16); lean_inc(x_15); lean_inc_ref(x_14); -x_19 = l_Lean_Meta_instantiateForall(x_1, x_12, x_14, x_15, x_16, x_17); -if (lean_obj_tag(x_19) == 0) +x_26 = l_Lean_Meta_instantiateForall(x_2, x_12, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_26) == 0) { -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_43; uint8_t x_44; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - x_21 = x_19; +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + x_28 = x_26; } else { - lean_dec_ref(x_19); - x_21 = lean_box(0); + lean_dec_ref(x_26); + x_28 = lean_box(0); } -x_22 = lean_box(x_4); -x_23 = lean_box(x_5); -lean_inc(x_8); -lean_inc_ref(x_12); -x_24 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__2___boxed), 16, 9); -lean_closure_set(x_24, 0, x_13); -lean_closure_set(x_24, 1, x_2); -lean_closure_set(x_24, 2, x_3); -lean_closure_set(x_24, 3, x_12); -lean_closure_set(x_24, 4, x_22); -lean_closure_set(x_24, 5, x_23); -lean_closure_set(x_24, 6, x_6); -lean_closure_set(x_24, 7, x_7); -lean_closure_set(x_24, 8, x_8); -x_43 = lean_nat_add(x_9, x_8); -x_44 = lean_nat_dec_eq(x_43, x_10); -lean_dec(x_43); -if (x_44 == 0) +x_29 = lean_box(x_5); +x_30 = lean_box(x_6); +x_31 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__2___boxed), 16, 9); +lean_closure_set(x_31, 0, x_13); +lean_closure_set(x_31, 1, x_3); +lean_closure_set(x_31, 2, x_4); +lean_closure_set(x_31, 3, x_12); +lean_closure_set(x_31, 4, x_29); +lean_closure_set(x_31, 5, x_30); +lean_closure_set(x_31, 6, x_7); +lean_closure_set(x_31, 7, x_8); +lean_closure_set(x_31, 8, x_9); +if (x_10 == 0) { -x_25 = x_20; -x_26 = x_14; -x_27 = x_15; -x_28 = x_16; -x_29 = x_17; -x_30 = lean_box(0); -goto block_42; +x_32 = x_27; +x_33 = x_14; +x_34 = x_15; +x_35 = x_16; +x_36 = x_17; +x_37 = lean_box(0); +goto block_45; } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_45 = l_Lean_Meta_MatcherApp_transform___redArg___lam__48___closed__2; -x_46 = lean_mk_empty_array_with_capacity(x_11); -x_47 = lean_array_push(x_46, x_45); +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_46 = l_Lean_Meta_MatcherApp_transform___redArg___lam__48___closed__2; +x_47 = lean_mk_empty_array_with_capacity(x_11); +x_48 = lean_array_push(x_47, x_46); lean_inc(x_17); lean_inc_ref(x_16); lean_inc(x_15); lean_inc_ref(x_14); -x_48 = l_Lean_Meta_instantiateForall(x_20, x_47, x_14, x_15, x_16, x_17); -lean_dec_ref(x_47); -if (lean_obj_tag(x_48) == 0) -{ -lean_object* x_49; -x_49 = lean_ctor_get(x_48, 0); -lean_inc(x_49); +x_49 = l_Lean_Meta_instantiateForall(x_27, x_48, x_14, x_15, x_16, x_17); lean_dec_ref(x_48); -x_25 = x_49; -x_26 = x_14; -x_27 = x_15; -x_28 = x_16; -x_29 = x_17; -x_30 = lean_box(0); -goto block_42; +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_50; +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +lean_dec_ref(x_49); +x_32 = x_50; +x_33 = x_14; +x_34 = x_15; +x_35 = x_16; +x_36 = x_17; +x_37 = lean_box(0); +goto block_45; } else { -lean_dec_ref(x_24); -lean_dec(x_21); +lean_dec_ref(x_31); +lean_dec(x_28); lean_dec(x_17); lean_dec_ref(x_16); lean_dec(x_15); lean_dec_ref(x_14); -lean_dec_ref(x_12); -lean_dec(x_8); -return x_48; +return x_49; } } -block_42: +block_45: { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_31 = lean_array_get_size(x_12); -lean_dec_ref(x_12); -x_32 = lean_nat_sub(x_9, x_31); -lean_dec(x_31); -if (lean_is_scalar(x_21)) { - x_33 = lean_alloc_ctor(1, 1, 0); +lean_object* x_38; lean_object* x_39; +lean_inc(x_20); +if (lean_is_scalar(x_28)) { + x_38 = lean_alloc_ctor(1, 1, 0); } else { - x_33 = x_21; - lean_ctor_set_tag(x_33, 1); + x_38 = x_28; + lean_ctor_set_tag(x_38, 1); } -lean_ctor_set(x_33, 0, x_32); -lean_inc(x_29); -lean_inc_ref(x_28); -lean_inc(x_27); -lean_inc_ref(x_26); -x_34 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__2___redArg(x_25, x_33, x_24, x_4, x_4, x_26, x_27, x_28, x_29); -if (lean_obj_tag(x_34) == 0) +lean_ctor_set(x_38, 0, x_20); +lean_inc(x_36); +lean_inc_ref(x_35); +lean_inc(x_34); +lean_inc_ref(x_33); +x_39 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__2___redArg(x_32, x_38, x_31, x_5, x_5, x_33, x_34, x_35, x_36); +if (lean_obj_tag(x_39) == 0) +{ +if (x_21 == 0) { -lean_object* x_35; lean_object* x_36; uint8_t x_37; -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = lean_nat_add(x_9, x_8); -lean_dec(x_8); -x_37 = lean_nat_dec_eq(x_36, x_10); lean_dec(x_36); -if (x_37 == 0) -{ -lean_dec(x_35); -lean_dec(x_29); -lean_dec_ref(x_28); -lean_dec(x_27); -lean_dec_ref(x_26); -return x_34; +lean_dec_ref(x_35); +lean_dec(x_34); +lean_dec_ref(x_33); +return x_39; } else { -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -lean_dec_ref(x_34); -x_38 = l_Lean_Meta_MatcherApp_transform___redArg___lam__38___closed__2; -x_39 = l_Lean_Meta_MatcherApp_transform___redArg___lam__38___closed__7; -x_40 = lean_array_push(x_39, x_35); -x_41 = l_Lean_Meta_mkAppM(x_38, x_40, x_26, x_27, x_28, x_29); -return x_41; +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +lean_dec_ref(x_39); +x_41 = l_Lean_Meta_MatcherApp_transform___redArg___lam__38___closed__2; +x_42 = l_Lean_Meta_MatcherApp_transform___redArg___lam__38___closed__7; +x_43 = lean_array_push(x_42, x_40); +x_44 = l_Lean_Meta_mkAppM(x_41, x_43, x_33, x_34, x_35, x_36); +return x_44; } } else { -lean_dec(x_29); -lean_dec_ref(x_28); -lean_dec(x_27); -lean_dec_ref(x_26); -lean_dec(x_8); -return x_34; +lean_dec(x_36); +lean_dec_ref(x_35); +lean_dec(x_34); +lean_dec_ref(x_33); +return x_39; } } } @@ -19599,113 +21090,72 @@ lean_dec(x_15); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); +lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_19; +lean_dec_ref(x_7); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_26; } } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +} +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_15 = lean_ctor_get(x_8, 1); -lean_inc(x_15); -x_16 = lean_ctor_get(x_15, 1); -lean_inc(x_16); -x_17 = lean_ctor_get(x_16, 1); -lean_inc(x_17); -x_18 = lean_ctor_get(x_17, 1); -lean_inc(x_18); -x_19 = lean_ctor_get(x_18, 0); -lean_inc(x_19); -x_20 = !lean_is_exclusive(x_8); -if (x_20 == 0) +lean_object* x_15; lean_object* x_16; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_23 = lean_ctor_get(x_8, 1); +lean_inc(x_23); +x_24 = lean_ctor_get(x_23, 1); +lean_inc(x_24); +x_25 = lean_ctor_get(x_24, 1); +lean_inc(x_25); +x_26 = lean_ctor_get(x_25, 1); +lean_inc(x_26); +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = !lean_is_exclusive(x_8); +if (x_28 == 0) { -lean_object* x_21; lean_object* x_22; uint8_t x_23; -x_21 = lean_ctor_get(x_8, 0); -x_22 = lean_ctor_get(x_8, 1); -lean_dec(x_22); -x_23 = !lean_is_exclusive(x_15); -if (x_23 == 0) +lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_29 = lean_ctor_get(x_8, 0); +x_30 = lean_ctor_get(x_8, 1); +lean_dec(x_30); +x_31 = !lean_is_exclusive(x_23); +if (x_31 == 0) { -lean_object* x_24; lean_object* x_25; uint8_t x_26; -x_24 = lean_ctor_get(x_15, 0); -x_25 = lean_ctor_get(x_15, 1); -lean_dec(x_25); -x_26 = !lean_is_exclusive(x_16); -if (x_26 == 0) +lean_object* x_32; lean_object* x_33; uint8_t x_34; +x_32 = lean_ctor_get(x_23, 0); +x_33 = lean_ctor_get(x_23, 1); +lean_dec(x_33); +x_34 = !lean_is_exclusive(x_24); +if (x_34 == 0) { -lean_object* x_27; lean_object* x_28; uint8_t x_29; -x_27 = lean_ctor_get(x_16, 0); -x_28 = lean_ctor_get(x_16, 1); -lean_dec(x_28); -x_29 = !lean_is_exclusive(x_17); -if (x_29 == 0) +lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_35 = lean_ctor_get(x_24, 0); +x_36 = lean_ctor_get(x_24, 1); +lean_dec(x_36); +x_37 = !lean_is_exclusive(x_25); +if (x_37 == 0) { -lean_object* x_30; lean_object* x_31; uint8_t x_32; -x_30 = lean_ctor_get(x_17, 0); -x_31 = lean_ctor_get(x_17, 1); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_18); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_33 = lean_ctor_get(x_18, 1); -x_34 = lean_ctor_get(x_18, 0); -lean_dec(x_34); -x_35 = lean_ctor_get(x_19, 0); -x_36 = lean_ctor_get(x_19, 1); -x_37 = lean_ctor_get(x_19, 2); -x_38 = lean_nat_dec_lt(x_36, x_37); -if (x_38 == 0) -{ -lean_object* x_39; -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_39 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_39, 0, x_8); -return x_39; -} -else -{ -uint8_t x_40; -lean_inc(x_37); -lean_inc(x_36); -lean_inc_ref(x_35); -x_40 = !lean_is_exclusive(x_19); +lean_object* x_38; lean_object* x_39; uint8_t x_40; +x_38 = lean_ctor_get(x_25, 0); +x_39 = lean_ctor_get(x_25, 1); +lean_dec(x_39); +x_40 = !lean_is_exclusive(x_26); if (x_40 == 0) { -lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; -x_41 = lean_ctor_get(x_19, 2); -lean_dec(x_41); -x_42 = lean_ctor_get(x_19, 1); +lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; +x_41 = lean_ctor_get(x_26, 1); +x_42 = lean_ctor_get(x_26, 0); lean_dec(x_42); -x_43 = lean_ctor_get(x_19, 0); -lean_dec(x_43); -x_44 = lean_ctor_get(x_30, 0); -x_45 = lean_ctor_get(x_30, 1); -x_46 = lean_ctor_get(x_30, 2); -x_47 = lean_unsigned_to_nat(1u); -x_48 = lean_nat_add(x_36, x_47); -lean_inc_ref(x_35); -lean_ctor_set(x_19, 1, x_48); -x_49 = lean_nat_dec_lt(x_45, x_46); -if (x_49 == 0) +x_43 = lean_ctor_get(x_27, 0); +x_44 = lean_ctor_get(x_27, 1); +x_45 = lean_ctor_get(x_27, 2); +x_46 = lean_nat_dec_lt(x_44, x_45); +if (x_46 == 0) { -lean_object* x_50; -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_47; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -19713,42 +21163,82 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_50 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_50, 0, x_8); -return x_50; +lean_dec_ref(x_2); +x_47 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_47, 0, x_8); +return x_47; } else { -uint8_t x_51; -lean_inc(x_46); +uint8_t x_48; lean_inc(x_45); -lean_inc_ref(x_44); -x_51 = !lean_is_exclusive(x_30); -if (x_51 == 0) +lean_inc(x_44); +lean_inc_ref(x_43); +x_48 = !lean_is_exclusive(x_27); +if (x_48 == 0) { -lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; -x_52 = lean_ctor_get(x_30, 2); -lean_dec(x_52); -x_53 = lean_ctor_get(x_30, 1); -lean_dec(x_53); -x_54 = lean_ctor_get(x_30, 0); -lean_dec(x_54); -x_55 = lean_ctor_get(x_27, 0); -x_56 = lean_ctor_get(x_27, 1); -x_57 = lean_ctor_get(x_27, 2); -x_58 = lean_nat_add(x_45, x_47); -lean_inc_ref(x_44); -lean_ctor_set(x_30, 1, x_58); -x_59 = lean_nat_dec_lt(x_56, x_57); +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; +x_49 = lean_ctor_get(x_27, 2); +lean_dec(x_49); +x_50 = lean_ctor_get(x_27, 1); +lean_dec(x_50); +x_51 = lean_ctor_get(x_27, 0); +lean_dec(x_51); +x_52 = lean_ctor_get(x_38, 0); +x_53 = lean_ctor_get(x_38, 1); +x_54 = lean_ctor_get(x_38, 2); +x_55 = lean_unsigned_to_nat(1u); +x_56 = lean_nat_add(x_44, x_55); +lean_inc_ref(x_43); +lean_ctor_set(x_27, 1, x_56); +x_57 = lean_nat_dec_lt(x_53, x_54); +if (x_57 == 0) +{ +lean_object* x_58; +lean_dec(x_44); +lean_dec_ref(x_43); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_58 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_58, 0, x_8); +return x_58; +} +else +{ +uint8_t x_59; +lean_inc(x_54); +lean_inc(x_53); +lean_inc_ref(x_52); +x_59 = !lean_is_exclusive(x_38); if (x_59 == 0) { -lean_object* x_60; -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; uint8_t x_67; +x_60 = lean_ctor_get(x_38, 2); +lean_dec(x_60); +x_61 = lean_ctor_get(x_38, 1); +lean_dec(x_61); +x_62 = lean_ctor_get(x_38, 0); +lean_dec(x_62); +x_63 = lean_ctor_get(x_35, 0); +x_64 = lean_ctor_get(x_35, 1); +x_65 = lean_ctor_get(x_35, 2); +x_66 = lean_nat_add(x_53, x_55); +lean_inc_ref(x_52); +lean_ctor_set(x_38, 1, x_66); +x_67 = lean_nat_dec_lt(x_64, x_65); +if (x_67 == 0) +{ +lean_object* x_68; +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -19756,44 +21246,43 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_60 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_60, 0, x_8); -return x_60; +lean_dec_ref(x_2); +x_68 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_68, 0, x_8); +return x_68; } else { -uint8_t x_61; -lean_inc(x_57); -lean_inc(x_56); -lean_inc_ref(x_55); -x_61 = !lean_is_exclusive(x_27); -if (x_61 == 0) -{ -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; -x_62 = lean_ctor_get(x_27, 2); -lean_dec(x_62); -x_63 = lean_ctor_get(x_27, 1); -lean_dec(x_63); -x_64 = lean_ctor_get(x_27, 0); -lean_dec(x_64); -x_65 = lean_ctor_get(x_24, 0); -x_66 = lean_ctor_get(x_24, 1); -x_67 = lean_ctor_get(x_24, 2); -x_68 = lean_nat_add(x_56, x_47); -lean_inc_ref(x_55); -lean_ctor_set(x_27, 1, x_68); -x_69 = lean_nat_dec_lt(x_66, x_67); +uint8_t x_69; +lean_inc(x_65); +lean_inc(x_64); +lean_inc_ref(x_63); +x_69 = !lean_is_exclusive(x_35); if (x_69 == 0) { -lean_object* x_70; -lean_dec(x_56); -lean_dec_ref(x_55); -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; +x_70 = lean_ctor_get(x_35, 2); +lean_dec(x_70); +x_71 = lean_ctor_get(x_35, 1); +lean_dec(x_71); +x_72 = lean_ctor_get(x_35, 0); +lean_dec(x_72); +x_73 = lean_ctor_get(x_32, 0); +x_74 = lean_ctor_get(x_32, 1); +x_75 = lean_ctor_get(x_32, 2); +x_76 = lean_nat_add(x_64, x_55); +lean_inc_ref(x_63); +lean_ctor_set(x_35, 1, x_76); +x_77 = lean_nat_dec_lt(x_74, x_75); +if (x_77 == 0) +{ +lean_object* x_78; +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -19801,46 +21290,45 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_70 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_70, 0, x_8); -return x_70; +lean_dec_ref(x_2); +x_78 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_78, 0, x_8); +return x_78; } else { -uint8_t x_71; -lean_inc(x_67); -lean_inc(x_66); -lean_inc_ref(x_65); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79; -x_72 = lean_ctor_get(x_24, 2); -lean_dec(x_72); -x_73 = lean_ctor_get(x_24, 1); -lean_dec(x_73); -x_74 = lean_ctor_get(x_24, 0); -lean_dec(x_74); -x_75 = lean_ctor_get(x_21, 0); -x_76 = lean_ctor_get(x_21, 1); -x_77 = lean_ctor_get(x_21, 2); -x_78 = lean_nat_add(x_66, x_47); -lean_inc_ref(x_65); -lean_ctor_set(x_24, 1, x_78); -x_79 = lean_nat_dec_lt(x_76, x_77); +uint8_t x_79; +lean_inc(x_75); +lean_inc(x_74); +lean_inc_ref(x_73); +x_79 = !lean_is_exclusive(x_32); if (x_79 == 0) { -lean_object* x_80; -lean_dec(x_66); -lean_dec_ref(x_65); -lean_dec(x_56); -lean_dec_ref(x_55); -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; uint8_t x_87; +x_80 = lean_ctor_get(x_32, 2); +lean_dec(x_80); +x_81 = lean_ctor_get(x_32, 1); +lean_dec(x_81); +x_82 = lean_ctor_get(x_32, 0); +lean_dec(x_82); +x_83 = lean_ctor_get(x_29, 0); +x_84 = lean_ctor_get(x_29, 1); +x_85 = lean_ctor_get(x_29, 2); +x_86 = lean_nat_add(x_74, x_55); +lean_inc_ref(x_73); +lean_ctor_set(x_32, 1, x_86); +x_87 = lean_nat_dec_lt(x_84, x_85); +if (x_87 == 0) +{ +lean_object* x_88; +lean_dec(x_74); +lean_dec_ref(x_73); +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -19848,159 +21336,233 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_80 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_80, 0, x_8); -return x_80; +lean_dec_ref(x_2); +x_88 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_88, 0, x_8); +return x_88; } else { -uint8_t x_81; -lean_inc(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -x_81 = !lean_is_exclusive(x_21); -if (x_81 == 0) +uint8_t x_89; +lean_inc(x_85); +lean_inc(x_84); +lean_inc_ref(x_83); +x_89 = !lean_is_exclusive(x_29); +if (x_89 == 0) { -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; -x_82 = lean_ctor_get(x_21, 2); -lean_dec(x_82); -x_83 = lean_ctor_get(x_21, 1); -lean_dec(x_83); -x_84 = lean_ctor_get(x_21, 0); +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; uint8_t x_96; +x_90 = lean_ctor_get(x_29, 2); +lean_dec(x_90); +x_91 = lean_ctor_get(x_29, 1); +lean_dec(x_91); +x_92 = lean_ctor_get(x_29, 0); +lean_dec(x_92); +x_93 = lean_array_fget(x_73, x_74); +lean_dec(x_74); +lean_dec_ref(x_73); +x_94 = lean_ctor_get(x_93, 1); +x_95 = lean_ctor_get_uint8(x_93, sizeof(void*)*2); +x_96 = lean_nat_dec_eq(x_94, x_1); +if (x_96 == 0) +{ +lean_object* x_97; lean_object* x_98; +lean_dec_ref(x_93); +lean_free_object(x_29); +lean_dec_ref(x_32); +lean_dec(x_85); lean_dec(x_84); -x_85 = lean_array_fget(x_35, x_36); -lean_dec(x_36); +lean_dec_ref(x_83); lean_dec_ref(x_35); -x_86 = lean_array_fget(x_44, x_45); -lean_dec(x_45); -lean_dec_ref(x_44); -x_87 = lean_array_fget(x_55, x_56); -lean_dec(x_56); -lean_dec_ref(x_55); -x_88 = lean_array_fget(x_65, x_66); -lean_dec(x_66); -lean_dec_ref(x_65); -x_89 = lean_array_fget_borrowed(x_75, x_76); -x_90 = lean_box(x_2); -x_91 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_89); -lean_inc(x_9); -lean_inc_ref(x_1); -x_92 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_92, 0, x_85); -lean_closure_set(x_92, 1, x_1); -lean_closure_set(x_92, 2, x_9); -lean_closure_set(x_92, 3, x_90); -lean_closure_set(x_92, 4, x_91); -lean_closure_set(x_92, 5, x_89); -lean_closure_set(x_92, 6, x_4); -lean_closure_set(x_92, 7, x_5); -lean_closure_set(x_92, 8, x_87); -lean_closure_set(x_92, 9, x_6); -lean_closure_set(x_92, 10, x_47); -x_93 = lean_nat_sub(x_88, x_5); -lean_dec(x_88); +lean_dec_ref(x_38); +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec_ref(x_27); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +x_97 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_94 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(x_86, x_93, x_6, x_92, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_94) == 0) +x_98 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_97, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_98) == 0) { -uint8_t x_95; -x_95 = !lean_is_exclusive(x_94); -if (x_95 == 0) +uint8_t x_99; +x_99 = !lean_is_exclusive(x_98); +if (x_99 == 0) { -lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; -x_96 = lean_ctor_get(x_94, 0); -x_97 = lean_nat_add(x_76, x_47); -lean_dec(x_76); -lean_ctor_set(x_21, 1, x_97); -x_98 = lean_array_push(x_33, x_96); -lean_ctor_set(x_18, 1, x_98); -x_99 = lean_nat_add(x_9, x_47); -lean_dec(x_9); -x_100 = lean_nat_dec_lt(x_99, x_7); -if (x_100 == 0) +lean_object* x_100; +x_100 = lean_ctor_get(x_98, 0); +if (lean_obj_tag(x_100) == 0) { -lean_dec(x_99); +lean_object* x_101; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_94, 0, x_8); -return x_94; +lean_dec_ref(x_2); +x_101 = lean_ctor_get(x_100, 0); +lean_inc(x_101); +lean_dec_ref(x_100); +lean_ctor_set(x_98, 0, x_101); +return x_98; } else { -lean_free_object(x_94); -x_9 = x_99; -goto _start; -} -} -else -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; -x_102 = lean_ctor_get(x_94, 0); +lean_object* x_102; +lean_free_object(x_98); +x_102 = lean_ctor_get(x_100, 0); lean_inc(x_102); -lean_dec(x_94); -x_103 = lean_nat_add(x_76, x_47); -lean_dec(x_76); -lean_ctor_set(x_21, 1, x_103); -x_104 = lean_array_push(x_33, x_102); -lean_ctor_set(x_18, 1, x_104); -x_105 = lean_nat_add(x_9, x_47); -lean_dec(x_9); -x_106 = lean_nat_dec_lt(x_105, x_7); -if (x_106 == 0) +lean_dec_ref(x_100); +x_15 = x_102; +x_16 = lean_box(0); +goto block_22; +} +} +else { -lean_object* x_107; -lean_dec(x_105); +lean_object* x_103; +x_103 = lean_ctor_get(x_98, 0); +lean_inc(x_103); +lean_dec(x_98); +if (lean_obj_tag(x_103) == 0) +{ +lean_object* x_104; lean_object* x_105; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_107 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_107, 0, x_8); -return x_107; +lean_dec_ref(x_2); +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +lean_dec_ref(x_103); +x_105 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_105, 0, x_104); +return x_105; } else { -x_9 = x_105; -goto _start; +lean_object* x_106; +x_106 = lean_ctor_get(x_103, 0); +lean_inc(x_106); +lean_dec_ref(x_103); +x_15 = x_106; +x_16 = lean_box(0); +goto block_22; } } } else { -uint8_t x_109; -lean_free_object(x_21); -lean_dec_ref(x_24); -lean_dec(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); +uint8_t x_107; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_107 = !lean_is_exclusive(x_98); +if (x_107 == 0) +{ +return x_98; +} +else +{ +lean_object* x_108; lean_object* x_109; +x_108 = lean_ctor_get(x_98, 0); +lean_inc(x_108); +lean_dec(x_98); +x_109 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_109, 0, x_108); +return x_109; +} +} +} +else +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_110 = lean_array_fget(x_43, x_44); +lean_dec(x_44); +lean_dec_ref(x_43); +x_111 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_112 = lean_array_fget(x_63, x_64); +lean_dec(x_64); +lean_dec_ref(x_63); +x_113 = lean_array_fget_borrowed(x_83, x_84); +x_114 = lean_box(x_3); +x_115 = lean_box(x_4); +x_116 = lean_box(x_95); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_113); +lean_inc(x_9); +lean_inc_ref(x_2); +x_117 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_117, 0, x_112); +lean_closure_set(x_117, 1, x_110); +lean_closure_set(x_117, 2, x_2); +lean_closure_set(x_117, 3, x_9); +lean_closure_set(x_117, 4, x_114); +lean_closure_set(x_117, 5, x_115); +lean_closure_set(x_117, 6, x_113); +lean_closure_set(x_117, 7, x_5); +lean_closure_set(x_117, 8, x_6); +lean_closure_set(x_117, 9, x_116); +lean_closure_set(x_117, 10, x_55); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_118 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_111, x_93, x_117, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_118) == 0) +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; +x_119 = lean_ctor_get(x_118, 0); +lean_inc(x_119); +lean_dec_ref(x_118); +x_120 = lean_nat_add(x_84, x_55); +lean_dec(x_84); +lean_ctor_set(x_29, 1, x_120); +x_121 = lean_array_push(x_41, x_119); +lean_ctor_set(x_26, 1, x_121); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +uint8_t x_122; +lean_free_object(x_29); +lean_dec_ref(x_32); +lean_dec(x_85); +lean_dec(x_84); +lean_dec_ref(x_83); +lean_dec_ref(x_35); +lean_dec_ref(x_38); lean_dec_ref(x_27); -lean_dec_ref(x_30); -lean_dec_ref(x_19); -lean_free_object(x_18); -lean_dec(x_33); -lean_free_object(x_17); -lean_free_object(x_16); -lean_free_object(x_15); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); lean_free_object(x_8); lean_dec(x_13); lean_dec_ref(x_12); @@ -20009,191 +21571,79 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_109 = !lean_is_exclusive(x_94); -if (x_109 == 0) +lean_dec_ref(x_2); +x_122 = !lean_is_exclusive(x_118); +if (x_122 == 0) { -return x_94; +return x_118; } else { -lean_object* x_110; lean_object* x_111; -x_110 = lean_ctor_get(x_94, 0); -lean_inc(x_110); -lean_dec(x_94); -x_111 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_111, 0, x_110); -return x_111; +lean_object* x_123; lean_object* x_124; +x_123 = lean_ctor_get(x_118, 0); +lean_inc(x_123); +lean_dec(x_118); +x_124 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_124, 0, x_123); +return x_124; +} } } } else { -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; -lean_dec(x_21); -x_112 = lean_array_fget(x_35, x_36); -lean_dec(x_36); -lean_dec_ref(x_35); -x_113 = lean_array_fget(x_44, x_45); -lean_dec(x_45); -lean_dec_ref(x_44); -x_114 = lean_array_fget(x_55, x_56); -lean_dec(x_56); -lean_dec_ref(x_55); -x_115 = lean_array_fget(x_65, x_66); -lean_dec(x_66); -lean_dec_ref(x_65); -x_116 = lean_array_fget_borrowed(x_75, x_76); -x_117 = lean_box(x_2); -x_118 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_116); -lean_inc(x_9); -lean_inc_ref(x_1); -x_119 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_119, 0, x_112); -lean_closure_set(x_119, 1, x_1); -lean_closure_set(x_119, 2, x_9); -lean_closure_set(x_119, 3, x_117); -lean_closure_set(x_119, 4, x_118); -lean_closure_set(x_119, 5, x_116); -lean_closure_set(x_119, 6, x_4); -lean_closure_set(x_119, 7, x_5); -lean_closure_set(x_119, 8, x_114); -lean_closure_set(x_119, 9, x_6); -lean_closure_set(x_119, 10, x_47); -x_120 = lean_nat_sub(x_115, x_5); -lean_dec(x_115); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_6); -x_121 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(x_113, x_120, x_6, x_119, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_121) == 0) -{ -lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; uint8_t x_128; -x_122 = lean_ctor_get(x_121, 0); -lean_inc(x_122); -if (lean_is_exclusive(x_121)) { - lean_ctor_release(x_121, 0); - x_123 = x_121; -} else { - lean_dec_ref(x_121); - x_123 = lean_box(0); -} -x_124 = lean_nat_add(x_76, x_47); -lean_dec(x_76); -x_125 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_125, 0, x_75); -lean_ctor_set(x_125, 1, x_124); -lean_ctor_set(x_125, 2, x_77); -x_126 = lean_array_push(x_33, x_122); -lean_ctor_set(x_18, 1, x_126); -lean_ctor_set(x_8, 0, x_125); -x_127 = lean_nat_add(x_9, x_47); -lean_dec(x_9); -x_128 = lean_nat_dec_lt(x_127, x_7); +lean_object* x_125; lean_object* x_126; uint8_t x_127; uint8_t x_128; +lean_dec(x_29); +x_125 = lean_array_fget(x_73, x_74); +lean_dec(x_74); +lean_dec_ref(x_73); +x_126 = lean_ctor_get(x_125, 1); +x_127 = lean_ctor_get_uint8(x_125, sizeof(void*)*2); +x_128 = lean_nat_dec_eq(x_126, x_1); if (x_128 == 0) { -lean_object* x_129; -lean_dec(x_127); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_123)) { - x_129 = lean_alloc_ctor(0, 1, 0); -} else { - x_129 = x_123; -} -lean_ctor_set(x_129, 0, x_8); -return x_129; -} -else -{ -lean_dec(x_123); -x_9 = x_127; -goto _start; -} -} -else -{ -lean_object* x_131; lean_object* x_132; lean_object* x_133; -lean_dec_ref(x_24); -lean_dec(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); +lean_object* x_129; lean_object* x_130; +lean_dec_ref(x_125); +lean_dec_ref(x_32); +lean_dec(x_85); +lean_dec(x_84); +lean_dec_ref(x_83); +lean_dec_ref(x_35); +lean_dec_ref(x_38); +lean_dec(x_64); +lean_dec_ref(x_63); lean_dec_ref(x_27); -lean_dec_ref(x_30); -lean_dec_ref(x_19); -lean_free_object(x_18); -lean_dec(x_33); -lean_free_object(x_17); -lean_free_object(x_16); -lean_free_object(x_15); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); lean_free_object(x_8); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_131 = lean_ctor_get(x_121, 0); +x_129 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_130 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_129, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_130) == 0) +{ +lean_object* x_131; lean_object* x_132; +x_131 = lean_ctor_get(x_130, 0); lean_inc(x_131); -if (lean_is_exclusive(x_121)) { - lean_ctor_release(x_121, 0); - x_132 = x_121; +if (lean_is_exclusive(x_130)) { + lean_ctor_release(x_130, 0); + x_132 = x_130; } else { - lean_dec_ref(x_121); + lean_dec_ref(x_130); x_132 = lean_box(0); } -if (lean_is_scalar(x_132)) { - x_133 = lean_alloc_ctor(1, 1, 0); -} else { - x_133 = x_132; -} -lean_ctor_set(x_133, 0, x_131); -return x_133; -} -} -} -} -else +if (lean_obj_tag(x_131) == 0) { -lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; -lean_dec(x_24); -x_134 = lean_ctor_get(x_21, 0); -x_135 = lean_ctor_get(x_21, 1); -x_136 = lean_ctor_get(x_21, 2); -x_137 = lean_nat_add(x_66, x_47); -lean_inc_ref(x_65); -x_138 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_138, 0, x_65); -lean_ctor_set(x_138, 1, x_137); -lean_ctor_set(x_138, 2, x_67); -x_139 = lean_nat_dec_lt(x_135, x_136); -if (x_139 == 0) -{ -lean_object* x_140; -lean_dec(x_66); -lean_dec_ref(x_65); -lean_dec(x_56); -lean_dec_ref(x_55); -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_133; lean_object* x_134; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -20201,142 +21651,186 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_15, 0, x_138); -x_140 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_140, 0, x_8); -return x_140; +lean_dec_ref(x_2); +x_133 = lean_ctor_get(x_131, 0); +lean_inc(x_133); +lean_dec_ref(x_131); +if (lean_is_scalar(x_132)) { + x_134 = lean_alloc_ctor(0, 1, 0); +} else { + x_134 = x_132; +} +lean_ctor_set(x_134, 0, x_133); +return x_134; } else { -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; -lean_inc(x_136); +lean_object* x_135; +lean_dec(x_132); +x_135 = lean_ctor_get(x_131, 0); lean_inc(x_135); -lean_inc_ref(x_134); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_141 = x_21; -} else { - lean_dec_ref(x_21); - x_141 = lean_box(0); +lean_dec_ref(x_131); +x_15 = x_135; +x_16 = lean_box(0); +goto block_22; } -x_142 = lean_array_fget(x_35, x_36); -lean_dec(x_36); -lean_dec_ref(x_35); -x_143 = lean_array_fget(x_44, x_45); -lean_dec(x_45); -lean_dec_ref(x_44); -x_144 = lean_array_fget(x_55, x_56); -lean_dec(x_56); -lean_dec_ref(x_55); -x_145 = lean_array_fget(x_65, x_66); -lean_dec(x_66); -lean_dec_ref(x_65); -x_146 = lean_array_fget_borrowed(x_134, x_135); -x_147 = lean_box(x_2); -x_148 = lean_box(x_3); +} +else +{ +lean_object* x_136; lean_object* x_137; lean_object* x_138; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_136 = lean_ctor_get(x_130, 0); +lean_inc(x_136); +if (lean_is_exclusive(x_130)) { + lean_ctor_release(x_130, 0); + x_137 = x_130; +} else { + lean_dec_ref(x_130); + x_137 = lean_box(0); +} +if (lean_is_scalar(x_137)) { + x_138 = lean_alloc_ctor(1, 1, 0); +} else { + x_138 = x_137; +} +lean_ctor_set(x_138, 0, x_136); +return x_138; +} +} +else +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; +x_139 = lean_array_fget(x_43, x_44); +lean_dec(x_44); +lean_dec_ref(x_43); +x_140 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_141 = lean_array_fget(x_63, x_64); +lean_dec(x_64); +lean_dec_ref(x_63); +x_142 = lean_array_fget_borrowed(x_83, x_84); +x_143 = lean_box(x_3); +x_144 = lean_box(x_4); +x_145 = lean_box(x_127); lean_inc(x_6); lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_146); +lean_inc_ref(x_142); lean_inc(x_9); -lean_inc_ref(x_1); -x_149 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_149, 0, x_142); -lean_closure_set(x_149, 1, x_1); -lean_closure_set(x_149, 2, x_9); -lean_closure_set(x_149, 3, x_147); -lean_closure_set(x_149, 4, x_148); -lean_closure_set(x_149, 5, x_146); -lean_closure_set(x_149, 6, x_4); -lean_closure_set(x_149, 7, x_5); -lean_closure_set(x_149, 8, x_144); -lean_closure_set(x_149, 9, x_6); -lean_closure_set(x_149, 10, x_47); -x_150 = lean_nat_sub(x_145, x_5); -lean_dec(x_145); +lean_inc_ref(x_2); +x_146 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_146, 0, x_141); +lean_closure_set(x_146, 1, x_139); +lean_closure_set(x_146, 2, x_2); +lean_closure_set(x_146, 3, x_9); +lean_closure_set(x_146, 4, x_143); +lean_closure_set(x_146, 5, x_144); +lean_closure_set(x_146, 6, x_142); +lean_closure_set(x_146, 7, x_5); +lean_closure_set(x_146, 8, x_6); +lean_closure_set(x_146, 9, x_145); +lean_closure_set(x_146, 10, x_55); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_151 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(x_143, x_150, x_6, x_149, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_151) == 0) +x_147 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_140, x_125, x_146, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_147) == 0) { -lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; uint8_t x_158; -x_152 = lean_ctor_get(x_151, 0); +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; +x_148 = lean_ctor_get(x_147, 0); +lean_inc(x_148); +lean_dec_ref(x_147); +x_149 = lean_nat_add(x_84, x_55); +lean_dec(x_84); +x_150 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_150, 0, x_83); +lean_ctor_set(x_150, 1, x_149); +lean_ctor_set(x_150, 2, x_85); +x_151 = lean_array_push(x_41, x_148); +lean_ctor_set(x_26, 1, x_151); +lean_ctor_set(x_8, 0, x_150); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; +lean_dec_ref(x_32); +lean_dec(x_85); +lean_dec(x_84); +lean_dec_ref(x_83); +lean_dec_ref(x_35); +lean_dec_ref(x_38); +lean_dec_ref(x_27); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_152 = lean_ctor_get(x_147, 0); lean_inc(x_152); -if (lean_is_exclusive(x_151)) { - lean_ctor_release(x_151, 0); - x_153 = x_151; +if (lean_is_exclusive(x_147)) { + lean_ctor_release(x_147, 0); + x_153 = x_147; } else { - lean_dec_ref(x_151); + lean_dec_ref(x_147); x_153 = lean_box(0); } -x_154 = lean_nat_add(x_135, x_47); -lean_dec(x_135); -if (lean_is_scalar(x_141)) { - x_155 = lean_alloc_ctor(0, 3, 0); -} else { - x_155 = x_141; -} -lean_ctor_set(x_155, 0, x_134); -lean_ctor_set(x_155, 1, x_154); -lean_ctor_set(x_155, 2, x_136); -x_156 = lean_array_push(x_33, x_152); -lean_ctor_set(x_18, 1, x_156); -lean_ctor_set(x_15, 0, x_138); -lean_ctor_set(x_8, 0, x_155); -x_157 = lean_nat_add(x_9, x_47); -lean_dec(x_9); -x_158 = lean_nat_dec_lt(x_157, x_7); -if (x_158 == 0) -{ -lean_object* x_159; -lean_dec(x_157); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); if (lean_is_scalar(x_153)) { - x_159 = lean_alloc_ctor(0, 1, 0); + x_154 = lean_alloc_ctor(1, 1, 0); } else { - x_159 = x_153; + x_154 = x_153; +} +lean_ctor_set(x_154, 0, x_152); +return x_154; +} } -lean_ctor_set(x_159, 0, x_8); -return x_159; } -else -{ -lean_dec(x_153); -x_9 = x_157; -goto _start; } } else { -lean_object* x_161; lean_object* x_162; lean_object* x_163; -lean_dec(x_141); -lean_dec_ref(x_138); -lean_dec(x_136); -lean_dec(x_135); -lean_dec_ref(x_134); -lean_dec_ref(x_27); -lean_dec_ref(x_30); -lean_dec_ref(x_19); -lean_free_object(x_18); -lean_dec(x_33); -lean_free_object(x_17); -lean_free_object(x_16); -lean_free_object(x_15); -lean_free_object(x_8); +lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; uint8_t x_160; +lean_dec(x_32); +x_155 = lean_ctor_get(x_29, 0); +x_156 = lean_ctor_get(x_29, 1); +x_157 = lean_ctor_get(x_29, 2); +x_158 = lean_nat_add(x_74, x_55); +lean_inc_ref(x_73); +x_159 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_159, 0, x_73); +lean_ctor_set(x_159, 1, x_158); +lean_ctor_set(x_159, 2, x_75); +x_160 = lean_nat_dec_lt(x_156, x_157); +if (x_160 == 0) +{ +lean_object* x_161; +lean_dec(x_74); +lean_dec_ref(x_73); +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -20344,251 +21838,270 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_161 = lean_ctor_get(x_151, 0); -lean_inc(x_161); -if (lean_is_exclusive(x_151)) { - lean_ctor_release(x_151, 0); - x_162 = x_151; +lean_dec_ref(x_2); +lean_ctor_set(x_23, 0, x_159); +x_161 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_161, 0, x_8); +return x_161; +} +else +{ +lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; uint8_t x_166; +lean_inc(x_157); +lean_inc(x_156); +lean_inc_ref(x_155); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_162 = x_29; } else { - lean_dec_ref(x_151); + lean_dec_ref(x_29); x_162 = lean_box(0); } -if (lean_is_scalar(x_162)) { - x_163 = lean_alloc_ctor(1, 1, 0); -} else { - x_163 = x_162; -} -lean_ctor_set(x_163, 0, x_161); -return x_163; -} -} -} -} -} -else +x_163 = lean_array_fget(x_73, x_74); +lean_dec(x_74); +lean_dec_ref(x_73); +x_164 = lean_ctor_get(x_163, 1); +x_165 = lean_ctor_get_uint8(x_163, sizeof(void*)*2); +x_166 = lean_nat_dec_eq(x_164, x_1); +if (x_166 == 0) { -lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; -lean_dec(x_27); -x_164 = lean_ctor_get(x_24, 0); -x_165 = lean_ctor_get(x_24, 1); -x_166 = lean_ctor_get(x_24, 2); -x_167 = lean_nat_add(x_56, x_47); -lean_inc_ref(x_55); -x_168 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_168, 0, x_55); -lean_ctor_set(x_168, 1, x_167); -lean_ctor_set(x_168, 2, x_57); -x_169 = lean_nat_dec_lt(x_165, x_166); -if (x_169 == 0) -{ -lean_object* x_170; -lean_dec(x_56); -lean_dec_ref(x_55); -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); +lean_object* x_167; lean_object* x_168; +lean_dec_ref(x_163); +lean_dec(x_162); +lean_dec_ref(x_159); +lean_dec(x_157); +lean_dec(x_156); +lean_dec_ref(x_155); lean_dec_ref(x_35); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_16, 0, x_168); -x_170 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_170, 0, x_8); -return x_170; -} -else -{ -lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; uint8_t x_177; -lean_inc(x_166); -lean_inc(x_165); -lean_inc_ref(x_164); -if (lean_is_exclusive(x_24)) { - lean_ctor_release(x_24, 0); - lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_171 = x_24; -} else { - lean_dec_ref(x_24); - x_171 = lean_box(0); -} -x_172 = lean_ctor_get(x_21, 0); -x_173 = lean_ctor_get(x_21, 1); -x_174 = lean_ctor_get(x_21, 2); -x_175 = lean_nat_add(x_165, x_47); -lean_inc_ref(x_164); -if (lean_is_scalar(x_171)) { - x_176 = lean_alloc_ctor(0, 3, 0); -} else { - x_176 = x_171; -} -lean_ctor_set(x_176, 0, x_164); -lean_ctor_set(x_176, 1, x_175); -lean_ctor_set(x_176, 2, x_166); -x_177 = lean_nat_dec_lt(x_173, x_174); -if (x_177 == 0) -{ -lean_object* x_178; -lean_dec(x_165); -lean_dec_ref(x_164); -lean_dec(x_56); -lean_dec_ref(x_55); -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_16, 0, x_168); -lean_ctor_set(x_15, 0, x_176); -x_178 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_178, 0, x_8); -return x_178; -} -else -{ -lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; -lean_inc(x_174); -lean_inc(x_173); -lean_inc_ref(x_172); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_179 = x_21; -} else { - lean_dec_ref(x_21); - x_179 = lean_box(0); -} -x_180 = lean_array_fget(x_35, x_36); -lean_dec(x_36); -lean_dec_ref(x_35); -x_181 = lean_array_fget(x_44, x_45); -lean_dec(x_45); -lean_dec_ref(x_44); -x_182 = lean_array_fget(x_55, x_56); -lean_dec(x_56); -lean_dec_ref(x_55); -x_183 = lean_array_fget(x_164, x_165); -lean_dec(x_165); -lean_dec_ref(x_164); -x_184 = lean_array_fget_borrowed(x_172, x_173); -x_185 = lean_box(x_2); -x_186 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_184); -lean_inc(x_9); -lean_inc_ref(x_1); -x_187 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_187, 0, x_180); -lean_closure_set(x_187, 1, x_1); -lean_closure_set(x_187, 2, x_9); -lean_closure_set(x_187, 3, x_185); -lean_closure_set(x_187, 4, x_186); -lean_closure_set(x_187, 5, x_184); -lean_closure_set(x_187, 6, x_4); -lean_closure_set(x_187, 7, x_5); -lean_closure_set(x_187, 8, x_182); -lean_closure_set(x_187, 9, x_6); -lean_closure_set(x_187, 10, x_47); -x_188 = lean_nat_sub(x_183, x_5); -lean_dec(x_183); +lean_dec_ref(x_38); +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec_ref(x_27); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +x_167 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_189 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(x_181, x_188, x_6, x_187, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_189) == 0) +x_168 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_167, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_168) == 0) { -lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; -x_190 = lean_ctor_get(x_189, 0); -lean_inc(x_190); -if (lean_is_exclusive(x_189)) { - lean_ctor_release(x_189, 0); - x_191 = x_189; +lean_object* x_169; lean_object* x_170; +x_169 = lean_ctor_get(x_168, 0); +lean_inc(x_169); +if (lean_is_exclusive(x_168)) { + lean_ctor_release(x_168, 0); + x_170 = x_168; } else { - lean_dec_ref(x_189); + lean_dec_ref(x_168); + x_170 = lean_box(0); +} +if (lean_obj_tag(x_169) == 0) +{ +lean_object* x_171; lean_object* x_172; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_171 = lean_ctor_get(x_169, 0); +lean_inc(x_171); +lean_dec_ref(x_169); +if (lean_is_scalar(x_170)) { + x_172 = lean_alloc_ctor(0, 1, 0); +} else { + x_172 = x_170; +} +lean_ctor_set(x_172, 0, x_171); +return x_172; +} +else +{ +lean_object* x_173; +lean_dec(x_170); +x_173 = lean_ctor_get(x_169, 0); +lean_inc(x_173); +lean_dec_ref(x_169); +x_15 = x_173; +x_16 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_174; lean_object* x_175; lean_object* x_176; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_174 = lean_ctor_get(x_168, 0); +lean_inc(x_174); +if (lean_is_exclusive(x_168)) { + lean_ctor_release(x_168, 0); + x_175 = x_168; +} else { + lean_dec_ref(x_168); + x_175 = lean_box(0); +} +if (lean_is_scalar(x_175)) { + x_176 = lean_alloc_ctor(1, 1, 0); +} else { + x_176 = x_175; +} +lean_ctor_set(x_176, 0, x_174); +return x_176; +} +} +else +{ +lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; +x_177 = lean_array_fget(x_43, x_44); +lean_dec(x_44); +lean_dec_ref(x_43); +x_178 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_179 = lean_array_fget(x_63, x_64); +lean_dec(x_64); +lean_dec_ref(x_63); +x_180 = lean_array_fget_borrowed(x_155, x_156); +x_181 = lean_box(x_3); +x_182 = lean_box(x_4); +x_183 = lean_box(x_165); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_180); +lean_inc(x_9); +lean_inc_ref(x_2); +x_184 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_184, 0, x_179); +lean_closure_set(x_184, 1, x_177); +lean_closure_set(x_184, 2, x_2); +lean_closure_set(x_184, 3, x_9); +lean_closure_set(x_184, 4, x_181); +lean_closure_set(x_184, 5, x_182); +lean_closure_set(x_184, 6, x_180); +lean_closure_set(x_184, 7, x_5); +lean_closure_set(x_184, 8, x_6); +lean_closure_set(x_184, 9, x_183); +lean_closure_set(x_184, 10, x_55); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_185 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_178, x_163, x_184, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_185) == 0) +{ +lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; +x_186 = lean_ctor_get(x_185, 0); +lean_inc(x_186); +lean_dec_ref(x_185); +x_187 = lean_nat_add(x_156, x_55); +lean_dec(x_156); +if (lean_is_scalar(x_162)) { + x_188 = lean_alloc_ctor(0, 3, 0); +} else { + x_188 = x_162; +} +lean_ctor_set(x_188, 0, x_155); +lean_ctor_set(x_188, 1, x_187); +lean_ctor_set(x_188, 2, x_157); +x_189 = lean_array_push(x_41, x_186); +lean_ctor_set(x_26, 1, x_189); +lean_ctor_set(x_23, 0, x_159); +lean_ctor_set(x_8, 0, x_188); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_190; lean_object* x_191; lean_object* x_192; +lean_dec(x_162); +lean_dec_ref(x_159); +lean_dec(x_157); +lean_dec(x_156); +lean_dec_ref(x_155); +lean_dec_ref(x_35); +lean_dec_ref(x_38); +lean_dec_ref(x_27); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_190 = lean_ctor_get(x_185, 0); +lean_inc(x_190); +if (lean_is_exclusive(x_185)) { + lean_ctor_release(x_185, 0); + x_191 = x_185; +} else { + lean_dec_ref(x_185); x_191 = lean_box(0); } -x_192 = lean_nat_add(x_173, x_47); -lean_dec(x_173); -if (lean_is_scalar(x_179)) { - x_193 = lean_alloc_ctor(0, 3, 0); -} else { - x_193 = x_179; -} -lean_ctor_set(x_193, 0, x_172); -lean_ctor_set(x_193, 1, x_192); -lean_ctor_set(x_193, 2, x_174); -x_194 = lean_array_push(x_33, x_190); -lean_ctor_set(x_18, 1, x_194); -lean_ctor_set(x_16, 0, x_168); -lean_ctor_set(x_15, 0, x_176); -lean_ctor_set(x_8, 0, x_193); -x_195 = lean_nat_add(x_9, x_47); -lean_dec(x_9); -x_196 = lean_nat_dec_lt(x_195, x_7); -if (x_196 == 0) -{ -lean_object* x_197; -lean_dec(x_195); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); if (lean_is_scalar(x_191)) { - x_197 = lean_alloc_ctor(0, 1, 0); + x_192 = lean_alloc_ctor(1, 1, 0); } else { - x_197 = x_191; + x_192 = x_191; +} +lean_ctor_set(x_192, 0, x_190); +return x_192; +} +} } -lean_ctor_set(x_197, 0, x_8); -return x_197; } -else -{ -lean_dec(x_191); -x_9 = x_195; -goto _start; } } else { -lean_object* x_199; lean_object* x_200; lean_object* x_201; -lean_dec(x_179); -lean_dec_ref(x_176); -lean_dec(x_174); -lean_dec(x_173); -lean_dec_ref(x_172); -lean_dec_ref(x_168); -lean_dec_ref(x_30); -lean_dec_ref(x_19); -lean_free_object(x_18); -lean_dec(x_33); -lean_free_object(x_17); -lean_free_object(x_16); -lean_free_object(x_15); -lean_free_object(x_8); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; +lean_dec(x_35); +x_193 = lean_ctor_get(x_32, 0); +x_194 = lean_ctor_get(x_32, 1); +x_195 = lean_ctor_get(x_32, 2); +x_196 = lean_nat_add(x_64, x_55); +lean_inc_ref(x_63); +x_197 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_197, 0, x_63); +lean_ctor_set(x_197, 1, x_196); +lean_ctor_set(x_197, 2, x_65); +x_198 = lean_nat_dec_lt(x_194, x_195); +if (x_198 == 0) +{ +lean_object* x_199; +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -20596,51 +22109,52 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_199 = lean_ctor_get(x_189, 0); -lean_inc(x_199); -if (lean_is_exclusive(x_189)) { - lean_ctor_release(x_189, 0); - x_200 = x_189; +lean_dec_ref(x_2); +lean_ctor_set(x_24, 0, x_197); +x_199 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_199, 0, x_8); +return x_199; +} +else +{ +lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; uint8_t x_206; +lean_inc(x_195); +lean_inc(x_194); +lean_inc_ref(x_193); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_200 = x_32; } else { - lean_dec_ref(x_189); + lean_dec_ref(x_32); x_200 = lean_box(0); } +x_201 = lean_ctor_get(x_29, 0); +x_202 = lean_ctor_get(x_29, 1); +x_203 = lean_ctor_get(x_29, 2); +x_204 = lean_nat_add(x_194, x_55); +lean_inc_ref(x_193); if (lean_is_scalar(x_200)) { - x_201 = lean_alloc_ctor(1, 1, 0); + x_205 = lean_alloc_ctor(0, 3, 0); } else { - x_201 = x_200; + x_205 = x_200; } -lean_ctor_set(x_201, 0, x_199); -return x_201; -} -} -} -} -} -} -else +lean_ctor_set(x_205, 0, x_193); +lean_ctor_set(x_205, 1, x_204); +lean_ctor_set(x_205, 2, x_195); +x_206 = lean_nat_dec_lt(x_202, x_203); +if (x_206 == 0) { -lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; uint8_t x_207; -lean_dec(x_30); -x_202 = lean_ctor_get(x_27, 0); -x_203 = lean_ctor_get(x_27, 1); -x_204 = lean_ctor_get(x_27, 2); -x_205 = lean_nat_add(x_45, x_47); -lean_inc_ref(x_44); -x_206 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_206, 0, x_44); -lean_ctor_set(x_206, 1, x_205); -lean_ctor_set(x_206, 2, x_46); -x_207 = lean_nat_dec_lt(x_203, x_204); -if (x_207 == 0) -{ -lean_object* x_208; -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_207; +lean_dec(x_194); +lean_dec_ref(x_193); +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -20648,253 +22162,271 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_17, 0, x_206); -x_208 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_208, 0, x_8); -return x_208; +lean_dec_ref(x_2); +lean_ctor_set(x_24, 0, x_197); +lean_ctor_set(x_23, 0, x_205); +x_207 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_207, 0, x_8); +return x_207; } else { -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; uint8_t x_215; -lean_inc(x_204); +lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; uint8_t x_212; lean_inc(x_203); -lean_inc_ref(x_202); -if (lean_is_exclusive(x_27)) { - lean_ctor_release(x_27, 0); - lean_ctor_release(x_27, 1); - lean_ctor_release(x_27, 2); - x_209 = x_27; +lean_inc(x_202); +lean_inc_ref(x_201); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_208 = x_29; } else { - lean_dec_ref(x_27); - x_209 = lean_box(0); + lean_dec_ref(x_29); + x_208 = lean_box(0); } -x_210 = lean_ctor_get(x_24, 0); -x_211 = lean_ctor_get(x_24, 1); -x_212 = lean_ctor_get(x_24, 2); -x_213 = lean_nat_add(x_203, x_47); -lean_inc_ref(x_202); -if (lean_is_scalar(x_209)) { - x_214 = lean_alloc_ctor(0, 3, 0); -} else { - x_214 = x_209; -} -lean_ctor_set(x_214, 0, x_202); -lean_ctor_set(x_214, 1, x_213); -lean_ctor_set(x_214, 2, x_204); -x_215 = lean_nat_dec_lt(x_211, x_212); -if (x_215 == 0) +x_209 = lean_array_fget(x_193, x_194); +lean_dec(x_194); +lean_dec_ref(x_193); +x_210 = lean_ctor_get(x_209, 1); +x_211 = lean_ctor_get_uint8(x_209, sizeof(void*)*2); +x_212 = lean_nat_dec_eq(x_210, x_1); +if (x_212 == 0) { -lean_object* x_216; +lean_object* x_213; lean_object* x_214; +lean_dec_ref(x_209); +lean_dec(x_208); +lean_dec_ref(x_205); lean_dec(x_203); -lean_dec_ref(x_202); -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_17, 0, x_206); -lean_ctor_set(x_16, 0, x_214); -x_216 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_216, 0, x_8); -return x_216; -} -else -{ -lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; uint8_t x_223; -lean_inc(x_212); -lean_inc(x_211); -lean_inc_ref(x_210); -if (lean_is_exclusive(x_24)) { - lean_ctor_release(x_24, 0); - lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_217 = x_24; -} else { - lean_dec_ref(x_24); - x_217 = lean_box(0); -} -x_218 = lean_ctor_get(x_21, 0); -x_219 = lean_ctor_get(x_21, 1); -x_220 = lean_ctor_get(x_21, 2); -x_221 = lean_nat_add(x_211, x_47); -lean_inc_ref(x_210); -if (lean_is_scalar(x_217)) { - x_222 = lean_alloc_ctor(0, 3, 0); -} else { - x_222 = x_217; -} -lean_ctor_set(x_222, 0, x_210); -lean_ctor_set(x_222, 1, x_221); -lean_ctor_set(x_222, 2, x_212); -x_223 = lean_nat_dec_lt(x_219, x_220); -if (x_223 == 0) -{ -lean_object* x_224; -lean_dec(x_211); -lean_dec_ref(x_210); -lean_dec(x_203); -lean_dec_ref(x_202); -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_17, 0, x_206); -lean_ctor_set(x_16, 0, x_214); -lean_ctor_set(x_15, 0, x_222); -x_224 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_224, 0, x_8); -return x_224; -} -else -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; -lean_inc(x_220); -lean_inc(x_219); -lean_inc_ref(x_218); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_225 = x_21; -} else { - lean_dec_ref(x_21); - x_225 = lean_box(0); -} -x_226 = lean_array_fget(x_35, x_36); -lean_dec(x_36); -lean_dec_ref(x_35); -x_227 = lean_array_fget(x_44, x_45); -lean_dec(x_45); -lean_dec_ref(x_44); -x_228 = lean_array_fget(x_202, x_203); -lean_dec(x_203); -lean_dec_ref(x_202); -x_229 = lean_array_fget(x_210, x_211); -lean_dec(x_211); -lean_dec_ref(x_210); -x_230 = lean_array_fget_borrowed(x_218, x_219); -x_231 = lean_box(x_2); -x_232 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_230); -lean_inc(x_9); -lean_inc_ref(x_1); -x_233 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_233, 0, x_226); -lean_closure_set(x_233, 1, x_1); -lean_closure_set(x_233, 2, x_9); -lean_closure_set(x_233, 3, x_231); -lean_closure_set(x_233, 4, x_232); -lean_closure_set(x_233, 5, x_230); -lean_closure_set(x_233, 6, x_4); -lean_closure_set(x_233, 7, x_5); -lean_closure_set(x_233, 8, x_228); -lean_closure_set(x_233, 9, x_6); -lean_closure_set(x_233, 10, x_47); -x_234 = lean_nat_sub(x_229, x_5); -lean_dec(x_229); +lean_dec(x_202); +lean_dec_ref(x_201); +lean_dec_ref(x_197); +lean_dec_ref(x_38); +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec_ref(x_27); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +x_213 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_235 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(x_227, x_234, x_6, x_233, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_235) == 0) +x_214 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_213, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_214) == 0) { -lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; uint8_t x_242; -x_236 = lean_ctor_get(x_235, 0); -lean_inc(x_236); -if (lean_is_exclusive(x_235)) { - lean_ctor_release(x_235, 0); - x_237 = x_235; +lean_object* x_215; lean_object* x_216; +x_215 = lean_ctor_get(x_214, 0); +lean_inc(x_215); +if (lean_is_exclusive(x_214)) { + lean_ctor_release(x_214, 0); + x_216 = x_214; } else { - lean_dec_ref(x_235); + lean_dec_ref(x_214); + x_216 = lean_box(0); +} +if (lean_obj_tag(x_215) == 0) +{ +lean_object* x_217; lean_object* x_218; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_217 = lean_ctor_get(x_215, 0); +lean_inc(x_217); +lean_dec_ref(x_215); +if (lean_is_scalar(x_216)) { + x_218 = lean_alloc_ctor(0, 1, 0); +} else { + x_218 = x_216; +} +lean_ctor_set(x_218, 0, x_217); +return x_218; +} +else +{ +lean_object* x_219; +lean_dec(x_216); +x_219 = lean_ctor_get(x_215, 0); +lean_inc(x_219); +lean_dec_ref(x_215); +x_15 = x_219; +x_16 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_220 = lean_ctor_get(x_214, 0); +lean_inc(x_220); +if (lean_is_exclusive(x_214)) { + lean_ctor_release(x_214, 0); + x_221 = x_214; +} else { + lean_dec_ref(x_214); + x_221 = lean_box(0); +} +if (lean_is_scalar(x_221)) { + x_222 = lean_alloc_ctor(1, 1, 0); +} else { + x_222 = x_221; +} +lean_ctor_set(x_222, 0, x_220); +return x_222; +} +} +else +{ +lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_223 = lean_array_fget(x_43, x_44); +lean_dec(x_44); +lean_dec_ref(x_43); +x_224 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_225 = lean_array_fget(x_63, x_64); +lean_dec(x_64); +lean_dec_ref(x_63); +x_226 = lean_array_fget_borrowed(x_201, x_202); +x_227 = lean_box(x_3); +x_228 = lean_box(x_4); +x_229 = lean_box(x_211); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_226); +lean_inc(x_9); +lean_inc_ref(x_2); +x_230 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_230, 0, x_225); +lean_closure_set(x_230, 1, x_223); +lean_closure_set(x_230, 2, x_2); +lean_closure_set(x_230, 3, x_9); +lean_closure_set(x_230, 4, x_227); +lean_closure_set(x_230, 5, x_228); +lean_closure_set(x_230, 6, x_226); +lean_closure_set(x_230, 7, x_5); +lean_closure_set(x_230, 8, x_6); +lean_closure_set(x_230, 9, x_229); +lean_closure_set(x_230, 10, x_55); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_231 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_224, x_209, x_230, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_231) == 0) +{ +lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_232 = lean_ctor_get(x_231, 0); +lean_inc(x_232); +lean_dec_ref(x_231); +x_233 = lean_nat_add(x_202, x_55); +lean_dec(x_202); +if (lean_is_scalar(x_208)) { + x_234 = lean_alloc_ctor(0, 3, 0); +} else { + x_234 = x_208; +} +lean_ctor_set(x_234, 0, x_201); +lean_ctor_set(x_234, 1, x_233); +lean_ctor_set(x_234, 2, x_203); +x_235 = lean_array_push(x_41, x_232); +lean_ctor_set(x_26, 1, x_235); +lean_ctor_set(x_24, 0, x_197); +lean_ctor_set(x_23, 0, x_205); +lean_ctor_set(x_8, 0, x_234); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_236; lean_object* x_237; lean_object* x_238; +lean_dec(x_208); +lean_dec_ref(x_205); +lean_dec(x_203); +lean_dec(x_202); +lean_dec_ref(x_201); +lean_dec_ref(x_197); +lean_dec_ref(x_38); +lean_dec_ref(x_27); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_236 = lean_ctor_get(x_231, 0); +lean_inc(x_236); +if (lean_is_exclusive(x_231)) { + lean_ctor_release(x_231, 0); + x_237 = x_231; +} else { + lean_dec_ref(x_231); x_237 = lean_box(0); } -x_238 = lean_nat_add(x_219, x_47); -lean_dec(x_219); -if (lean_is_scalar(x_225)) { - x_239 = lean_alloc_ctor(0, 3, 0); -} else { - x_239 = x_225; -} -lean_ctor_set(x_239, 0, x_218); -lean_ctor_set(x_239, 1, x_238); -lean_ctor_set(x_239, 2, x_220); -x_240 = lean_array_push(x_33, x_236); -lean_ctor_set(x_18, 1, x_240); -lean_ctor_set(x_17, 0, x_206); -lean_ctor_set(x_16, 0, x_214); -lean_ctor_set(x_15, 0, x_222); -lean_ctor_set(x_8, 0, x_239); -x_241 = lean_nat_add(x_9, x_47); -lean_dec(x_9); -x_242 = lean_nat_dec_lt(x_241, x_7); -if (x_242 == 0) -{ -lean_object* x_243; -lean_dec(x_241); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); if (lean_is_scalar(x_237)) { - x_243 = lean_alloc_ctor(0, 1, 0); + x_238 = lean_alloc_ctor(1, 1, 0); } else { - x_243 = x_237; + x_238 = x_237; +} +lean_ctor_set(x_238, 0, x_236); +return x_238; +} +} +} } -lean_ctor_set(x_243, 0, x_8); -return x_243; } -else -{ -lean_dec(x_237); -x_9 = x_241; -goto _start; } } else { -lean_object* x_245; lean_object* x_246; lean_object* x_247; -lean_dec(x_225); -lean_dec_ref(x_222); -lean_dec(x_220); -lean_dec(x_219); -lean_dec_ref(x_218); -lean_dec_ref(x_214); -lean_dec_ref(x_206); -lean_dec_ref(x_19); -lean_free_object(x_18); -lean_dec(x_33); -lean_free_object(x_17); -lean_free_object(x_16); -lean_free_object(x_15); -lean_free_object(x_8); +lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; uint8_t x_244; +lean_dec(x_38); +x_239 = lean_ctor_get(x_35, 0); +x_240 = lean_ctor_get(x_35, 1); +x_241 = lean_ctor_get(x_35, 2); +x_242 = lean_nat_add(x_53, x_55); +lean_inc_ref(x_52); +x_243 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_243, 0, x_52); +lean_ctor_set(x_243, 1, x_242); +lean_ctor_set(x_243, 2, x_54); +x_244 = lean_nat_dec_lt(x_240, x_241); +if (x_244 == 0) +{ +lean_object* x_245; +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -20902,51 +22434,50 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_245 = lean_ctor_get(x_235, 0); -lean_inc(x_245); -if (lean_is_exclusive(x_235)) { - lean_ctor_release(x_235, 0); - x_246 = x_235; +lean_dec_ref(x_2); +lean_ctor_set(x_25, 0, x_243); +x_245 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_245, 0, x_8); +return x_245; +} +else +{ +lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; uint8_t x_252; +lean_inc(x_241); +lean_inc(x_240); +lean_inc_ref(x_239); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + lean_ctor_release(x_35, 2); + x_246 = x_35; } else { - lean_dec_ref(x_235); + lean_dec_ref(x_35); x_246 = lean_box(0); } +x_247 = lean_ctor_get(x_32, 0); +x_248 = lean_ctor_get(x_32, 1); +x_249 = lean_ctor_get(x_32, 2); +x_250 = lean_nat_add(x_240, x_55); +lean_inc_ref(x_239); if (lean_is_scalar(x_246)) { - x_247 = lean_alloc_ctor(1, 1, 0); + x_251 = lean_alloc_ctor(0, 3, 0); } else { - x_247 = x_246; + x_251 = x_246; } -lean_ctor_set(x_247, 0, x_245); -return x_247; -} -} -} -} -} -} -} -else +lean_ctor_set(x_251, 0, x_239); +lean_ctor_set(x_251, 1, x_250); +lean_ctor_set(x_251, 2, x_241); +x_252 = lean_nat_dec_lt(x_248, x_249); +if (x_252 == 0) { -lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint8_t x_254; -lean_dec(x_19); -x_248 = lean_ctor_get(x_30, 0); -x_249 = lean_ctor_get(x_30, 1); -x_250 = lean_ctor_get(x_30, 2); -x_251 = lean_unsigned_to_nat(1u); -x_252 = lean_nat_add(x_36, x_251); -lean_inc_ref(x_35); -x_253 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_253, 0, x_35); -lean_ctor_set(x_253, 1, x_252); -lean_ctor_set(x_253, 2, x_37); -x_254 = lean_nat_dec_lt(x_249, x_250); -if (x_254 == 0) -{ -lean_object* x_255; -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_253; +lean_dec(x_240); +lean_dec_ref(x_239); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -20954,49 +22485,53 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_18, 0, x_253); -x_255 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_255, 0, x_8); -return x_255; +lean_dec_ref(x_2); +lean_ctor_set(x_25, 0, x_243); +lean_ctor_set(x_24, 0, x_251); +x_253 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_253, 0, x_8); +return x_253; } else { -lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint8_t x_262; -lean_inc(x_250); +lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint8_t x_260; lean_inc(x_249); -lean_inc_ref(x_248); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - lean_ctor_release(x_30, 1); - lean_ctor_release(x_30, 2); - x_256 = x_30; +lean_inc(x_248); +lean_inc_ref(x_247); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_254 = x_32; } else { - lean_dec_ref(x_30); - x_256 = lean_box(0); + lean_dec_ref(x_32); + x_254 = lean_box(0); } -x_257 = lean_ctor_get(x_27, 0); -x_258 = lean_ctor_get(x_27, 1); -x_259 = lean_ctor_get(x_27, 2); -x_260 = lean_nat_add(x_249, x_251); -lean_inc_ref(x_248); -if (lean_is_scalar(x_256)) { - x_261 = lean_alloc_ctor(0, 3, 0); +x_255 = lean_ctor_get(x_29, 0); +x_256 = lean_ctor_get(x_29, 1); +x_257 = lean_ctor_get(x_29, 2); +x_258 = lean_nat_add(x_248, x_55); +lean_inc_ref(x_247); +if (lean_is_scalar(x_254)) { + x_259 = lean_alloc_ctor(0, 3, 0); } else { - x_261 = x_256; + x_259 = x_254; } -lean_ctor_set(x_261, 0, x_248); -lean_ctor_set(x_261, 1, x_260); -lean_ctor_set(x_261, 2, x_250); -x_262 = lean_nat_dec_lt(x_258, x_259); -if (x_262 == 0) +lean_ctor_set(x_259, 0, x_247); +lean_ctor_set(x_259, 1, x_258); +lean_ctor_set(x_259, 2, x_249); +x_260 = lean_nat_dec_lt(x_256, x_257); +if (x_260 == 0) { -lean_object* x_263; -lean_dec(x_249); -lean_dec_ref(x_248); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_261; +lean_dec(x_248); +lean_dec_ref(x_247); +lean_dec(x_240); +lean_dec_ref(x_239); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -21004,256 +22539,220 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_18, 0, x_253); -lean_ctor_set(x_17, 0, x_261); -x_263 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_263, 0, x_8); -return x_263; +lean_dec_ref(x_2); +lean_ctor_set(x_25, 0, x_243); +lean_ctor_set(x_24, 0, x_251); +lean_ctor_set(x_23, 0, x_259); +x_261 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_261, 0, x_8); +return x_261; } else { -lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; uint8_t x_270; -lean_inc(x_259); -lean_inc(x_258); -lean_inc_ref(x_257); -if (lean_is_exclusive(x_27)) { - lean_ctor_release(x_27, 0); - lean_ctor_release(x_27, 1); - lean_ctor_release(x_27, 2); - x_264 = x_27; +lean_object* x_262; lean_object* x_263; lean_object* x_264; uint8_t x_265; uint8_t x_266; +lean_inc(x_257); +lean_inc(x_256); +lean_inc_ref(x_255); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_262 = x_29; } else { - lean_dec_ref(x_27); - x_264 = lean_box(0); + lean_dec_ref(x_29); + x_262 = lean_box(0); } -x_265 = lean_ctor_get(x_24, 0); -x_266 = lean_ctor_get(x_24, 1); -x_267 = lean_ctor_get(x_24, 2); -x_268 = lean_nat_add(x_258, x_251); -lean_inc_ref(x_257); -if (lean_is_scalar(x_264)) { - x_269 = lean_alloc_ctor(0, 3, 0); -} else { - x_269 = x_264; -} -lean_ctor_set(x_269, 0, x_257); -lean_ctor_set(x_269, 1, x_268); -lean_ctor_set(x_269, 2, x_259); -x_270 = lean_nat_dec_lt(x_266, x_267); -if (x_270 == 0) +x_263 = lean_array_fget(x_247, x_248); +lean_dec(x_248); +lean_dec_ref(x_247); +x_264 = lean_ctor_get(x_263, 1); +x_265 = lean_ctor_get_uint8(x_263, sizeof(void*)*2); +x_266 = lean_nat_dec_eq(x_264, x_1); +if (x_266 == 0) { -lean_object* x_271; -lean_dec(x_258); -lean_dec_ref(x_257); -lean_dec(x_249); -lean_dec_ref(x_248); -lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_18, 0, x_253); -lean_ctor_set(x_17, 0, x_261); -lean_ctor_set(x_16, 0, x_269); -x_271 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_271, 0, x_8); -return x_271; -} -else -{ -lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; uint8_t x_278; -lean_inc(x_267); -lean_inc(x_266); -lean_inc_ref(x_265); -if (lean_is_exclusive(x_24)) { - lean_ctor_release(x_24, 0); - lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_272 = x_24; -} else { - lean_dec_ref(x_24); - x_272 = lean_box(0); -} -x_273 = lean_ctor_get(x_21, 0); -x_274 = lean_ctor_get(x_21, 1); -x_275 = lean_ctor_get(x_21, 2); -x_276 = lean_nat_add(x_266, x_251); -lean_inc_ref(x_265); -if (lean_is_scalar(x_272)) { - x_277 = lean_alloc_ctor(0, 3, 0); -} else { - x_277 = x_272; -} -lean_ctor_set(x_277, 0, x_265); -lean_ctor_set(x_277, 1, x_276); -lean_ctor_set(x_277, 2, x_267); -x_278 = lean_nat_dec_lt(x_274, x_275); -if (x_278 == 0) -{ -lean_object* x_279; -lean_dec(x_266); -lean_dec_ref(x_265); -lean_dec(x_258); -lean_dec_ref(x_257); -lean_dec(x_249); -lean_dec_ref(x_248); -lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_18, 0, x_253); -lean_ctor_set(x_17, 0, x_261); -lean_ctor_set(x_16, 0, x_269); -lean_ctor_set(x_15, 0, x_277); -x_279 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_279, 0, x_8); -return x_279; -} -else -{ -lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; -lean_inc(x_275); -lean_inc(x_274); -lean_inc_ref(x_273); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_280 = x_21; -} else { - lean_dec_ref(x_21); - x_280 = lean_box(0); -} -x_281 = lean_array_fget(x_35, x_36); -lean_dec(x_36); -lean_dec_ref(x_35); -x_282 = lean_array_fget(x_248, x_249); -lean_dec(x_249); -lean_dec_ref(x_248); -x_283 = lean_array_fget(x_257, x_258); -lean_dec(x_258); -lean_dec_ref(x_257); -x_284 = lean_array_fget(x_265, x_266); -lean_dec(x_266); -lean_dec_ref(x_265); -x_285 = lean_array_fget_borrowed(x_273, x_274); -x_286 = lean_box(x_2); -x_287 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_285); -lean_inc(x_9); -lean_inc_ref(x_1); -x_288 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_288, 0, x_281); -lean_closure_set(x_288, 1, x_1); -lean_closure_set(x_288, 2, x_9); -lean_closure_set(x_288, 3, x_286); -lean_closure_set(x_288, 4, x_287); -lean_closure_set(x_288, 5, x_285); -lean_closure_set(x_288, 6, x_4); -lean_closure_set(x_288, 7, x_5); -lean_closure_set(x_288, 8, x_283); -lean_closure_set(x_288, 9, x_6); -lean_closure_set(x_288, 10, x_251); -x_289 = lean_nat_sub(x_284, x_5); -lean_dec(x_284); +lean_object* x_267; lean_object* x_268; +lean_dec_ref(x_263); +lean_dec(x_262); +lean_dec_ref(x_259); +lean_dec(x_257); +lean_dec(x_256); +lean_dec_ref(x_255); +lean_dec_ref(x_251); +lean_dec_ref(x_243); +lean_dec(x_240); +lean_dec_ref(x_239); +lean_dec_ref(x_27); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +x_267 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_290 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(x_282, x_289, x_6, x_288, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_290) == 0) +x_268 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_267, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_268) == 0) { -lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; uint8_t x_297; -x_291 = lean_ctor_get(x_290, 0); -lean_inc(x_291); -if (lean_is_exclusive(x_290)) { - lean_ctor_release(x_290, 0); - x_292 = x_290; +lean_object* x_269; lean_object* x_270; +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + x_270 = x_268; } else { - lean_dec_ref(x_290); - x_292 = lean_box(0); + lean_dec_ref(x_268); + x_270 = lean_box(0); } -x_293 = lean_nat_add(x_274, x_251); -lean_dec(x_274); -if (lean_is_scalar(x_280)) { - x_294 = lean_alloc_ctor(0, 3, 0); -} else { - x_294 = x_280; -} -lean_ctor_set(x_294, 0, x_273); -lean_ctor_set(x_294, 1, x_293); -lean_ctor_set(x_294, 2, x_275); -x_295 = lean_array_push(x_33, x_291); -lean_ctor_set(x_18, 1, x_295); -lean_ctor_set(x_18, 0, x_253); -lean_ctor_set(x_17, 0, x_261); -lean_ctor_set(x_16, 0, x_269); -lean_ctor_set(x_15, 0, x_277); -lean_ctor_set(x_8, 0, x_294); -x_296 = lean_nat_add(x_9, x_251); -lean_dec(x_9); -x_297 = lean_nat_dec_lt(x_296, x_7); -if (x_297 == 0) +if (lean_obj_tag(x_269) == 0) { -lean_object* x_298; -lean_dec(x_296); +lean_object* x_271; lean_object* x_272; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_292)) { - x_298 = lean_alloc_ctor(0, 1, 0); -} else { - x_298 = x_292; -} -lean_ctor_set(x_298, 0, x_8); -return x_298; -} -else -{ -lean_dec(x_292); -x_9 = x_296; -goto _start; -} -} -else -{ -lean_object* x_300; lean_object* x_301; lean_object* x_302; -lean_dec(x_280); -lean_dec_ref(x_277); -lean_dec(x_275); -lean_dec(x_274); -lean_dec_ref(x_273); +lean_dec_ref(x_2); +x_271 = lean_ctor_get(x_269, 0); +lean_inc(x_271); lean_dec_ref(x_269); -lean_dec_ref(x_261); -lean_dec_ref(x_253); -lean_free_object(x_18); -lean_dec(x_33); -lean_free_object(x_17); -lean_free_object(x_16); -lean_free_object(x_15); +if (lean_is_scalar(x_270)) { + x_272 = lean_alloc_ctor(0, 1, 0); +} else { + x_272 = x_270; +} +lean_ctor_set(x_272, 0, x_271); +return x_272; +} +else +{ +lean_object* x_273; +lean_dec(x_270); +x_273 = lean_ctor_get(x_269, 0); +lean_inc(x_273); +lean_dec_ref(x_269); +x_15 = x_273; +x_16 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_274; lean_object* x_275; lean_object* x_276; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_274 = lean_ctor_get(x_268, 0); +lean_inc(x_274); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + x_275 = x_268; +} else { + lean_dec_ref(x_268); + x_275 = lean_box(0); +} +if (lean_is_scalar(x_275)) { + x_276 = lean_alloc_ctor(1, 1, 0); +} else { + x_276 = x_275; +} +lean_ctor_set(x_276, 0, x_274); +return x_276; +} +} +else +{ +lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; +x_277 = lean_array_fget(x_43, x_44); +lean_dec(x_44); +lean_dec_ref(x_43); +x_278 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_279 = lean_array_fget(x_239, x_240); +lean_dec(x_240); +lean_dec_ref(x_239); +x_280 = lean_array_fget_borrowed(x_255, x_256); +x_281 = lean_box(x_3); +x_282 = lean_box(x_4); +x_283 = lean_box(x_265); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_280); +lean_inc(x_9); +lean_inc_ref(x_2); +x_284 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_284, 0, x_279); +lean_closure_set(x_284, 1, x_277); +lean_closure_set(x_284, 2, x_2); +lean_closure_set(x_284, 3, x_9); +lean_closure_set(x_284, 4, x_281); +lean_closure_set(x_284, 5, x_282); +lean_closure_set(x_284, 6, x_280); +lean_closure_set(x_284, 7, x_5); +lean_closure_set(x_284, 8, x_6); +lean_closure_set(x_284, 9, x_283); +lean_closure_set(x_284, 10, x_55); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_285 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_278, x_263, x_284, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_285) == 0) +{ +lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; +x_286 = lean_ctor_get(x_285, 0); +lean_inc(x_286); +lean_dec_ref(x_285); +x_287 = lean_nat_add(x_256, x_55); +lean_dec(x_256); +if (lean_is_scalar(x_262)) { + x_288 = lean_alloc_ctor(0, 3, 0); +} else { + x_288 = x_262; +} +lean_ctor_set(x_288, 0, x_255); +lean_ctor_set(x_288, 1, x_287); +lean_ctor_set(x_288, 2, x_257); +x_289 = lean_array_push(x_41, x_286); +lean_ctor_set(x_26, 1, x_289); +lean_ctor_set(x_25, 0, x_243); +lean_ctor_set(x_24, 0, x_251); +lean_ctor_set(x_23, 0, x_259); +lean_ctor_set(x_8, 0, x_288); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_290; lean_object* x_291; lean_object* x_292; +lean_dec(x_262); +lean_dec_ref(x_259); +lean_dec(x_257); +lean_dec(x_256); +lean_dec_ref(x_255); +lean_dec_ref(x_251); +lean_dec_ref(x_243); +lean_dec_ref(x_27); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); lean_free_object(x_8); lean_dec(x_13); lean_dec_ref(x_12); @@ -21262,45 +22761,100 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_300 = lean_ctor_get(x_290, 0); -lean_inc(x_300); -if (lean_is_exclusive(x_290)) { - lean_ctor_release(x_290, 0); - x_301 = x_290; +lean_dec_ref(x_2); +x_290 = lean_ctor_get(x_285, 0); +lean_inc(x_290); +if (lean_is_exclusive(x_285)) { + lean_ctor_release(x_285, 0); + x_291 = x_285; } else { - lean_dec_ref(x_290); + lean_dec_ref(x_285); + x_291 = lean_box(0); +} +if (lean_is_scalar(x_291)) { + x_292 = lean_alloc_ctor(1, 1, 0); +} else { + x_292 = x_291; +} +lean_ctor_set(x_292, 0, x_290); +return x_292; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; uint8_t x_299; +lean_dec(x_27); +x_293 = lean_ctor_get(x_38, 0); +x_294 = lean_ctor_get(x_38, 1); +x_295 = lean_ctor_get(x_38, 2); +x_296 = lean_unsigned_to_nat(1u); +x_297 = lean_nat_add(x_44, x_296); +lean_inc_ref(x_43); +x_298 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_298, 0, x_43); +lean_ctor_set(x_298, 1, x_297); +lean_ctor_set(x_298, 2, x_45); +x_299 = lean_nat_dec_lt(x_294, x_295); +if (x_299 == 0) +{ +lean_object* x_300; +lean_dec(x_44); +lean_dec_ref(x_43); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_298); +x_300 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_300, 0, x_8); +return x_300; +} +else +{ +lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; uint8_t x_307; +lean_inc(x_295); +lean_inc(x_294); +lean_inc_ref(x_293); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + lean_ctor_release(x_38, 2); + x_301 = x_38; +} else { + lean_dec_ref(x_38); x_301 = lean_box(0); } +x_302 = lean_ctor_get(x_35, 0); +x_303 = lean_ctor_get(x_35, 1); +x_304 = lean_ctor_get(x_35, 2); +x_305 = lean_nat_add(x_294, x_296); +lean_inc_ref(x_293); if (lean_is_scalar(x_301)) { - x_302 = lean_alloc_ctor(1, 1, 0); + x_306 = lean_alloc_ctor(0, 3, 0); } else { - x_302 = x_301; + x_306 = x_301; } -lean_ctor_set(x_302, 0, x_300); -return x_302; -} -} -} -} -} -} -} -} -else -{ -lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; uint8_t x_307; -x_303 = lean_ctor_get(x_18, 1); -lean_inc(x_303); -lean_dec(x_18); -x_304 = lean_ctor_get(x_19, 0); -x_305 = lean_ctor_get(x_19, 1); -x_306 = lean_ctor_get(x_19, 2); -x_307 = lean_nat_dec_lt(x_305, x_306); +lean_ctor_set(x_306, 0, x_293); +lean_ctor_set(x_306, 1, x_305); +lean_ctor_set(x_306, 2, x_295); +x_307 = lean_nat_dec_lt(x_303, x_304); if (x_307 == 0) { -lean_object* x_308; lean_object* x_309; +lean_object* x_308; +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -21308,51 +22862,51 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_308 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_308, 0, x_19); -lean_ctor_set(x_308, 1, x_303); -lean_ctor_set(x_17, 1, x_308); -x_309 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_309, 0, x_8); -return x_309; +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_298); +lean_ctor_set(x_25, 0, x_306); +x_308 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_308, 0, x_8); +return x_308; } else { -lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; uint8_t x_317; -lean_inc(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - lean_ctor_release(x_19, 2); - x_310 = x_19; +lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; uint8_t x_315; +lean_inc(x_304); +lean_inc(x_303); +lean_inc_ref(x_302); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + lean_ctor_release(x_35, 2); + x_309 = x_35; } else { - lean_dec_ref(x_19); - x_310 = lean_box(0); + lean_dec_ref(x_35); + x_309 = lean_box(0); } -x_311 = lean_ctor_get(x_30, 0); -x_312 = lean_ctor_get(x_30, 1); -x_313 = lean_ctor_get(x_30, 2); -x_314 = lean_unsigned_to_nat(1u); -x_315 = lean_nat_add(x_305, x_314); -lean_inc_ref(x_304); -if (lean_is_scalar(x_310)) { - x_316 = lean_alloc_ctor(0, 3, 0); +x_310 = lean_ctor_get(x_32, 0); +x_311 = lean_ctor_get(x_32, 1); +x_312 = lean_ctor_get(x_32, 2); +x_313 = lean_nat_add(x_303, x_296); +lean_inc_ref(x_302); +if (lean_is_scalar(x_309)) { + x_314 = lean_alloc_ctor(0, 3, 0); } else { - x_316 = x_310; + x_314 = x_309; } -lean_ctor_set(x_316, 0, x_304); -lean_ctor_set(x_316, 1, x_315); -lean_ctor_set(x_316, 2, x_306); -x_317 = lean_nat_dec_lt(x_312, x_313); -if (x_317 == 0) +lean_ctor_set(x_314, 0, x_302); +lean_ctor_set(x_314, 1, x_313); +lean_ctor_set(x_314, 2, x_304); +x_315 = lean_nat_dec_lt(x_311, x_312); +if (x_315 == 0) { -lean_object* x_318; lean_object* x_319; -lean_dec(x_305); -lean_dec_ref(x_304); +lean_object* x_316; +lean_dec(x_303); +lean_dec_ref(x_302); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -21360,52 +22914,54 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_318 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_318, 0, x_316); -lean_ctor_set(x_318, 1, x_303); -lean_ctor_set(x_17, 1, x_318); -x_319 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_319, 0, x_8); -return x_319; +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_298); +lean_ctor_set(x_25, 0, x_306); +lean_ctor_set(x_24, 0, x_314); +x_316 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_316, 0, x_8); +return x_316; } else { -lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; uint8_t x_326; -lean_inc(x_313); +lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_inc(x_312); -lean_inc_ref(x_311); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - lean_ctor_release(x_30, 1); - lean_ctor_release(x_30, 2); - x_320 = x_30; +lean_inc(x_311); +lean_inc_ref(x_310); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_317 = x_32; } else { - lean_dec_ref(x_30); - x_320 = lean_box(0); + lean_dec_ref(x_32); + x_317 = lean_box(0); } -x_321 = lean_ctor_get(x_27, 0); -x_322 = lean_ctor_get(x_27, 1); -x_323 = lean_ctor_get(x_27, 2); -x_324 = lean_nat_add(x_312, x_314); -lean_inc_ref(x_311); -if (lean_is_scalar(x_320)) { - x_325 = lean_alloc_ctor(0, 3, 0); +x_318 = lean_ctor_get(x_29, 0); +x_319 = lean_ctor_get(x_29, 1); +x_320 = lean_ctor_get(x_29, 2); +x_321 = lean_nat_add(x_311, x_296); +lean_inc_ref(x_310); +if (lean_is_scalar(x_317)) { + x_322 = lean_alloc_ctor(0, 3, 0); } else { - x_325 = x_320; + x_322 = x_317; } -lean_ctor_set(x_325, 0, x_311); -lean_ctor_set(x_325, 1, x_324); -lean_ctor_set(x_325, 2, x_313); -x_326 = lean_nat_dec_lt(x_322, x_323); -if (x_326 == 0) +lean_ctor_set(x_322, 0, x_310); +lean_ctor_set(x_322, 1, x_321); +lean_ctor_set(x_322, 2, x_312); +x_323 = lean_nat_dec_lt(x_319, x_320); +if (x_323 == 0) { -lean_object* x_327; lean_object* x_328; -lean_dec(x_312); -lean_dec_ref(x_311); -lean_dec(x_305); -lean_dec_ref(x_304); +lean_object* x_324; +lean_dec(x_311); +lean_dec_ref(x_310); +lean_dec(x_303); +lean_dec_ref(x_302); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -21413,266 +22969,222 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_327 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_327, 0, x_316); -lean_ctor_set(x_327, 1, x_303); -lean_ctor_set(x_17, 1, x_327); -lean_ctor_set(x_17, 0, x_325); -x_328 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_328, 0, x_8); -return x_328; +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_298); +lean_ctor_set(x_25, 0, x_306); +lean_ctor_set(x_24, 0, x_314); +lean_ctor_set(x_23, 0, x_322); +x_324 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_324, 0, x_8); +return x_324; } else { -lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; -lean_inc(x_323); -lean_inc(x_322); -lean_inc_ref(x_321); -if (lean_is_exclusive(x_27)) { - lean_ctor_release(x_27, 0); - lean_ctor_release(x_27, 1); - lean_ctor_release(x_27, 2); - x_329 = x_27; +lean_object* x_325; lean_object* x_326; lean_object* x_327; uint8_t x_328; uint8_t x_329; +lean_inc(x_320); +lean_inc(x_319); +lean_inc_ref(x_318); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_325 = x_29; } else { - lean_dec_ref(x_27); - x_329 = lean_box(0); + lean_dec_ref(x_29); + x_325 = lean_box(0); } -x_330 = lean_ctor_get(x_24, 0); -x_331 = lean_ctor_get(x_24, 1); -x_332 = lean_ctor_get(x_24, 2); -x_333 = lean_nat_add(x_322, x_314); -lean_inc_ref(x_321); -if (lean_is_scalar(x_329)) { - x_334 = lean_alloc_ctor(0, 3, 0); -} else { - x_334 = x_329; -} -lean_ctor_set(x_334, 0, x_321); -lean_ctor_set(x_334, 1, x_333); -lean_ctor_set(x_334, 2, x_323); -x_335 = lean_nat_dec_lt(x_331, x_332); -if (x_335 == 0) +x_326 = lean_array_fget(x_310, x_311); +lean_dec(x_311); +lean_dec_ref(x_310); +x_327 = lean_ctor_get(x_326, 1); +x_328 = lean_ctor_get_uint8(x_326, sizeof(void*)*2); +x_329 = lean_nat_dec_eq(x_327, x_1); +if (x_329 == 0) { -lean_object* x_336; lean_object* x_337; -lean_dec(x_322); -lean_dec_ref(x_321); -lean_dec(x_312); -lean_dec_ref(x_311); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_316); -lean_ctor_set(x_336, 1, x_303); -lean_ctor_set(x_17, 1, x_336); -lean_ctor_set(x_17, 0, x_325); -lean_ctor_set(x_16, 0, x_334); -x_337 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_337, 0, x_8); -return x_337; -} -else -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; uint8_t x_344; -lean_inc(x_332); -lean_inc(x_331); -lean_inc_ref(x_330); -if (lean_is_exclusive(x_24)) { - lean_ctor_release(x_24, 0); - lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_338 = x_24; -} else { - lean_dec_ref(x_24); - x_338 = lean_box(0); -} -x_339 = lean_ctor_get(x_21, 0); -x_340 = lean_ctor_get(x_21, 1); -x_341 = lean_ctor_get(x_21, 2); -x_342 = lean_nat_add(x_331, x_314); -lean_inc_ref(x_330); -if (lean_is_scalar(x_338)) { - x_343 = lean_alloc_ctor(0, 3, 0); -} else { - x_343 = x_338; -} -lean_ctor_set(x_343, 0, x_330); -lean_ctor_set(x_343, 1, x_342); -lean_ctor_set(x_343, 2, x_332); -x_344 = lean_nat_dec_lt(x_340, x_341); -if (x_344 == 0) -{ -lean_object* x_345; lean_object* x_346; -lean_dec(x_331); -lean_dec_ref(x_330); -lean_dec(x_322); -lean_dec_ref(x_321); -lean_dec(x_312); -lean_dec_ref(x_311); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_345 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_345, 0, x_316); -lean_ctor_set(x_345, 1, x_303); -lean_ctor_set(x_17, 1, x_345); -lean_ctor_set(x_17, 0, x_325); -lean_ctor_set(x_16, 0, x_334); -lean_ctor_set(x_15, 0, x_343); -x_346 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_346, 0, x_8); -return x_346; -} -else -{ -lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; -lean_inc(x_341); -lean_inc(x_340); -lean_inc_ref(x_339); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_347 = x_21; -} else { - lean_dec_ref(x_21); - x_347 = lean_box(0); -} -x_348 = lean_array_fget(x_304, x_305); -lean_dec(x_305); -lean_dec_ref(x_304); -x_349 = lean_array_fget(x_311, x_312); -lean_dec(x_312); -lean_dec_ref(x_311); -x_350 = lean_array_fget(x_321, x_322); -lean_dec(x_322); -lean_dec_ref(x_321); -x_351 = lean_array_fget(x_330, x_331); -lean_dec(x_331); -lean_dec_ref(x_330); -x_352 = lean_array_fget_borrowed(x_339, x_340); -x_353 = lean_box(x_2); -x_354 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_352); -lean_inc(x_9); -lean_inc_ref(x_1); -x_355 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_355, 0, x_348); -lean_closure_set(x_355, 1, x_1); -lean_closure_set(x_355, 2, x_9); -lean_closure_set(x_355, 3, x_353); -lean_closure_set(x_355, 4, x_354); -lean_closure_set(x_355, 5, x_352); -lean_closure_set(x_355, 6, x_4); -lean_closure_set(x_355, 7, x_5); -lean_closure_set(x_355, 8, x_350); -lean_closure_set(x_355, 9, x_6); -lean_closure_set(x_355, 10, x_314); -x_356 = lean_nat_sub(x_351, x_5); -lean_dec(x_351); +lean_object* x_330; lean_object* x_331; +lean_dec_ref(x_326); +lean_dec(x_325); +lean_dec_ref(x_322); +lean_dec(x_320); +lean_dec(x_319); +lean_dec_ref(x_318); +lean_dec_ref(x_314); +lean_dec_ref(x_306); +lean_dec(x_303); +lean_dec_ref(x_302); +lean_dec_ref(x_298); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec(x_44); +lean_dec_ref(x_43); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +x_330 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_357 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(x_349, x_356, x_6, x_355, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_357) == 0) +x_331 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_330, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_331) == 0) { -lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; uint8_t x_365; -x_358 = lean_ctor_get(x_357, 0); -lean_inc(x_358); -if (lean_is_exclusive(x_357)) { - lean_ctor_release(x_357, 0); - x_359 = x_357; +lean_object* x_332; lean_object* x_333; +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + x_333 = x_331; } else { - lean_dec_ref(x_357); - x_359 = lean_box(0); + lean_dec_ref(x_331); + x_333 = lean_box(0); } -x_360 = lean_nat_add(x_340, x_314); -lean_dec(x_340); -if (lean_is_scalar(x_347)) { - x_361 = lean_alloc_ctor(0, 3, 0); -} else { - x_361 = x_347; -} -lean_ctor_set(x_361, 0, x_339); -lean_ctor_set(x_361, 1, x_360); -lean_ctor_set(x_361, 2, x_341); -x_362 = lean_array_push(x_303, x_358); -x_363 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_363, 0, x_316); -lean_ctor_set(x_363, 1, x_362); -lean_ctor_set(x_17, 1, x_363); -lean_ctor_set(x_17, 0, x_325); -lean_ctor_set(x_16, 0, x_334); -lean_ctor_set(x_15, 0, x_343); -lean_ctor_set(x_8, 0, x_361); -x_364 = lean_nat_add(x_9, x_314); -lean_dec(x_9); -x_365 = lean_nat_dec_lt(x_364, x_7); -if (x_365 == 0) +if (lean_obj_tag(x_332) == 0) { -lean_object* x_366; -lean_dec(x_364); +lean_object* x_334; lean_object* x_335; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_359)) { - x_366 = lean_alloc_ctor(0, 1, 0); +lean_dec_ref(x_2); +x_334 = lean_ctor_get(x_332, 0); +lean_inc(x_334); +lean_dec_ref(x_332); +if (lean_is_scalar(x_333)) { + x_335 = lean_alloc_ctor(0, 1, 0); } else { - x_366 = x_359; + x_335 = x_333; } -lean_ctor_set(x_366, 0, x_8); -return x_366; +lean_ctor_set(x_335, 0, x_334); +return x_335; } else { -lean_dec(x_359); -x_9 = x_364; -goto _start; +lean_object* x_336; +lean_dec(x_333); +x_336 = lean_ctor_get(x_332, 0); +lean_inc(x_336); +lean_dec_ref(x_332); +x_15 = x_336; +x_16 = lean_box(0); +goto block_22; } } else { -lean_object* x_368; lean_object* x_369; lean_object* x_370; -lean_dec(x_347); -lean_dec_ref(x_343); -lean_dec(x_341); -lean_dec(x_340); -lean_dec_ref(x_339); -lean_dec_ref(x_334); -lean_dec_ref(x_325); -lean_dec_ref(x_316); +lean_object* x_337; lean_object* x_338; lean_object* x_339; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_337 = lean_ctor_get(x_331, 0); +lean_inc(x_337); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + x_338 = x_331; +} else { + lean_dec_ref(x_331); + x_338 = lean_box(0); +} +if (lean_is_scalar(x_338)) { + x_339 = lean_alloc_ctor(1, 1, 0); +} else { + x_339 = x_338; +} +lean_ctor_set(x_339, 0, x_337); +return x_339; +} +} +else +{ +lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; +x_340 = lean_array_fget(x_43, x_44); +lean_dec(x_44); +lean_dec_ref(x_43); +x_341 = lean_array_fget(x_293, x_294); +lean_dec(x_294); +lean_dec_ref(x_293); +x_342 = lean_array_fget(x_302, x_303); lean_dec(x_303); -lean_free_object(x_17); -lean_free_object(x_16); -lean_free_object(x_15); +lean_dec_ref(x_302); +x_343 = lean_array_fget_borrowed(x_318, x_319); +x_344 = lean_box(x_3); +x_345 = lean_box(x_4); +x_346 = lean_box(x_328); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_343); +lean_inc(x_9); +lean_inc_ref(x_2); +x_347 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_347, 0, x_342); +lean_closure_set(x_347, 1, x_340); +lean_closure_set(x_347, 2, x_2); +lean_closure_set(x_347, 3, x_9); +lean_closure_set(x_347, 4, x_344); +lean_closure_set(x_347, 5, x_345); +lean_closure_set(x_347, 6, x_343); +lean_closure_set(x_347, 7, x_5); +lean_closure_set(x_347, 8, x_6); +lean_closure_set(x_347, 9, x_346); +lean_closure_set(x_347, 10, x_296); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_348 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_341, x_326, x_347, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_348) == 0) +{ +lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; +x_349 = lean_ctor_get(x_348, 0); +lean_inc(x_349); +lean_dec_ref(x_348); +x_350 = lean_nat_add(x_319, x_296); +lean_dec(x_319); +if (lean_is_scalar(x_325)) { + x_351 = lean_alloc_ctor(0, 3, 0); +} else { + x_351 = x_325; +} +lean_ctor_set(x_351, 0, x_318); +lean_ctor_set(x_351, 1, x_350); +lean_ctor_set(x_351, 2, x_320); +x_352 = lean_array_push(x_41, x_349); +lean_ctor_set(x_26, 1, x_352); +lean_ctor_set(x_26, 0, x_298); +lean_ctor_set(x_25, 0, x_306); +lean_ctor_set(x_24, 0, x_314); +lean_ctor_set(x_23, 0, x_322); +lean_ctor_set(x_8, 0, x_351); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_353; lean_object* x_354; lean_object* x_355; +lean_dec(x_325); +lean_dec_ref(x_322); +lean_dec(x_320); +lean_dec(x_319); +lean_dec_ref(x_318); +lean_dec_ref(x_314); +lean_dec_ref(x_306); +lean_dec_ref(x_298); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); lean_free_object(x_8); lean_dec(x_13); lean_dec_ref(x_12); @@ -21681,24 +23193,24 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_368 = lean_ctor_get(x_357, 0); -lean_inc(x_368); -if (lean_is_exclusive(x_357)) { - lean_ctor_release(x_357, 0); - x_369 = x_357; +lean_dec_ref(x_2); +x_353 = lean_ctor_get(x_348, 0); +lean_inc(x_353); +if (lean_is_exclusive(x_348)) { + lean_ctor_release(x_348, 0); + x_354 = x_348; } else { - lean_dec_ref(x_357); - x_369 = lean_box(0); + lean_dec_ref(x_348); + x_354 = lean_box(0); } -if (lean_is_scalar(x_369)) { - x_370 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_354)) { + x_355 = lean_alloc_ctor(1, 1, 0); } else { - x_370 = x_369; + x_355 = x_354; +} +lean_ctor_set(x_355, 0, x_353); +return x_355; } -lean_ctor_set(x_370, 0, x_368); -return x_370; } } } @@ -21709,27 +23221,17 @@ return x_370; } else { -lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; uint8_t x_377; -x_371 = lean_ctor_get(x_17, 0); -lean_inc(x_371); -lean_dec(x_17); -x_372 = lean_ctor_get(x_18, 1); -lean_inc(x_372); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_373 = x_18; -} else { - lean_dec_ref(x_18); - x_373 = lean_box(0); -} -x_374 = lean_ctor_get(x_19, 0); -x_375 = lean_ctor_get(x_19, 1); -x_376 = lean_ctor_get(x_19, 2); -x_377 = lean_nat_dec_lt(x_375, x_376); -if (x_377 == 0) +lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; uint8_t x_360; +x_356 = lean_ctor_get(x_26, 1); +lean_inc(x_356); +lean_dec(x_26); +x_357 = lean_ctor_get(x_27, 0); +x_358 = lean_ctor_get(x_27, 1); +x_359 = lean_ctor_get(x_27, 2); +x_360 = lean_nat_dec_lt(x_358, x_359); +if (x_360 == 0) { -lean_object* x_378; lean_object* x_379; lean_object* x_380; +lean_object* x_361; lean_object* x_362; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -21737,58 +23239,157 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); +lean_dec_ref(x_2); +x_361 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_361, 0, x_27); +lean_ctor_set(x_361, 1, x_356); +lean_ctor_set(x_25, 1, x_361); +x_362 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_362, 0, x_8); +return x_362; +} +else +{ +lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; uint8_t x_370; +lean_inc(x_359); +lean_inc(x_358); +lean_inc_ref(x_357); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + lean_ctor_release(x_27, 2); + x_363 = x_27; +} else { + lean_dec_ref(x_27); + x_363 = lean_box(0); +} +x_364 = lean_ctor_get(x_38, 0); +x_365 = lean_ctor_get(x_38, 1); +x_366 = lean_ctor_get(x_38, 2); +x_367 = lean_unsigned_to_nat(1u); +x_368 = lean_nat_add(x_358, x_367); +lean_inc_ref(x_357); +if (lean_is_scalar(x_363)) { + x_369 = lean_alloc_ctor(0, 3, 0); +} else { + x_369 = x_363; +} +lean_ctor_set(x_369, 0, x_357); +lean_ctor_set(x_369, 1, x_368); +lean_ctor_set(x_369, 2, x_359); +x_370 = lean_nat_dec_lt(x_365, x_366); +if (x_370 == 0) +{ +lean_object* x_371; lean_object* x_372; +lean_dec(x_358); +lean_dec_ref(x_357); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_371 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_371, 0, x_369); +lean_ctor_set(x_371, 1, x_356); +lean_ctor_set(x_25, 1, x_371); +x_372 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_372, 0, x_8); +return x_372; +} +else +{ +lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; uint8_t x_379; +lean_inc(x_366); +lean_inc(x_365); +lean_inc_ref(x_364); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + lean_ctor_release(x_38, 2); + x_373 = x_38; +} else { + lean_dec_ref(x_38); + x_373 = lean_box(0); +} +x_374 = lean_ctor_get(x_35, 0); +x_375 = lean_ctor_get(x_35, 1); +x_376 = lean_ctor_get(x_35, 2); +x_377 = lean_nat_add(x_365, x_367); +lean_inc_ref(x_364); if (lean_is_scalar(x_373)) { - x_378 = lean_alloc_ctor(0, 2, 0); + x_378 = lean_alloc_ctor(0, 3, 0); } else { x_378 = x_373; } -lean_ctor_set(x_378, 0, x_19); -lean_ctor_set(x_378, 1, x_372); -x_379 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_379, 0, x_371); -lean_ctor_set(x_379, 1, x_378); -lean_ctor_set(x_16, 1, x_379); -x_380 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_380, 0, x_8); -return x_380; +lean_ctor_set(x_378, 0, x_364); +lean_ctor_set(x_378, 1, x_377); +lean_ctor_set(x_378, 2, x_366); +x_379 = lean_nat_dec_lt(x_375, x_376); +if (x_379 == 0) +{ +lean_object* x_380; lean_object* x_381; +lean_dec(x_365); +lean_dec_ref(x_364); +lean_dec(x_358); +lean_dec_ref(x_357); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_380 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_380, 0, x_369); +lean_ctor_set(x_380, 1, x_356); +lean_ctor_set(x_25, 1, x_380); +lean_ctor_set(x_25, 0, x_378); +x_381 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_381, 0, x_8); +return x_381; } else { -lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; uint8_t x_388; +lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; uint8_t x_388; lean_inc(x_376); lean_inc(x_375); lean_inc_ref(x_374); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - lean_ctor_release(x_19, 2); - x_381 = x_19; +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + lean_ctor_release(x_35, 2); + x_382 = x_35; } else { - lean_dec_ref(x_19); - x_381 = lean_box(0); + lean_dec_ref(x_35); + x_382 = lean_box(0); } -x_382 = lean_ctor_get(x_371, 0); -x_383 = lean_ctor_get(x_371, 1); -x_384 = lean_ctor_get(x_371, 2); -x_385 = lean_unsigned_to_nat(1u); -x_386 = lean_nat_add(x_375, x_385); +x_383 = lean_ctor_get(x_32, 0); +x_384 = lean_ctor_get(x_32, 1); +x_385 = lean_ctor_get(x_32, 2); +x_386 = lean_nat_add(x_375, x_367); lean_inc_ref(x_374); -if (lean_is_scalar(x_381)) { +if (lean_is_scalar(x_382)) { x_387 = lean_alloc_ctor(0, 3, 0); } else { - x_387 = x_381; + x_387 = x_382; } lean_ctor_set(x_387, 0, x_374); lean_ctor_set(x_387, 1, x_386); lean_ctor_set(x_387, 2, x_376); -x_388 = lean_nat_dec_lt(x_383, x_384); +x_388 = lean_nat_dec_lt(x_384, x_385); if (x_388 == 0) { -lean_object* x_389; lean_object* x_390; lean_object* x_391; +lean_object* x_389; lean_object* x_390; lean_dec(x_375); lean_dec_ref(x_374); +lean_dec(x_365); +lean_dec_ref(x_364); +lean_dec(x_358); +lean_dec_ref(x_357); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -21796,59 +23397,57 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_373)) { - x_389 = lean_alloc_ctor(0, 2, 0); -} else { - x_389 = x_373; -} -lean_ctor_set(x_389, 0, x_387); -lean_ctor_set(x_389, 1, x_372); -x_390 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_390, 0, x_371); -lean_ctor_set(x_390, 1, x_389); -lean_ctor_set(x_16, 1, x_390); -x_391 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_391, 0, x_8); -return x_391; +lean_dec_ref(x_2); +x_389 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_389, 0, x_369); +lean_ctor_set(x_389, 1, x_356); +lean_ctor_set(x_25, 1, x_389); +lean_ctor_set(x_25, 0, x_378); +lean_ctor_set(x_24, 0, x_387); +x_390 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_390, 0, x_8); +return x_390; } else { -lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; uint8_t x_398; +lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; uint8_t x_397; +lean_inc(x_385); lean_inc(x_384); -lean_inc(x_383); -lean_inc_ref(x_382); -if (lean_is_exclusive(x_371)) { - lean_ctor_release(x_371, 0); - lean_ctor_release(x_371, 1); - lean_ctor_release(x_371, 2); - x_392 = x_371; +lean_inc_ref(x_383); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_391 = x_32; } else { - lean_dec_ref(x_371); - x_392 = lean_box(0); + lean_dec_ref(x_32); + x_391 = lean_box(0); } -x_393 = lean_ctor_get(x_27, 0); -x_394 = lean_ctor_get(x_27, 1); -x_395 = lean_ctor_get(x_27, 2); -x_396 = lean_nat_add(x_383, x_385); -lean_inc_ref(x_382); -if (lean_is_scalar(x_392)) { - x_397 = lean_alloc_ctor(0, 3, 0); +x_392 = lean_ctor_get(x_29, 0); +x_393 = lean_ctor_get(x_29, 1); +x_394 = lean_ctor_get(x_29, 2); +x_395 = lean_nat_add(x_384, x_367); +lean_inc_ref(x_383); +if (lean_is_scalar(x_391)) { + x_396 = lean_alloc_ctor(0, 3, 0); } else { - x_397 = x_392; + x_396 = x_391; } -lean_ctor_set(x_397, 0, x_382); -lean_ctor_set(x_397, 1, x_396); -lean_ctor_set(x_397, 2, x_384); -x_398 = lean_nat_dec_lt(x_394, x_395); -if (x_398 == 0) +lean_ctor_set(x_396, 0, x_383); +lean_ctor_set(x_396, 1, x_395); +lean_ctor_set(x_396, 2, x_385); +x_397 = lean_nat_dec_lt(x_393, x_394); +if (x_397 == 0) { -lean_object* x_399; lean_object* x_400; lean_object* x_401; -lean_dec(x_383); -lean_dec_ref(x_382); +lean_object* x_398; lean_object* x_399; +lean_dec(x_384); +lean_dec_ref(x_383); lean_dec(x_375); lean_dec_ref(x_374); +lean_dec(x_365); +lean_dec_ref(x_364); +lean_dec(x_358); +lean_dec_ref(x_357); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -21856,290 +23455,225 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_373)) { - x_399 = lean_alloc_ctor(0, 2, 0); -} else { - x_399 = x_373; -} -lean_ctor_set(x_399, 0, x_387); -lean_ctor_set(x_399, 1, x_372); -x_400 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_400, 0, x_397); -lean_ctor_set(x_400, 1, x_399); -lean_ctor_set(x_16, 1, x_400); -x_401 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_401, 0, x_8); -return x_401; +lean_dec_ref(x_2); +x_398 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_398, 0, x_369); +lean_ctor_set(x_398, 1, x_356); +lean_ctor_set(x_25, 1, x_398); +lean_ctor_set(x_25, 0, x_378); +lean_ctor_set(x_24, 0, x_387); +lean_ctor_set(x_23, 0, x_396); +x_399 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_399, 0, x_8); +return x_399; } else { -lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; uint8_t x_408; -lean_inc(x_395); +lean_object* x_400; lean_object* x_401; lean_object* x_402; uint8_t x_403; uint8_t x_404; lean_inc(x_394); -lean_inc_ref(x_393); -if (lean_is_exclusive(x_27)) { - lean_ctor_release(x_27, 0); - lean_ctor_release(x_27, 1); - lean_ctor_release(x_27, 2); - x_402 = x_27; +lean_inc(x_393); +lean_inc_ref(x_392); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_400 = x_29; } else { - lean_dec_ref(x_27); - x_402 = lean_box(0); + lean_dec_ref(x_29); + x_400 = lean_box(0); } -x_403 = lean_ctor_get(x_24, 0); -x_404 = lean_ctor_get(x_24, 1); -x_405 = lean_ctor_get(x_24, 2); -x_406 = lean_nat_add(x_394, x_385); -lean_inc_ref(x_393); -if (lean_is_scalar(x_402)) { - x_407 = lean_alloc_ctor(0, 3, 0); -} else { - x_407 = x_402; -} -lean_ctor_set(x_407, 0, x_393); -lean_ctor_set(x_407, 1, x_406); -lean_ctor_set(x_407, 2, x_395); -x_408 = lean_nat_dec_lt(x_404, x_405); -if (x_408 == 0) +x_401 = lean_array_fget(x_383, x_384); +lean_dec(x_384); +lean_dec_ref(x_383); +x_402 = lean_ctor_get(x_401, 1); +x_403 = lean_ctor_get_uint8(x_401, sizeof(void*)*2); +x_404 = lean_nat_dec_eq(x_402, x_1); +if (x_404 == 0) { -lean_object* x_409; lean_object* x_410; lean_object* x_411; +lean_object* x_405; lean_object* x_406; +lean_dec_ref(x_401); +lean_dec(x_400); +lean_dec_ref(x_396); lean_dec(x_394); -lean_dec_ref(x_393); -lean_dec(x_383); -lean_dec_ref(x_382); +lean_dec(x_393); +lean_dec_ref(x_392); +lean_dec_ref(x_387); +lean_dec_ref(x_378); lean_dec(x_375); lean_dec_ref(x_374); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_373)) { - x_409 = lean_alloc_ctor(0, 2, 0); -} else { - x_409 = x_373; -} -lean_ctor_set(x_409, 0, x_387); -lean_ctor_set(x_409, 1, x_372); -x_410 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_410, 0, x_397); -lean_ctor_set(x_410, 1, x_409); -lean_ctor_set(x_16, 1, x_410); -lean_ctor_set(x_16, 0, x_407); -x_411 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_411, 0, x_8); -return x_411; -} -else -{ -lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; uint8_t x_418; -lean_inc(x_405); -lean_inc(x_404); -lean_inc_ref(x_403); -if (lean_is_exclusive(x_24)) { - lean_ctor_release(x_24, 0); - lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_412 = x_24; -} else { - lean_dec_ref(x_24); - x_412 = lean_box(0); -} -x_413 = lean_ctor_get(x_21, 0); -x_414 = lean_ctor_get(x_21, 1); -x_415 = lean_ctor_get(x_21, 2); -x_416 = lean_nat_add(x_404, x_385); -lean_inc_ref(x_403); -if (lean_is_scalar(x_412)) { - x_417 = lean_alloc_ctor(0, 3, 0); -} else { - x_417 = x_412; -} -lean_ctor_set(x_417, 0, x_403); -lean_ctor_set(x_417, 1, x_416); -lean_ctor_set(x_417, 2, x_405); -x_418 = lean_nat_dec_lt(x_414, x_415); -if (x_418 == 0) -{ -lean_object* x_419; lean_object* x_420; lean_object* x_421; -lean_dec(x_404); -lean_dec_ref(x_403); -lean_dec(x_394); -lean_dec_ref(x_393); -lean_dec(x_383); -lean_dec_ref(x_382); -lean_dec(x_375); -lean_dec_ref(x_374); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_373)) { - x_419 = lean_alloc_ctor(0, 2, 0); -} else { - x_419 = x_373; -} -lean_ctor_set(x_419, 0, x_387); -lean_ctor_set(x_419, 1, x_372); -x_420 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_420, 0, x_397); -lean_ctor_set(x_420, 1, x_419); -lean_ctor_set(x_16, 1, x_420); -lean_ctor_set(x_16, 0, x_407); -lean_ctor_set(x_15, 0, x_417); -x_421 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_421, 0, x_8); -return x_421; -} -else -{ -lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; -lean_inc(x_415); -lean_inc(x_414); -lean_inc_ref(x_413); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_422 = x_21; -} else { - lean_dec_ref(x_21); - x_422 = lean_box(0); -} -x_423 = lean_array_fget(x_374, x_375); -lean_dec(x_375); -lean_dec_ref(x_374); -x_424 = lean_array_fget(x_382, x_383); -lean_dec(x_383); -lean_dec_ref(x_382); -x_425 = lean_array_fget(x_393, x_394); -lean_dec(x_394); -lean_dec_ref(x_393); -x_426 = lean_array_fget(x_403, x_404); -lean_dec(x_404); -lean_dec_ref(x_403); -x_427 = lean_array_fget_borrowed(x_413, x_414); -x_428 = lean_box(x_2); -x_429 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_427); -lean_inc(x_9); -lean_inc_ref(x_1); -x_430 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_430, 0, x_423); -lean_closure_set(x_430, 1, x_1); -lean_closure_set(x_430, 2, x_9); -lean_closure_set(x_430, 3, x_428); -lean_closure_set(x_430, 4, x_429); -lean_closure_set(x_430, 5, x_427); -lean_closure_set(x_430, 6, x_4); -lean_closure_set(x_430, 7, x_5); -lean_closure_set(x_430, 8, x_425); -lean_closure_set(x_430, 9, x_6); -lean_closure_set(x_430, 10, x_385); -x_431 = lean_nat_sub(x_426, x_5); -lean_dec(x_426); +lean_dec_ref(x_369); +lean_dec(x_365); +lean_dec_ref(x_364); +lean_dec(x_358); +lean_dec_ref(x_357); +lean_dec(x_356); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +x_405 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_432 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(x_424, x_431, x_6, x_430, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_432) == 0) +x_406 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_405, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_406) == 0) { -lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; uint8_t x_441; -x_433 = lean_ctor_get(x_432, 0); -lean_inc(x_433); -if (lean_is_exclusive(x_432)) { - lean_ctor_release(x_432, 0); - x_434 = x_432; +lean_object* x_407; lean_object* x_408; +x_407 = lean_ctor_get(x_406, 0); +lean_inc(x_407); +if (lean_is_exclusive(x_406)) { + lean_ctor_release(x_406, 0); + x_408 = x_406; } else { - lean_dec_ref(x_432); - x_434 = lean_box(0); + lean_dec_ref(x_406); + x_408 = lean_box(0); } -x_435 = lean_nat_add(x_414, x_385); -lean_dec(x_414); -if (lean_is_scalar(x_422)) { - x_436 = lean_alloc_ctor(0, 3, 0); -} else { - x_436 = x_422; -} -lean_ctor_set(x_436, 0, x_413); -lean_ctor_set(x_436, 1, x_435); -lean_ctor_set(x_436, 2, x_415); -x_437 = lean_array_push(x_372, x_433); -if (lean_is_scalar(x_373)) { - x_438 = lean_alloc_ctor(0, 2, 0); -} else { - x_438 = x_373; -} -lean_ctor_set(x_438, 0, x_387); -lean_ctor_set(x_438, 1, x_437); -x_439 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_439, 0, x_397); -lean_ctor_set(x_439, 1, x_438); -lean_ctor_set(x_16, 1, x_439); -lean_ctor_set(x_16, 0, x_407); -lean_ctor_set(x_15, 0, x_417); -lean_ctor_set(x_8, 0, x_436); -x_440 = lean_nat_add(x_9, x_385); -lean_dec(x_9); -x_441 = lean_nat_dec_lt(x_440, x_7); -if (x_441 == 0) +if (lean_obj_tag(x_407) == 0) { -lean_object* x_442; -lean_dec(x_440); +lean_object* x_409; lean_object* x_410; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_434)) { - x_442 = lean_alloc_ctor(0, 1, 0); -} else { - x_442 = x_434; -} -lean_ctor_set(x_442, 0, x_8); -return x_442; -} -else -{ -lean_dec(x_434); -x_9 = x_440; -goto _start; -} -} -else -{ -lean_object* x_444; lean_object* x_445; lean_object* x_446; -lean_dec(x_422); -lean_dec_ref(x_417); -lean_dec(x_415); -lean_dec(x_414); -lean_dec_ref(x_413); +lean_dec_ref(x_2); +x_409 = lean_ctor_get(x_407, 0); +lean_inc(x_409); lean_dec_ref(x_407); -lean_dec_ref(x_397); +if (lean_is_scalar(x_408)) { + x_410 = lean_alloc_ctor(0, 1, 0); +} else { + x_410 = x_408; +} +lean_ctor_set(x_410, 0, x_409); +return x_410; +} +else +{ +lean_object* x_411; +lean_dec(x_408); +x_411 = lean_ctor_get(x_407, 0); +lean_inc(x_411); +lean_dec_ref(x_407); +x_15 = x_411; +x_16 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_412; lean_object* x_413; lean_object* x_414; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_412 = lean_ctor_get(x_406, 0); +lean_inc(x_412); +if (lean_is_exclusive(x_406)) { + lean_ctor_release(x_406, 0); + x_413 = x_406; +} else { + lean_dec_ref(x_406); + x_413 = lean_box(0); +} +if (lean_is_scalar(x_413)) { + x_414 = lean_alloc_ctor(1, 1, 0); +} else { + x_414 = x_413; +} +lean_ctor_set(x_414, 0, x_412); +return x_414; +} +} +else +{ +lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; +x_415 = lean_array_fget(x_357, x_358); +lean_dec(x_358); +lean_dec_ref(x_357); +x_416 = lean_array_fget(x_364, x_365); +lean_dec(x_365); +lean_dec_ref(x_364); +x_417 = lean_array_fget(x_374, x_375); +lean_dec(x_375); +lean_dec_ref(x_374); +x_418 = lean_array_fget_borrowed(x_392, x_393); +x_419 = lean_box(x_3); +x_420 = lean_box(x_4); +x_421 = lean_box(x_403); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_418); +lean_inc(x_9); +lean_inc_ref(x_2); +x_422 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_422, 0, x_417); +lean_closure_set(x_422, 1, x_415); +lean_closure_set(x_422, 2, x_2); +lean_closure_set(x_422, 3, x_9); +lean_closure_set(x_422, 4, x_419); +lean_closure_set(x_422, 5, x_420); +lean_closure_set(x_422, 6, x_418); +lean_closure_set(x_422, 7, x_5); +lean_closure_set(x_422, 8, x_6); +lean_closure_set(x_422, 9, x_421); +lean_closure_set(x_422, 10, x_367); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_423 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_416, x_401, x_422, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_423) == 0) +{ +lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; +x_424 = lean_ctor_get(x_423, 0); +lean_inc(x_424); +lean_dec_ref(x_423); +x_425 = lean_nat_add(x_393, x_367); +lean_dec(x_393); +if (lean_is_scalar(x_400)) { + x_426 = lean_alloc_ctor(0, 3, 0); +} else { + x_426 = x_400; +} +lean_ctor_set(x_426, 0, x_392); +lean_ctor_set(x_426, 1, x_425); +lean_ctor_set(x_426, 2, x_394); +x_427 = lean_array_push(x_356, x_424); +x_428 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_428, 0, x_369); +lean_ctor_set(x_428, 1, x_427); +lean_ctor_set(x_25, 1, x_428); +lean_ctor_set(x_25, 0, x_378); +lean_ctor_set(x_24, 0, x_387); +lean_ctor_set(x_23, 0, x_396); +lean_ctor_set(x_8, 0, x_426); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_429; lean_object* x_430; lean_object* x_431; +lean_dec(x_400); +lean_dec_ref(x_396); +lean_dec(x_394); +lean_dec(x_393); +lean_dec_ref(x_392); lean_dec_ref(x_387); -lean_dec(x_373); -lean_dec(x_372); -lean_free_object(x_16); -lean_free_object(x_15); +lean_dec_ref(x_378); +lean_dec_ref(x_369); +lean_dec(x_356); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); lean_free_object(x_8); lean_dec(x_13); lean_dec_ref(x_12); @@ -22148,131 +23682,172 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_444 = lean_ctor_get(x_432, 0); +lean_dec_ref(x_2); +x_429 = lean_ctor_get(x_423, 0); +lean_inc(x_429); +if (lean_is_exclusive(x_423)) { + lean_ctor_release(x_423, 0); + x_430 = x_423; +} else { + lean_dec_ref(x_423); + x_430 = lean_box(0); +} +if (lean_is_scalar(x_430)) { + x_431 = lean_alloc_ctor(1, 1, 0); +} else { + x_431 = x_430; +} +lean_ctor_set(x_431, 0, x_429); +return x_431; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; uint8_t x_438; +x_432 = lean_ctor_get(x_25, 0); +lean_inc(x_432); +lean_dec(x_25); +x_433 = lean_ctor_get(x_26, 1); +lean_inc(x_433); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_434 = x_26; +} else { + lean_dec_ref(x_26); + x_434 = lean_box(0); +} +x_435 = lean_ctor_get(x_27, 0); +x_436 = lean_ctor_get(x_27, 1); +x_437 = lean_ctor_get(x_27, 2); +x_438 = lean_nat_dec_lt(x_436, x_437); +if (x_438 == 0) +{ +lean_object* x_439; lean_object* x_440; lean_object* x_441; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_434)) { + x_439 = lean_alloc_ctor(0, 2, 0); +} else { + x_439 = x_434; +} +lean_ctor_set(x_439, 0, x_27); +lean_ctor_set(x_439, 1, x_433); +x_440 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_440, 0, x_432); +lean_ctor_set(x_440, 1, x_439); +lean_ctor_set(x_24, 1, x_440); +x_441 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_441, 0, x_8); +return x_441; +} +else +{ +lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; uint8_t x_449; +lean_inc(x_437); +lean_inc(x_436); +lean_inc_ref(x_435); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + lean_ctor_release(x_27, 2); + x_442 = x_27; +} else { + lean_dec_ref(x_27); + x_442 = lean_box(0); +} +x_443 = lean_ctor_get(x_432, 0); +x_444 = lean_ctor_get(x_432, 1); +x_445 = lean_ctor_get(x_432, 2); +x_446 = lean_unsigned_to_nat(1u); +x_447 = lean_nat_add(x_436, x_446); +lean_inc_ref(x_435); +if (lean_is_scalar(x_442)) { + x_448 = lean_alloc_ctor(0, 3, 0); +} else { + x_448 = x_442; +} +lean_ctor_set(x_448, 0, x_435); +lean_ctor_set(x_448, 1, x_447); +lean_ctor_set(x_448, 2, x_437); +x_449 = lean_nat_dec_lt(x_444, x_445); +if (x_449 == 0) +{ +lean_object* x_450; lean_object* x_451; lean_object* x_452; +lean_dec(x_436); +lean_dec_ref(x_435); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_434)) { + x_450 = lean_alloc_ctor(0, 2, 0); +} else { + x_450 = x_434; +} +lean_ctor_set(x_450, 0, x_448); +lean_ctor_set(x_450, 1, x_433); +x_451 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_451, 0, x_432); +lean_ctor_set(x_451, 1, x_450); +lean_ctor_set(x_24, 1, x_451); +x_452 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_452, 0, x_8); +return x_452; +} +else +{ +lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; uint8_t x_459; +lean_inc(x_445); lean_inc(x_444); +lean_inc_ref(x_443); if (lean_is_exclusive(x_432)) { lean_ctor_release(x_432, 0); - x_445 = x_432; + lean_ctor_release(x_432, 1); + lean_ctor_release(x_432, 2); + x_453 = x_432; } else { lean_dec_ref(x_432); - x_445 = lean_box(0); + x_453 = lean_box(0); } -if (lean_is_scalar(x_445)) { - x_446 = lean_alloc_ctor(1, 1, 0); +x_454 = lean_ctor_get(x_35, 0); +x_455 = lean_ctor_get(x_35, 1); +x_456 = lean_ctor_get(x_35, 2); +x_457 = lean_nat_add(x_444, x_446); +lean_inc_ref(x_443); +if (lean_is_scalar(x_453)) { + x_458 = lean_alloc_ctor(0, 3, 0); } else { - x_446 = x_445; + x_458 = x_453; } -lean_ctor_set(x_446, 0, x_444); -return x_446; -} -} -} -} -} -} -} -} -else -{ -lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; uint8_t x_455; -x_447 = lean_ctor_get(x_16, 0); -lean_inc(x_447); -lean_dec(x_16); -x_448 = lean_ctor_get(x_17, 0); -lean_inc(x_448); -if (lean_is_exclusive(x_17)) { - lean_ctor_release(x_17, 0); - lean_ctor_release(x_17, 1); - x_449 = x_17; -} else { - lean_dec_ref(x_17); - x_449 = lean_box(0); -} -x_450 = lean_ctor_get(x_18, 1); -lean_inc(x_450); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_451 = x_18; -} else { - lean_dec_ref(x_18); - x_451 = lean_box(0); -} -x_452 = lean_ctor_get(x_19, 0); -x_453 = lean_ctor_get(x_19, 1); -x_454 = lean_ctor_get(x_19, 2); -x_455 = lean_nat_dec_lt(x_453, x_454); -if (x_455 == 0) -{ -lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_451)) { - x_456 = lean_alloc_ctor(0, 2, 0); -} else { - x_456 = x_451; -} -lean_ctor_set(x_456, 0, x_19); -lean_ctor_set(x_456, 1, x_450); -if (lean_is_scalar(x_449)) { - x_457 = lean_alloc_ctor(0, 2, 0); -} else { - x_457 = x_449; -} -lean_ctor_set(x_457, 0, x_448); -lean_ctor_set(x_457, 1, x_456); -x_458 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_458, 0, x_447); +lean_ctor_set(x_458, 0, x_443); lean_ctor_set(x_458, 1, x_457); -lean_ctor_set(x_15, 1, x_458); -x_459 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_459, 0, x_8); -return x_459; -} -else +lean_ctor_set(x_458, 2, x_445); +x_459 = lean_nat_dec_lt(x_455, x_456); +if (x_459 == 0) { -lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; uint8_t x_467; -lean_inc(x_454); -lean_inc(x_453); -lean_inc_ref(x_452); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - lean_ctor_release(x_19, 2); - x_460 = x_19; -} else { - lean_dec_ref(x_19); - x_460 = lean_box(0); -} -x_461 = lean_ctor_get(x_448, 0); -x_462 = lean_ctor_get(x_448, 1); -x_463 = lean_ctor_get(x_448, 2); -x_464 = lean_unsigned_to_nat(1u); -x_465 = lean_nat_add(x_453, x_464); -lean_inc_ref(x_452); -if (lean_is_scalar(x_460)) { - x_466 = lean_alloc_ctor(0, 3, 0); -} else { - x_466 = x_460; -} -lean_ctor_set(x_466, 0, x_452); -lean_ctor_set(x_466, 1, x_465); -lean_ctor_set(x_466, 2, x_454); -x_467 = lean_nat_dec_lt(x_462, x_463); -if (x_467 == 0) -{ -lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; -lean_dec(x_453); -lean_dec_ref(x_452); +lean_object* x_460; lean_object* x_461; lean_object* x_462; +lean_dec(x_444); +lean_dec_ref(x_443); +lean_dec(x_436); +lean_dec_ref(x_435); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -22280,66 +23855,60 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_451)) { - x_468 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_434)) { + x_460 = lean_alloc_ctor(0, 2, 0); } else { - x_468 = x_451; + x_460 = x_434; } -lean_ctor_set(x_468, 0, x_466); -lean_ctor_set(x_468, 1, x_450); -if (lean_is_scalar(x_449)) { - x_469 = lean_alloc_ctor(0, 2, 0); -} else { - x_469 = x_449; -} -lean_ctor_set(x_469, 0, x_448); -lean_ctor_set(x_469, 1, x_468); -x_470 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_470, 0, x_447); -lean_ctor_set(x_470, 1, x_469); -lean_ctor_set(x_15, 1, x_470); -x_471 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_471, 0, x_8); -return x_471; +lean_ctor_set(x_460, 0, x_448); +lean_ctor_set(x_460, 1, x_433); +x_461 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_461, 0, x_458); +lean_ctor_set(x_461, 1, x_460); +lean_ctor_set(x_24, 1, x_461); +x_462 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_462, 0, x_8); +return x_462; } else { -lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; uint8_t x_478; -lean_inc(x_463); -lean_inc(x_462); -lean_inc_ref(x_461); -if (lean_is_exclusive(x_448)) { - lean_ctor_release(x_448, 0); - lean_ctor_release(x_448, 1); - lean_ctor_release(x_448, 2); - x_472 = x_448; +lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; uint8_t x_469; +lean_inc(x_456); +lean_inc(x_455); +lean_inc_ref(x_454); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + lean_ctor_release(x_35, 2); + x_463 = x_35; } else { - lean_dec_ref(x_448); - x_472 = lean_box(0); + lean_dec_ref(x_35); + x_463 = lean_box(0); } -x_473 = lean_ctor_get(x_447, 0); -x_474 = lean_ctor_get(x_447, 1); -x_475 = lean_ctor_get(x_447, 2); -x_476 = lean_nat_add(x_462, x_464); -lean_inc_ref(x_461); -if (lean_is_scalar(x_472)) { - x_477 = lean_alloc_ctor(0, 3, 0); +x_464 = lean_ctor_get(x_32, 0); +x_465 = lean_ctor_get(x_32, 1); +x_466 = lean_ctor_get(x_32, 2); +x_467 = lean_nat_add(x_455, x_446); +lean_inc_ref(x_454); +if (lean_is_scalar(x_463)) { + x_468 = lean_alloc_ctor(0, 3, 0); } else { - x_477 = x_472; + x_468 = x_463; } -lean_ctor_set(x_477, 0, x_461); -lean_ctor_set(x_477, 1, x_476); -lean_ctor_set(x_477, 2, x_463); -x_478 = lean_nat_dec_lt(x_474, x_475); -if (x_478 == 0) +lean_ctor_set(x_468, 0, x_454); +lean_ctor_set(x_468, 1, x_467); +lean_ctor_set(x_468, 2, x_456); +x_469 = lean_nat_dec_lt(x_465, x_466); +if (x_469 == 0) { -lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; -lean_dec(x_462); -lean_dec_ref(x_461); -lean_dec(x_453); -lean_dec_ref(x_452); +lean_object* x_470; lean_object* x_471; lean_object* x_472; +lean_dec(x_455); +lean_dec_ref(x_454); +lean_dec(x_444); +lean_dec_ref(x_443); +lean_dec(x_436); +lean_dec_ref(x_435); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -22347,68 +23916,153 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_451)) { - x_479 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_434)) { + x_470 = lean_alloc_ctor(0, 2, 0); } else { - x_479 = x_451; + x_470 = x_434; } -lean_ctor_set(x_479, 0, x_466); -lean_ctor_set(x_479, 1, x_450); -if (lean_is_scalar(x_449)) { +lean_ctor_set(x_470, 0, x_448); +lean_ctor_set(x_470, 1, x_433); +x_471 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_471, 0, x_458); +lean_ctor_set(x_471, 1, x_470); +lean_ctor_set(x_24, 1, x_471); +lean_ctor_set(x_24, 0, x_468); +x_472 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_472, 0, x_8); +return x_472; +} +else +{ +lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; uint8_t x_479; +lean_inc(x_466); +lean_inc(x_465); +lean_inc_ref(x_464); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_473 = x_32; +} else { + lean_dec_ref(x_32); + x_473 = lean_box(0); +} +x_474 = lean_ctor_get(x_29, 0); +x_475 = lean_ctor_get(x_29, 1); +x_476 = lean_ctor_get(x_29, 2); +x_477 = lean_nat_add(x_465, x_446); +lean_inc_ref(x_464); +if (lean_is_scalar(x_473)) { + x_478 = lean_alloc_ctor(0, 3, 0); +} else { + x_478 = x_473; +} +lean_ctor_set(x_478, 0, x_464); +lean_ctor_set(x_478, 1, x_477); +lean_ctor_set(x_478, 2, x_466); +x_479 = lean_nat_dec_lt(x_475, x_476); +if (x_479 == 0) +{ +lean_object* x_480; lean_object* x_481; lean_object* x_482; +lean_dec(x_465); +lean_dec_ref(x_464); +lean_dec(x_455); +lean_dec_ref(x_454); +lean_dec(x_444); +lean_dec_ref(x_443); +lean_dec(x_436); +lean_dec_ref(x_435); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_434)) { x_480 = lean_alloc_ctor(0, 2, 0); } else { - x_480 = x_449; + x_480 = x_434; } -lean_ctor_set(x_480, 0, x_477); -lean_ctor_set(x_480, 1, x_479); +lean_ctor_set(x_480, 0, x_448); +lean_ctor_set(x_480, 1, x_433); x_481 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_481, 0, x_447); +lean_ctor_set(x_481, 0, x_458); lean_ctor_set(x_481, 1, x_480); -lean_ctor_set(x_15, 1, x_481); +lean_ctor_set(x_24, 1, x_481); +lean_ctor_set(x_24, 0, x_468); +lean_ctor_set(x_23, 0, x_478); x_482 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_482, 0, x_8); return x_482; } else { -lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; uint8_t x_489; +lean_object* x_483; lean_object* x_484; lean_object* x_485; uint8_t x_486; uint8_t x_487; +lean_inc(x_476); lean_inc(x_475); -lean_inc(x_474); -lean_inc_ref(x_473); -if (lean_is_exclusive(x_447)) { - lean_ctor_release(x_447, 0); - lean_ctor_release(x_447, 1); - lean_ctor_release(x_447, 2); - x_483 = x_447; +lean_inc_ref(x_474); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_483 = x_29; } else { - lean_dec_ref(x_447); + lean_dec_ref(x_29); x_483 = lean_box(0); } -x_484 = lean_ctor_get(x_24, 0); -x_485 = lean_ctor_get(x_24, 1); -x_486 = lean_ctor_get(x_24, 2); -x_487 = lean_nat_add(x_474, x_464); -lean_inc_ref(x_473); -if (lean_is_scalar(x_483)) { - x_488 = lean_alloc_ctor(0, 3, 0); -} else { - x_488 = x_483; -} -lean_ctor_set(x_488, 0, x_473); -lean_ctor_set(x_488, 1, x_487); -lean_ctor_set(x_488, 2, x_475); -x_489 = lean_nat_dec_lt(x_485, x_486); -if (x_489 == 0) +x_484 = lean_array_fget(x_464, x_465); +lean_dec(x_465); +lean_dec_ref(x_464); +x_485 = lean_ctor_get(x_484, 1); +x_486 = lean_ctor_get_uint8(x_484, sizeof(void*)*2); +x_487 = lean_nat_dec_eq(x_485, x_1); +if (x_487 == 0) { -lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; -lean_dec(x_474); -lean_dec_ref(x_473); -lean_dec(x_462); -lean_dec_ref(x_461); -lean_dec(x_453); -lean_dec_ref(x_452); +lean_object* x_488; lean_object* x_489; +lean_dec_ref(x_484); +lean_dec(x_483); +lean_dec_ref(x_478); +lean_dec(x_476); +lean_dec(x_475); +lean_dec_ref(x_474); +lean_dec_ref(x_468); +lean_dec_ref(x_458); +lean_dec(x_455); +lean_dec_ref(x_454); +lean_dec_ref(x_448); +lean_dec(x_444); +lean_dec_ref(x_443); +lean_dec(x_436); +lean_dec_ref(x_435); +lean_dec(x_434); +lean_dec(x_433); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +x_488 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_489 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_488, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_489) == 0) +{ +lean_object* x_490; lean_object* x_491; +x_490 = lean_ctor_get(x_489, 0); +lean_inc(x_490); +if (lean_is_exclusive(x_489)) { + lean_ctor_release(x_489, 0); + x_491 = x_489; +} else { + lean_dec_ref(x_489); + x_491 = lean_box(0); +} +if (lean_obj_tag(x_490) == 0) +{ +lean_object* x_492; lean_object* x_493; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -22416,70 +24070,810 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_451)) { - x_490 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +x_492 = lean_ctor_get(x_490, 0); +lean_inc(x_492); +lean_dec_ref(x_490); +if (lean_is_scalar(x_491)) { + x_493 = lean_alloc_ctor(0, 1, 0); } else { - x_490 = x_451; + x_493 = x_491; } -lean_ctor_set(x_490, 0, x_466); -lean_ctor_set(x_490, 1, x_450); -if (lean_is_scalar(x_449)) { - x_491 = lean_alloc_ctor(0, 2, 0); -} else { - x_491 = x_449; -} -lean_ctor_set(x_491, 0, x_477); -lean_ctor_set(x_491, 1, x_490); -x_492 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_492, 0, x_488); -lean_ctor_set(x_492, 1, x_491); -lean_ctor_set(x_15, 1, x_492); -x_493 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_493, 0, x_8); +lean_ctor_set(x_493, 0, x_492); return x_493; } else { -lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; uint8_t x_500; -lean_inc(x_486); -lean_inc(x_485); -lean_inc_ref(x_484); +lean_object* x_494; +lean_dec(x_491); +x_494 = lean_ctor_get(x_490, 0); +lean_inc(x_494); +lean_dec_ref(x_490); +x_15 = x_494; +x_16 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_495; lean_object* x_496; lean_object* x_497; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_495 = lean_ctor_get(x_489, 0); +lean_inc(x_495); +if (lean_is_exclusive(x_489)) { + lean_ctor_release(x_489, 0); + x_496 = x_489; +} else { + lean_dec_ref(x_489); + x_496 = lean_box(0); +} +if (lean_is_scalar(x_496)) { + x_497 = lean_alloc_ctor(1, 1, 0); +} else { + x_497 = x_496; +} +lean_ctor_set(x_497, 0, x_495); +return x_497; +} +} +else +{ +lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; +x_498 = lean_array_fget(x_435, x_436); +lean_dec(x_436); +lean_dec_ref(x_435); +x_499 = lean_array_fget(x_443, x_444); +lean_dec(x_444); +lean_dec_ref(x_443); +x_500 = lean_array_fget(x_454, x_455); +lean_dec(x_455); +lean_dec_ref(x_454); +x_501 = lean_array_fget_borrowed(x_474, x_475); +x_502 = lean_box(x_3); +x_503 = lean_box(x_4); +x_504 = lean_box(x_486); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_501); +lean_inc(x_9); +lean_inc_ref(x_2); +x_505 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_505, 0, x_500); +lean_closure_set(x_505, 1, x_498); +lean_closure_set(x_505, 2, x_2); +lean_closure_set(x_505, 3, x_9); +lean_closure_set(x_505, 4, x_502); +lean_closure_set(x_505, 5, x_503); +lean_closure_set(x_505, 6, x_501); +lean_closure_set(x_505, 7, x_5); +lean_closure_set(x_505, 8, x_6); +lean_closure_set(x_505, 9, x_504); +lean_closure_set(x_505, 10, x_446); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_506 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_499, x_484, x_505, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_506) == 0) +{ +lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; +x_507 = lean_ctor_get(x_506, 0); +lean_inc(x_507); +lean_dec_ref(x_506); +x_508 = lean_nat_add(x_475, x_446); +lean_dec(x_475); +if (lean_is_scalar(x_483)) { + x_509 = lean_alloc_ctor(0, 3, 0); +} else { + x_509 = x_483; +} +lean_ctor_set(x_509, 0, x_474); +lean_ctor_set(x_509, 1, x_508); +lean_ctor_set(x_509, 2, x_476); +x_510 = lean_array_push(x_433, x_507); +if (lean_is_scalar(x_434)) { + x_511 = lean_alloc_ctor(0, 2, 0); +} else { + x_511 = x_434; +} +lean_ctor_set(x_511, 0, x_448); +lean_ctor_set(x_511, 1, x_510); +x_512 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_512, 0, x_458); +lean_ctor_set(x_512, 1, x_511); +lean_ctor_set(x_24, 1, x_512); +lean_ctor_set(x_24, 0, x_468); +lean_ctor_set(x_23, 0, x_478); +lean_ctor_set(x_8, 0, x_509); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_513; lean_object* x_514; lean_object* x_515; +lean_dec(x_483); +lean_dec_ref(x_478); +lean_dec(x_476); +lean_dec(x_475); +lean_dec_ref(x_474); +lean_dec_ref(x_468); +lean_dec_ref(x_458); +lean_dec_ref(x_448); +lean_dec(x_434); +lean_dec(x_433); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_513 = lean_ctor_get(x_506, 0); +lean_inc(x_513); +if (lean_is_exclusive(x_506)) { + lean_ctor_release(x_506, 0); + x_514 = x_506; +} else { + lean_dec_ref(x_506); + x_514 = lean_box(0); +} +if (lean_is_scalar(x_514)) { + x_515 = lean_alloc_ctor(1, 1, 0); +} else { + x_515 = x_514; +} +lean_ctor_set(x_515, 0, x_513); +return x_515; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; uint8_t x_524; +x_516 = lean_ctor_get(x_24, 0); +lean_inc(x_516); +lean_dec(x_24); +x_517 = lean_ctor_get(x_25, 0); +lean_inc(x_517); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + x_518 = x_25; +} else { + lean_dec_ref(x_25); + x_518 = lean_box(0); +} +x_519 = lean_ctor_get(x_26, 1); +lean_inc(x_519); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_520 = x_26; +} else { + lean_dec_ref(x_26); + x_520 = lean_box(0); +} +x_521 = lean_ctor_get(x_27, 0); +x_522 = lean_ctor_get(x_27, 1); +x_523 = lean_ctor_get(x_27, 2); +x_524 = lean_nat_dec_lt(x_522, x_523); +if (x_524 == 0) +{ +lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_520)) { + x_525 = lean_alloc_ctor(0, 2, 0); +} else { + x_525 = x_520; +} +lean_ctor_set(x_525, 0, x_27); +lean_ctor_set(x_525, 1, x_519); +if (lean_is_scalar(x_518)) { + x_526 = lean_alloc_ctor(0, 2, 0); +} else { + x_526 = x_518; +} +lean_ctor_set(x_526, 0, x_517); +lean_ctor_set(x_526, 1, x_525); +x_527 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_527, 0, x_516); +lean_ctor_set(x_527, 1, x_526); +lean_ctor_set(x_23, 1, x_527); +x_528 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_528, 0, x_8); +return x_528; +} +else +{ +lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; uint8_t x_536; +lean_inc(x_523); +lean_inc(x_522); +lean_inc_ref(x_521); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + lean_ctor_release(x_27, 2); + x_529 = x_27; +} else { + lean_dec_ref(x_27); + x_529 = lean_box(0); +} +x_530 = lean_ctor_get(x_517, 0); +x_531 = lean_ctor_get(x_517, 1); +x_532 = lean_ctor_get(x_517, 2); +x_533 = lean_unsigned_to_nat(1u); +x_534 = lean_nat_add(x_522, x_533); +lean_inc_ref(x_521); +if (lean_is_scalar(x_529)) { + x_535 = lean_alloc_ctor(0, 3, 0); +} else { + x_535 = x_529; +} +lean_ctor_set(x_535, 0, x_521); +lean_ctor_set(x_535, 1, x_534); +lean_ctor_set(x_535, 2, x_523); +x_536 = lean_nat_dec_lt(x_531, x_532); +if (x_536 == 0) +{ +lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; +lean_dec(x_522); +lean_dec_ref(x_521); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_520)) { + x_537 = lean_alloc_ctor(0, 2, 0); +} else { + x_537 = x_520; +} +lean_ctor_set(x_537, 0, x_535); +lean_ctor_set(x_537, 1, x_519); +if (lean_is_scalar(x_518)) { + x_538 = lean_alloc_ctor(0, 2, 0); +} else { + x_538 = x_518; +} +lean_ctor_set(x_538, 0, x_517); +lean_ctor_set(x_538, 1, x_537); +x_539 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_539, 0, x_516); +lean_ctor_set(x_539, 1, x_538); +lean_ctor_set(x_23, 1, x_539); +x_540 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_540, 0, x_8); +return x_540; +} +else +{ +lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; uint8_t x_547; +lean_inc(x_532); +lean_inc(x_531); +lean_inc_ref(x_530); +if (lean_is_exclusive(x_517)) { + lean_ctor_release(x_517, 0); + lean_ctor_release(x_517, 1); + lean_ctor_release(x_517, 2); + x_541 = x_517; +} else { + lean_dec_ref(x_517); + x_541 = lean_box(0); +} +x_542 = lean_ctor_get(x_516, 0); +x_543 = lean_ctor_get(x_516, 1); +x_544 = lean_ctor_get(x_516, 2); +x_545 = lean_nat_add(x_531, x_533); +lean_inc_ref(x_530); +if (lean_is_scalar(x_541)) { + x_546 = lean_alloc_ctor(0, 3, 0); +} else { + x_546 = x_541; +} +lean_ctor_set(x_546, 0, x_530); +lean_ctor_set(x_546, 1, x_545); +lean_ctor_set(x_546, 2, x_532); +x_547 = lean_nat_dec_lt(x_543, x_544); +if (x_547 == 0) +{ +lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; +lean_dec(x_531); +lean_dec_ref(x_530); +lean_dec(x_522); +lean_dec_ref(x_521); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_520)) { + x_548 = lean_alloc_ctor(0, 2, 0); +} else { + x_548 = x_520; +} +lean_ctor_set(x_548, 0, x_535); +lean_ctor_set(x_548, 1, x_519); +if (lean_is_scalar(x_518)) { + x_549 = lean_alloc_ctor(0, 2, 0); +} else { + x_549 = x_518; +} +lean_ctor_set(x_549, 0, x_546); +lean_ctor_set(x_549, 1, x_548); +x_550 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_550, 0, x_516); +lean_ctor_set(x_550, 1, x_549); +lean_ctor_set(x_23, 1, x_550); +x_551 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_551, 0, x_8); +return x_551; +} +else +{ +lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; uint8_t x_558; +lean_inc(x_544); +lean_inc(x_543); +lean_inc_ref(x_542); +if (lean_is_exclusive(x_516)) { + lean_ctor_release(x_516, 0); + lean_ctor_release(x_516, 1); + lean_ctor_release(x_516, 2); + x_552 = x_516; +} else { + lean_dec_ref(x_516); + x_552 = lean_box(0); +} +x_553 = lean_ctor_get(x_32, 0); +x_554 = lean_ctor_get(x_32, 1); +x_555 = lean_ctor_get(x_32, 2); +x_556 = lean_nat_add(x_543, x_533); +lean_inc_ref(x_542); +if (lean_is_scalar(x_552)) { + x_557 = lean_alloc_ctor(0, 3, 0); +} else { + x_557 = x_552; +} +lean_ctor_set(x_557, 0, x_542); +lean_ctor_set(x_557, 1, x_556); +lean_ctor_set(x_557, 2, x_544); +x_558 = lean_nat_dec_lt(x_554, x_555); +if (x_558 == 0) +{ +lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; +lean_dec(x_543); +lean_dec_ref(x_542); +lean_dec(x_531); +lean_dec_ref(x_530); +lean_dec(x_522); +lean_dec_ref(x_521); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_520)) { + x_559 = lean_alloc_ctor(0, 2, 0); +} else { + x_559 = x_520; +} +lean_ctor_set(x_559, 0, x_535); +lean_ctor_set(x_559, 1, x_519); +if (lean_is_scalar(x_518)) { + x_560 = lean_alloc_ctor(0, 2, 0); +} else { + x_560 = x_518; +} +lean_ctor_set(x_560, 0, x_546); +lean_ctor_set(x_560, 1, x_559); +x_561 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_561, 0, x_557); +lean_ctor_set(x_561, 1, x_560); +lean_ctor_set(x_23, 1, x_561); +x_562 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_562, 0, x_8); +return x_562; +} +else +{ +lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; uint8_t x_569; +lean_inc(x_555); +lean_inc(x_554); +lean_inc_ref(x_553); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_563 = x_32; +} else { + lean_dec_ref(x_32); + x_563 = lean_box(0); +} +x_564 = lean_ctor_get(x_29, 0); +x_565 = lean_ctor_get(x_29, 1); +x_566 = lean_ctor_get(x_29, 2); +x_567 = lean_nat_add(x_554, x_533); +lean_inc_ref(x_553); +if (lean_is_scalar(x_563)) { + x_568 = lean_alloc_ctor(0, 3, 0); +} else { + x_568 = x_563; +} +lean_ctor_set(x_568, 0, x_553); +lean_ctor_set(x_568, 1, x_567); +lean_ctor_set(x_568, 2, x_555); +x_569 = lean_nat_dec_lt(x_565, x_566); +if (x_569 == 0) +{ +lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; +lean_dec(x_554); +lean_dec_ref(x_553); +lean_dec(x_543); +lean_dec_ref(x_542); +lean_dec(x_531); +lean_dec_ref(x_530); +lean_dec(x_522); +lean_dec_ref(x_521); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_520)) { + x_570 = lean_alloc_ctor(0, 2, 0); +} else { + x_570 = x_520; +} +lean_ctor_set(x_570, 0, x_535); +lean_ctor_set(x_570, 1, x_519); +if (lean_is_scalar(x_518)) { + x_571 = lean_alloc_ctor(0, 2, 0); +} else { + x_571 = x_518; +} +lean_ctor_set(x_571, 0, x_546); +lean_ctor_set(x_571, 1, x_570); +x_572 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_572, 0, x_557); +lean_ctor_set(x_572, 1, x_571); +lean_ctor_set(x_23, 1, x_572); +lean_ctor_set(x_23, 0, x_568); +x_573 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_573, 0, x_8); +return x_573; +} +else +{ +lean_object* x_574; lean_object* x_575; lean_object* x_576; uint8_t x_577; uint8_t x_578; +lean_inc(x_566); +lean_inc(x_565); +lean_inc_ref(x_564); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_574 = x_29; +} else { + lean_dec_ref(x_29); + x_574 = lean_box(0); +} +x_575 = lean_array_fget(x_553, x_554); +lean_dec(x_554); +lean_dec_ref(x_553); +x_576 = lean_ctor_get(x_575, 1); +x_577 = lean_ctor_get_uint8(x_575, sizeof(void*)*2); +x_578 = lean_nat_dec_eq(x_576, x_1); +if (x_578 == 0) +{ +lean_object* x_579; lean_object* x_580; +lean_dec_ref(x_575); +lean_dec(x_574); +lean_dec_ref(x_568); +lean_dec(x_566); +lean_dec(x_565); +lean_dec_ref(x_564); +lean_dec_ref(x_557); +lean_dec_ref(x_546); +lean_dec(x_543); +lean_dec_ref(x_542); +lean_dec_ref(x_535); +lean_dec(x_531); +lean_dec_ref(x_530); +lean_dec(x_522); +lean_dec_ref(x_521); +lean_dec(x_520); +lean_dec(x_519); +lean_dec(x_518); +lean_free_object(x_23); +lean_free_object(x_8); +x_579 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_580 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_579, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_580) == 0) +{ +lean_object* x_581; lean_object* x_582; +x_581 = lean_ctor_get(x_580, 0); +lean_inc(x_581); +if (lean_is_exclusive(x_580)) { + lean_ctor_release(x_580, 0); + x_582 = x_580; +} else { + lean_dec_ref(x_580); + x_582 = lean_box(0); +} +if (lean_obj_tag(x_581) == 0) +{ +lean_object* x_583; lean_object* x_584; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_583 = lean_ctor_get(x_581, 0); +lean_inc(x_583); +lean_dec_ref(x_581); +if (lean_is_scalar(x_582)) { + x_584 = lean_alloc_ctor(0, 1, 0); +} else { + x_584 = x_582; +} +lean_ctor_set(x_584, 0, x_583); +return x_584; +} +else +{ +lean_object* x_585; +lean_dec(x_582); +x_585 = lean_ctor_get(x_581, 0); +lean_inc(x_585); +lean_dec_ref(x_581); +x_15 = x_585; +x_16 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_586; lean_object* x_587; lean_object* x_588; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_586 = lean_ctor_get(x_580, 0); +lean_inc(x_586); +if (lean_is_exclusive(x_580)) { + lean_ctor_release(x_580, 0); + x_587 = x_580; +} else { + lean_dec_ref(x_580); + x_587 = lean_box(0); +} +if (lean_is_scalar(x_587)) { + x_588 = lean_alloc_ctor(1, 1, 0); +} else { + x_588 = x_587; +} +lean_ctor_set(x_588, 0, x_586); +return x_588; +} +} +else +{ +lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; +x_589 = lean_array_fget(x_521, x_522); +lean_dec(x_522); +lean_dec_ref(x_521); +x_590 = lean_array_fget(x_530, x_531); +lean_dec(x_531); +lean_dec_ref(x_530); +x_591 = lean_array_fget(x_542, x_543); +lean_dec(x_543); +lean_dec_ref(x_542); +x_592 = lean_array_fget_borrowed(x_564, x_565); +x_593 = lean_box(x_3); +x_594 = lean_box(x_4); +x_595 = lean_box(x_577); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_592); +lean_inc(x_9); +lean_inc_ref(x_2); +x_596 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_596, 0, x_591); +lean_closure_set(x_596, 1, x_589); +lean_closure_set(x_596, 2, x_2); +lean_closure_set(x_596, 3, x_9); +lean_closure_set(x_596, 4, x_593); +lean_closure_set(x_596, 5, x_594); +lean_closure_set(x_596, 6, x_592); +lean_closure_set(x_596, 7, x_5); +lean_closure_set(x_596, 8, x_6); +lean_closure_set(x_596, 9, x_595); +lean_closure_set(x_596, 10, x_533); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_597 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_590, x_575, x_596, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_597) == 0) +{ +lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; +x_598 = lean_ctor_get(x_597, 0); +lean_inc(x_598); +lean_dec_ref(x_597); +x_599 = lean_nat_add(x_565, x_533); +lean_dec(x_565); +if (lean_is_scalar(x_574)) { + x_600 = lean_alloc_ctor(0, 3, 0); +} else { + x_600 = x_574; +} +lean_ctor_set(x_600, 0, x_564); +lean_ctor_set(x_600, 1, x_599); +lean_ctor_set(x_600, 2, x_566); +x_601 = lean_array_push(x_519, x_598); +if (lean_is_scalar(x_520)) { + x_602 = lean_alloc_ctor(0, 2, 0); +} else { + x_602 = x_520; +} +lean_ctor_set(x_602, 0, x_535); +lean_ctor_set(x_602, 1, x_601); +if (lean_is_scalar(x_518)) { + x_603 = lean_alloc_ctor(0, 2, 0); +} else { + x_603 = x_518; +} +lean_ctor_set(x_603, 0, x_546); +lean_ctor_set(x_603, 1, x_602); +x_604 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_604, 0, x_557); +lean_ctor_set(x_604, 1, x_603); +lean_ctor_set(x_23, 1, x_604); +lean_ctor_set(x_23, 0, x_568); +lean_ctor_set(x_8, 0, x_600); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_605; lean_object* x_606; lean_object* x_607; +lean_dec(x_574); +lean_dec_ref(x_568); +lean_dec(x_566); +lean_dec(x_565); +lean_dec_ref(x_564); +lean_dec_ref(x_557); +lean_dec_ref(x_546); +lean_dec_ref(x_535); +lean_dec(x_520); +lean_dec(x_519); +lean_dec(x_518); +lean_free_object(x_23); +lean_free_object(x_8); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_605 = lean_ctor_get(x_597, 0); +lean_inc(x_605); +if (lean_is_exclusive(x_597)) { + lean_ctor_release(x_597, 0); + x_606 = x_597; +} else { + lean_dec_ref(x_597); + x_606 = lean_box(0); +} +if (lean_is_scalar(x_606)) { + x_607 = lean_alloc_ctor(1, 1, 0); +} else { + x_607 = x_606; +} +lean_ctor_set(x_607, 0, x_605); +return x_607; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; uint8_t x_618; +x_608 = lean_ctor_get(x_23, 0); +lean_inc(x_608); +lean_dec(x_23); +x_609 = lean_ctor_get(x_24, 0); +lean_inc(x_609); if (lean_is_exclusive(x_24)) { lean_ctor_release(x_24, 0); lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_494 = x_24; + x_610 = x_24; } else { lean_dec_ref(x_24); - x_494 = lean_box(0); + x_610 = lean_box(0); } -x_495 = lean_ctor_get(x_21, 0); -x_496 = lean_ctor_get(x_21, 1); -x_497 = lean_ctor_get(x_21, 2); -x_498 = lean_nat_add(x_485, x_464); -lean_inc_ref(x_484); -if (lean_is_scalar(x_494)) { - x_499 = lean_alloc_ctor(0, 3, 0); +x_611 = lean_ctor_get(x_25, 0); +lean_inc(x_611); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + x_612 = x_25; } else { - x_499 = x_494; + lean_dec_ref(x_25); + x_612 = lean_box(0); } -lean_ctor_set(x_499, 0, x_484); -lean_ctor_set(x_499, 1, x_498); -lean_ctor_set(x_499, 2, x_486); -x_500 = lean_nat_dec_lt(x_496, x_497); -if (x_500 == 0) +x_613 = lean_ctor_get(x_26, 1); +lean_inc(x_613); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_614 = x_26; +} else { + lean_dec_ref(x_26); + x_614 = lean_box(0); +} +x_615 = lean_ctor_get(x_27, 0); +x_616 = lean_ctor_get(x_27, 1); +x_617 = lean_ctor_get(x_27, 2); +x_618 = lean_nat_dec_lt(x_616, x_617); +if (x_618 == 0) { -lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; -lean_dec(x_485); -lean_dec_ref(x_484); -lean_dec(x_474); -lean_dec_ref(x_473); -lean_dec(x_462); -lean_dec_ref(x_461); -lean_dec(x_453); -lean_dec_ref(x_452); +lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -22487,741 +24881,558 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_451)) { - x_501 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_614)) { + x_619 = lean_alloc_ctor(0, 2, 0); } else { - x_501 = x_451; + x_619 = x_614; } -lean_ctor_set(x_501, 0, x_466); -lean_ctor_set(x_501, 1, x_450); -if (lean_is_scalar(x_449)) { - x_502 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_619, 0, x_27); +lean_ctor_set(x_619, 1, x_613); +if (lean_is_scalar(x_612)) { + x_620 = lean_alloc_ctor(0, 2, 0); } else { - x_502 = x_449; + x_620 = x_612; } -lean_ctor_set(x_502, 0, x_477); -lean_ctor_set(x_502, 1, x_501); -x_503 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_503, 0, x_488); -lean_ctor_set(x_503, 1, x_502); -lean_ctor_set(x_15, 1, x_503); -lean_ctor_set(x_15, 0, x_499); -x_504 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_504, 0, x_8); -return x_504; +lean_ctor_set(x_620, 0, x_611); +lean_ctor_set(x_620, 1, x_619); +if (lean_is_scalar(x_610)) { + x_621 = lean_alloc_ctor(0, 2, 0); +} else { + x_621 = x_610; +} +lean_ctor_set(x_621, 0, x_609); +lean_ctor_set(x_621, 1, x_620); +x_622 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_622, 0, x_608); +lean_ctor_set(x_622, 1, x_621); +lean_ctor_set(x_8, 1, x_622); +x_623 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_623, 0, x_8); +return x_623; } else { -lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; -lean_inc(x_497); -lean_inc(x_496); -lean_inc_ref(x_495); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_505 = x_21; +lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; uint8_t x_631; +lean_inc(x_617); +lean_inc(x_616); +lean_inc_ref(x_615); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + lean_ctor_release(x_27, 2); + x_624 = x_27; } else { - lean_dec_ref(x_21); - x_505 = lean_box(0); + lean_dec_ref(x_27); + x_624 = lean_box(0); } -x_506 = lean_array_fget(x_452, x_453); -lean_dec(x_453); -lean_dec_ref(x_452); -x_507 = lean_array_fget(x_461, x_462); -lean_dec(x_462); -lean_dec_ref(x_461); -x_508 = lean_array_fget(x_473, x_474); -lean_dec(x_474); -lean_dec_ref(x_473); -x_509 = lean_array_fget(x_484, x_485); -lean_dec(x_485); -lean_dec_ref(x_484); -x_510 = lean_array_fget_borrowed(x_495, x_496); -x_511 = lean_box(x_2); -x_512 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_510); -lean_inc(x_9); -lean_inc_ref(x_1); -x_513 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_513, 0, x_506); -lean_closure_set(x_513, 1, x_1); -lean_closure_set(x_513, 2, x_9); -lean_closure_set(x_513, 3, x_511); -lean_closure_set(x_513, 4, x_512); -lean_closure_set(x_513, 5, x_510); -lean_closure_set(x_513, 6, x_4); -lean_closure_set(x_513, 7, x_5); -lean_closure_set(x_513, 8, x_508); -lean_closure_set(x_513, 9, x_6); -lean_closure_set(x_513, 10, x_464); -x_514 = lean_nat_sub(x_509, x_5); -lean_dec(x_509); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_6); -x_515 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(x_507, x_514, x_6, x_513, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_515) == 0) +x_625 = lean_ctor_get(x_611, 0); +x_626 = lean_ctor_get(x_611, 1); +x_627 = lean_ctor_get(x_611, 2); +x_628 = lean_unsigned_to_nat(1u); +x_629 = lean_nat_add(x_616, x_628); +lean_inc_ref(x_615); +if (lean_is_scalar(x_624)) { + x_630 = lean_alloc_ctor(0, 3, 0); +} else { + x_630 = x_624; +} +lean_ctor_set(x_630, 0, x_615); +lean_ctor_set(x_630, 1, x_629); +lean_ctor_set(x_630, 2, x_617); +x_631 = lean_nat_dec_lt(x_626, x_627); +if (x_631 == 0) { -lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; uint8_t x_525; -x_516 = lean_ctor_get(x_515, 0); -lean_inc(x_516); -if (lean_is_exclusive(x_515)) { - lean_ctor_release(x_515, 0); - x_517 = x_515; -} else { - lean_dec_ref(x_515); - x_517 = lean_box(0); -} -x_518 = lean_nat_add(x_496, x_464); -lean_dec(x_496); -if (lean_is_scalar(x_505)) { - x_519 = lean_alloc_ctor(0, 3, 0); -} else { - x_519 = x_505; -} -lean_ctor_set(x_519, 0, x_495); -lean_ctor_set(x_519, 1, x_518); -lean_ctor_set(x_519, 2, x_497); -x_520 = lean_array_push(x_450, x_516); -if (lean_is_scalar(x_451)) { - x_521 = lean_alloc_ctor(0, 2, 0); -} else { - x_521 = x_451; -} -lean_ctor_set(x_521, 0, x_466); -lean_ctor_set(x_521, 1, x_520); -if (lean_is_scalar(x_449)) { - x_522 = lean_alloc_ctor(0, 2, 0); -} else { - x_522 = x_449; -} -lean_ctor_set(x_522, 0, x_477); -lean_ctor_set(x_522, 1, x_521); -x_523 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_523, 0, x_488); -lean_ctor_set(x_523, 1, x_522); -lean_ctor_set(x_15, 1, x_523); -lean_ctor_set(x_15, 0, x_499); -lean_ctor_set(x_8, 0, x_519); -x_524 = lean_nat_add(x_9, x_464); -lean_dec(x_9); -x_525 = lean_nat_dec_lt(x_524, x_7); -if (x_525 == 0) -{ -lean_object* x_526; -lean_dec(x_524); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_517)) { - x_526 = lean_alloc_ctor(0, 1, 0); -} else { - x_526 = x_517; -} -lean_ctor_set(x_526, 0, x_8); -return x_526; -} -else -{ -lean_dec(x_517); -x_9 = x_524; -goto _start; -} -} -else -{ -lean_object* x_528; lean_object* x_529; lean_object* x_530; -lean_dec(x_505); -lean_dec_ref(x_499); -lean_dec(x_497); -lean_dec(x_496); -lean_dec_ref(x_495); -lean_dec_ref(x_488); -lean_dec_ref(x_477); -lean_dec_ref(x_466); -lean_dec(x_451); -lean_dec(x_450); -lean_dec(x_449); -lean_free_object(x_15); -lean_free_object(x_8); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_528 = lean_ctor_get(x_515, 0); -lean_inc(x_528); -if (lean_is_exclusive(x_515)) { - lean_ctor_release(x_515, 0); - x_529 = x_515; -} else { - lean_dec_ref(x_515); - x_529 = lean_box(0); -} -if (lean_is_scalar(x_529)) { - x_530 = lean_alloc_ctor(1, 1, 0); -} else { - x_530 = x_529; -} -lean_ctor_set(x_530, 0, x_528); -return x_530; -} -} -} -} -} -} -} -} -else -{ -lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; uint8_t x_541; -x_531 = lean_ctor_get(x_15, 0); -lean_inc(x_531); -lean_dec(x_15); -x_532 = lean_ctor_get(x_16, 0); -lean_inc(x_532); -if (lean_is_exclusive(x_16)) { - lean_ctor_release(x_16, 0); - lean_ctor_release(x_16, 1); - x_533 = x_16; -} else { - lean_dec_ref(x_16); - x_533 = lean_box(0); -} -x_534 = lean_ctor_get(x_17, 0); -lean_inc(x_534); -if (lean_is_exclusive(x_17)) { - lean_ctor_release(x_17, 0); - lean_ctor_release(x_17, 1); - x_535 = x_17; -} else { - lean_dec_ref(x_17); - x_535 = lean_box(0); -} -x_536 = lean_ctor_get(x_18, 1); -lean_inc(x_536); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_537 = x_18; -} else { - lean_dec_ref(x_18); - x_537 = lean_box(0); -} -x_538 = lean_ctor_get(x_19, 0); -x_539 = lean_ctor_get(x_19, 1); -x_540 = lean_ctor_get(x_19, 2); -x_541 = lean_nat_dec_lt(x_539, x_540); -if (x_541 == 0) -{ -lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_537)) { - x_542 = lean_alloc_ctor(0, 2, 0); -} else { - x_542 = x_537; -} -lean_ctor_set(x_542, 0, x_19); -lean_ctor_set(x_542, 1, x_536); -if (lean_is_scalar(x_535)) { - x_543 = lean_alloc_ctor(0, 2, 0); -} else { - x_543 = x_535; -} -lean_ctor_set(x_543, 0, x_534); -lean_ctor_set(x_543, 1, x_542); -if (lean_is_scalar(x_533)) { - x_544 = lean_alloc_ctor(0, 2, 0); -} else { - x_544 = x_533; -} -lean_ctor_set(x_544, 0, x_532); -lean_ctor_set(x_544, 1, x_543); -x_545 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_545, 0, x_531); -lean_ctor_set(x_545, 1, x_544); -lean_ctor_set(x_8, 1, x_545); -x_546 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_546, 0, x_8); -return x_546; -} -else -{ -lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; uint8_t x_554; -lean_inc(x_540); -lean_inc(x_539); -lean_inc_ref(x_538); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - lean_ctor_release(x_19, 2); - x_547 = x_19; -} else { - lean_dec_ref(x_19); - x_547 = lean_box(0); -} -x_548 = lean_ctor_get(x_534, 0); -x_549 = lean_ctor_get(x_534, 1); -x_550 = lean_ctor_get(x_534, 2); -x_551 = lean_unsigned_to_nat(1u); -x_552 = lean_nat_add(x_539, x_551); -lean_inc_ref(x_538); -if (lean_is_scalar(x_547)) { - x_553 = lean_alloc_ctor(0, 3, 0); -} else { - x_553 = x_547; -} -lean_ctor_set(x_553, 0, x_538); -lean_ctor_set(x_553, 1, x_552); -lean_ctor_set(x_553, 2, x_540); -x_554 = lean_nat_dec_lt(x_549, x_550); -if (x_554 == 0) -{ -lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; -lean_dec(x_539); -lean_dec_ref(x_538); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_537)) { - x_555 = lean_alloc_ctor(0, 2, 0); -} else { - x_555 = x_537; -} -lean_ctor_set(x_555, 0, x_553); -lean_ctor_set(x_555, 1, x_536); -if (lean_is_scalar(x_535)) { - x_556 = lean_alloc_ctor(0, 2, 0); -} else { - x_556 = x_535; -} -lean_ctor_set(x_556, 0, x_534); -lean_ctor_set(x_556, 1, x_555); -if (lean_is_scalar(x_533)) { - x_557 = lean_alloc_ctor(0, 2, 0); -} else { - x_557 = x_533; -} -lean_ctor_set(x_557, 0, x_532); -lean_ctor_set(x_557, 1, x_556); -x_558 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_558, 0, x_531); -lean_ctor_set(x_558, 1, x_557); -lean_ctor_set(x_8, 1, x_558); -x_559 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_559, 0, x_8); -return x_559; -} -else -{ -lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; uint8_t x_566; -lean_inc(x_550); -lean_inc(x_549); -lean_inc_ref(x_548); -if (lean_is_exclusive(x_534)) { - lean_ctor_release(x_534, 0); - lean_ctor_release(x_534, 1); - lean_ctor_release(x_534, 2); - x_560 = x_534; -} else { - lean_dec_ref(x_534); - x_560 = lean_box(0); -} -x_561 = lean_ctor_get(x_532, 0); -x_562 = lean_ctor_get(x_532, 1); -x_563 = lean_ctor_get(x_532, 2); -x_564 = lean_nat_add(x_549, x_551); -lean_inc_ref(x_548); -if (lean_is_scalar(x_560)) { - x_565 = lean_alloc_ctor(0, 3, 0); -} else { - x_565 = x_560; -} -lean_ctor_set(x_565, 0, x_548); -lean_ctor_set(x_565, 1, x_564); -lean_ctor_set(x_565, 2, x_550); -x_566 = lean_nat_dec_lt(x_562, x_563); -if (x_566 == 0) -{ -lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; -lean_dec(x_549); -lean_dec_ref(x_548); -lean_dec(x_539); -lean_dec_ref(x_538); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_537)) { - x_567 = lean_alloc_ctor(0, 2, 0); -} else { - x_567 = x_537; -} -lean_ctor_set(x_567, 0, x_553); -lean_ctor_set(x_567, 1, x_536); -if (lean_is_scalar(x_535)) { - x_568 = lean_alloc_ctor(0, 2, 0); -} else { - x_568 = x_535; -} -lean_ctor_set(x_568, 0, x_565); -lean_ctor_set(x_568, 1, x_567); -if (lean_is_scalar(x_533)) { - x_569 = lean_alloc_ctor(0, 2, 0); -} else { - x_569 = x_533; -} -lean_ctor_set(x_569, 0, x_532); -lean_ctor_set(x_569, 1, x_568); -x_570 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_570, 0, x_531); -lean_ctor_set(x_570, 1, x_569); -lean_ctor_set(x_8, 1, x_570); -x_571 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_571, 0, x_8); -return x_571; -} -else -{ -lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; uint8_t x_578; -lean_inc(x_563); -lean_inc(x_562); -lean_inc_ref(x_561); -if (lean_is_exclusive(x_532)) { - lean_ctor_release(x_532, 0); - lean_ctor_release(x_532, 1); - lean_ctor_release(x_532, 2); - x_572 = x_532; -} else { - lean_dec_ref(x_532); - x_572 = lean_box(0); -} -x_573 = lean_ctor_get(x_531, 0); -x_574 = lean_ctor_get(x_531, 1); -x_575 = lean_ctor_get(x_531, 2); -x_576 = lean_nat_add(x_562, x_551); -lean_inc_ref(x_561); -if (lean_is_scalar(x_572)) { - x_577 = lean_alloc_ctor(0, 3, 0); -} else { - x_577 = x_572; -} -lean_ctor_set(x_577, 0, x_561); -lean_ctor_set(x_577, 1, x_576); -lean_ctor_set(x_577, 2, x_563); -x_578 = lean_nat_dec_lt(x_574, x_575); -if (x_578 == 0) -{ -lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; -lean_dec(x_562); -lean_dec_ref(x_561); -lean_dec(x_549); -lean_dec_ref(x_548); -lean_dec(x_539); -lean_dec_ref(x_538); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_537)) { - x_579 = lean_alloc_ctor(0, 2, 0); -} else { - x_579 = x_537; -} -lean_ctor_set(x_579, 0, x_553); -lean_ctor_set(x_579, 1, x_536); -if (lean_is_scalar(x_535)) { - x_580 = lean_alloc_ctor(0, 2, 0); -} else { - x_580 = x_535; -} -lean_ctor_set(x_580, 0, x_565); -lean_ctor_set(x_580, 1, x_579); -if (lean_is_scalar(x_533)) { - x_581 = lean_alloc_ctor(0, 2, 0); -} else { - x_581 = x_533; -} -lean_ctor_set(x_581, 0, x_577); -lean_ctor_set(x_581, 1, x_580); -x_582 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_582, 0, x_531); -lean_ctor_set(x_582, 1, x_581); -lean_ctor_set(x_8, 1, x_582); -x_583 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_583, 0, x_8); -return x_583; -} -else -{ -lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; uint8_t x_590; -lean_inc(x_575); -lean_inc(x_574); -lean_inc_ref(x_573); -if (lean_is_exclusive(x_531)) { - lean_ctor_release(x_531, 0); - lean_ctor_release(x_531, 1); - lean_ctor_release(x_531, 2); - x_584 = x_531; -} else { - lean_dec_ref(x_531); - x_584 = lean_box(0); -} -x_585 = lean_ctor_get(x_21, 0); -x_586 = lean_ctor_get(x_21, 1); -x_587 = lean_ctor_get(x_21, 2); -x_588 = lean_nat_add(x_574, x_551); -lean_inc_ref(x_573); -if (lean_is_scalar(x_584)) { - x_589 = lean_alloc_ctor(0, 3, 0); -} else { - x_589 = x_584; -} -lean_ctor_set(x_589, 0, x_573); -lean_ctor_set(x_589, 1, x_588); -lean_ctor_set(x_589, 2, x_575); -x_590 = lean_nat_dec_lt(x_586, x_587); -if (x_590 == 0) -{ -lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; -lean_dec(x_574); -lean_dec_ref(x_573); -lean_dec(x_562); -lean_dec_ref(x_561); -lean_dec(x_549); -lean_dec_ref(x_548); -lean_dec(x_539); -lean_dec_ref(x_538); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_537)) { - x_591 = lean_alloc_ctor(0, 2, 0); -} else { - x_591 = x_537; -} -lean_ctor_set(x_591, 0, x_553); -lean_ctor_set(x_591, 1, x_536); -if (lean_is_scalar(x_535)) { - x_592 = lean_alloc_ctor(0, 2, 0); -} else { - x_592 = x_535; -} -lean_ctor_set(x_592, 0, x_565); -lean_ctor_set(x_592, 1, x_591); -if (lean_is_scalar(x_533)) { - x_593 = lean_alloc_ctor(0, 2, 0); -} else { - x_593 = x_533; -} -lean_ctor_set(x_593, 0, x_577); -lean_ctor_set(x_593, 1, x_592); -x_594 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_594, 0, x_589); -lean_ctor_set(x_594, 1, x_593); -lean_ctor_set(x_8, 1, x_594); -x_595 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_595, 0, x_8); -return x_595; -} -else -{ -lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; -lean_inc(x_587); -lean_inc(x_586); -lean_inc_ref(x_585); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_596 = x_21; -} else { - lean_dec_ref(x_21); - x_596 = lean_box(0); -} -x_597 = lean_array_fget(x_538, x_539); -lean_dec(x_539); -lean_dec_ref(x_538); -x_598 = lean_array_fget(x_548, x_549); -lean_dec(x_549); -lean_dec_ref(x_548); -x_599 = lean_array_fget(x_561, x_562); -lean_dec(x_562); -lean_dec_ref(x_561); -x_600 = lean_array_fget(x_573, x_574); -lean_dec(x_574); -lean_dec_ref(x_573); -x_601 = lean_array_fget_borrowed(x_585, x_586); -x_602 = lean_box(x_2); -x_603 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_601); -lean_inc(x_9); -lean_inc_ref(x_1); -x_604 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_604, 0, x_597); -lean_closure_set(x_604, 1, x_1); -lean_closure_set(x_604, 2, x_9); -lean_closure_set(x_604, 3, x_602); -lean_closure_set(x_604, 4, x_603); -lean_closure_set(x_604, 5, x_601); -lean_closure_set(x_604, 6, x_4); -lean_closure_set(x_604, 7, x_5); -lean_closure_set(x_604, 8, x_599); -lean_closure_set(x_604, 9, x_6); -lean_closure_set(x_604, 10, x_551); -x_605 = lean_nat_sub(x_600, x_5); -lean_dec(x_600); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_6); -x_606 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(x_598, x_605, x_6, x_604, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_606) == 0) -{ -lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; uint8_t x_617; -x_607 = lean_ctor_get(x_606, 0); -lean_inc(x_607); -if (lean_is_exclusive(x_606)) { - lean_ctor_release(x_606, 0); - x_608 = x_606; -} else { - lean_dec_ref(x_606); - x_608 = lean_box(0); -} -x_609 = lean_nat_add(x_586, x_551); -lean_dec(x_586); -if (lean_is_scalar(x_596)) { - x_610 = lean_alloc_ctor(0, 3, 0); -} else { - x_610 = x_596; -} -lean_ctor_set(x_610, 0, x_585); -lean_ctor_set(x_610, 1, x_609); -lean_ctor_set(x_610, 2, x_587); -x_611 = lean_array_push(x_536, x_607); -if (lean_is_scalar(x_537)) { - x_612 = lean_alloc_ctor(0, 2, 0); -} else { - x_612 = x_537; -} -lean_ctor_set(x_612, 0, x_553); -lean_ctor_set(x_612, 1, x_611); -if (lean_is_scalar(x_535)) { - x_613 = lean_alloc_ctor(0, 2, 0); -} else { - x_613 = x_535; -} -lean_ctor_set(x_613, 0, x_565); -lean_ctor_set(x_613, 1, x_612); -if (lean_is_scalar(x_533)) { - x_614 = lean_alloc_ctor(0, 2, 0); -} else { - x_614 = x_533; -} -lean_ctor_set(x_614, 0, x_577); -lean_ctor_set(x_614, 1, x_613); -x_615 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_615, 0, x_589); -lean_ctor_set(x_615, 1, x_614); -lean_ctor_set(x_8, 1, x_615); -lean_ctor_set(x_8, 0, x_610); -x_616 = lean_nat_add(x_9, x_551); -lean_dec(x_9); -x_617 = lean_nat_dec_lt(x_616, x_7); -if (x_617 == 0) -{ -lean_object* x_618; +lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_dec(x_616); +lean_dec_ref(x_615); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_608)) { - x_618 = lean_alloc_ctor(0, 1, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_614)) { + x_632 = lean_alloc_ctor(0, 2, 0); } else { - x_618 = x_608; + x_632 = x_614; } -lean_ctor_set(x_618, 0, x_8); -return x_618; +lean_ctor_set(x_632, 0, x_630); +lean_ctor_set(x_632, 1, x_613); +if (lean_is_scalar(x_612)) { + x_633 = lean_alloc_ctor(0, 2, 0); +} else { + x_633 = x_612; +} +lean_ctor_set(x_633, 0, x_611); +lean_ctor_set(x_633, 1, x_632); +if (lean_is_scalar(x_610)) { + x_634 = lean_alloc_ctor(0, 2, 0); +} else { + x_634 = x_610; +} +lean_ctor_set(x_634, 0, x_609); +lean_ctor_set(x_634, 1, x_633); +x_635 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_635, 0, x_608); +lean_ctor_set(x_635, 1, x_634); +lean_ctor_set(x_8, 1, x_635); +x_636 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_636, 0, x_8); +return x_636; } else { -lean_dec(x_608); -x_9 = x_616; -goto _start; +lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; uint8_t x_643; +lean_inc(x_627); +lean_inc(x_626); +lean_inc_ref(x_625); +if (lean_is_exclusive(x_611)) { + lean_ctor_release(x_611, 0); + lean_ctor_release(x_611, 1); + lean_ctor_release(x_611, 2); + x_637 = x_611; +} else { + lean_dec_ref(x_611); + x_637 = lean_box(0); +} +x_638 = lean_ctor_get(x_609, 0); +x_639 = lean_ctor_get(x_609, 1); +x_640 = lean_ctor_get(x_609, 2); +x_641 = lean_nat_add(x_626, x_628); +lean_inc_ref(x_625); +if (lean_is_scalar(x_637)) { + x_642 = lean_alloc_ctor(0, 3, 0); +} else { + x_642 = x_637; +} +lean_ctor_set(x_642, 0, x_625); +lean_ctor_set(x_642, 1, x_641); +lean_ctor_set(x_642, 2, x_627); +x_643 = lean_nat_dec_lt(x_639, x_640); +if (x_643 == 0) +{ +lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; +lean_dec(x_626); +lean_dec_ref(x_625); +lean_dec(x_616); +lean_dec_ref(x_615); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_614)) { + x_644 = lean_alloc_ctor(0, 2, 0); +} else { + x_644 = x_614; +} +lean_ctor_set(x_644, 0, x_630); +lean_ctor_set(x_644, 1, x_613); +if (lean_is_scalar(x_612)) { + x_645 = lean_alloc_ctor(0, 2, 0); +} else { + x_645 = x_612; +} +lean_ctor_set(x_645, 0, x_642); +lean_ctor_set(x_645, 1, x_644); +if (lean_is_scalar(x_610)) { + x_646 = lean_alloc_ctor(0, 2, 0); +} else { + x_646 = x_610; +} +lean_ctor_set(x_646, 0, x_609); +lean_ctor_set(x_646, 1, x_645); +x_647 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_647, 0, x_608); +lean_ctor_set(x_647, 1, x_646); +lean_ctor_set(x_8, 1, x_647); +x_648 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_648, 0, x_8); +return x_648; +} +else +{ +lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; uint8_t x_655; +lean_inc(x_640); +lean_inc(x_639); +lean_inc_ref(x_638); +if (lean_is_exclusive(x_609)) { + lean_ctor_release(x_609, 0); + lean_ctor_release(x_609, 1); + lean_ctor_release(x_609, 2); + x_649 = x_609; +} else { + lean_dec_ref(x_609); + x_649 = lean_box(0); +} +x_650 = lean_ctor_get(x_608, 0); +x_651 = lean_ctor_get(x_608, 1); +x_652 = lean_ctor_get(x_608, 2); +x_653 = lean_nat_add(x_639, x_628); +lean_inc_ref(x_638); +if (lean_is_scalar(x_649)) { + x_654 = lean_alloc_ctor(0, 3, 0); +} else { + x_654 = x_649; +} +lean_ctor_set(x_654, 0, x_638); +lean_ctor_set(x_654, 1, x_653); +lean_ctor_set(x_654, 2, x_640); +x_655 = lean_nat_dec_lt(x_651, x_652); +if (x_655 == 0) +{ +lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; +lean_dec(x_639); +lean_dec_ref(x_638); +lean_dec(x_626); +lean_dec_ref(x_625); +lean_dec(x_616); +lean_dec_ref(x_615); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_614)) { + x_656 = lean_alloc_ctor(0, 2, 0); +} else { + x_656 = x_614; +} +lean_ctor_set(x_656, 0, x_630); +lean_ctor_set(x_656, 1, x_613); +if (lean_is_scalar(x_612)) { + x_657 = lean_alloc_ctor(0, 2, 0); +} else { + x_657 = x_612; +} +lean_ctor_set(x_657, 0, x_642); +lean_ctor_set(x_657, 1, x_656); +if (lean_is_scalar(x_610)) { + x_658 = lean_alloc_ctor(0, 2, 0); +} else { + x_658 = x_610; +} +lean_ctor_set(x_658, 0, x_654); +lean_ctor_set(x_658, 1, x_657); +x_659 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_659, 0, x_608); +lean_ctor_set(x_659, 1, x_658); +lean_ctor_set(x_8, 1, x_659); +x_660 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_660, 0, x_8); +return x_660; +} +else +{ +lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; uint8_t x_667; +lean_inc(x_652); +lean_inc(x_651); +lean_inc_ref(x_650); +if (lean_is_exclusive(x_608)) { + lean_ctor_release(x_608, 0); + lean_ctor_release(x_608, 1); + lean_ctor_release(x_608, 2); + x_661 = x_608; +} else { + lean_dec_ref(x_608); + x_661 = lean_box(0); +} +x_662 = lean_ctor_get(x_29, 0); +x_663 = lean_ctor_get(x_29, 1); +x_664 = lean_ctor_get(x_29, 2); +x_665 = lean_nat_add(x_651, x_628); +lean_inc_ref(x_650); +if (lean_is_scalar(x_661)) { + x_666 = lean_alloc_ctor(0, 3, 0); +} else { + x_666 = x_661; +} +lean_ctor_set(x_666, 0, x_650); +lean_ctor_set(x_666, 1, x_665); +lean_ctor_set(x_666, 2, x_652); +x_667 = lean_nat_dec_lt(x_663, x_664); +if (x_667 == 0) +{ +lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; +lean_dec(x_651); +lean_dec_ref(x_650); +lean_dec(x_639); +lean_dec_ref(x_638); +lean_dec(x_626); +lean_dec_ref(x_625); +lean_dec(x_616); +lean_dec_ref(x_615); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_614)) { + x_668 = lean_alloc_ctor(0, 2, 0); +} else { + x_668 = x_614; +} +lean_ctor_set(x_668, 0, x_630); +lean_ctor_set(x_668, 1, x_613); +if (lean_is_scalar(x_612)) { + x_669 = lean_alloc_ctor(0, 2, 0); +} else { + x_669 = x_612; +} +lean_ctor_set(x_669, 0, x_642); +lean_ctor_set(x_669, 1, x_668); +if (lean_is_scalar(x_610)) { + x_670 = lean_alloc_ctor(0, 2, 0); +} else { + x_670 = x_610; +} +lean_ctor_set(x_670, 0, x_654); +lean_ctor_set(x_670, 1, x_669); +x_671 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_671, 0, x_666); +lean_ctor_set(x_671, 1, x_670); +lean_ctor_set(x_8, 1, x_671); +x_672 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_672, 0, x_8); +return x_672; +} +else +{ +lean_object* x_673; lean_object* x_674; lean_object* x_675; uint8_t x_676; uint8_t x_677; +lean_inc(x_664); +lean_inc(x_663); +lean_inc_ref(x_662); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_673 = x_29; +} else { + lean_dec_ref(x_29); + x_673 = lean_box(0); +} +x_674 = lean_array_fget(x_650, x_651); +lean_dec(x_651); +lean_dec_ref(x_650); +x_675 = lean_ctor_get(x_674, 1); +x_676 = lean_ctor_get_uint8(x_674, sizeof(void*)*2); +x_677 = lean_nat_dec_eq(x_675, x_1); +if (x_677 == 0) +{ +lean_object* x_678; lean_object* x_679; +lean_dec_ref(x_674); +lean_dec(x_673); +lean_dec_ref(x_666); +lean_dec(x_664); +lean_dec(x_663); +lean_dec_ref(x_662); +lean_dec_ref(x_654); +lean_dec_ref(x_642); +lean_dec(x_639); +lean_dec_ref(x_638); +lean_dec_ref(x_630); +lean_dec(x_626); +lean_dec_ref(x_625); +lean_dec(x_616); +lean_dec_ref(x_615); +lean_dec(x_614); +lean_dec(x_613); +lean_dec(x_612); +lean_dec(x_610); +lean_free_object(x_8); +x_678 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_679 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_678, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_679) == 0) +{ +lean_object* x_680; lean_object* x_681; +x_680 = lean_ctor_get(x_679, 0); +lean_inc(x_680); +if (lean_is_exclusive(x_679)) { + lean_ctor_release(x_679, 0); + x_681 = x_679; +} else { + lean_dec_ref(x_679); + x_681 = lean_box(0); +} +if (lean_obj_tag(x_680) == 0) +{ +lean_object* x_682; lean_object* x_683; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_682 = lean_ctor_get(x_680, 0); +lean_inc(x_682); +lean_dec_ref(x_680); +if (lean_is_scalar(x_681)) { + x_683 = lean_alloc_ctor(0, 1, 0); +} else { + x_683 = x_681; +} +lean_ctor_set(x_683, 0, x_682); +return x_683; +} +else +{ +lean_object* x_684; +lean_dec(x_681); +x_684 = lean_ctor_get(x_680, 0); +lean_inc(x_684); +lean_dec_ref(x_680); +x_15 = x_684; +x_16 = lean_box(0); +goto block_22; } } else { -lean_object* x_620; lean_object* x_621; lean_object* x_622; -lean_dec(x_596); -lean_dec_ref(x_589); -lean_dec(x_587); -lean_dec(x_586); -lean_dec_ref(x_585); -lean_dec_ref(x_577); -lean_dec_ref(x_565); -lean_dec_ref(x_553); -lean_dec(x_537); -lean_dec(x_536); -lean_dec(x_535); -lean_dec(x_533); +lean_object* x_685; lean_object* x_686; lean_object* x_687; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_685 = lean_ctor_get(x_679, 0); +lean_inc(x_685); +if (lean_is_exclusive(x_679)) { + lean_ctor_release(x_679, 0); + x_686 = x_679; +} else { + lean_dec_ref(x_679); + x_686 = lean_box(0); +} +if (lean_is_scalar(x_686)) { + x_687 = lean_alloc_ctor(1, 1, 0); +} else { + x_687 = x_686; +} +lean_ctor_set(x_687, 0, x_685); +return x_687; +} +} +else +{ +lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; +x_688 = lean_array_fget(x_615, x_616); +lean_dec(x_616); +lean_dec_ref(x_615); +x_689 = lean_array_fget(x_625, x_626); +lean_dec(x_626); +lean_dec_ref(x_625); +x_690 = lean_array_fget(x_638, x_639); +lean_dec(x_639); +lean_dec_ref(x_638); +x_691 = lean_array_fget_borrowed(x_662, x_663); +x_692 = lean_box(x_3); +x_693 = lean_box(x_4); +x_694 = lean_box(x_676); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_691); +lean_inc(x_9); +lean_inc_ref(x_2); +x_695 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_695, 0, x_690); +lean_closure_set(x_695, 1, x_688); +lean_closure_set(x_695, 2, x_2); +lean_closure_set(x_695, 3, x_9); +lean_closure_set(x_695, 4, x_692); +lean_closure_set(x_695, 5, x_693); +lean_closure_set(x_695, 6, x_691); +lean_closure_set(x_695, 7, x_5); +lean_closure_set(x_695, 8, x_6); +lean_closure_set(x_695, 9, x_694); +lean_closure_set(x_695, 10, x_628); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_696 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_689, x_674, x_695, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_696) == 0) +{ +lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; +x_697 = lean_ctor_get(x_696, 0); +lean_inc(x_697); +lean_dec_ref(x_696); +x_698 = lean_nat_add(x_663, x_628); +lean_dec(x_663); +if (lean_is_scalar(x_673)) { + x_699 = lean_alloc_ctor(0, 3, 0); +} else { + x_699 = x_673; +} +lean_ctor_set(x_699, 0, x_662); +lean_ctor_set(x_699, 1, x_698); +lean_ctor_set(x_699, 2, x_664); +x_700 = lean_array_push(x_613, x_697); +if (lean_is_scalar(x_614)) { + x_701 = lean_alloc_ctor(0, 2, 0); +} else { + x_701 = x_614; +} +lean_ctor_set(x_701, 0, x_630); +lean_ctor_set(x_701, 1, x_700); +if (lean_is_scalar(x_612)) { + x_702 = lean_alloc_ctor(0, 2, 0); +} else { + x_702 = x_612; +} +lean_ctor_set(x_702, 0, x_642); +lean_ctor_set(x_702, 1, x_701); +if (lean_is_scalar(x_610)) { + x_703 = lean_alloc_ctor(0, 2, 0); +} else { + x_703 = x_610; +} +lean_ctor_set(x_703, 0, x_654); +lean_ctor_set(x_703, 1, x_702); +x_704 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_704, 0, x_666); +lean_ctor_set(x_704, 1, x_703); +lean_ctor_set(x_8, 1, x_704); +lean_ctor_set(x_8, 0, x_699); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_705; lean_object* x_706; lean_object* x_707; +lean_dec(x_673); +lean_dec_ref(x_666); +lean_dec(x_664); +lean_dec(x_663); +lean_dec_ref(x_662); +lean_dec_ref(x_654); +lean_dec_ref(x_642); +lean_dec_ref(x_630); +lean_dec(x_614); +lean_dec(x_613); +lean_dec(x_612); +lean_dec(x_610); lean_free_object(x_8); lean_dec(x_13); lean_dec_ref(x_12); @@ -23230,24 +25441,24 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_620 = lean_ctor_get(x_606, 0); -lean_inc(x_620); -if (lean_is_exclusive(x_606)) { - lean_ctor_release(x_606, 0); - x_621 = x_606; +lean_dec_ref(x_2); +x_705 = lean_ctor_get(x_696, 0); +lean_inc(x_705); +if (lean_is_exclusive(x_696)) { + lean_ctor_release(x_696, 0); + x_706 = x_696; } else { - lean_dec_ref(x_606); - x_621 = lean_box(0); + lean_dec_ref(x_696); + x_706 = lean_box(0); } -if (lean_is_scalar(x_621)) { - x_622 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_706)) { + x_707 = lean_alloc_ctor(1, 1, 0); } else { - x_622 = x_621; + x_707 = x_706; +} +lean_ctor_set(x_707, 0, x_705); +return x_707; } -lean_ctor_set(x_622, 0, x_620); -return x_622; } } } @@ -23258,57 +25469,57 @@ return x_622; } else { -lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; uint8_t x_635; -x_623 = lean_ctor_get(x_8, 0); -lean_inc(x_623); +lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; uint8_t x_720; +x_708 = lean_ctor_get(x_8, 0); +lean_inc(x_708); lean_dec(x_8); -x_624 = lean_ctor_get(x_15, 0); -lean_inc(x_624); -if (lean_is_exclusive(x_15)) { - lean_ctor_release(x_15, 0); - lean_ctor_release(x_15, 1); - x_625 = x_15; +x_709 = lean_ctor_get(x_23, 0); +lean_inc(x_709); +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + x_710 = x_23; } else { - lean_dec_ref(x_15); - x_625 = lean_box(0); + lean_dec_ref(x_23); + x_710 = lean_box(0); } -x_626 = lean_ctor_get(x_16, 0); -lean_inc(x_626); -if (lean_is_exclusive(x_16)) { - lean_ctor_release(x_16, 0); - lean_ctor_release(x_16, 1); - x_627 = x_16; +x_711 = lean_ctor_get(x_24, 0); +lean_inc(x_711); +if (lean_is_exclusive(x_24)) { + lean_ctor_release(x_24, 0); + lean_ctor_release(x_24, 1); + x_712 = x_24; } else { - lean_dec_ref(x_16); - x_627 = lean_box(0); + lean_dec_ref(x_24); + x_712 = lean_box(0); } -x_628 = lean_ctor_get(x_17, 0); -lean_inc(x_628); -if (lean_is_exclusive(x_17)) { - lean_ctor_release(x_17, 0); - lean_ctor_release(x_17, 1); - x_629 = x_17; +x_713 = lean_ctor_get(x_25, 0); +lean_inc(x_713); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + x_714 = x_25; } else { - lean_dec_ref(x_17); - x_629 = lean_box(0); + lean_dec_ref(x_25); + x_714 = lean_box(0); } -x_630 = lean_ctor_get(x_18, 1); -lean_inc(x_630); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_631 = x_18; +x_715 = lean_ctor_get(x_26, 1); +lean_inc(x_715); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_716 = x_26; } else { - lean_dec_ref(x_18); - x_631 = lean_box(0); + lean_dec_ref(x_26); + x_716 = lean_box(0); } -x_632 = lean_ctor_get(x_19, 0); -x_633 = lean_ctor_get(x_19, 1); -x_634 = lean_ctor_get(x_19, 2); -x_635 = lean_nat_dec_lt(x_633, x_634); -if (x_635 == 0) +x_717 = lean_ctor_get(x_27, 0); +x_718 = lean_ctor_get(x_27, 1); +x_719 = lean_ctor_get(x_27, 2); +x_720 = lean_nat_dec_lt(x_718, x_719); +if (x_720 == 0) { -lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; +lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -23316,78 +25527,77 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_631)) { - x_636 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_716)) { + x_721 = lean_alloc_ctor(0, 2, 0); } else { - x_636 = x_631; + x_721 = x_716; } -lean_ctor_set(x_636, 0, x_19); -lean_ctor_set(x_636, 1, x_630); -if (lean_is_scalar(x_629)) { - x_637 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_721, 0, x_27); +lean_ctor_set(x_721, 1, x_715); +if (lean_is_scalar(x_714)) { + x_722 = lean_alloc_ctor(0, 2, 0); } else { - x_637 = x_629; + x_722 = x_714; } -lean_ctor_set(x_637, 0, x_628); -lean_ctor_set(x_637, 1, x_636); -if (lean_is_scalar(x_627)) { - x_638 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_722, 0, x_713); +lean_ctor_set(x_722, 1, x_721); +if (lean_is_scalar(x_712)) { + x_723 = lean_alloc_ctor(0, 2, 0); } else { - x_638 = x_627; + x_723 = x_712; } -lean_ctor_set(x_638, 0, x_626); -lean_ctor_set(x_638, 1, x_637); -if (lean_is_scalar(x_625)) { - x_639 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_723, 0, x_711); +lean_ctor_set(x_723, 1, x_722); +if (lean_is_scalar(x_710)) { + x_724 = lean_alloc_ctor(0, 2, 0); } else { - x_639 = x_625; + x_724 = x_710; } -lean_ctor_set(x_639, 0, x_624); -lean_ctor_set(x_639, 1, x_638); -x_640 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_640, 0, x_623); -lean_ctor_set(x_640, 1, x_639); -x_641 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_641, 0, x_640); -return x_641; +lean_ctor_set(x_724, 0, x_709); +lean_ctor_set(x_724, 1, x_723); +x_725 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_725, 0, x_708); +lean_ctor_set(x_725, 1, x_724); +x_726 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_726, 0, x_725); +return x_726; } else { -lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; uint8_t x_649; -lean_inc(x_634); -lean_inc(x_633); -lean_inc_ref(x_632); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - lean_ctor_release(x_19, 2); - x_642 = x_19; +lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; uint8_t x_734; +lean_inc(x_719); +lean_inc(x_718); +lean_inc_ref(x_717); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + lean_ctor_release(x_27, 2); + x_727 = x_27; } else { - lean_dec_ref(x_19); - x_642 = lean_box(0); + lean_dec_ref(x_27); + x_727 = lean_box(0); } -x_643 = lean_ctor_get(x_628, 0); -x_644 = lean_ctor_get(x_628, 1); -x_645 = lean_ctor_get(x_628, 2); -x_646 = lean_unsigned_to_nat(1u); -x_647 = lean_nat_add(x_633, x_646); -lean_inc_ref(x_632); -if (lean_is_scalar(x_642)) { - x_648 = lean_alloc_ctor(0, 3, 0); +x_728 = lean_ctor_get(x_713, 0); +x_729 = lean_ctor_get(x_713, 1); +x_730 = lean_ctor_get(x_713, 2); +x_731 = lean_unsigned_to_nat(1u); +x_732 = lean_nat_add(x_718, x_731); +lean_inc_ref(x_717); +if (lean_is_scalar(x_727)) { + x_733 = lean_alloc_ctor(0, 3, 0); } else { - x_648 = x_642; + x_733 = x_727; } -lean_ctor_set(x_648, 0, x_632); -lean_ctor_set(x_648, 1, x_647); -lean_ctor_set(x_648, 2, x_634); -x_649 = lean_nat_dec_lt(x_644, x_645); -if (x_649 == 0) +lean_ctor_set(x_733, 0, x_717); +lean_ctor_set(x_733, 1, x_732); +lean_ctor_set(x_733, 2, x_719); +x_734 = lean_nat_dec_lt(x_729, x_730); +if (x_734 == 0) { -lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; -lean_dec(x_633); -lean_dec_ref(x_632); +lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; +lean_dec(x_718); +lean_dec_ref(x_717); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -23395,79 +25605,78 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_631)) { - x_650 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_716)) { + x_735 = lean_alloc_ctor(0, 2, 0); } else { - x_650 = x_631; + x_735 = x_716; } -lean_ctor_set(x_650, 0, x_648); -lean_ctor_set(x_650, 1, x_630); -if (lean_is_scalar(x_629)) { - x_651 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_735, 0, x_733); +lean_ctor_set(x_735, 1, x_715); +if (lean_is_scalar(x_714)) { + x_736 = lean_alloc_ctor(0, 2, 0); } else { - x_651 = x_629; + x_736 = x_714; } -lean_ctor_set(x_651, 0, x_628); -lean_ctor_set(x_651, 1, x_650); -if (lean_is_scalar(x_627)) { - x_652 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_736, 0, x_713); +lean_ctor_set(x_736, 1, x_735); +if (lean_is_scalar(x_712)) { + x_737 = lean_alloc_ctor(0, 2, 0); } else { - x_652 = x_627; + x_737 = x_712; } -lean_ctor_set(x_652, 0, x_626); -lean_ctor_set(x_652, 1, x_651); -if (lean_is_scalar(x_625)) { - x_653 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_737, 0, x_711); +lean_ctor_set(x_737, 1, x_736); +if (lean_is_scalar(x_710)) { + x_738 = lean_alloc_ctor(0, 2, 0); } else { - x_653 = x_625; + x_738 = x_710; } -lean_ctor_set(x_653, 0, x_624); -lean_ctor_set(x_653, 1, x_652); -x_654 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_654, 0, x_623); -lean_ctor_set(x_654, 1, x_653); -x_655 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_655, 0, x_654); -return x_655; +lean_ctor_set(x_738, 0, x_709); +lean_ctor_set(x_738, 1, x_737); +x_739 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_739, 0, x_708); +lean_ctor_set(x_739, 1, x_738); +x_740 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_740, 0, x_739); +return x_740; } else { -lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; uint8_t x_662; -lean_inc(x_645); -lean_inc(x_644); -lean_inc_ref(x_643); -if (lean_is_exclusive(x_628)) { - lean_ctor_release(x_628, 0); - lean_ctor_release(x_628, 1); - lean_ctor_release(x_628, 2); - x_656 = x_628; +lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; uint8_t x_747; +lean_inc(x_730); +lean_inc(x_729); +lean_inc_ref(x_728); +if (lean_is_exclusive(x_713)) { + lean_ctor_release(x_713, 0); + lean_ctor_release(x_713, 1); + lean_ctor_release(x_713, 2); + x_741 = x_713; } else { - lean_dec_ref(x_628); - x_656 = lean_box(0); + lean_dec_ref(x_713); + x_741 = lean_box(0); } -x_657 = lean_ctor_get(x_626, 0); -x_658 = lean_ctor_get(x_626, 1); -x_659 = lean_ctor_get(x_626, 2); -x_660 = lean_nat_add(x_644, x_646); -lean_inc_ref(x_643); -if (lean_is_scalar(x_656)) { - x_661 = lean_alloc_ctor(0, 3, 0); +x_742 = lean_ctor_get(x_711, 0); +x_743 = lean_ctor_get(x_711, 1); +x_744 = lean_ctor_get(x_711, 2); +x_745 = lean_nat_add(x_729, x_731); +lean_inc_ref(x_728); +if (lean_is_scalar(x_741)) { + x_746 = lean_alloc_ctor(0, 3, 0); } else { - x_661 = x_656; + x_746 = x_741; } -lean_ctor_set(x_661, 0, x_643); -lean_ctor_set(x_661, 1, x_660); -lean_ctor_set(x_661, 2, x_645); -x_662 = lean_nat_dec_lt(x_658, x_659); -if (x_662 == 0) +lean_ctor_set(x_746, 0, x_728); +lean_ctor_set(x_746, 1, x_745); +lean_ctor_set(x_746, 2, x_730); +x_747 = lean_nat_dec_lt(x_743, x_744); +if (x_747 == 0) { -lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; -lean_dec(x_644); -lean_dec_ref(x_643); -lean_dec(x_633); -lean_dec_ref(x_632); +lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; +lean_dec(x_729); +lean_dec_ref(x_728); +lean_dec(x_718); +lean_dec_ref(x_717); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -23475,81 +25684,80 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_631)) { - x_663 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_716)) { + x_748 = lean_alloc_ctor(0, 2, 0); } else { - x_663 = x_631; + x_748 = x_716; } -lean_ctor_set(x_663, 0, x_648); -lean_ctor_set(x_663, 1, x_630); -if (lean_is_scalar(x_629)) { - x_664 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_748, 0, x_733); +lean_ctor_set(x_748, 1, x_715); +if (lean_is_scalar(x_714)) { + x_749 = lean_alloc_ctor(0, 2, 0); } else { - x_664 = x_629; + x_749 = x_714; } -lean_ctor_set(x_664, 0, x_661); -lean_ctor_set(x_664, 1, x_663); -if (lean_is_scalar(x_627)) { - x_665 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_749, 0, x_746); +lean_ctor_set(x_749, 1, x_748); +if (lean_is_scalar(x_712)) { + x_750 = lean_alloc_ctor(0, 2, 0); } else { - x_665 = x_627; + x_750 = x_712; } -lean_ctor_set(x_665, 0, x_626); -lean_ctor_set(x_665, 1, x_664); -if (lean_is_scalar(x_625)) { - x_666 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_750, 0, x_711); +lean_ctor_set(x_750, 1, x_749); +if (lean_is_scalar(x_710)) { + x_751 = lean_alloc_ctor(0, 2, 0); } else { - x_666 = x_625; + x_751 = x_710; } -lean_ctor_set(x_666, 0, x_624); -lean_ctor_set(x_666, 1, x_665); -x_667 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_667, 0, x_623); -lean_ctor_set(x_667, 1, x_666); -x_668 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_668, 0, x_667); -return x_668; +lean_ctor_set(x_751, 0, x_709); +lean_ctor_set(x_751, 1, x_750); +x_752 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_752, 0, x_708); +lean_ctor_set(x_752, 1, x_751); +x_753 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_753, 0, x_752); +return x_753; } else { -lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; uint8_t x_675; -lean_inc(x_659); -lean_inc(x_658); -lean_inc_ref(x_657); -if (lean_is_exclusive(x_626)) { - lean_ctor_release(x_626, 0); - lean_ctor_release(x_626, 1); - lean_ctor_release(x_626, 2); - x_669 = x_626; +lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; uint8_t x_760; +lean_inc(x_744); +lean_inc(x_743); +lean_inc_ref(x_742); +if (lean_is_exclusive(x_711)) { + lean_ctor_release(x_711, 0); + lean_ctor_release(x_711, 1); + lean_ctor_release(x_711, 2); + x_754 = x_711; } else { - lean_dec_ref(x_626); - x_669 = lean_box(0); + lean_dec_ref(x_711); + x_754 = lean_box(0); } -x_670 = lean_ctor_get(x_624, 0); -x_671 = lean_ctor_get(x_624, 1); -x_672 = lean_ctor_get(x_624, 2); -x_673 = lean_nat_add(x_658, x_646); -lean_inc_ref(x_657); -if (lean_is_scalar(x_669)) { - x_674 = lean_alloc_ctor(0, 3, 0); +x_755 = lean_ctor_get(x_709, 0); +x_756 = lean_ctor_get(x_709, 1); +x_757 = lean_ctor_get(x_709, 2); +x_758 = lean_nat_add(x_743, x_731); +lean_inc_ref(x_742); +if (lean_is_scalar(x_754)) { + x_759 = lean_alloc_ctor(0, 3, 0); } else { - x_674 = x_669; + x_759 = x_754; } -lean_ctor_set(x_674, 0, x_657); -lean_ctor_set(x_674, 1, x_673); -lean_ctor_set(x_674, 2, x_659); -x_675 = lean_nat_dec_lt(x_671, x_672); -if (x_675 == 0) +lean_ctor_set(x_759, 0, x_742); +lean_ctor_set(x_759, 1, x_758); +lean_ctor_set(x_759, 2, x_744); +x_760 = lean_nat_dec_lt(x_756, x_757); +if (x_760 == 0) { -lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; -lean_dec(x_658); -lean_dec_ref(x_657); -lean_dec(x_644); -lean_dec_ref(x_643); -lean_dec(x_633); -lean_dec_ref(x_632); +lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; +lean_dec(x_743); +lean_dec_ref(x_742); +lean_dec(x_729); +lean_dec_ref(x_728); +lean_dec(x_718); +lean_dec_ref(x_717); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -23557,83 +25765,82 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_631)) { - x_676 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_716)) { + x_761 = lean_alloc_ctor(0, 2, 0); } else { - x_676 = x_631; + x_761 = x_716; } -lean_ctor_set(x_676, 0, x_648); -lean_ctor_set(x_676, 1, x_630); -if (lean_is_scalar(x_629)) { - x_677 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_761, 0, x_733); +lean_ctor_set(x_761, 1, x_715); +if (lean_is_scalar(x_714)) { + x_762 = lean_alloc_ctor(0, 2, 0); } else { - x_677 = x_629; + x_762 = x_714; } -lean_ctor_set(x_677, 0, x_661); -lean_ctor_set(x_677, 1, x_676); -if (lean_is_scalar(x_627)) { - x_678 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_762, 0, x_746); +lean_ctor_set(x_762, 1, x_761); +if (lean_is_scalar(x_712)) { + x_763 = lean_alloc_ctor(0, 2, 0); } else { - x_678 = x_627; + x_763 = x_712; } -lean_ctor_set(x_678, 0, x_674); -lean_ctor_set(x_678, 1, x_677); -if (lean_is_scalar(x_625)) { - x_679 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_763, 0, x_759); +lean_ctor_set(x_763, 1, x_762); +if (lean_is_scalar(x_710)) { + x_764 = lean_alloc_ctor(0, 2, 0); } else { - x_679 = x_625; + x_764 = x_710; } -lean_ctor_set(x_679, 0, x_624); -lean_ctor_set(x_679, 1, x_678); -x_680 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_680, 0, x_623); -lean_ctor_set(x_680, 1, x_679); -x_681 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_681, 0, x_680); -return x_681; +lean_ctor_set(x_764, 0, x_709); +lean_ctor_set(x_764, 1, x_763); +x_765 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_765, 0, x_708); +lean_ctor_set(x_765, 1, x_764); +x_766 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_766, 0, x_765); +return x_766; } else { -lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; uint8_t x_688; -lean_inc(x_672); -lean_inc(x_671); -lean_inc_ref(x_670); -if (lean_is_exclusive(x_624)) { - lean_ctor_release(x_624, 0); - lean_ctor_release(x_624, 1); - lean_ctor_release(x_624, 2); - x_682 = x_624; +lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; uint8_t x_773; +lean_inc(x_757); +lean_inc(x_756); +lean_inc_ref(x_755); +if (lean_is_exclusive(x_709)) { + lean_ctor_release(x_709, 0); + lean_ctor_release(x_709, 1); + lean_ctor_release(x_709, 2); + x_767 = x_709; } else { - lean_dec_ref(x_624); - x_682 = lean_box(0); + lean_dec_ref(x_709); + x_767 = lean_box(0); } -x_683 = lean_ctor_get(x_623, 0); -x_684 = lean_ctor_get(x_623, 1); -x_685 = lean_ctor_get(x_623, 2); -x_686 = lean_nat_add(x_671, x_646); -lean_inc_ref(x_670); -if (lean_is_scalar(x_682)) { - x_687 = lean_alloc_ctor(0, 3, 0); +x_768 = lean_ctor_get(x_708, 0); +x_769 = lean_ctor_get(x_708, 1); +x_770 = lean_ctor_get(x_708, 2); +x_771 = lean_nat_add(x_756, x_731); +lean_inc_ref(x_755); +if (lean_is_scalar(x_767)) { + x_772 = lean_alloc_ctor(0, 3, 0); } else { - x_687 = x_682; + x_772 = x_767; } -lean_ctor_set(x_687, 0, x_670); -lean_ctor_set(x_687, 1, x_686); -lean_ctor_set(x_687, 2, x_672); -x_688 = lean_nat_dec_lt(x_684, x_685); -if (x_688 == 0) +lean_ctor_set(x_772, 0, x_755); +lean_ctor_set(x_772, 1, x_771); +lean_ctor_set(x_772, 2, x_757); +x_773 = lean_nat_dec_lt(x_769, x_770); +if (x_773 == 0) { -lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; -lean_dec(x_671); -lean_dec_ref(x_670); -lean_dec(x_658); -lean_dec_ref(x_657); -lean_dec(x_644); -lean_dec_ref(x_643); -lean_dec(x_633); -lean_dec_ref(x_632); +lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; +lean_dec(x_756); +lean_dec_ref(x_755); +lean_dec(x_743); +lean_dec_ref(x_742); +lean_dec(x_729); +lean_dec_ref(x_728); +lean_dec(x_718); +lean_dec_ref(x_717); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -23641,243 +25848,5431 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_631)) { - x_689 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_716)) { + x_774 = lean_alloc_ctor(0, 2, 0); } else { - x_689 = x_631; + x_774 = x_716; } -lean_ctor_set(x_689, 0, x_648); -lean_ctor_set(x_689, 1, x_630); -if (lean_is_scalar(x_629)) { - x_690 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_774, 0, x_733); +lean_ctor_set(x_774, 1, x_715); +if (lean_is_scalar(x_714)) { + x_775 = lean_alloc_ctor(0, 2, 0); } else { - x_690 = x_629; + x_775 = x_714; } -lean_ctor_set(x_690, 0, x_661); -lean_ctor_set(x_690, 1, x_689); -if (lean_is_scalar(x_627)) { - x_691 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_775, 0, x_746); +lean_ctor_set(x_775, 1, x_774); +if (lean_is_scalar(x_712)) { + x_776 = lean_alloc_ctor(0, 2, 0); } else { - x_691 = x_627; + x_776 = x_712; } -lean_ctor_set(x_691, 0, x_674); -lean_ctor_set(x_691, 1, x_690); -if (lean_is_scalar(x_625)) { - x_692 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_776, 0, x_759); +lean_ctor_set(x_776, 1, x_775); +if (lean_is_scalar(x_710)) { + x_777 = lean_alloc_ctor(0, 2, 0); } else { - x_692 = x_625; + x_777 = x_710; } -lean_ctor_set(x_692, 0, x_687); -lean_ctor_set(x_692, 1, x_691); -x_693 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_693, 0, x_623); -lean_ctor_set(x_693, 1, x_692); -x_694 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_694, 0, x_693); -return x_694; +lean_ctor_set(x_777, 0, x_772); +lean_ctor_set(x_777, 1, x_776); +x_778 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_778, 0, x_708); +lean_ctor_set(x_778, 1, x_777); +x_779 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_779, 0, x_778); +return x_779; } else { -lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; -lean_inc(x_685); -lean_inc(x_684); -lean_inc_ref(x_683); -if (lean_is_exclusive(x_623)) { - lean_ctor_release(x_623, 0); - lean_ctor_release(x_623, 1); - lean_ctor_release(x_623, 2); - x_695 = x_623; +lean_object* x_780; lean_object* x_781; lean_object* x_782; uint8_t x_783; uint8_t x_784; +lean_inc(x_770); +lean_inc(x_769); +lean_inc_ref(x_768); +if (lean_is_exclusive(x_708)) { + lean_ctor_release(x_708, 0); + lean_ctor_release(x_708, 1); + lean_ctor_release(x_708, 2); + x_780 = x_708; } else { - lean_dec_ref(x_623); - x_695 = lean_box(0); + lean_dec_ref(x_708); + x_780 = lean_box(0); } -x_696 = lean_array_fget(x_632, x_633); -lean_dec(x_633); -lean_dec_ref(x_632); -x_697 = lean_array_fget(x_643, x_644); -lean_dec(x_644); -lean_dec_ref(x_643); -x_698 = lean_array_fget(x_657, x_658); -lean_dec(x_658); -lean_dec_ref(x_657); -x_699 = lean_array_fget(x_670, x_671); -lean_dec(x_671); -lean_dec_ref(x_670); -x_700 = lean_array_fget_borrowed(x_683, x_684); -x_701 = lean_box(x_2); -x_702 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_700); -lean_inc(x_9); -lean_inc_ref(x_1); -x_703 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_703, 0, x_696); -lean_closure_set(x_703, 1, x_1); -lean_closure_set(x_703, 2, x_9); -lean_closure_set(x_703, 3, x_701); -lean_closure_set(x_703, 4, x_702); -lean_closure_set(x_703, 5, x_700); -lean_closure_set(x_703, 6, x_4); -lean_closure_set(x_703, 7, x_5); -lean_closure_set(x_703, 8, x_698); -lean_closure_set(x_703, 9, x_6); -lean_closure_set(x_703, 10, x_646); -x_704 = lean_nat_sub(x_699, x_5); -lean_dec(x_699); +x_781 = lean_array_fget(x_755, x_756); +lean_dec(x_756); +lean_dec_ref(x_755); +x_782 = lean_ctor_get(x_781, 1); +x_783 = lean_ctor_get_uint8(x_781, sizeof(void*)*2); +x_784 = lean_nat_dec_eq(x_782, x_1); +if (x_784 == 0) +{ +lean_object* x_785; lean_object* x_786; +lean_dec_ref(x_781); +lean_dec(x_780); +lean_dec_ref(x_772); +lean_dec(x_770); +lean_dec(x_769); +lean_dec_ref(x_768); +lean_dec_ref(x_759); +lean_dec_ref(x_746); +lean_dec(x_743); +lean_dec_ref(x_742); +lean_dec_ref(x_733); +lean_dec(x_729); +lean_dec_ref(x_728); +lean_dec(x_718); +lean_dec_ref(x_717); +lean_dec(x_716); +lean_dec(x_715); +lean_dec(x_714); +lean_dec(x_712); +lean_dec(x_710); +x_785 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_705 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(x_697, x_704, x_6, x_703, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_705) == 0) +x_786 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_785, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_786) == 0) { -lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; uint8_t x_717; -x_706 = lean_ctor_get(x_705, 0); -lean_inc(x_706); -if (lean_is_exclusive(x_705)) { - lean_ctor_release(x_705, 0); - x_707 = x_705; +lean_object* x_787; lean_object* x_788; +x_787 = lean_ctor_get(x_786, 0); +lean_inc(x_787); +if (lean_is_exclusive(x_786)) { + lean_ctor_release(x_786, 0); + x_788 = x_786; } else { - lean_dec_ref(x_705); - x_707 = lean_box(0); + lean_dec_ref(x_786); + x_788 = lean_box(0); } -x_708 = lean_nat_add(x_684, x_646); -lean_dec(x_684); -if (lean_is_scalar(x_695)) { - x_709 = lean_alloc_ctor(0, 3, 0); -} else { - x_709 = x_695; -} -lean_ctor_set(x_709, 0, x_683); -lean_ctor_set(x_709, 1, x_708); -lean_ctor_set(x_709, 2, x_685); -x_710 = lean_array_push(x_630, x_706); -if (lean_is_scalar(x_631)) { - x_711 = lean_alloc_ctor(0, 2, 0); -} else { - x_711 = x_631; -} -lean_ctor_set(x_711, 0, x_648); -lean_ctor_set(x_711, 1, x_710); -if (lean_is_scalar(x_629)) { - x_712 = lean_alloc_ctor(0, 2, 0); -} else { - x_712 = x_629; -} -lean_ctor_set(x_712, 0, x_661); -lean_ctor_set(x_712, 1, x_711); -if (lean_is_scalar(x_627)) { - x_713 = lean_alloc_ctor(0, 2, 0); -} else { - x_713 = x_627; -} -lean_ctor_set(x_713, 0, x_674); -lean_ctor_set(x_713, 1, x_712); -if (lean_is_scalar(x_625)) { - x_714 = lean_alloc_ctor(0, 2, 0); -} else { - x_714 = x_625; -} -lean_ctor_set(x_714, 0, x_687); -lean_ctor_set(x_714, 1, x_713); -x_715 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_715, 0, x_709); -lean_ctor_set(x_715, 1, x_714); -x_716 = lean_nat_add(x_9, x_646); +if (lean_obj_tag(x_787) == 0) +{ +lean_object* x_789; lean_object* x_790; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); lean_dec(x_9); -x_717 = lean_nat_dec_lt(x_716, x_7); -if (x_717 == 0) +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_789 = lean_ctor_get(x_787, 0); +lean_inc(x_789); +lean_dec_ref(x_787); +if (lean_is_scalar(x_788)) { + x_790 = lean_alloc_ctor(0, 1, 0); +} else { + x_790 = x_788; +} +lean_ctor_set(x_790, 0, x_789); +return x_790; +} +else { -lean_object* x_718; +lean_object* x_791; +lean_dec(x_788); +x_791 = lean_ctor_get(x_787, 0); +lean_inc(x_791); +lean_dec_ref(x_787); +x_15 = x_791; +x_16 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_792; lean_object* x_793; lean_object* x_794; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_792 = lean_ctor_get(x_786, 0); +lean_inc(x_792); +if (lean_is_exclusive(x_786)) { + lean_ctor_release(x_786, 0); + x_793 = x_786; +} else { + lean_dec_ref(x_786); + x_793 = lean_box(0); +} +if (lean_is_scalar(x_793)) { + x_794 = lean_alloc_ctor(1, 1, 0); +} else { + x_794 = x_793; +} +lean_ctor_set(x_794, 0, x_792); +return x_794; +} +} +else +{ +lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; +x_795 = lean_array_fget(x_717, x_718); +lean_dec(x_718); +lean_dec_ref(x_717); +x_796 = lean_array_fget(x_728, x_729); +lean_dec(x_729); +lean_dec_ref(x_728); +x_797 = lean_array_fget(x_742, x_743); +lean_dec(x_743); +lean_dec_ref(x_742); +x_798 = lean_array_fget_borrowed(x_768, x_769); +x_799 = lean_box(x_3); +x_800 = lean_box(x_4); +x_801 = lean_box(x_783); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_798); +lean_inc(x_9); +lean_inc_ref(x_2); +x_802 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_802, 0, x_797); +lean_closure_set(x_802, 1, x_795); +lean_closure_set(x_802, 2, x_2); +lean_closure_set(x_802, 3, x_9); +lean_closure_set(x_802, 4, x_799); +lean_closure_set(x_802, 5, x_800); +lean_closure_set(x_802, 6, x_798); +lean_closure_set(x_802, 7, x_5); +lean_closure_set(x_802, 8, x_6); +lean_closure_set(x_802, 9, x_801); +lean_closure_set(x_802, 10, x_731); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_803 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_796, x_781, x_802, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_803) == 0) +{ +lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; +x_804 = lean_ctor_get(x_803, 0); +lean_inc(x_804); +lean_dec_ref(x_803); +x_805 = lean_nat_add(x_769, x_731); +lean_dec(x_769); +if (lean_is_scalar(x_780)) { + x_806 = lean_alloc_ctor(0, 3, 0); +} else { + x_806 = x_780; +} +lean_ctor_set(x_806, 0, x_768); +lean_ctor_set(x_806, 1, x_805); +lean_ctor_set(x_806, 2, x_770); +x_807 = lean_array_push(x_715, x_804); +if (lean_is_scalar(x_716)) { + x_808 = lean_alloc_ctor(0, 2, 0); +} else { + x_808 = x_716; +} +lean_ctor_set(x_808, 0, x_733); +lean_ctor_set(x_808, 1, x_807); +if (lean_is_scalar(x_714)) { + x_809 = lean_alloc_ctor(0, 2, 0); +} else { + x_809 = x_714; +} +lean_ctor_set(x_809, 0, x_746); +lean_ctor_set(x_809, 1, x_808); +if (lean_is_scalar(x_712)) { + x_810 = lean_alloc_ctor(0, 2, 0); +} else { + x_810 = x_712; +} +lean_ctor_set(x_810, 0, x_759); +lean_ctor_set(x_810, 1, x_809); +if (lean_is_scalar(x_710)) { + x_811 = lean_alloc_ctor(0, 2, 0); +} else { + x_811 = x_710; +} +lean_ctor_set(x_811, 0, x_772); +lean_ctor_set(x_811, 1, x_810); +x_812 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_812, 0, x_806); +lean_ctor_set(x_812, 1, x_811); +x_15 = x_812; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_813; lean_object* x_814; lean_object* x_815; +lean_dec(x_780); +lean_dec_ref(x_772); +lean_dec(x_770); +lean_dec(x_769); +lean_dec_ref(x_768); +lean_dec_ref(x_759); +lean_dec_ref(x_746); +lean_dec_ref(x_733); lean_dec(x_716); +lean_dec(x_715); +lean_dec(x_714); +lean_dec(x_712); +lean_dec(x_710); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_813 = lean_ctor_get(x_803, 0); +lean_inc(x_813); +if (lean_is_exclusive(x_803)) { + lean_ctor_release(x_803, 0); + x_814 = x_803; +} else { + lean_dec_ref(x_803); + x_814 = lean_box(0); +} +if (lean_is_scalar(x_814)) { + x_815 = lean_alloc_ctor(1, 1, 0); +} else { + x_815 = x_814; +} +lean_ctor_set(x_815, 0, x_813); +return x_815; +} +} +} +} +} +} +} +} +block_22: +{ +lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_17 = lean_unsigned_to_nat(1u); +x_18 = lean_nat_add(x_9, x_17); +lean_dec(x_9); +x_19 = lean_nat_dec_lt(x_18, x_7); +if (x_19 == 0) +{ +lean_object* x_20; +lean_dec(x_18); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_707)) { - x_718 = lean_alloc_ctor(0, 1, 0); -} else { - x_718 = x_707; -} -lean_ctor_set(x_718, 0, x_715); -return x_718; +lean_dec_ref(x_2); +x_20 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_20, 0, x_15); +return x_20; } else { -lean_dec(x_707); -x_8 = x_715; -x_9 = x_716; +x_8 = x_15; +x_9 = x_18; goto _start; } } -else -{ -lean_object* x_720; lean_object* x_721; lean_object* x_722; -lean_dec(x_695); -lean_dec_ref(x_687); -lean_dec(x_685); -lean_dec(x_684); -lean_dec_ref(x_683); -lean_dec_ref(x_674); -lean_dec_ref(x_661); -lean_dec_ref(x_648); -lean_dec(x_631); -lean_dec(x_630); -lean_dec(x_629); -lean_dec(x_627); -lean_dec(x_625); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_720 = lean_ctor_get(x_705, 0); -lean_inc(x_720); -if (lean_is_exclusive(x_705)) { - lean_ctor_release(x_705, 0); - x_721 = x_705; -} else { - lean_dec_ref(x_705); - x_721 = lean_box(0); -} -if (lean_is_scalar(x_721)) { - x_722 = lean_alloc_ctor(1, 1, 0); -} else { - x_722 = x_721; -} -lean_ctor_set(x_722, 0, x_720); -return x_722; } } -} -} -} -} -} -} -} -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { _start: { lean_object* x_21; -x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_12, x_13, x_16, x_17, x_18, x_19); +x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_12, x_13, x_16, x_17, x_18, x_19); return x_21; } } -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_16; lean_object* x_17; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_24 = lean_ctor_get(x_9, 1); +lean_inc(x_24); +x_25 = lean_ctor_get(x_24, 1); +lean_inc(x_25); +x_26 = lean_ctor_get(x_25, 1); +lean_inc(x_26); +x_27 = lean_ctor_get(x_26, 1); +lean_inc(x_27); +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +x_29 = !lean_is_exclusive(x_9); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; uint8_t x_32; +x_30 = lean_ctor_get(x_9, 0); +x_31 = lean_ctor_get(x_9, 1); +lean_dec(x_31); +x_32 = !lean_is_exclusive(x_24); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; uint8_t x_35; +x_33 = lean_ctor_get(x_24, 0); +x_34 = lean_ctor_get(x_24, 1); +lean_dec(x_34); +x_35 = !lean_is_exclusive(x_25); +if (x_35 == 0) +{ +lean_object* x_36; lean_object* x_37; uint8_t x_38; +x_36 = lean_ctor_get(x_25, 0); +x_37 = lean_ctor_get(x_25, 1); +lean_dec(x_37); +x_38 = !lean_is_exclusive(x_26); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; uint8_t x_41; +x_39 = lean_ctor_get(x_26, 0); +x_40 = lean_ctor_get(x_26, 1); +lean_dec(x_40); +x_41 = !lean_is_exclusive(x_27); +if (x_41 == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; +x_42 = lean_ctor_get(x_27, 1); +x_43 = lean_ctor_get(x_27, 0); +lean_dec(x_43); +x_44 = lean_ctor_get(x_28, 0); +x_45 = lean_ctor_get(x_28, 1); +x_46 = lean_ctor_get(x_28, 2); +x_47 = lean_nat_dec_lt(x_45, x_46); +if (x_47 == 0) +{ +lean_object* x_48; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_48 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_48, 0, x_9); +return x_48; +} +else +{ +uint8_t x_49; +lean_inc(x_46); +lean_inc(x_45); +lean_inc_ref(x_44); +x_49 = !lean_is_exclusive(x_28); +if (x_49 == 0) +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; uint8_t x_58; +x_50 = lean_ctor_get(x_28, 2); +lean_dec(x_50); +x_51 = lean_ctor_get(x_28, 1); +lean_dec(x_51); +x_52 = lean_ctor_get(x_28, 0); +lean_dec(x_52); +x_53 = lean_ctor_get(x_39, 0); +x_54 = lean_ctor_get(x_39, 1); +x_55 = lean_ctor_get(x_39, 2); +x_56 = lean_unsigned_to_nat(1u); +x_57 = lean_nat_add(x_45, x_56); +lean_inc_ref(x_44); +lean_ctor_set(x_28, 1, x_57); +x_58 = lean_nat_dec_lt(x_54, x_55); +if (x_58 == 0) +{ +lean_object* x_59; +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_59 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_59, 0, x_9); +return x_59; +} +else +{ +uint8_t x_60; +lean_inc(x_55); +lean_inc(x_54); +lean_inc_ref(x_53); +x_60 = !lean_is_exclusive(x_39); +if (x_60 == 0) +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; +x_61 = lean_ctor_get(x_39, 2); +lean_dec(x_61); +x_62 = lean_ctor_get(x_39, 1); +lean_dec(x_62); +x_63 = lean_ctor_get(x_39, 0); +lean_dec(x_63); +x_64 = lean_ctor_get(x_36, 0); +x_65 = lean_ctor_get(x_36, 1); +x_66 = lean_ctor_get(x_36, 2); +x_67 = lean_nat_add(x_54, x_56); +lean_inc_ref(x_53); +lean_ctor_set(x_39, 1, x_67); +x_68 = lean_nat_dec_lt(x_65, x_66); +if (x_68 == 0) +{ +lean_object* x_69; +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_69 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_69, 0, x_9); +return x_69; +} +else +{ +uint8_t x_70; +lean_inc(x_66); +lean_inc(x_65); +lean_inc_ref(x_64); +x_70 = !lean_is_exclusive(x_36); +if (x_70 == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t x_78; +x_71 = lean_ctor_get(x_36, 2); +lean_dec(x_71); +x_72 = lean_ctor_get(x_36, 1); +lean_dec(x_72); +x_73 = lean_ctor_get(x_36, 0); +lean_dec(x_73); +x_74 = lean_ctor_get(x_33, 0); +x_75 = lean_ctor_get(x_33, 1); +x_76 = lean_ctor_get(x_33, 2); +x_77 = lean_nat_add(x_65, x_56); +lean_inc_ref(x_64); +lean_ctor_set(x_36, 1, x_77); +x_78 = lean_nat_dec_lt(x_75, x_76); +if (x_78 == 0) +{ +lean_object* x_79; +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_79 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_79, 0, x_9); +return x_79; +} +else +{ +uint8_t x_80; +lean_inc(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +x_80 = !lean_is_exclusive(x_33); +if (x_80 == 0) +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; uint8_t x_88; +x_81 = lean_ctor_get(x_33, 2); +lean_dec(x_81); +x_82 = lean_ctor_get(x_33, 1); +lean_dec(x_82); +x_83 = lean_ctor_get(x_33, 0); +lean_dec(x_83); +x_84 = lean_ctor_get(x_30, 0); +x_85 = lean_ctor_get(x_30, 1); +x_86 = lean_ctor_get(x_30, 2); +x_87 = lean_nat_add(x_75, x_56); +lean_inc_ref(x_74); +lean_ctor_set(x_33, 1, x_87); +x_88 = lean_nat_dec_lt(x_85, x_86); +if (x_88 == 0) +{ +lean_object* x_89; +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_89 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_89, 0, x_9); +return x_89; +} +else +{ +uint8_t x_90; +lean_inc(x_86); +lean_inc(x_85); +lean_inc_ref(x_84); +x_90 = !lean_is_exclusive(x_30); +if (x_90 == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; uint8_t x_96; uint8_t x_97; +x_91 = lean_ctor_get(x_30, 2); +lean_dec(x_91); +x_92 = lean_ctor_get(x_30, 1); +lean_dec(x_92); +x_93 = lean_ctor_get(x_30, 0); +lean_dec(x_93); +x_94 = lean_array_fget(x_74, x_75); +lean_dec(x_75); +lean_dec_ref(x_74); +x_95 = lean_ctor_get(x_94, 1); +x_96 = lean_ctor_get_uint8(x_94, sizeof(void*)*2); +x_97 = lean_nat_dec_eq(x_95, x_1); +if (x_97 == 0) +{ +lean_object* x_98; lean_object* x_99; +lean_dec_ref(x_94); +lean_free_object(x_30); +lean_dec_ref(x_33); +lean_dec(x_86); +lean_dec(x_85); +lean_dec_ref(x_84); +lean_dec_ref(x_36); +lean_dec_ref(x_39); +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_28); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_98 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_99 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_98, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_99) == 0) +{ +uint8_t x_100; +x_100 = !lean_is_exclusive(x_99); +if (x_100 == 0) +{ +lean_object* x_101; +x_101 = lean_ctor_get(x_99, 0); +if (lean_obj_tag(x_101) == 0) +{ +lean_object* x_102; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_102 = lean_ctor_get(x_101, 0); +lean_inc(x_102); +lean_dec_ref(x_101); +lean_ctor_set(x_99, 0, x_102); +return x_99; +} +else +{ +lean_object* x_103; +lean_free_object(x_99); +x_103 = lean_ctor_get(x_101, 0); +lean_inc(x_103); +lean_dec_ref(x_101); +x_16 = x_103; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_104; +x_104 = lean_ctor_get(x_99, 0); +lean_inc(x_104); +lean_dec(x_99); +if (lean_obj_tag(x_104) == 0) +{ +lean_object* x_105; lean_object* x_106; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_105 = lean_ctor_get(x_104, 0); +lean_inc(x_105); +lean_dec_ref(x_104); +x_106 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_106, 0, x_105); +return x_106; +} +else +{ +lean_object* x_107; +x_107 = lean_ctor_get(x_104, 0); +lean_inc(x_107); +lean_dec_ref(x_104); +x_16 = x_107; +x_17 = lean_box(0); +goto block_23; +} +} +} +else +{ +uint8_t x_108; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_108 = !lean_is_exclusive(x_99); +if (x_108 == 0) +{ +return x_99; +} +else +{ +lean_object* x_109; lean_object* x_110; +x_109 = lean_ctor_get(x_99, 0); +lean_inc(x_109); +lean_dec(x_99); +x_110 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_110, 0, x_109); +return x_110; +} +} +} +else +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_111 = lean_array_fget(x_44, x_45); +lean_dec(x_45); +lean_dec_ref(x_44); +x_112 = lean_array_fget(x_53, x_54); +lean_dec(x_54); +lean_dec_ref(x_53); +x_113 = lean_array_fget(x_64, x_65); +lean_dec(x_65); +lean_dec_ref(x_64); +x_114 = lean_array_fget_borrowed(x_84, x_85); +x_115 = lean_box(x_3); +x_116 = lean_box(x_4); +x_117 = lean_box(x_96); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_114); +lean_inc(x_10); +lean_inc_ref(x_2); +x_118 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_118, 0, x_113); +lean_closure_set(x_118, 1, x_111); +lean_closure_set(x_118, 2, x_2); +lean_closure_set(x_118, 3, x_10); +lean_closure_set(x_118, 4, x_115); +lean_closure_set(x_118, 5, x_116); +lean_closure_set(x_118, 6, x_114); +lean_closure_set(x_118, 7, x_5); +lean_closure_set(x_118, 8, x_6); +lean_closure_set(x_118, 9, x_117); +lean_closure_set(x_118, 10, x_56); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_119 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_112, x_94, x_118, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_119) == 0) +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_120 = lean_ctor_get(x_119, 0); +lean_inc(x_120); +lean_dec_ref(x_119); +x_121 = lean_nat_add(x_85, x_56); +lean_dec(x_85); +lean_ctor_set(x_30, 1, x_121); +x_122 = lean_array_push(x_42, x_120); +lean_ctor_set(x_27, 1, x_122); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +uint8_t x_123; +lean_free_object(x_30); +lean_dec_ref(x_33); +lean_dec(x_86); +lean_dec(x_85); +lean_dec_ref(x_84); +lean_dec_ref(x_36); +lean_dec_ref(x_39); +lean_dec_ref(x_28); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_123 = !lean_is_exclusive(x_119); +if (x_123 == 0) +{ +return x_119; +} +else +{ +lean_object* x_124; lean_object* x_125; +x_124 = lean_ctor_get(x_119, 0); +lean_inc(x_124); +lean_dec(x_119); +x_125 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_125, 0, x_124); +return x_125; +} +} +} +} +else +{ +lean_object* x_126; lean_object* x_127; uint8_t x_128; uint8_t x_129; +lean_dec(x_30); +x_126 = lean_array_fget(x_74, x_75); +lean_dec(x_75); +lean_dec_ref(x_74); +x_127 = lean_ctor_get(x_126, 1); +x_128 = lean_ctor_get_uint8(x_126, sizeof(void*)*2); +x_129 = lean_nat_dec_eq(x_127, x_1); +if (x_129 == 0) +{ +lean_object* x_130; lean_object* x_131; +lean_dec_ref(x_126); +lean_dec_ref(x_33); +lean_dec(x_86); +lean_dec(x_85); +lean_dec_ref(x_84); +lean_dec_ref(x_36); +lean_dec_ref(x_39); +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_28); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_130 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_131 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_130, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_131) == 0) +{ +lean_object* x_132; lean_object* x_133; +x_132 = lean_ctor_get(x_131, 0); +lean_inc(x_132); +if (lean_is_exclusive(x_131)) { + lean_ctor_release(x_131, 0); + x_133 = x_131; +} else { + lean_dec_ref(x_131); + x_133 = lean_box(0); +} +if (lean_obj_tag(x_132) == 0) +{ +lean_object* x_134; lean_object* x_135; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_134 = lean_ctor_get(x_132, 0); +lean_inc(x_134); +lean_dec_ref(x_132); +if (lean_is_scalar(x_133)) { + x_135 = lean_alloc_ctor(0, 1, 0); +} else { + x_135 = x_133; +} +lean_ctor_set(x_135, 0, x_134); +return x_135; +} +else +{ +lean_object* x_136; +lean_dec(x_133); +x_136 = lean_ctor_get(x_132, 0); +lean_inc(x_136); +lean_dec_ref(x_132); +x_16 = x_136; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_137; lean_object* x_138; lean_object* x_139; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_137 = lean_ctor_get(x_131, 0); +lean_inc(x_137); +if (lean_is_exclusive(x_131)) { + lean_ctor_release(x_131, 0); + x_138 = x_131; +} else { + lean_dec_ref(x_131); + x_138 = lean_box(0); +} +if (lean_is_scalar(x_138)) { + x_139 = lean_alloc_ctor(1, 1, 0); +} else { + x_139 = x_138; +} +lean_ctor_set(x_139, 0, x_137); +return x_139; +} +} +else +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; +x_140 = lean_array_fget(x_44, x_45); +lean_dec(x_45); +lean_dec_ref(x_44); +x_141 = lean_array_fget(x_53, x_54); +lean_dec(x_54); +lean_dec_ref(x_53); +x_142 = lean_array_fget(x_64, x_65); +lean_dec(x_65); +lean_dec_ref(x_64); +x_143 = lean_array_fget_borrowed(x_84, x_85); +x_144 = lean_box(x_3); +x_145 = lean_box(x_4); +x_146 = lean_box(x_128); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_143); +lean_inc(x_10); +lean_inc_ref(x_2); +x_147 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_147, 0, x_142); +lean_closure_set(x_147, 1, x_140); +lean_closure_set(x_147, 2, x_2); +lean_closure_set(x_147, 3, x_10); +lean_closure_set(x_147, 4, x_144); +lean_closure_set(x_147, 5, x_145); +lean_closure_set(x_147, 6, x_143); +lean_closure_set(x_147, 7, x_5); +lean_closure_set(x_147, 8, x_6); +lean_closure_set(x_147, 9, x_146); +lean_closure_set(x_147, 10, x_56); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_148 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_141, x_126, x_147, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_148) == 0) +{ +lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; +x_149 = lean_ctor_get(x_148, 0); +lean_inc(x_149); +lean_dec_ref(x_148); +x_150 = lean_nat_add(x_85, x_56); +lean_dec(x_85); +x_151 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_151, 0, x_84); +lean_ctor_set(x_151, 1, x_150); +lean_ctor_set(x_151, 2, x_86); +x_152 = lean_array_push(x_42, x_149); +lean_ctor_set(x_27, 1, x_152); +lean_ctor_set(x_9, 0, x_151); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; +lean_dec_ref(x_33); +lean_dec(x_86); +lean_dec(x_85); +lean_dec_ref(x_84); +lean_dec_ref(x_36); +lean_dec_ref(x_39); +lean_dec_ref(x_28); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_153 = lean_ctor_get(x_148, 0); +lean_inc(x_153); +if (lean_is_exclusive(x_148)) { + lean_ctor_release(x_148, 0); + x_154 = x_148; +} else { + lean_dec_ref(x_148); + x_154 = lean_box(0); +} +if (lean_is_scalar(x_154)) { + x_155 = lean_alloc_ctor(1, 1, 0); +} else { + x_155 = x_154; +} +lean_ctor_set(x_155, 0, x_153); +return x_155; +} +} +} +} +} +else +{ +lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; uint8_t x_161; +lean_dec(x_33); +x_156 = lean_ctor_get(x_30, 0); +x_157 = lean_ctor_get(x_30, 1); +x_158 = lean_ctor_get(x_30, 2); +x_159 = lean_nat_add(x_75, x_56); +lean_inc_ref(x_74); +x_160 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_160, 0, x_74); +lean_ctor_set(x_160, 1, x_159); +lean_ctor_set(x_160, 2, x_76); +x_161 = lean_nat_dec_lt(x_157, x_158); +if (x_161 == 0) +{ +lean_object* x_162; +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_24, 0, x_160); +x_162 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_162, 0, x_9); +return x_162; +} +else +{ +lean_object* x_163; lean_object* x_164; lean_object* x_165; uint8_t x_166; uint8_t x_167; +lean_inc(x_158); +lean_inc(x_157); +lean_inc_ref(x_156); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_163 = x_30; +} else { + lean_dec_ref(x_30); + x_163 = lean_box(0); +} +x_164 = lean_array_fget(x_74, x_75); +lean_dec(x_75); +lean_dec_ref(x_74); +x_165 = lean_ctor_get(x_164, 1); +x_166 = lean_ctor_get_uint8(x_164, sizeof(void*)*2); +x_167 = lean_nat_dec_eq(x_165, x_1); +if (x_167 == 0) +{ +lean_object* x_168; lean_object* x_169; +lean_dec_ref(x_164); +lean_dec(x_163); +lean_dec_ref(x_160); +lean_dec(x_158); +lean_dec(x_157); +lean_dec_ref(x_156); +lean_dec_ref(x_36); +lean_dec_ref(x_39); +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_28); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_168 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_169 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_168, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_169) == 0) +{ +lean_object* x_170; lean_object* x_171; +x_170 = lean_ctor_get(x_169, 0); +lean_inc(x_170); +if (lean_is_exclusive(x_169)) { + lean_ctor_release(x_169, 0); + x_171 = x_169; +} else { + lean_dec_ref(x_169); + x_171 = lean_box(0); +} +if (lean_obj_tag(x_170) == 0) +{ +lean_object* x_172; lean_object* x_173; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_172 = lean_ctor_get(x_170, 0); +lean_inc(x_172); +lean_dec_ref(x_170); +if (lean_is_scalar(x_171)) { + x_173 = lean_alloc_ctor(0, 1, 0); +} else { + x_173 = x_171; +} +lean_ctor_set(x_173, 0, x_172); +return x_173; +} +else +{ +lean_object* x_174; +lean_dec(x_171); +x_174 = lean_ctor_get(x_170, 0); +lean_inc(x_174); +lean_dec_ref(x_170); +x_16 = x_174; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_175; lean_object* x_176; lean_object* x_177; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_175 = lean_ctor_get(x_169, 0); +lean_inc(x_175); +if (lean_is_exclusive(x_169)) { + lean_ctor_release(x_169, 0); + x_176 = x_169; +} else { + lean_dec_ref(x_169); + x_176 = lean_box(0); +} +if (lean_is_scalar(x_176)) { + x_177 = lean_alloc_ctor(1, 1, 0); +} else { + x_177 = x_176; +} +lean_ctor_set(x_177, 0, x_175); +return x_177; +} +} +else +{ +lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; +x_178 = lean_array_fget(x_44, x_45); +lean_dec(x_45); +lean_dec_ref(x_44); +x_179 = lean_array_fget(x_53, x_54); +lean_dec(x_54); +lean_dec_ref(x_53); +x_180 = lean_array_fget(x_64, x_65); +lean_dec(x_65); +lean_dec_ref(x_64); +x_181 = lean_array_fget_borrowed(x_156, x_157); +x_182 = lean_box(x_3); +x_183 = lean_box(x_4); +x_184 = lean_box(x_166); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_181); +lean_inc(x_10); +lean_inc_ref(x_2); +x_185 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_185, 0, x_180); +lean_closure_set(x_185, 1, x_178); +lean_closure_set(x_185, 2, x_2); +lean_closure_set(x_185, 3, x_10); +lean_closure_set(x_185, 4, x_182); +lean_closure_set(x_185, 5, x_183); +lean_closure_set(x_185, 6, x_181); +lean_closure_set(x_185, 7, x_5); +lean_closure_set(x_185, 8, x_6); +lean_closure_set(x_185, 9, x_184); +lean_closure_set(x_185, 10, x_56); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_186 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_179, x_164, x_185, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_186) == 0) +{ +lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_187 = lean_ctor_get(x_186, 0); +lean_inc(x_187); +lean_dec_ref(x_186); +x_188 = lean_nat_add(x_157, x_56); +lean_dec(x_157); +if (lean_is_scalar(x_163)) { + x_189 = lean_alloc_ctor(0, 3, 0); +} else { + x_189 = x_163; +} +lean_ctor_set(x_189, 0, x_156); +lean_ctor_set(x_189, 1, x_188); +lean_ctor_set(x_189, 2, x_158); +x_190 = lean_array_push(x_42, x_187); +lean_ctor_set(x_27, 1, x_190); +lean_ctor_set(x_24, 0, x_160); +lean_ctor_set(x_9, 0, x_189); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_191; lean_object* x_192; lean_object* x_193; +lean_dec(x_163); +lean_dec_ref(x_160); +lean_dec(x_158); +lean_dec(x_157); +lean_dec_ref(x_156); +lean_dec_ref(x_36); +lean_dec_ref(x_39); +lean_dec_ref(x_28); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_191 = lean_ctor_get(x_186, 0); +lean_inc(x_191); +if (lean_is_exclusive(x_186)) { + lean_ctor_release(x_186, 0); + x_192 = x_186; +} else { + lean_dec_ref(x_186); + x_192 = lean_box(0); +} +if (lean_is_scalar(x_192)) { + x_193 = lean_alloc_ctor(1, 1, 0); +} else { + x_193 = x_192; +} +lean_ctor_set(x_193, 0, x_191); +return x_193; +} +} +} +} +} +} +else +{ +lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; uint8_t x_199; +lean_dec(x_36); +x_194 = lean_ctor_get(x_33, 0); +x_195 = lean_ctor_get(x_33, 1); +x_196 = lean_ctor_get(x_33, 2); +x_197 = lean_nat_add(x_65, x_56); +lean_inc_ref(x_64); +x_198 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_198, 0, x_64); +lean_ctor_set(x_198, 1, x_197); +lean_ctor_set(x_198, 2, x_66); +x_199 = lean_nat_dec_lt(x_195, x_196); +if (x_199 == 0) +{ +lean_object* x_200; +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_25, 0, x_198); +x_200 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_200, 0, x_9); +return x_200; +} +else +{ +lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; uint8_t x_207; +lean_inc(x_196); +lean_inc(x_195); +lean_inc_ref(x_194); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_201 = x_33; +} else { + lean_dec_ref(x_33); + x_201 = lean_box(0); +} +x_202 = lean_ctor_get(x_30, 0); +x_203 = lean_ctor_get(x_30, 1); +x_204 = lean_ctor_get(x_30, 2); +x_205 = lean_nat_add(x_195, x_56); +lean_inc_ref(x_194); +if (lean_is_scalar(x_201)) { + x_206 = lean_alloc_ctor(0, 3, 0); +} else { + x_206 = x_201; +} +lean_ctor_set(x_206, 0, x_194); +lean_ctor_set(x_206, 1, x_205); +lean_ctor_set(x_206, 2, x_196); +x_207 = lean_nat_dec_lt(x_203, x_204); +if (x_207 == 0) +{ +lean_object* x_208; +lean_dec(x_195); +lean_dec_ref(x_194); +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_25, 0, x_198); +lean_ctor_set(x_24, 0, x_206); +x_208 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_208, 0, x_9); +return x_208; +} +else +{ +lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; uint8_t x_213; +lean_inc(x_204); +lean_inc(x_203); +lean_inc_ref(x_202); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_209 = x_30; +} else { + lean_dec_ref(x_30); + x_209 = lean_box(0); +} +x_210 = lean_array_fget(x_194, x_195); +lean_dec(x_195); +lean_dec_ref(x_194); +x_211 = lean_ctor_get(x_210, 1); +x_212 = lean_ctor_get_uint8(x_210, sizeof(void*)*2); +x_213 = lean_nat_dec_eq(x_211, x_1); +if (x_213 == 0) +{ +lean_object* x_214; lean_object* x_215; +lean_dec_ref(x_210); +lean_dec(x_209); +lean_dec_ref(x_206); +lean_dec(x_204); +lean_dec(x_203); +lean_dec_ref(x_202); +lean_dec_ref(x_198); +lean_dec_ref(x_39); +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_28); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_214 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_215 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_214, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_215) == 0) +{ +lean_object* x_216; lean_object* x_217; +x_216 = lean_ctor_get(x_215, 0); +lean_inc(x_216); +if (lean_is_exclusive(x_215)) { + lean_ctor_release(x_215, 0); + x_217 = x_215; +} else { + lean_dec_ref(x_215); + x_217 = lean_box(0); +} +if (lean_obj_tag(x_216) == 0) +{ +lean_object* x_218; lean_object* x_219; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_218 = lean_ctor_get(x_216, 0); +lean_inc(x_218); +lean_dec_ref(x_216); +if (lean_is_scalar(x_217)) { + x_219 = lean_alloc_ctor(0, 1, 0); +} else { + x_219 = x_217; +} +lean_ctor_set(x_219, 0, x_218); +return x_219; +} +else +{ +lean_object* x_220; +lean_dec(x_217); +x_220 = lean_ctor_get(x_216, 0); +lean_inc(x_220); +lean_dec_ref(x_216); +x_16 = x_220; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_221; lean_object* x_222; lean_object* x_223; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_221 = lean_ctor_get(x_215, 0); +lean_inc(x_221); +if (lean_is_exclusive(x_215)) { + lean_ctor_release(x_215, 0); + x_222 = x_215; +} else { + lean_dec_ref(x_215); + x_222 = lean_box(0); +} +if (lean_is_scalar(x_222)) { + x_223 = lean_alloc_ctor(1, 1, 0); +} else { + x_223 = x_222; +} +lean_ctor_set(x_223, 0, x_221); +return x_223; +} +} +else +{ +lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; +x_224 = lean_array_fget(x_44, x_45); +lean_dec(x_45); +lean_dec_ref(x_44); +x_225 = lean_array_fget(x_53, x_54); +lean_dec(x_54); +lean_dec_ref(x_53); +x_226 = lean_array_fget(x_64, x_65); +lean_dec(x_65); +lean_dec_ref(x_64); +x_227 = lean_array_fget_borrowed(x_202, x_203); +x_228 = lean_box(x_3); +x_229 = lean_box(x_4); +x_230 = lean_box(x_212); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_227); +lean_inc(x_10); +lean_inc_ref(x_2); +x_231 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_231, 0, x_226); +lean_closure_set(x_231, 1, x_224); +lean_closure_set(x_231, 2, x_2); +lean_closure_set(x_231, 3, x_10); +lean_closure_set(x_231, 4, x_228); +lean_closure_set(x_231, 5, x_229); +lean_closure_set(x_231, 6, x_227); +lean_closure_set(x_231, 7, x_5); +lean_closure_set(x_231, 8, x_6); +lean_closure_set(x_231, 9, x_230); +lean_closure_set(x_231, 10, x_56); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_232 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_225, x_210, x_231, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_232) == 0) +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; +x_233 = lean_ctor_get(x_232, 0); +lean_inc(x_233); +lean_dec_ref(x_232); +x_234 = lean_nat_add(x_203, x_56); +lean_dec(x_203); +if (lean_is_scalar(x_209)) { + x_235 = lean_alloc_ctor(0, 3, 0); +} else { + x_235 = x_209; +} +lean_ctor_set(x_235, 0, x_202); +lean_ctor_set(x_235, 1, x_234); +lean_ctor_set(x_235, 2, x_204); +x_236 = lean_array_push(x_42, x_233); +lean_ctor_set(x_27, 1, x_236); +lean_ctor_set(x_25, 0, x_198); +lean_ctor_set(x_24, 0, x_206); +lean_ctor_set(x_9, 0, x_235); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +lean_dec(x_209); +lean_dec_ref(x_206); +lean_dec(x_204); +lean_dec(x_203); +lean_dec_ref(x_202); +lean_dec_ref(x_198); +lean_dec_ref(x_39); +lean_dec_ref(x_28); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_237 = lean_ctor_get(x_232, 0); +lean_inc(x_237); +if (lean_is_exclusive(x_232)) { + lean_ctor_release(x_232, 0); + x_238 = x_232; +} else { + lean_dec_ref(x_232); + x_238 = lean_box(0); +} +if (lean_is_scalar(x_238)) { + x_239 = lean_alloc_ctor(1, 1, 0); +} else { + x_239 = x_238; +} +lean_ctor_set(x_239, 0, x_237); +return x_239; +} +} +} +} +} +} +} +else +{ +lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; uint8_t x_245; +lean_dec(x_39); +x_240 = lean_ctor_get(x_36, 0); +x_241 = lean_ctor_get(x_36, 1); +x_242 = lean_ctor_get(x_36, 2); +x_243 = lean_nat_add(x_54, x_56); +lean_inc_ref(x_53); +x_244 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_244, 0, x_53); +lean_ctor_set(x_244, 1, x_243); +lean_ctor_set(x_244, 2, x_55); +x_245 = lean_nat_dec_lt(x_241, x_242); +if (x_245 == 0) +{ +lean_object* x_246; +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_244); +x_246 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_246, 0, x_9); +return x_246; +} +else +{ +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; uint8_t x_253; +lean_inc(x_242); +lean_inc(x_241); +lean_inc_ref(x_240); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + lean_ctor_release(x_36, 1); + lean_ctor_release(x_36, 2); + x_247 = x_36; +} else { + lean_dec_ref(x_36); + x_247 = lean_box(0); +} +x_248 = lean_ctor_get(x_33, 0); +x_249 = lean_ctor_get(x_33, 1); +x_250 = lean_ctor_get(x_33, 2); +x_251 = lean_nat_add(x_241, x_56); +lean_inc_ref(x_240); +if (lean_is_scalar(x_247)) { + x_252 = lean_alloc_ctor(0, 3, 0); +} else { + x_252 = x_247; +} +lean_ctor_set(x_252, 0, x_240); +lean_ctor_set(x_252, 1, x_251); +lean_ctor_set(x_252, 2, x_242); +x_253 = lean_nat_dec_lt(x_249, x_250); +if (x_253 == 0) +{ +lean_object* x_254; +lean_dec(x_241); +lean_dec_ref(x_240); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_244); +lean_ctor_set(x_25, 0, x_252); +x_254 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_254, 0, x_9); +return x_254; +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; uint8_t x_261; +lean_inc(x_250); +lean_inc(x_249); +lean_inc_ref(x_248); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_255 = x_33; +} else { + lean_dec_ref(x_33); + x_255 = lean_box(0); +} +x_256 = lean_ctor_get(x_30, 0); +x_257 = lean_ctor_get(x_30, 1); +x_258 = lean_ctor_get(x_30, 2); +x_259 = lean_nat_add(x_249, x_56); +lean_inc_ref(x_248); +if (lean_is_scalar(x_255)) { + x_260 = lean_alloc_ctor(0, 3, 0); +} else { + x_260 = x_255; +} +lean_ctor_set(x_260, 0, x_248); +lean_ctor_set(x_260, 1, x_259); +lean_ctor_set(x_260, 2, x_250); +x_261 = lean_nat_dec_lt(x_257, x_258); +if (x_261 == 0) +{ +lean_object* x_262; +lean_dec(x_249); +lean_dec_ref(x_248); +lean_dec(x_241); +lean_dec_ref(x_240); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_244); +lean_ctor_set(x_25, 0, x_252); +lean_ctor_set(x_24, 0, x_260); +x_262 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_262, 0, x_9); +return x_262; +} +else +{ +lean_object* x_263; lean_object* x_264; lean_object* x_265; uint8_t x_266; uint8_t x_267; +lean_inc(x_258); +lean_inc(x_257); +lean_inc_ref(x_256); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_263 = x_30; +} else { + lean_dec_ref(x_30); + x_263 = lean_box(0); +} +x_264 = lean_array_fget(x_248, x_249); +lean_dec(x_249); +lean_dec_ref(x_248); +x_265 = lean_ctor_get(x_264, 1); +x_266 = lean_ctor_get_uint8(x_264, sizeof(void*)*2); +x_267 = lean_nat_dec_eq(x_265, x_1); +if (x_267 == 0) +{ +lean_object* x_268; lean_object* x_269; +lean_dec_ref(x_264); +lean_dec(x_263); +lean_dec_ref(x_260); +lean_dec(x_258); +lean_dec(x_257); +lean_dec_ref(x_256); +lean_dec_ref(x_252); +lean_dec_ref(x_244); +lean_dec(x_241); +lean_dec_ref(x_240); +lean_dec_ref(x_28); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_268 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_269 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_268, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_269) == 0) +{ +lean_object* x_270; lean_object* x_271; +x_270 = lean_ctor_get(x_269, 0); +lean_inc(x_270); +if (lean_is_exclusive(x_269)) { + lean_ctor_release(x_269, 0); + x_271 = x_269; +} else { + lean_dec_ref(x_269); + x_271 = lean_box(0); +} +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_272; lean_object* x_273; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_272 = lean_ctor_get(x_270, 0); +lean_inc(x_272); +lean_dec_ref(x_270); +if (lean_is_scalar(x_271)) { + x_273 = lean_alloc_ctor(0, 1, 0); +} else { + x_273 = x_271; +} +lean_ctor_set(x_273, 0, x_272); +return x_273; +} +else +{ +lean_object* x_274; +lean_dec(x_271); +x_274 = lean_ctor_get(x_270, 0); +lean_inc(x_274); +lean_dec_ref(x_270); +x_16 = x_274; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_275 = lean_ctor_get(x_269, 0); +lean_inc(x_275); +if (lean_is_exclusive(x_269)) { + lean_ctor_release(x_269, 0); + x_276 = x_269; +} else { + lean_dec_ref(x_269); + x_276 = lean_box(0); +} +if (lean_is_scalar(x_276)) { + x_277 = lean_alloc_ctor(1, 1, 0); +} else { + x_277 = x_276; +} +lean_ctor_set(x_277, 0, x_275); +return x_277; +} +} +else +{ +lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; +x_278 = lean_array_fget(x_44, x_45); +lean_dec(x_45); +lean_dec_ref(x_44); +x_279 = lean_array_fget(x_53, x_54); +lean_dec(x_54); +lean_dec_ref(x_53); +x_280 = lean_array_fget(x_240, x_241); +lean_dec(x_241); +lean_dec_ref(x_240); +x_281 = lean_array_fget_borrowed(x_256, x_257); +x_282 = lean_box(x_3); +x_283 = lean_box(x_4); +x_284 = lean_box(x_266); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_281); +lean_inc(x_10); +lean_inc_ref(x_2); +x_285 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_285, 0, x_280); +lean_closure_set(x_285, 1, x_278); +lean_closure_set(x_285, 2, x_2); +lean_closure_set(x_285, 3, x_10); +lean_closure_set(x_285, 4, x_282); +lean_closure_set(x_285, 5, x_283); +lean_closure_set(x_285, 6, x_281); +lean_closure_set(x_285, 7, x_5); +lean_closure_set(x_285, 8, x_6); +lean_closure_set(x_285, 9, x_284); +lean_closure_set(x_285, 10, x_56); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_286 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_279, x_264, x_285, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_286) == 0) +{ +lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; +x_287 = lean_ctor_get(x_286, 0); +lean_inc(x_287); +lean_dec_ref(x_286); +x_288 = lean_nat_add(x_257, x_56); +lean_dec(x_257); +if (lean_is_scalar(x_263)) { + x_289 = lean_alloc_ctor(0, 3, 0); +} else { + x_289 = x_263; +} +lean_ctor_set(x_289, 0, x_256); +lean_ctor_set(x_289, 1, x_288); +lean_ctor_set(x_289, 2, x_258); +x_290 = lean_array_push(x_42, x_287); +lean_ctor_set(x_27, 1, x_290); +lean_ctor_set(x_26, 0, x_244); +lean_ctor_set(x_25, 0, x_252); +lean_ctor_set(x_24, 0, x_260); +lean_ctor_set(x_9, 0, x_289); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_291; lean_object* x_292; lean_object* x_293; +lean_dec(x_263); +lean_dec_ref(x_260); +lean_dec(x_258); +lean_dec(x_257); +lean_dec_ref(x_256); +lean_dec_ref(x_252); +lean_dec_ref(x_244); +lean_dec_ref(x_28); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_291 = lean_ctor_get(x_286, 0); +lean_inc(x_291); +if (lean_is_exclusive(x_286)) { + lean_ctor_release(x_286, 0); + x_292 = x_286; +} else { + lean_dec_ref(x_286); + x_292 = lean_box(0); +} +if (lean_is_scalar(x_292)) { + x_293 = lean_alloc_ctor(1, 1, 0); +} else { + x_293 = x_292; +} +lean_ctor_set(x_293, 0, x_291); +return x_293; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; uint8_t x_300; +lean_dec(x_28); +x_294 = lean_ctor_get(x_39, 0); +x_295 = lean_ctor_get(x_39, 1); +x_296 = lean_ctor_get(x_39, 2); +x_297 = lean_unsigned_to_nat(1u); +x_298 = lean_nat_add(x_45, x_297); +lean_inc_ref(x_44); +x_299 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_299, 0, x_44); +lean_ctor_set(x_299, 1, x_298); +lean_ctor_set(x_299, 2, x_46); +x_300 = lean_nat_dec_lt(x_295, x_296); +if (x_300 == 0) +{ +lean_object* x_301; +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_27, 0, x_299); +x_301 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_301, 0, x_9); +return x_301; +} +else +{ +lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; uint8_t x_308; +lean_inc(x_296); +lean_inc(x_295); +lean_inc_ref(x_294); +if (lean_is_exclusive(x_39)) { + lean_ctor_release(x_39, 0); + lean_ctor_release(x_39, 1); + lean_ctor_release(x_39, 2); + x_302 = x_39; +} else { + lean_dec_ref(x_39); + x_302 = lean_box(0); +} +x_303 = lean_ctor_get(x_36, 0); +x_304 = lean_ctor_get(x_36, 1); +x_305 = lean_ctor_get(x_36, 2); +x_306 = lean_nat_add(x_295, x_297); +lean_inc_ref(x_294); +if (lean_is_scalar(x_302)) { + x_307 = lean_alloc_ctor(0, 3, 0); +} else { + x_307 = x_302; +} +lean_ctor_set(x_307, 0, x_294); +lean_ctor_set(x_307, 1, x_306); +lean_ctor_set(x_307, 2, x_296); +x_308 = lean_nat_dec_lt(x_304, x_305); +if (x_308 == 0) +{ +lean_object* x_309; +lean_dec(x_295); +lean_dec_ref(x_294); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_27, 0, x_299); +lean_ctor_set(x_26, 0, x_307); +x_309 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_309, 0, x_9); +return x_309; +} +else +{ +lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; uint8_t x_316; +lean_inc(x_305); +lean_inc(x_304); +lean_inc_ref(x_303); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + lean_ctor_release(x_36, 1); + lean_ctor_release(x_36, 2); + x_310 = x_36; +} else { + lean_dec_ref(x_36); + x_310 = lean_box(0); +} +x_311 = lean_ctor_get(x_33, 0); +x_312 = lean_ctor_get(x_33, 1); +x_313 = lean_ctor_get(x_33, 2); +x_314 = lean_nat_add(x_304, x_297); +lean_inc_ref(x_303); +if (lean_is_scalar(x_310)) { + x_315 = lean_alloc_ctor(0, 3, 0); +} else { + x_315 = x_310; +} +lean_ctor_set(x_315, 0, x_303); +lean_ctor_set(x_315, 1, x_314); +lean_ctor_set(x_315, 2, x_305); +x_316 = lean_nat_dec_lt(x_312, x_313); +if (x_316 == 0) +{ +lean_object* x_317; +lean_dec(x_304); +lean_dec_ref(x_303); +lean_dec(x_295); +lean_dec_ref(x_294); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_27, 0, x_299); +lean_ctor_set(x_26, 0, x_307); +lean_ctor_set(x_25, 0, x_315); +x_317 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_317, 0, x_9); +return x_317; +} +else +{ +lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; uint8_t x_324; +lean_inc(x_313); +lean_inc(x_312); +lean_inc_ref(x_311); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_318 = x_33; +} else { + lean_dec_ref(x_33); + x_318 = lean_box(0); +} +x_319 = lean_ctor_get(x_30, 0); +x_320 = lean_ctor_get(x_30, 1); +x_321 = lean_ctor_get(x_30, 2); +x_322 = lean_nat_add(x_312, x_297); +lean_inc_ref(x_311); +if (lean_is_scalar(x_318)) { + x_323 = lean_alloc_ctor(0, 3, 0); +} else { + x_323 = x_318; +} +lean_ctor_set(x_323, 0, x_311); +lean_ctor_set(x_323, 1, x_322); +lean_ctor_set(x_323, 2, x_313); +x_324 = lean_nat_dec_lt(x_320, x_321); +if (x_324 == 0) +{ +lean_object* x_325; +lean_dec(x_312); +lean_dec_ref(x_311); +lean_dec(x_304); +lean_dec_ref(x_303); +lean_dec(x_295); +lean_dec_ref(x_294); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_27, 0, x_299); +lean_ctor_set(x_26, 0, x_307); +lean_ctor_set(x_25, 0, x_315); +lean_ctor_set(x_24, 0, x_323); +x_325 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_325, 0, x_9); +return x_325; +} +else +{ +lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; uint8_t x_330; +lean_inc(x_321); +lean_inc(x_320); +lean_inc_ref(x_319); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_326 = x_30; +} else { + lean_dec_ref(x_30); + x_326 = lean_box(0); +} +x_327 = lean_array_fget(x_311, x_312); +lean_dec(x_312); +lean_dec_ref(x_311); +x_328 = lean_ctor_get(x_327, 1); +x_329 = lean_ctor_get_uint8(x_327, sizeof(void*)*2); +x_330 = lean_nat_dec_eq(x_328, x_1); +if (x_330 == 0) +{ +lean_object* x_331; lean_object* x_332; +lean_dec_ref(x_327); +lean_dec(x_326); +lean_dec_ref(x_323); +lean_dec(x_321); +lean_dec(x_320); +lean_dec_ref(x_319); +lean_dec_ref(x_315); +lean_dec_ref(x_307); +lean_dec(x_304); +lean_dec_ref(x_303); +lean_dec_ref(x_299); +lean_dec(x_295); +lean_dec_ref(x_294); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_331 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_332 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_331, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_332) == 0) +{ +lean_object* x_333; lean_object* x_334; +x_333 = lean_ctor_get(x_332, 0); +lean_inc(x_333); +if (lean_is_exclusive(x_332)) { + lean_ctor_release(x_332, 0); + x_334 = x_332; +} else { + lean_dec_ref(x_332); + x_334 = lean_box(0); +} +if (lean_obj_tag(x_333) == 0) +{ +lean_object* x_335; lean_object* x_336; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_335 = lean_ctor_get(x_333, 0); +lean_inc(x_335); +lean_dec_ref(x_333); +if (lean_is_scalar(x_334)) { + x_336 = lean_alloc_ctor(0, 1, 0); +} else { + x_336 = x_334; +} +lean_ctor_set(x_336, 0, x_335); +return x_336; +} +else +{ +lean_object* x_337; +lean_dec(x_334); +x_337 = lean_ctor_get(x_333, 0); +lean_inc(x_337); +lean_dec_ref(x_333); +x_16 = x_337; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_338; lean_object* x_339; lean_object* x_340; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_338 = lean_ctor_get(x_332, 0); +lean_inc(x_338); +if (lean_is_exclusive(x_332)) { + lean_ctor_release(x_332, 0); + x_339 = x_332; +} else { + lean_dec_ref(x_332); + x_339 = lean_box(0); +} +if (lean_is_scalar(x_339)) { + x_340 = lean_alloc_ctor(1, 1, 0); +} else { + x_340 = x_339; +} +lean_ctor_set(x_340, 0, x_338); +return x_340; +} +} +else +{ +lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; +x_341 = lean_array_fget(x_44, x_45); +lean_dec(x_45); +lean_dec_ref(x_44); +x_342 = lean_array_fget(x_294, x_295); +lean_dec(x_295); +lean_dec_ref(x_294); +x_343 = lean_array_fget(x_303, x_304); +lean_dec(x_304); +lean_dec_ref(x_303); +x_344 = lean_array_fget_borrowed(x_319, x_320); +x_345 = lean_box(x_3); +x_346 = lean_box(x_4); +x_347 = lean_box(x_329); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_344); +lean_inc(x_10); +lean_inc_ref(x_2); +x_348 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_348, 0, x_343); +lean_closure_set(x_348, 1, x_341); +lean_closure_set(x_348, 2, x_2); +lean_closure_set(x_348, 3, x_10); +lean_closure_set(x_348, 4, x_345); +lean_closure_set(x_348, 5, x_346); +lean_closure_set(x_348, 6, x_344); +lean_closure_set(x_348, 7, x_5); +lean_closure_set(x_348, 8, x_6); +lean_closure_set(x_348, 9, x_347); +lean_closure_set(x_348, 10, x_297); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_349 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_342, x_327, x_348, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_349) == 0) +{ +lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; +x_350 = lean_ctor_get(x_349, 0); +lean_inc(x_350); +lean_dec_ref(x_349); +x_351 = lean_nat_add(x_320, x_297); +lean_dec(x_320); +if (lean_is_scalar(x_326)) { + x_352 = lean_alloc_ctor(0, 3, 0); +} else { + x_352 = x_326; +} +lean_ctor_set(x_352, 0, x_319); +lean_ctor_set(x_352, 1, x_351); +lean_ctor_set(x_352, 2, x_321); +x_353 = lean_array_push(x_42, x_350); +lean_ctor_set(x_27, 1, x_353); +lean_ctor_set(x_27, 0, x_299); +lean_ctor_set(x_26, 0, x_307); +lean_ctor_set(x_25, 0, x_315); +lean_ctor_set(x_24, 0, x_323); +lean_ctor_set(x_9, 0, x_352); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_354; lean_object* x_355; lean_object* x_356; +lean_dec(x_326); +lean_dec_ref(x_323); +lean_dec(x_321); +lean_dec(x_320); +lean_dec_ref(x_319); +lean_dec_ref(x_315); +lean_dec_ref(x_307); +lean_dec_ref(x_299); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_354 = lean_ctor_get(x_349, 0); +lean_inc(x_354); +if (lean_is_exclusive(x_349)) { + lean_ctor_release(x_349, 0); + x_355 = x_349; +} else { + lean_dec_ref(x_349); + x_355 = lean_box(0); +} +if (lean_is_scalar(x_355)) { + x_356 = lean_alloc_ctor(1, 1, 0); +} else { + x_356 = x_355; +} +lean_ctor_set(x_356, 0, x_354); +return x_356; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; uint8_t x_361; +x_357 = lean_ctor_get(x_27, 1); +lean_inc(x_357); +lean_dec(x_27); +x_358 = lean_ctor_get(x_28, 0); +x_359 = lean_ctor_get(x_28, 1); +x_360 = lean_ctor_get(x_28, 2); +x_361 = lean_nat_dec_lt(x_359, x_360); +if (x_361 == 0) +{ +lean_object* x_362; lean_object* x_363; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_362 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_362, 0, x_28); +lean_ctor_set(x_362, 1, x_357); +lean_ctor_set(x_26, 1, x_362); +x_363 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_363, 0, x_9); +return x_363; +} +else +{ +lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; uint8_t x_371; +lean_inc(x_360); +lean_inc(x_359); +lean_inc_ref(x_358); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + lean_ctor_release(x_28, 2); + x_364 = x_28; +} else { + lean_dec_ref(x_28); + x_364 = lean_box(0); +} +x_365 = lean_ctor_get(x_39, 0); +x_366 = lean_ctor_get(x_39, 1); +x_367 = lean_ctor_get(x_39, 2); +x_368 = lean_unsigned_to_nat(1u); +x_369 = lean_nat_add(x_359, x_368); +lean_inc_ref(x_358); +if (lean_is_scalar(x_364)) { + x_370 = lean_alloc_ctor(0, 3, 0); +} else { + x_370 = x_364; +} +lean_ctor_set(x_370, 0, x_358); +lean_ctor_set(x_370, 1, x_369); +lean_ctor_set(x_370, 2, x_360); +x_371 = lean_nat_dec_lt(x_366, x_367); +if (x_371 == 0) +{ +lean_object* x_372; lean_object* x_373; +lean_dec(x_359); +lean_dec_ref(x_358); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_372 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_372, 0, x_370); +lean_ctor_set(x_372, 1, x_357); +lean_ctor_set(x_26, 1, x_372); +x_373 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_373, 0, x_9); +return x_373; +} +else +{ +lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; uint8_t x_380; +lean_inc(x_367); +lean_inc(x_366); +lean_inc_ref(x_365); +if (lean_is_exclusive(x_39)) { + lean_ctor_release(x_39, 0); + lean_ctor_release(x_39, 1); + lean_ctor_release(x_39, 2); + x_374 = x_39; +} else { + lean_dec_ref(x_39); + x_374 = lean_box(0); +} +x_375 = lean_ctor_get(x_36, 0); +x_376 = lean_ctor_get(x_36, 1); +x_377 = lean_ctor_get(x_36, 2); +x_378 = lean_nat_add(x_366, x_368); +lean_inc_ref(x_365); +if (lean_is_scalar(x_374)) { + x_379 = lean_alloc_ctor(0, 3, 0); +} else { + x_379 = x_374; +} +lean_ctor_set(x_379, 0, x_365); +lean_ctor_set(x_379, 1, x_378); +lean_ctor_set(x_379, 2, x_367); +x_380 = lean_nat_dec_lt(x_376, x_377); +if (x_380 == 0) +{ +lean_object* x_381; lean_object* x_382; +lean_dec(x_366); +lean_dec_ref(x_365); +lean_dec(x_359); +lean_dec_ref(x_358); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_381 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_381, 0, x_370); +lean_ctor_set(x_381, 1, x_357); +lean_ctor_set(x_26, 1, x_381); +lean_ctor_set(x_26, 0, x_379); +x_382 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_382, 0, x_9); +return x_382; +} +else +{ +lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; uint8_t x_389; +lean_inc(x_377); +lean_inc(x_376); +lean_inc_ref(x_375); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + lean_ctor_release(x_36, 1); + lean_ctor_release(x_36, 2); + x_383 = x_36; +} else { + lean_dec_ref(x_36); + x_383 = lean_box(0); +} +x_384 = lean_ctor_get(x_33, 0); +x_385 = lean_ctor_get(x_33, 1); +x_386 = lean_ctor_get(x_33, 2); +x_387 = lean_nat_add(x_376, x_368); +lean_inc_ref(x_375); +if (lean_is_scalar(x_383)) { + x_388 = lean_alloc_ctor(0, 3, 0); +} else { + x_388 = x_383; +} +lean_ctor_set(x_388, 0, x_375); +lean_ctor_set(x_388, 1, x_387); +lean_ctor_set(x_388, 2, x_377); +x_389 = lean_nat_dec_lt(x_385, x_386); +if (x_389 == 0) +{ +lean_object* x_390; lean_object* x_391; +lean_dec(x_376); +lean_dec_ref(x_375); +lean_dec(x_366); +lean_dec_ref(x_365); +lean_dec(x_359); +lean_dec_ref(x_358); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_390 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_390, 0, x_370); +lean_ctor_set(x_390, 1, x_357); +lean_ctor_set(x_26, 1, x_390); +lean_ctor_set(x_26, 0, x_379); +lean_ctor_set(x_25, 0, x_388); +x_391 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_391, 0, x_9); +return x_391; +} +else +{ +lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; uint8_t x_398; +lean_inc(x_386); +lean_inc(x_385); +lean_inc_ref(x_384); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_392 = x_33; +} else { + lean_dec_ref(x_33); + x_392 = lean_box(0); +} +x_393 = lean_ctor_get(x_30, 0); +x_394 = lean_ctor_get(x_30, 1); +x_395 = lean_ctor_get(x_30, 2); +x_396 = lean_nat_add(x_385, x_368); +lean_inc_ref(x_384); +if (lean_is_scalar(x_392)) { + x_397 = lean_alloc_ctor(0, 3, 0); +} else { + x_397 = x_392; +} +lean_ctor_set(x_397, 0, x_384); +lean_ctor_set(x_397, 1, x_396); +lean_ctor_set(x_397, 2, x_386); +x_398 = lean_nat_dec_lt(x_394, x_395); +if (x_398 == 0) +{ +lean_object* x_399; lean_object* x_400; +lean_dec(x_385); +lean_dec_ref(x_384); +lean_dec(x_376); +lean_dec_ref(x_375); +lean_dec(x_366); +lean_dec_ref(x_365); +lean_dec(x_359); +lean_dec_ref(x_358); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_399 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_399, 0, x_370); +lean_ctor_set(x_399, 1, x_357); +lean_ctor_set(x_26, 1, x_399); +lean_ctor_set(x_26, 0, x_379); +lean_ctor_set(x_25, 0, x_388); +lean_ctor_set(x_24, 0, x_397); +x_400 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_400, 0, x_9); +return x_400; +} +else +{ +lean_object* x_401; lean_object* x_402; lean_object* x_403; uint8_t x_404; uint8_t x_405; +lean_inc(x_395); +lean_inc(x_394); +lean_inc_ref(x_393); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_401 = x_30; +} else { + lean_dec_ref(x_30); + x_401 = lean_box(0); +} +x_402 = lean_array_fget(x_384, x_385); +lean_dec(x_385); +lean_dec_ref(x_384); +x_403 = lean_ctor_get(x_402, 1); +x_404 = lean_ctor_get_uint8(x_402, sizeof(void*)*2); +x_405 = lean_nat_dec_eq(x_403, x_1); +if (x_405 == 0) +{ +lean_object* x_406; lean_object* x_407; +lean_dec_ref(x_402); +lean_dec(x_401); +lean_dec_ref(x_397); +lean_dec(x_395); +lean_dec(x_394); +lean_dec_ref(x_393); +lean_dec_ref(x_388); +lean_dec_ref(x_379); +lean_dec(x_376); +lean_dec_ref(x_375); +lean_dec_ref(x_370); +lean_dec(x_366); +lean_dec_ref(x_365); +lean_dec(x_359); +lean_dec_ref(x_358); +lean_dec(x_357); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_406 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_407 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_406, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_407) == 0) +{ +lean_object* x_408; lean_object* x_409; +x_408 = lean_ctor_get(x_407, 0); +lean_inc(x_408); +if (lean_is_exclusive(x_407)) { + lean_ctor_release(x_407, 0); + x_409 = x_407; +} else { + lean_dec_ref(x_407); + x_409 = lean_box(0); +} +if (lean_obj_tag(x_408) == 0) +{ +lean_object* x_410; lean_object* x_411; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_410 = lean_ctor_get(x_408, 0); +lean_inc(x_410); +lean_dec_ref(x_408); +if (lean_is_scalar(x_409)) { + x_411 = lean_alloc_ctor(0, 1, 0); +} else { + x_411 = x_409; +} +lean_ctor_set(x_411, 0, x_410); +return x_411; +} +else +{ +lean_object* x_412; +lean_dec(x_409); +x_412 = lean_ctor_get(x_408, 0); +lean_inc(x_412); +lean_dec_ref(x_408); +x_16 = x_412; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_413; lean_object* x_414; lean_object* x_415; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_413 = lean_ctor_get(x_407, 0); +lean_inc(x_413); +if (lean_is_exclusive(x_407)) { + lean_ctor_release(x_407, 0); + x_414 = x_407; +} else { + lean_dec_ref(x_407); + x_414 = lean_box(0); +} +if (lean_is_scalar(x_414)) { + x_415 = lean_alloc_ctor(1, 1, 0); +} else { + x_415 = x_414; +} +lean_ctor_set(x_415, 0, x_413); +return x_415; +} +} +else +{ +lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; +x_416 = lean_array_fget(x_358, x_359); +lean_dec(x_359); +lean_dec_ref(x_358); +x_417 = lean_array_fget(x_365, x_366); +lean_dec(x_366); +lean_dec_ref(x_365); +x_418 = lean_array_fget(x_375, x_376); +lean_dec(x_376); +lean_dec_ref(x_375); +x_419 = lean_array_fget_borrowed(x_393, x_394); +x_420 = lean_box(x_3); +x_421 = lean_box(x_4); +x_422 = lean_box(x_404); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_419); +lean_inc(x_10); +lean_inc_ref(x_2); +x_423 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_423, 0, x_418); +lean_closure_set(x_423, 1, x_416); +lean_closure_set(x_423, 2, x_2); +lean_closure_set(x_423, 3, x_10); +lean_closure_set(x_423, 4, x_420); +lean_closure_set(x_423, 5, x_421); +lean_closure_set(x_423, 6, x_419); +lean_closure_set(x_423, 7, x_5); +lean_closure_set(x_423, 8, x_6); +lean_closure_set(x_423, 9, x_422); +lean_closure_set(x_423, 10, x_368); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_424 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_417, x_402, x_423, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_424) == 0) +{ +lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; +x_425 = lean_ctor_get(x_424, 0); +lean_inc(x_425); +lean_dec_ref(x_424); +x_426 = lean_nat_add(x_394, x_368); +lean_dec(x_394); +if (lean_is_scalar(x_401)) { + x_427 = lean_alloc_ctor(0, 3, 0); +} else { + x_427 = x_401; +} +lean_ctor_set(x_427, 0, x_393); +lean_ctor_set(x_427, 1, x_426); +lean_ctor_set(x_427, 2, x_395); +x_428 = lean_array_push(x_357, x_425); +x_429 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_429, 0, x_370); +lean_ctor_set(x_429, 1, x_428); +lean_ctor_set(x_26, 1, x_429); +lean_ctor_set(x_26, 0, x_379); +lean_ctor_set(x_25, 0, x_388); +lean_ctor_set(x_24, 0, x_397); +lean_ctor_set(x_9, 0, x_427); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_430; lean_object* x_431; lean_object* x_432; +lean_dec(x_401); +lean_dec_ref(x_397); +lean_dec(x_395); +lean_dec(x_394); +lean_dec_ref(x_393); +lean_dec_ref(x_388); +lean_dec_ref(x_379); +lean_dec_ref(x_370); +lean_dec(x_357); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_430 = lean_ctor_get(x_424, 0); +lean_inc(x_430); +if (lean_is_exclusive(x_424)) { + lean_ctor_release(x_424, 0); + x_431 = x_424; +} else { + lean_dec_ref(x_424); + x_431 = lean_box(0); +} +if (lean_is_scalar(x_431)) { + x_432 = lean_alloc_ctor(1, 1, 0); +} else { + x_432 = x_431; +} +lean_ctor_set(x_432, 0, x_430); +return x_432; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; uint8_t x_439; +x_433 = lean_ctor_get(x_26, 0); +lean_inc(x_433); +lean_dec(x_26); +x_434 = lean_ctor_get(x_27, 1); +lean_inc(x_434); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_435 = x_27; +} else { + lean_dec_ref(x_27); + x_435 = lean_box(0); +} +x_436 = lean_ctor_get(x_28, 0); +x_437 = lean_ctor_get(x_28, 1); +x_438 = lean_ctor_get(x_28, 2); +x_439 = lean_nat_dec_lt(x_437, x_438); +if (x_439 == 0) +{ +lean_object* x_440; lean_object* x_441; lean_object* x_442; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_435)) { + x_440 = lean_alloc_ctor(0, 2, 0); +} else { + x_440 = x_435; +} +lean_ctor_set(x_440, 0, x_28); +lean_ctor_set(x_440, 1, x_434); +x_441 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_441, 0, x_433); +lean_ctor_set(x_441, 1, x_440); +lean_ctor_set(x_25, 1, x_441); +x_442 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_442, 0, x_9); +return x_442; +} +else +{ +lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; uint8_t x_450; +lean_inc(x_438); +lean_inc(x_437); +lean_inc_ref(x_436); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + lean_ctor_release(x_28, 2); + x_443 = x_28; +} else { + lean_dec_ref(x_28); + x_443 = lean_box(0); +} +x_444 = lean_ctor_get(x_433, 0); +x_445 = lean_ctor_get(x_433, 1); +x_446 = lean_ctor_get(x_433, 2); +x_447 = lean_unsigned_to_nat(1u); +x_448 = lean_nat_add(x_437, x_447); +lean_inc_ref(x_436); +if (lean_is_scalar(x_443)) { + x_449 = lean_alloc_ctor(0, 3, 0); +} else { + x_449 = x_443; +} +lean_ctor_set(x_449, 0, x_436); +lean_ctor_set(x_449, 1, x_448); +lean_ctor_set(x_449, 2, x_438); +x_450 = lean_nat_dec_lt(x_445, x_446); +if (x_450 == 0) +{ +lean_object* x_451; lean_object* x_452; lean_object* x_453; +lean_dec(x_437); +lean_dec_ref(x_436); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_435)) { + x_451 = lean_alloc_ctor(0, 2, 0); +} else { + x_451 = x_435; +} +lean_ctor_set(x_451, 0, x_449); +lean_ctor_set(x_451, 1, x_434); +x_452 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_452, 0, x_433); +lean_ctor_set(x_452, 1, x_451); +lean_ctor_set(x_25, 1, x_452); +x_453 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_453, 0, x_9); +return x_453; +} +else +{ +lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; uint8_t x_460; +lean_inc(x_446); +lean_inc(x_445); +lean_inc_ref(x_444); +if (lean_is_exclusive(x_433)) { + lean_ctor_release(x_433, 0); + lean_ctor_release(x_433, 1); + lean_ctor_release(x_433, 2); + x_454 = x_433; +} else { + lean_dec_ref(x_433); + x_454 = lean_box(0); +} +x_455 = lean_ctor_get(x_36, 0); +x_456 = lean_ctor_get(x_36, 1); +x_457 = lean_ctor_get(x_36, 2); +x_458 = lean_nat_add(x_445, x_447); +lean_inc_ref(x_444); +if (lean_is_scalar(x_454)) { + x_459 = lean_alloc_ctor(0, 3, 0); +} else { + x_459 = x_454; +} +lean_ctor_set(x_459, 0, x_444); +lean_ctor_set(x_459, 1, x_458); +lean_ctor_set(x_459, 2, x_446); +x_460 = lean_nat_dec_lt(x_456, x_457); +if (x_460 == 0) +{ +lean_object* x_461; lean_object* x_462; lean_object* x_463; +lean_dec(x_445); +lean_dec_ref(x_444); +lean_dec(x_437); +lean_dec_ref(x_436); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_435)) { + x_461 = lean_alloc_ctor(0, 2, 0); +} else { + x_461 = x_435; +} +lean_ctor_set(x_461, 0, x_449); +lean_ctor_set(x_461, 1, x_434); +x_462 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_462, 0, x_459); +lean_ctor_set(x_462, 1, x_461); +lean_ctor_set(x_25, 1, x_462); +x_463 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_463, 0, x_9); +return x_463; +} +else +{ +lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; uint8_t x_470; +lean_inc(x_457); +lean_inc(x_456); +lean_inc_ref(x_455); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + lean_ctor_release(x_36, 1); + lean_ctor_release(x_36, 2); + x_464 = x_36; +} else { + lean_dec_ref(x_36); + x_464 = lean_box(0); +} +x_465 = lean_ctor_get(x_33, 0); +x_466 = lean_ctor_get(x_33, 1); +x_467 = lean_ctor_get(x_33, 2); +x_468 = lean_nat_add(x_456, x_447); +lean_inc_ref(x_455); +if (lean_is_scalar(x_464)) { + x_469 = lean_alloc_ctor(0, 3, 0); +} else { + x_469 = x_464; +} +lean_ctor_set(x_469, 0, x_455); +lean_ctor_set(x_469, 1, x_468); +lean_ctor_set(x_469, 2, x_457); +x_470 = lean_nat_dec_lt(x_466, x_467); +if (x_470 == 0) +{ +lean_object* x_471; lean_object* x_472; lean_object* x_473; +lean_dec(x_456); +lean_dec_ref(x_455); +lean_dec(x_445); +lean_dec_ref(x_444); +lean_dec(x_437); +lean_dec_ref(x_436); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_435)) { + x_471 = lean_alloc_ctor(0, 2, 0); +} else { + x_471 = x_435; +} +lean_ctor_set(x_471, 0, x_449); +lean_ctor_set(x_471, 1, x_434); +x_472 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_472, 0, x_459); +lean_ctor_set(x_472, 1, x_471); +lean_ctor_set(x_25, 1, x_472); +lean_ctor_set(x_25, 0, x_469); +x_473 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_473, 0, x_9); +return x_473; +} +else +{ +lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; uint8_t x_480; +lean_inc(x_467); +lean_inc(x_466); +lean_inc_ref(x_465); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_474 = x_33; +} else { + lean_dec_ref(x_33); + x_474 = lean_box(0); +} +x_475 = lean_ctor_get(x_30, 0); +x_476 = lean_ctor_get(x_30, 1); +x_477 = lean_ctor_get(x_30, 2); +x_478 = lean_nat_add(x_466, x_447); +lean_inc_ref(x_465); +if (lean_is_scalar(x_474)) { + x_479 = lean_alloc_ctor(0, 3, 0); +} else { + x_479 = x_474; +} +lean_ctor_set(x_479, 0, x_465); +lean_ctor_set(x_479, 1, x_478); +lean_ctor_set(x_479, 2, x_467); +x_480 = lean_nat_dec_lt(x_476, x_477); +if (x_480 == 0) +{ +lean_object* x_481; lean_object* x_482; lean_object* x_483; +lean_dec(x_466); +lean_dec_ref(x_465); +lean_dec(x_456); +lean_dec_ref(x_455); +lean_dec(x_445); +lean_dec_ref(x_444); +lean_dec(x_437); +lean_dec_ref(x_436); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_435)) { + x_481 = lean_alloc_ctor(0, 2, 0); +} else { + x_481 = x_435; +} +lean_ctor_set(x_481, 0, x_449); +lean_ctor_set(x_481, 1, x_434); +x_482 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_482, 0, x_459); +lean_ctor_set(x_482, 1, x_481); +lean_ctor_set(x_25, 1, x_482); +lean_ctor_set(x_25, 0, x_469); +lean_ctor_set(x_24, 0, x_479); +x_483 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_483, 0, x_9); +return x_483; +} +else +{ +lean_object* x_484; lean_object* x_485; lean_object* x_486; uint8_t x_487; uint8_t x_488; +lean_inc(x_477); +lean_inc(x_476); +lean_inc_ref(x_475); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_484 = x_30; +} else { + lean_dec_ref(x_30); + x_484 = lean_box(0); +} +x_485 = lean_array_fget(x_465, x_466); +lean_dec(x_466); +lean_dec_ref(x_465); +x_486 = lean_ctor_get(x_485, 1); +x_487 = lean_ctor_get_uint8(x_485, sizeof(void*)*2); +x_488 = lean_nat_dec_eq(x_486, x_1); +if (x_488 == 0) +{ +lean_object* x_489; lean_object* x_490; +lean_dec_ref(x_485); +lean_dec(x_484); +lean_dec_ref(x_479); +lean_dec(x_477); +lean_dec(x_476); +lean_dec_ref(x_475); +lean_dec_ref(x_469); +lean_dec_ref(x_459); +lean_dec(x_456); +lean_dec_ref(x_455); +lean_dec_ref(x_449); +lean_dec(x_445); +lean_dec_ref(x_444); +lean_dec(x_437); +lean_dec_ref(x_436); +lean_dec(x_435); +lean_dec(x_434); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_489 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_490 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_489, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_490) == 0) +{ +lean_object* x_491; lean_object* x_492; +x_491 = lean_ctor_get(x_490, 0); +lean_inc(x_491); +if (lean_is_exclusive(x_490)) { + lean_ctor_release(x_490, 0); + x_492 = x_490; +} else { + lean_dec_ref(x_490); + x_492 = lean_box(0); +} +if (lean_obj_tag(x_491) == 0) +{ +lean_object* x_493; lean_object* x_494; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_493 = lean_ctor_get(x_491, 0); +lean_inc(x_493); +lean_dec_ref(x_491); +if (lean_is_scalar(x_492)) { + x_494 = lean_alloc_ctor(0, 1, 0); +} else { + x_494 = x_492; +} +lean_ctor_set(x_494, 0, x_493); +return x_494; +} +else +{ +lean_object* x_495; +lean_dec(x_492); +x_495 = lean_ctor_get(x_491, 0); +lean_inc(x_495); +lean_dec_ref(x_491); +x_16 = x_495; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_496; lean_object* x_497; lean_object* x_498; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_496 = lean_ctor_get(x_490, 0); +lean_inc(x_496); +if (lean_is_exclusive(x_490)) { + lean_ctor_release(x_490, 0); + x_497 = x_490; +} else { + lean_dec_ref(x_490); + x_497 = lean_box(0); +} +if (lean_is_scalar(x_497)) { + x_498 = lean_alloc_ctor(1, 1, 0); +} else { + x_498 = x_497; +} +lean_ctor_set(x_498, 0, x_496); +return x_498; +} +} +else +{ +lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; +x_499 = lean_array_fget(x_436, x_437); +lean_dec(x_437); +lean_dec_ref(x_436); +x_500 = lean_array_fget(x_444, x_445); +lean_dec(x_445); +lean_dec_ref(x_444); +x_501 = lean_array_fget(x_455, x_456); +lean_dec(x_456); +lean_dec_ref(x_455); +x_502 = lean_array_fget_borrowed(x_475, x_476); +x_503 = lean_box(x_3); +x_504 = lean_box(x_4); +x_505 = lean_box(x_487); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_502); +lean_inc(x_10); +lean_inc_ref(x_2); +x_506 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_506, 0, x_501); +lean_closure_set(x_506, 1, x_499); +lean_closure_set(x_506, 2, x_2); +lean_closure_set(x_506, 3, x_10); +lean_closure_set(x_506, 4, x_503); +lean_closure_set(x_506, 5, x_504); +lean_closure_set(x_506, 6, x_502); +lean_closure_set(x_506, 7, x_5); +lean_closure_set(x_506, 8, x_6); +lean_closure_set(x_506, 9, x_505); +lean_closure_set(x_506, 10, x_447); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_507 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_500, x_485, x_506, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_507) == 0) +{ +lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; +x_508 = lean_ctor_get(x_507, 0); +lean_inc(x_508); +lean_dec_ref(x_507); +x_509 = lean_nat_add(x_476, x_447); +lean_dec(x_476); +if (lean_is_scalar(x_484)) { + x_510 = lean_alloc_ctor(0, 3, 0); +} else { + x_510 = x_484; +} +lean_ctor_set(x_510, 0, x_475); +lean_ctor_set(x_510, 1, x_509); +lean_ctor_set(x_510, 2, x_477); +x_511 = lean_array_push(x_434, x_508); +if (lean_is_scalar(x_435)) { + x_512 = lean_alloc_ctor(0, 2, 0); +} else { + x_512 = x_435; +} +lean_ctor_set(x_512, 0, x_449); +lean_ctor_set(x_512, 1, x_511); +x_513 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_513, 0, x_459); +lean_ctor_set(x_513, 1, x_512); +lean_ctor_set(x_25, 1, x_513); +lean_ctor_set(x_25, 0, x_469); +lean_ctor_set(x_24, 0, x_479); +lean_ctor_set(x_9, 0, x_510); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_514; lean_object* x_515; lean_object* x_516; +lean_dec(x_484); +lean_dec_ref(x_479); +lean_dec(x_477); +lean_dec(x_476); +lean_dec_ref(x_475); +lean_dec_ref(x_469); +lean_dec_ref(x_459); +lean_dec_ref(x_449); +lean_dec(x_435); +lean_dec(x_434); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_514 = lean_ctor_get(x_507, 0); +lean_inc(x_514); +if (lean_is_exclusive(x_507)) { + lean_ctor_release(x_507, 0); + x_515 = x_507; +} else { + lean_dec_ref(x_507); + x_515 = lean_box(0); +} +if (lean_is_scalar(x_515)) { + x_516 = lean_alloc_ctor(1, 1, 0); +} else { + x_516 = x_515; +} +lean_ctor_set(x_516, 0, x_514); +return x_516; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; uint8_t x_525; +x_517 = lean_ctor_get(x_25, 0); +lean_inc(x_517); +lean_dec(x_25); +x_518 = lean_ctor_get(x_26, 0); +lean_inc(x_518); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_519 = x_26; +} else { + lean_dec_ref(x_26); + x_519 = lean_box(0); +} +x_520 = lean_ctor_get(x_27, 1); +lean_inc(x_520); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_521 = x_27; +} else { + lean_dec_ref(x_27); + x_521 = lean_box(0); +} +x_522 = lean_ctor_get(x_28, 0); +x_523 = lean_ctor_get(x_28, 1); +x_524 = lean_ctor_get(x_28, 2); +x_525 = lean_nat_dec_lt(x_523, x_524); +if (x_525 == 0) +{ +lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_521)) { + x_526 = lean_alloc_ctor(0, 2, 0); +} else { + x_526 = x_521; +} +lean_ctor_set(x_526, 0, x_28); +lean_ctor_set(x_526, 1, x_520); +if (lean_is_scalar(x_519)) { + x_527 = lean_alloc_ctor(0, 2, 0); +} else { + x_527 = x_519; +} +lean_ctor_set(x_527, 0, x_518); +lean_ctor_set(x_527, 1, x_526); +x_528 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_528, 0, x_517); +lean_ctor_set(x_528, 1, x_527); +lean_ctor_set(x_24, 1, x_528); +x_529 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_529, 0, x_9); +return x_529; +} +else +{ +lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; uint8_t x_537; +lean_inc(x_524); +lean_inc(x_523); +lean_inc_ref(x_522); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + lean_ctor_release(x_28, 2); + x_530 = x_28; +} else { + lean_dec_ref(x_28); + x_530 = lean_box(0); +} +x_531 = lean_ctor_get(x_518, 0); +x_532 = lean_ctor_get(x_518, 1); +x_533 = lean_ctor_get(x_518, 2); +x_534 = lean_unsigned_to_nat(1u); +x_535 = lean_nat_add(x_523, x_534); +lean_inc_ref(x_522); +if (lean_is_scalar(x_530)) { + x_536 = lean_alloc_ctor(0, 3, 0); +} else { + x_536 = x_530; +} +lean_ctor_set(x_536, 0, x_522); +lean_ctor_set(x_536, 1, x_535); +lean_ctor_set(x_536, 2, x_524); +x_537 = lean_nat_dec_lt(x_532, x_533); +if (x_537 == 0) +{ +lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; +lean_dec(x_523); +lean_dec_ref(x_522); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_521)) { + x_538 = lean_alloc_ctor(0, 2, 0); +} else { + x_538 = x_521; +} +lean_ctor_set(x_538, 0, x_536); +lean_ctor_set(x_538, 1, x_520); +if (lean_is_scalar(x_519)) { + x_539 = lean_alloc_ctor(0, 2, 0); +} else { + x_539 = x_519; +} +lean_ctor_set(x_539, 0, x_518); +lean_ctor_set(x_539, 1, x_538); +x_540 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_540, 0, x_517); +lean_ctor_set(x_540, 1, x_539); +lean_ctor_set(x_24, 1, x_540); +x_541 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_541, 0, x_9); +return x_541; +} +else +{ +lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; uint8_t x_548; +lean_inc(x_533); +lean_inc(x_532); +lean_inc_ref(x_531); +if (lean_is_exclusive(x_518)) { + lean_ctor_release(x_518, 0); + lean_ctor_release(x_518, 1); + lean_ctor_release(x_518, 2); + x_542 = x_518; +} else { + lean_dec_ref(x_518); + x_542 = lean_box(0); +} +x_543 = lean_ctor_get(x_517, 0); +x_544 = lean_ctor_get(x_517, 1); +x_545 = lean_ctor_get(x_517, 2); +x_546 = lean_nat_add(x_532, x_534); +lean_inc_ref(x_531); +if (lean_is_scalar(x_542)) { + x_547 = lean_alloc_ctor(0, 3, 0); +} else { + x_547 = x_542; +} +lean_ctor_set(x_547, 0, x_531); +lean_ctor_set(x_547, 1, x_546); +lean_ctor_set(x_547, 2, x_533); +x_548 = lean_nat_dec_lt(x_544, x_545); +if (x_548 == 0) +{ +lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; +lean_dec(x_532); +lean_dec_ref(x_531); +lean_dec(x_523); +lean_dec_ref(x_522); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_521)) { + x_549 = lean_alloc_ctor(0, 2, 0); +} else { + x_549 = x_521; +} +lean_ctor_set(x_549, 0, x_536); +lean_ctor_set(x_549, 1, x_520); +if (lean_is_scalar(x_519)) { + x_550 = lean_alloc_ctor(0, 2, 0); +} else { + x_550 = x_519; +} +lean_ctor_set(x_550, 0, x_547); +lean_ctor_set(x_550, 1, x_549); +x_551 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_551, 0, x_517); +lean_ctor_set(x_551, 1, x_550); +lean_ctor_set(x_24, 1, x_551); +x_552 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_552, 0, x_9); +return x_552; +} +else +{ +lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; uint8_t x_559; +lean_inc(x_545); +lean_inc(x_544); +lean_inc_ref(x_543); +if (lean_is_exclusive(x_517)) { + lean_ctor_release(x_517, 0); + lean_ctor_release(x_517, 1); + lean_ctor_release(x_517, 2); + x_553 = x_517; +} else { + lean_dec_ref(x_517); + x_553 = lean_box(0); +} +x_554 = lean_ctor_get(x_33, 0); +x_555 = lean_ctor_get(x_33, 1); +x_556 = lean_ctor_get(x_33, 2); +x_557 = lean_nat_add(x_544, x_534); +lean_inc_ref(x_543); +if (lean_is_scalar(x_553)) { + x_558 = lean_alloc_ctor(0, 3, 0); +} else { + x_558 = x_553; +} +lean_ctor_set(x_558, 0, x_543); +lean_ctor_set(x_558, 1, x_557); +lean_ctor_set(x_558, 2, x_545); +x_559 = lean_nat_dec_lt(x_555, x_556); +if (x_559 == 0) +{ +lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; +lean_dec(x_544); +lean_dec_ref(x_543); +lean_dec(x_532); +lean_dec_ref(x_531); +lean_dec(x_523); +lean_dec_ref(x_522); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_521)) { + x_560 = lean_alloc_ctor(0, 2, 0); +} else { + x_560 = x_521; +} +lean_ctor_set(x_560, 0, x_536); +lean_ctor_set(x_560, 1, x_520); +if (lean_is_scalar(x_519)) { + x_561 = lean_alloc_ctor(0, 2, 0); +} else { + x_561 = x_519; +} +lean_ctor_set(x_561, 0, x_547); +lean_ctor_set(x_561, 1, x_560); +x_562 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_562, 0, x_558); +lean_ctor_set(x_562, 1, x_561); +lean_ctor_set(x_24, 1, x_562); +x_563 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_563, 0, x_9); +return x_563; +} +else +{ +lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; uint8_t x_570; +lean_inc(x_556); +lean_inc(x_555); +lean_inc_ref(x_554); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_564 = x_33; +} else { + lean_dec_ref(x_33); + x_564 = lean_box(0); +} +x_565 = lean_ctor_get(x_30, 0); +x_566 = lean_ctor_get(x_30, 1); +x_567 = lean_ctor_get(x_30, 2); +x_568 = lean_nat_add(x_555, x_534); +lean_inc_ref(x_554); +if (lean_is_scalar(x_564)) { + x_569 = lean_alloc_ctor(0, 3, 0); +} else { + x_569 = x_564; +} +lean_ctor_set(x_569, 0, x_554); +lean_ctor_set(x_569, 1, x_568); +lean_ctor_set(x_569, 2, x_556); +x_570 = lean_nat_dec_lt(x_566, x_567); +if (x_570 == 0) +{ +lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; +lean_dec(x_555); +lean_dec_ref(x_554); +lean_dec(x_544); +lean_dec_ref(x_543); +lean_dec(x_532); +lean_dec_ref(x_531); +lean_dec(x_523); +lean_dec_ref(x_522); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_521)) { + x_571 = lean_alloc_ctor(0, 2, 0); +} else { + x_571 = x_521; +} +lean_ctor_set(x_571, 0, x_536); +lean_ctor_set(x_571, 1, x_520); +if (lean_is_scalar(x_519)) { + x_572 = lean_alloc_ctor(0, 2, 0); +} else { + x_572 = x_519; +} +lean_ctor_set(x_572, 0, x_547); +lean_ctor_set(x_572, 1, x_571); +x_573 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_573, 0, x_558); +lean_ctor_set(x_573, 1, x_572); +lean_ctor_set(x_24, 1, x_573); +lean_ctor_set(x_24, 0, x_569); +x_574 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_574, 0, x_9); +return x_574; +} +else +{ +lean_object* x_575; lean_object* x_576; lean_object* x_577; uint8_t x_578; uint8_t x_579; +lean_inc(x_567); +lean_inc(x_566); +lean_inc_ref(x_565); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_575 = x_30; +} else { + lean_dec_ref(x_30); + x_575 = lean_box(0); +} +x_576 = lean_array_fget(x_554, x_555); +lean_dec(x_555); +lean_dec_ref(x_554); +x_577 = lean_ctor_get(x_576, 1); +x_578 = lean_ctor_get_uint8(x_576, sizeof(void*)*2); +x_579 = lean_nat_dec_eq(x_577, x_1); +if (x_579 == 0) +{ +lean_object* x_580; lean_object* x_581; +lean_dec_ref(x_576); +lean_dec(x_575); +lean_dec_ref(x_569); +lean_dec(x_567); +lean_dec(x_566); +lean_dec_ref(x_565); +lean_dec_ref(x_558); +lean_dec_ref(x_547); +lean_dec(x_544); +lean_dec_ref(x_543); +lean_dec_ref(x_536); +lean_dec(x_532); +lean_dec_ref(x_531); +lean_dec(x_523); +lean_dec_ref(x_522); +lean_dec(x_521); +lean_dec(x_520); +lean_dec(x_519); +lean_free_object(x_24); +lean_free_object(x_9); +x_580 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_581 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_580, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_581) == 0) +{ +lean_object* x_582; lean_object* x_583; +x_582 = lean_ctor_get(x_581, 0); +lean_inc(x_582); +if (lean_is_exclusive(x_581)) { + lean_ctor_release(x_581, 0); + x_583 = x_581; +} else { + lean_dec_ref(x_581); + x_583 = lean_box(0); +} +if (lean_obj_tag(x_582) == 0) +{ +lean_object* x_584; lean_object* x_585; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_584 = lean_ctor_get(x_582, 0); +lean_inc(x_584); +lean_dec_ref(x_582); +if (lean_is_scalar(x_583)) { + x_585 = lean_alloc_ctor(0, 1, 0); +} else { + x_585 = x_583; +} +lean_ctor_set(x_585, 0, x_584); +return x_585; +} +else +{ +lean_object* x_586; +lean_dec(x_583); +x_586 = lean_ctor_get(x_582, 0); +lean_inc(x_586); +lean_dec_ref(x_582); +x_16 = x_586; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_587; lean_object* x_588; lean_object* x_589; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_587 = lean_ctor_get(x_581, 0); +lean_inc(x_587); +if (lean_is_exclusive(x_581)) { + lean_ctor_release(x_581, 0); + x_588 = x_581; +} else { + lean_dec_ref(x_581); + x_588 = lean_box(0); +} +if (lean_is_scalar(x_588)) { + x_589 = lean_alloc_ctor(1, 1, 0); +} else { + x_589 = x_588; +} +lean_ctor_set(x_589, 0, x_587); +return x_589; +} +} +else +{ +lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; +x_590 = lean_array_fget(x_522, x_523); +lean_dec(x_523); +lean_dec_ref(x_522); +x_591 = lean_array_fget(x_531, x_532); +lean_dec(x_532); +lean_dec_ref(x_531); +x_592 = lean_array_fget(x_543, x_544); +lean_dec(x_544); +lean_dec_ref(x_543); +x_593 = lean_array_fget_borrowed(x_565, x_566); +x_594 = lean_box(x_3); +x_595 = lean_box(x_4); +x_596 = lean_box(x_578); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_593); +lean_inc(x_10); +lean_inc_ref(x_2); +x_597 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_597, 0, x_592); +lean_closure_set(x_597, 1, x_590); +lean_closure_set(x_597, 2, x_2); +lean_closure_set(x_597, 3, x_10); +lean_closure_set(x_597, 4, x_594); +lean_closure_set(x_597, 5, x_595); +lean_closure_set(x_597, 6, x_593); +lean_closure_set(x_597, 7, x_5); +lean_closure_set(x_597, 8, x_6); +lean_closure_set(x_597, 9, x_596); +lean_closure_set(x_597, 10, x_534); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_598 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_591, x_576, x_597, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_598) == 0) +{ +lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; +x_599 = lean_ctor_get(x_598, 0); +lean_inc(x_599); +lean_dec_ref(x_598); +x_600 = lean_nat_add(x_566, x_534); +lean_dec(x_566); +if (lean_is_scalar(x_575)) { + x_601 = lean_alloc_ctor(0, 3, 0); +} else { + x_601 = x_575; +} +lean_ctor_set(x_601, 0, x_565); +lean_ctor_set(x_601, 1, x_600); +lean_ctor_set(x_601, 2, x_567); +x_602 = lean_array_push(x_520, x_599); +if (lean_is_scalar(x_521)) { + x_603 = lean_alloc_ctor(0, 2, 0); +} else { + x_603 = x_521; +} +lean_ctor_set(x_603, 0, x_536); +lean_ctor_set(x_603, 1, x_602); +if (lean_is_scalar(x_519)) { + x_604 = lean_alloc_ctor(0, 2, 0); +} else { + x_604 = x_519; +} +lean_ctor_set(x_604, 0, x_547); +lean_ctor_set(x_604, 1, x_603); +x_605 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_605, 0, x_558); +lean_ctor_set(x_605, 1, x_604); +lean_ctor_set(x_24, 1, x_605); +lean_ctor_set(x_24, 0, x_569); +lean_ctor_set(x_9, 0, x_601); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_606; lean_object* x_607; lean_object* x_608; +lean_dec(x_575); +lean_dec_ref(x_569); +lean_dec(x_567); +lean_dec(x_566); +lean_dec_ref(x_565); +lean_dec_ref(x_558); +lean_dec_ref(x_547); +lean_dec_ref(x_536); +lean_dec(x_521); +lean_dec(x_520); +lean_dec(x_519); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_606 = lean_ctor_get(x_598, 0); +lean_inc(x_606); +if (lean_is_exclusive(x_598)) { + lean_ctor_release(x_598, 0); + x_607 = x_598; +} else { + lean_dec_ref(x_598); + x_607 = lean_box(0); +} +if (lean_is_scalar(x_607)) { + x_608 = lean_alloc_ctor(1, 1, 0); +} else { + x_608 = x_607; +} +lean_ctor_set(x_608, 0, x_606); +return x_608; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; uint8_t x_619; +x_609 = lean_ctor_get(x_24, 0); +lean_inc(x_609); +lean_dec(x_24); +x_610 = lean_ctor_get(x_25, 0); +lean_inc(x_610); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + x_611 = x_25; +} else { + lean_dec_ref(x_25); + x_611 = lean_box(0); +} +x_612 = lean_ctor_get(x_26, 0); +lean_inc(x_612); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_613 = x_26; +} else { + lean_dec_ref(x_26); + x_613 = lean_box(0); +} +x_614 = lean_ctor_get(x_27, 1); +lean_inc(x_614); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_615 = x_27; +} else { + lean_dec_ref(x_27); + x_615 = lean_box(0); +} +x_616 = lean_ctor_get(x_28, 0); +x_617 = lean_ctor_get(x_28, 1); +x_618 = lean_ctor_get(x_28, 2); +x_619 = lean_nat_dec_lt(x_617, x_618); +if (x_619 == 0) +{ +lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_615)) { + x_620 = lean_alloc_ctor(0, 2, 0); +} else { + x_620 = x_615; +} +lean_ctor_set(x_620, 0, x_28); +lean_ctor_set(x_620, 1, x_614); +if (lean_is_scalar(x_613)) { + x_621 = lean_alloc_ctor(0, 2, 0); +} else { + x_621 = x_613; +} +lean_ctor_set(x_621, 0, x_612); +lean_ctor_set(x_621, 1, x_620); +if (lean_is_scalar(x_611)) { + x_622 = lean_alloc_ctor(0, 2, 0); +} else { + x_622 = x_611; +} +lean_ctor_set(x_622, 0, x_610); +lean_ctor_set(x_622, 1, x_621); +x_623 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_623, 0, x_609); +lean_ctor_set(x_623, 1, x_622); +lean_ctor_set(x_9, 1, x_623); +x_624 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_624, 0, x_9); +return x_624; +} +else +{ +lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; uint8_t x_632; +lean_inc(x_618); +lean_inc(x_617); +lean_inc_ref(x_616); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + lean_ctor_release(x_28, 2); + x_625 = x_28; +} else { + lean_dec_ref(x_28); + x_625 = lean_box(0); +} +x_626 = lean_ctor_get(x_612, 0); +x_627 = lean_ctor_get(x_612, 1); +x_628 = lean_ctor_get(x_612, 2); +x_629 = lean_unsigned_to_nat(1u); +x_630 = lean_nat_add(x_617, x_629); +lean_inc_ref(x_616); +if (lean_is_scalar(x_625)) { + x_631 = lean_alloc_ctor(0, 3, 0); +} else { + x_631 = x_625; +} +lean_ctor_set(x_631, 0, x_616); +lean_ctor_set(x_631, 1, x_630); +lean_ctor_set(x_631, 2, x_618); +x_632 = lean_nat_dec_lt(x_627, x_628); +if (x_632 == 0) +{ +lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; +lean_dec(x_617); +lean_dec_ref(x_616); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_615)) { + x_633 = lean_alloc_ctor(0, 2, 0); +} else { + x_633 = x_615; +} +lean_ctor_set(x_633, 0, x_631); +lean_ctor_set(x_633, 1, x_614); +if (lean_is_scalar(x_613)) { + x_634 = lean_alloc_ctor(0, 2, 0); +} else { + x_634 = x_613; +} +lean_ctor_set(x_634, 0, x_612); +lean_ctor_set(x_634, 1, x_633); +if (lean_is_scalar(x_611)) { + x_635 = lean_alloc_ctor(0, 2, 0); +} else { + x_635 = x_611; +} +lean_ctor_set(x_635, 0, x_610); +lean_ctor_set(x_635, 1, x_634); +x_636 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_636, 0, x_609); +lean_ctor_set(x_636, 1, x_635); +lean_ctor_set(x_9, 1, x_636); +x_637 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_637, 0, x_9); +return x_637; +} +else +{ +lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; uint8_t x_644; +lean_inc(x_628); +lean_inc(x_627); +lean_inc_ref(x_626); +if (lean_is_exclusive(x_612)) { + lean_ctor_release(x_612, 0); + lean_ctor_release(x_612, 1); + lean_ctor_release(x_612, 2); + x_638 = x_612; +} else { + lean_dec_ref(x_612); + x_638 = lean_box(0); +} +x_639 = lean_ctor_get(x_610, 0); +x_640 = lean_ctor_get(x_610, 1); +x_641 = lean_ctor_get(x_610, 2); +x_642 = lean_nat_add(x_627, x_629); +lean_inc_ref(x_626); +if (lean_is_scalar(x_638)) { + x_643 = lean_alloc_ctor(0, 3, 0); +} else { + x_643 = x_638; +} +lean_ctor_set(x_643, 0, x_626); +lean_ctor_set(x_643, 1, x_642); +lean_ctor_set(x_643, 2, x_628); +x_644 = lean_nat_dec_lt(x_640, x_641); +if (x_644 == 0) +{ +lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; +lean_dec(x_627); +lean_dec_ref(x_626); +lean_dec(x_617); +lean_dec_ref(x_616); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_615)) { + x_645 = lean_alloc_ctor(0, 2, 0); +} else { + x_645 = x_615; +} +lean_ctor_set(x_645, 0, x_631); +lean_ctor_set(x_645, 1, x_614); +if (lean_is_scalar(x_613)) { + x_646 = lean_alloc_ctor(0, 2, 0); +} else { + x_646 = x_613; +} +lean_ctor_set(x_646, 0, x_643); +lean_ctor_set(x_646, 1, x_645); +if (lean_is_scalar(x_611)) { + x_647 = lean_alloc_ctor(0, 2, 0); +} else { + x_647 = x_611; +} +lean_ctor_set(x_647, 0, x_610); +lean_ctor_set(x_647, 1, x_646); +x_648 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_648, 0, x_609); +lean_ctor_set(x_648, 1, x_647); +lean_ctor_set(x_9, 1, x_648); +x_649 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_649, 0, x_9); +return x_649; +} +else +{ +lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; uint8_t x_656; +lean_inc(x_641); +lean_inc(x_640); +lean_inc_ref(x_639); +if (lean_is_exclusive(x_610)) { + lean_ctor_release(x_610, 0); + lean_ctor_release(x_610, 1); + lean_ctor_release(x_610, 2); + x_650 = x_610; +} else { + lean_dec_ref(x_610); + x_650 = lean_box(0); +} +x_651 = lean_ctor_get(x_609, 0); +x_652 = lean_ctor_get(x_609, 1); +x_653 = lean_ctor_get(x_609, 2); +x_654 = lean_nat_add(x_640, x_629); +lean_inc_ref(x_639); +if (lean_is_scalar(x_650)) { + x_655 = lean_alloc_ctor(0, 3, 0); +} else { + x_655 = x_650; +} +lean_ctor_set(x_655, 0, x_639); +lean_ctor_set(x_655, 1, x_654); +lean_ctor_set(x_655, 2, x_641); +x_656 = lean_nat_dec_lt(x_652, x_653); +if (x_656 == 0) +{ +lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; +lean_dec(x_640); +lean_dec_ref(x_639); +lean_dec(x_627); +lean_dec_ref(x_626); +lean_dec(x_617); +lean_dec_ref(x_616); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_615)) { + x_657 = lean_alloc_ctor(0, 2, 0); +} else { + x_657 = x_615; +} +lean_ctor_set(x_657, 0, x_631); +lean_ctor_set(x_657, 1, x_614); +if (lean_is_scalar(x_613)) { + x_658 = lean_alloc_ctor(0, 2, 0); +} else { + x_658 = x_613; +} +lean_ctor_set(x_658, 0, x_643); +lean_ctor_set(x_658, 1, x_657); +if (lean_is_scalar(x_611)) { + x_659 = lean_alloc_ctor(0, 2, 0); +} else { + x_659 = x_611; +} +lean_ctor_set(x_659, 0, x_655); +lean_ctor_set(x_659, 1, x_658); +x_660 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_660, 0, x_609); +lean_ctor_set(x_660, 1, x_659); +lean_ctor_set(x_9, 1, x_660); +x_661 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_661, 0, x_9); +return x_661; +} +else +{ +lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; uint8_t x_668; +lean_inc(x_653); +lean_inc(x_652); +lean_inc_ref(x_651); +if (lean_is_exclusive(x_609)) { + lean_ctor_release(x_609, 0); + lean_ctor_release(x_609, 1); + lean_ctor_release(x_609, 2); + x_662 = x_609; +} else { + lean_dec_ref(x_609); + x_662 = lean_box(0); +} +x_663 = lean_ctor_get(x_30, 0); +x_664 = lean_ctor_get(x_30, 1); +x_665 = lean_ctor_get(x_30, 2); +x_666 = lean_nat_add(x_652, x_629); +lean_inc_ref(x_651); +if (lean_is_scalar(x_662)) { + x_667 = lean_alloc_ctor(0, 3, 0); +} else { + x_667 = x_662; +} +lean_ctor_set(x_667, 0, x_651); +lean_ctor_set(x_667, 1, x_666); +lean_ctor_set(x_667, 2, x_653); +x_668 = lean_nat_dec_lt(x_664, x_665); +if (x_668 == 0) +{ +lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; +lean_dec(x_652); +lean_dec_ref(x_651); +lean_dec(x_640); +lean_dec_ref(x_639); +lean_dec(x_627); +lean_dec_ref(x_626); +lean_dec(x_617); +lean_dec_ref(x_616); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_615)) { + x_669 = lean_alloc_ctor(0, 2, 0); +} else { + x_669 = x_615; +} +lean_ctor_set(x_669, 0, x_631); +lean_ctor_set(x_669, 1, x_614); +if (lean_is_scalar(x_613)) { + x_670 = lean_alloc_ctor(0, 2, 0); +} else { + x_670 = x_613; +} +lean_ctor_set(x_670, 0, x_643); +lean_ctor_set(x_670, 1, x_669); +if (lean_is_scalar(x_611)) { + x_671 = lean_alloc_ctor(0, 2, 0); +} else { + x_671 = x_611; +} +lean_ctor_set(x_671, 0, x_655); +lean_ctor_set(x_671, 1, x_670); +x_672 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_672, 0, x_667); +lean_ctor_set(x_672, 1, x_671); +lean_ctor_set(x_9, 1, x_672); +x_673 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_673, 0, x_9); +return x_673; +} +else +{ +lean_object* x_674; lean_object* x_675; lean_object* x_676; uint8_t x_677; uint8_t x_678; +lean_inc(x_665); +lean_inc(x_664); +lean_inc_ref(x_663); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_674 = x_30; +} else { + lean_dec_ref(x_30); + x_674 = lean_box(0); +} +x_675 = lean_array_fget(x_651, x_652); +lean_dec(x_652); +lean_dec_ref(x_651); +x_676 = lean_ctor_get(x_675, 1); +x_677 = lean_ctor_get_uint8(x_675, sizeof(void*)*2); +x_678 = lean_nat_dec_eq(x_676, x_1); +if (x_678 == 0) +{ +lean_object* x_679; lean_object* x_680; +lean_dec_ref(x_675); +lean_dec(x_674); +lean_dec_ref(x_667); +lean_dec(x_665); +lean_dec(x_664); +lean_dec_ref(x_663); +lean_dec_ref(x_655); +lean_dec_ref(x_643); +lean_dec(x_640); +lean_dec_ref(x_639); +lean_dec_ref(x_631); +lean_dec(x_627); +lean_dec_ref(x_626); +lean_dec(x_617); +lean_dec_ref(x_616); +lean_dec(x_615); +lean_dec(x_614); +lean_dec(x_613); +lean_dec(x_611); +lean_free_object(x_9); +x_679 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_680 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_679, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_680) == 0) +{ +lean_object* x_681; lean_object* x_682; +x_681 = lean_ctor_get(x_680, 0); +lean_inc(x_681); +if (lean_is_exclusive(x_680)) { + lean_ctor_release(x_680, 0); + x_682 = x_680; +} else { + lean_dec_ref(x_680); + x_682 = lean_box(0); +} +if (lean_obj_tag(x_681) == 0) +{ +lean_object* x_683; lean_object* x_684; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_683 = lean_ctor_get(x_681, 0); +lean_inc(x_683); +lean_dec_ref(x_681); +if (lean_is_scalar(x_682)) { + x_684 = lean_alloc_ctor(0, 1, 0); +} else { + x_684 = x_682; +} +lean_ctor_set(x_684, 0, x_683); +return x_684; +} +else +{ +lean_object* x_685; +lean_dec(x_682); +x_685 = lean_ctor_get(x_681, 0); +lean_inc(x_685); +lean_dec_ref(x_681); +x_16 = x_685; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_686; lean_object* x_687; lean_object* x_688; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_686 = lean_ctor_get(x_680, 0); +lean_inc(x_686); +if (lean_is_exclusive(x_680)) { + lean_ctor_release(x_680, 0); + x_687 = x_680; +} else { + lean_dec_ref(x_680); + x_687 = lean_box(0); +} +if (lean_is_scalar(x_687)) { + x_688 = lean_alloc_ctor(1, 1, 0); +} else { + x_688 = x_687; +} +lean_ctor_set(x_688, 0, x_686); +return x_688; +} +} +else +{ +lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; +x_689 = lean_array_fget(x_616, x_617); +lean_dec(x_617); +lean_dec_ref(x_616); +x_690 = lean_array_fget(x_626, x_627); +lean_dec(x_627); +lean_dec_ref(x_626); +x_691 = lean_array_fget(x_639, x_640); +lean_dec(x_640); +lean_dec_ref(x_639); +x_692 = lean_array_fget_borrowed(x_663, x_664); +x_693 = lean_box(x_3); +x_694 = lean_box(x_4); +x_695 = lean_box(x_677); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_692); +lean_inc(x_10); +lean_inc_ref(x_2); +x_696 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_696, 0, x_691); +lean_closure_set(x_696, 1, x_689); +lean_closure_set(x_696, 2, x_2); +lean_closure_set(x_696, 3, x_10); +lean_closure_set(x_696, 4, x_693); +lean_closure_set(x_696, 5, x_694); +lean_closure_set(x_696, 6, x_692); +lean_closure_set(x_696, 7, x_5); +lean_closure_set(x_696, 8, x_6); +lean_closure_set(x_696, 9, x_695); +lean_closure_set(x_696, 10, x_629); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_697 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_690, x_675, x_696, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_697) == 0) +{ +lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; +x_698 = lean_ctor_get(x_697, 0); +lean_inc(x_698); +lean_dec_ref(x_697); +x_699 = lean_nat_add(x_664, x_629); +lean_dec(x_664); +if (lean_is_scalar(x_674)) { + x_700 = lean_alloc_ctor(0, 3, 0); +} else { + x_700 = x_674; +} +lean_ctor_set(x_700, 0, x_663); +lean_ctor_set(x_700, 1, x_699); +lean_ctor_set(x_700, 2, x_665); +x_701 = lean_array_push(x_614, x_698); +if (lean_is_scalar(x_615)) { + x_702 = lean_alloc_ctor(0, 2, 0); +} else { + x_702 = x_615; +} +lean_ctor_set(x_702, 0, x_631); +lean_ctor_set(x_702, 1, x_701); +if (lean_is_scalar(x_613)) { + x_703 = lean_alloc_ctor(0, 2, 0); +} else { + x_703 = x_613; +} +lean_ctor_set(x_703, 0, x_643); +lean_ctor_set(x_703, 1, x_702); +if (lean_is_scalar(x_611)) { + x_704 = lean_alloc_ctor(0, 2, 0); +} else { + x_704 = x_611; +} +lean_ctor_set(x_704, 0, x_655); +lean_ctor_set(x_704, 1, x_703); +x_705 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_705, 0, x_667); +lean_ctor_set(x_705, 1, x_704); +lean_ctor_set(x_9, 1, x_705); +lean_ctor_set(x_9, 0, x_700); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_706; lean_object* x_707; lean_object* x_708; +lean_dec(x_674); +lean_dec_ref(x_667); +lean_dec(x_665); +lean_dec(x_664); +lean_dec_ref(x_663); +lean_dec_ref(x_655); +lean_dec_ref(x_643); +lean_dec_ref(x_631); +lean_dec(x_615); +lean_dec(x_614); +lean_dec(x_613); +lean_dec(x_611); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_706 = lean_ctor_get(x_697, 0); +lean_inc(x_706); +if (lean_is_exclusive(x_697)) { + lean_ctor_release(x_697, 0); + x_707 = x_697; +} else { + lean_dec_ref(x_697); + x_707 = lean_box(0); +} +if (lean_is_scalar(x_707)) { + x_708 = lean_alloc_ctor(1, 1, 0); +} else { + x_708 = x_707; +} +lean_ctor_set(x_708, 0, x_706); +return x_708; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; uint8_t x_721; +x_709 = lean_ctor_get(x_9, 0); +lean_inc(x_709); +lean_dec(x_9); +x_710 = lean_ctor_get(x_24, 0); +lean_inc(x_710); +if (lean_is_exclusive(x_24)) { + lean_ctor_release(x_24, 0); + lean_ctor_release(x_24, 1); + x_711 = x_24; +} else { + lean_dec_ref(x_24); + x_711 = lean_box(0); +} +x_712 = lean_ctor_get(x_25, 0); +lean_inc(x_712); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + x_713 = x_25; +} else { + lean_dec_ref(x_25); + x_713 = lean_box(0); +} +x_714 = lean_ctor_get(x_26, 0); +lean_inc(x_714); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_715 = x_26; +} else { + lean_dec_ref(x_26); + x_715 = lean_box(0); +} +x_716 = lean_ctor_get(x_27, 1); +lean_inc(x_716); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_717 = x_27; +} else { + lean_dec_ref(x_27); + x_717 = lean_box(0); +} +x_718 = lean_ctor_get(x_28, 0); +x_719 = lean_ctor_get(x_28, 1); +x_720 = lean_ctor_get(x_28, 2); +x_721 = lean_nat_dec_lt(x_719, x_720); +if (x_721 == 0) +{ +lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_717)) { + x_722 = lean_alloc_ctor(0, 2, 0); +} else { + x_722 = x_717; +} +lean_ctor_set(x_722, 0, x_28); +lean_ctor_set(x_722, 1, x_716); +if (lean_is_scalar(x_715)) { + x_723 = lean_alloc_ctor(0, 2, 0); +} else { + x_723 = x_715; +} +lean_ctor_set(x_723, 0, x_714); +lean_ctor_set(x_723, 1, x_722); +if (lean_is_scalar(x_713)) { + x_724 = lean_alloc_ctor(0, 2, 0); +} else { + x_724 = x_713; +} +lean_ctor_set(x_724, 0, x_712); +lean_ctor_set(x_724, 1, x_723); +if (lean_is_scalar(x_711)) { + x_725 = lean_alloc_ctor(0, 2, 0); +} else { + x_725 = x_711; +} +lean_ctor_set(x_725, 0, x_710); +lean_ctor_set(x_725, 1, x_724); +x_726 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_726, 0, x_709); +lean_ctor_set(x_726, 1, x_725); +x_727 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_727, 0, x_726); +return x_727; +} +else +{ +lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; uint8_t x_735; +lean_inc(x_720); +lean_inc(x_719); +lean_inc_ref(x_718); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + lean_ctor_release(x_28, 2); + x_728 = x_28; +} else { + lean_dec_ref(x_28); + x_728 = lean_box(0); +} +x_729 = lean_ctor_get(x_714, 0); +x_730 = lean_ctor_get(x_714, 1); +x_731 = lean_ctor_get(x_714, 2); +x_732 = lean_unsigned_to_nat(1u); +x_733 = lean_nat_add(x_719, x_732); +lean_inc_ref(x_718); +if (lean_is_scalar(x_728)) { + x_734 = lean_alloc_ctor(0, 3, 0); +} else { + x_734 = x_728; +} +lean_ctor_set(x_734, 0, x_718); +lean_ctor_set(x_734, 1, x_733); +lean_ctor_set(x_734, 2, x_720); +x_735 = lean_nat_dec_lt(x_730, x_731); +if (x_735 == 0) +{ +lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; +lean_dec(x_719); +lean_dec_ref(x_718); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_717)) { + x_736 = lean_alloc_ctor(0, 2, 0); +} else { + x_736 = x_717; +} +lean_ctor_set(x_736, 0, x_734); +lean_ctor_set(x_736, 1, x_716); +if (lean_is_scalar(x_715)) { + x_737 = lean_alloc_ctor(0, 2, 0); +} else { + x_737 = x_715; +} +lean_ctor_set(x_737, 0, x_714); +lean_ctor_set(x_737, 1, x_736); +if (lean_is_scalar(x_713)) { + x_738 = lean_alloc_ctor(0, 2, 0); +} else { + x_738 = x_713; +} +lean_ctor_set(x_738, 0, x_712); +lean_ctor_set(x_738, 1, x_737); +if (lean_is_scalar(x_711)) { + x_739 = lean_alloc_ctor(0, 2, 0); +} else { + x_739 = x_711; +} +lean_ctor_set(x_739, 0, x_710); +lean_ctor_set(x_739, 1, x_738); +x_740 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_740, 0, x_709); +lean_ctor_set(x_740, 1, x_739); +x_741 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_741, 0, x_740); +return x_741; +} +else +{ +lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; uint8_t x_748; +lean_inc(x_731); +lean_inc(x_730); +lean_inc_ref(x_729); +if (lean_is_exclusive(x_714)) { + lean_ctor_release(x_714, 0); + lean_ctor_release(x_714, 1); + lean_ctor_release(x_714, 2); + x_742 = x_714; +} else { + lean_dec_ref(x_714); + x_742 = lean_box(0); +} +x_743 = lean_ctor_get(x_712, 0); +x_744 = lean_ctor_get(x_712, 1); +x_745 = lean_ctor_get(x_712, 2); +x_746 = lean_nat_add(x_730, x_732); +lean_inc_ref(x_729); +if (lean_is_scalar(x_742)) { + x_747 = lean_alloc_ctor(0, 3, 0); +} else { + x_747 = x_742; +} +lean_ctor_set(x_747, 0, x_729); +lean_ctor_set(x_747, 1, x_746); +lean_ctor_set(x_747, 2, x_731); +x_748 = lean_nat_dec_lt(x_744, x_745); +if (x_748 == 0) +{ +lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; +lean_dec(x_730); +lean_dec_ref(x_729); +lean_dec(x_719); +lean_dec_ref(x_718); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_717)) { + x_749 = lean_alloc_ctor(0, 2, 0); +} else { + x_749 = x_717; +} +lean_ctor_set(x_749, 0, x_734); +lean_ctor_set(x_749, 1, x_716); +if (lean_is_scalar(x_715)) { + x_750 = lean_alloc_ctor(0, 2, 0); +} else { + x_750 = x_715; +} +lean_ctor_set(x_750, 0, x_747); +lean_ctor_set(x_750, 1, x_749); +if (lean_is_scalar(x_713)) { + x_751 = lean_alloc_ctor(0, 2, 0); +} else { + x_751 = x_713; +} +lean_ctor_set(x_751, 0, x_712); +lean_ctor_set(x_751, 1, x_750); +if (lean_is_scalar(x_711)) { + x_752 = lean_alloc_ctor(0, 2, 0); +} else { + x_752 = x_711; +} +lean_ctor_set(x_752, 0, x_710); +lean_ctor_set(x_752, 1, x_751); +x_753 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_753, 0, x_709); +lean_ctor_set(x_753, 1, x_752); +x_754 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_754, 0, x_753); +return x_754; +} +else +{ +lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; uint8_t x_761; +lean_inc(x_745); +lean_inc(x_744); +lean_inc_ref(x_743); +if (lean_is_exclusive(x_712)) { + lean_ctor_release(x_712, 0); + lean_ctor_release(x_712, 1); + lean_ctor_release(x_712, 2); + x_755 = x_712; +} else { + lean_dec_ref(x_712); + x_755 = lean_box(0); +} +x_756 = lean_ctor_get(x_710, 0); +x_757 = lean_ctor_get(x_710, 1); +x_758 = lean_ctor_get(x_710, 2); +x_759 = lean_nat_add(x_744, x_732); +lean_inc_ref(x_743); +if (lean_is_scalar(x_755)) { + x_760 = lean_alloc_ctor(0, 3, 0); +} else { + x_760 = x_755; +} +lean_ctor_set(x_760, 0, x_743); +lean_ctor_set(x_760, 1, x_759); +lean_ctor_set(x_760, 2, x_745); +x_761 = lean_nat_dec_lt(x_757, x_758); +if (x_761 == 0) +{ +lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; +lean_dec(x_744); +lean_dec_ref(x_743); +lean_dec(x_730); +lean_dec_ref(x_729); +lean_dec(x_719); +lean_dec_ref(x_718); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_717)) { + x_762 = lean_alloc_ctor(0, 2, 0); +} else { + x_762 = x_717; +} +lean_ctor_set(x_762, 0, x_734); +lean_ctor_set(x_762, 1, x_716); +if (lean_is_scalar(x_715)) { + x_763 = lean_alloc_ctor(0, 2, 0); +} else { + x_763 = x_715; +} +lean_ctor_set(x_763, 0, x_747); +lean_ctor_set(x_763, 1, x_762); +if (lean_is_scalar(x_713)) { + x_764 = lean_alloc_ctor(0, 2, 0); +} else { + x_764 = x_713; +} +lean_ctor_set(x_764, 0, x_760); +lean_ctor_set(x_764, 1, x_763); +if (lean_is_scalar(x_711)) { + x_765 = lean_alloc_ctor(0, 2, 0); +} else { + x_765 = x_711; +} +lean_ctor_set(x_765, 0, x_710); +lean_ctor_set(x_765, 1, x_764); +x_766 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_766, 0, x_709); +lean_ctor_set(x_766, 1, x_765); +x_767 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_767, 0, x_766); +return x_767; +} +else +{ +lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; uint8_t x_774; +lean_inc(x_758); +lean_inc(x_757); +lean_inc_ref(x_756); +if (lean_is_exclusive(x_710)) { + lean_ctor_release(x_710, 0); + lean_ctor_release(x_710, 1); + lean_ctor_release(x_710, 2); + x_768 = x_710; +} else { + lean_dec_ref(x_710); + x_768 = lean_box(0); +} +x_769 = lean_ctor_get(x_709, 0); +x_770 = lean_ctor_get(x_709, 1); +x_771 = lean_ctor_get(x_709, 2); +x_772 = lean_nat_add(x_757, x_732); +lean_inc_ref(x_756); +if (lean_is_scalar(x_768)) { + x_773 = lean_alloc_ctor(0, 3, 0); +} else { + x_773 = x_768; +} +lean_ctor_set(x_773, 0, x_756); +lean_ctor_set(x_773, 1, x_772); +lean_ctor_set(x_773, 2, x_758); +x_774 = lean_nat_dec_lt(x_770, x_771); +if (x_774 == 0) +{ +lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; +lean_dec(x_757); +lean_dec_ref(x_756); +lean_dec(x_744); +lean_dec_ref(x_743); +lean_dec(x_730); +lean_dec_ref(x_729); +lean_dec(x_719); +lean_dec_ref(x_718); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_717)) { + x_775 = lean_alloc_ctor(0, 2, 0); +} else { + x_775 = x_717; +} +lean_ctor_set(x_775, 0, x_734); +lean_ctor_set(x_775, 1, x_716); +if (lean_is_scalar(x_715)) { + x_776 = lean_alloc_ctor(0, 2, 0); +} else { + x_776 = x_715; +} +lean_ctor_set(x_776, 0, x_747); +lean_ctor_set(x_776, 1, x_775); +if (lean_is_scalar(x_713)) { + x_777 = lean_alloc_ctor(0, 2, 0); +} else { + x_777 = x_713; +} +lean_ctor_set(x_777, 0, x_760); +lean_ctor_set(x_777, 1, x_776); +if (lean_is_scalar(x_711)) { + x_778 = lean_alloc_ctor(0, 2, 0); +} else { + x_778 = x_711; +} +lean_ctor_set(x_778, 0, x_773); +lean_ctor_set(x_778, 1, x_777); +x_779 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_779, 0, x_709); +lean_ctor_set(x_779, 1, x_778); +x_780 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_780, 0, x_779); +return x_780; +} +else +{ +lean_object* x_781; lean_object* x_782; lean_object* x_783; uint8_t x_784; uint8_t x_785; +lean_inc(x_771); +lean_inc(x_770); +lean_inc_ref(x_769); +if (lean_is_exclusive(x_709)) { + lean_ctor_release(x_709, 0); + lean_ctor_release(x_709, 1); + lean_ctor_release(x_709, 2); + x_781 = x_709; +} else { + lean_dec_ref(x_709); + x_781 = lean_box(0); +} +x_782 = lean_array_fget(x_756, x_757); +lean_dec(x_757); +lean_dec_ref(x_756); +x_783 = lean_ctor_get(x_782, 1); +x_784 = lean_ctor_get_uint8(x_782, sizeof(void*)*2); +x_785 = lean_nat_dec_eq(x_783, x_1); +if (x_785 == 0) +{ +lean_object* x_786; lean_object* x_787; +lean_dec_ref(x_782); +lean_dec(x_781); +lean_dec_ref(x_773); +lean_dec(x_771); +lean_dec(x_770); +lean_dec_ref(x_769); +lean_dec_ref(x_760); +lean_dec_ref(x_747); +lean_dec(x_744); +lean_dec_ref(x_743); +lean_dec_ref(x_734); +lean_dec(x_730); +lean_dec_ref(x_729); +lean_dec(x_719); +lean_dec_ref(x_718); +lean_dec(x_717); +lean_dec(x_716); +lean_dec(x_715); +lean_dec(x_713); +lean_dec(x_711); +x_786 = l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_787 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_786, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_787) == 0) +{ +lean_object* x_788; lean_object* x_789; +x_788 = lean_ctor_get(x_787, 0); +lean_inc(x_788); +if (lean_is_exclusive(x_787)) { + lean_ctor_release(x_787, 0); + x_789 = x_787; +} else { + lean_dec_ref(x_787); + x_789 = lean_box(0); +} +if (lean_obj_tag(x_788) == 0) +{ +lean_object* x_790; lean_object* x_791; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_790 = lean_ctor_get(x_788, 0); +lean_inc(x_790); +lean_dec_ref(x_788); +if (lean_is_scalar(x_789)) { + x_791 = lean_alloc_ctor(0, 1, 0); +} else { + x_791 = x_789; +} +lean_ctor_set(x_791, 0, x_790); +return x_791; +} +else +{ +lean_object* x_792; +lean_dec(x_789); +x_792 = lean_ctor_get(x_788, 0); +lean_inc(x_792); +lean_dec_ref(x_788); +x_16 = x_792; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_793; lean_object* x_794; lean_object* x_795; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_793 = lean_ctor_get(x_787, 0); +lean_inc(x_793); +if (lean_is_exclusive(x_787)) { + lean_ctor_release(x_787, 0); + x_794 = x_787; +} else { + lean_dec_ref(x_787); + x_794 = lean_box(0); +} +if (lean_is_scalar(x_794)) { + x_795 = lean_alloc_ctor(1, 1, 0); +} else { + x_795 = x_794; +} +lean_ctor_set(x_795, 0, x_793); +return x_795; +} +} +else +{ +lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; +x_796 = lean_array_fget(x_718, x_719); +lean_dec(x_719); +lean_dec_ref(x_718); +x_797 = lean_array_fget(x_729, x_730); +lean_dec(x_730); +lean_dec_ref(x_729); +x_798 = lean_array_fget(x_743, x_744); +lean_dec(x_744); +lean_dec_ref(x_743); +x_799 = lean_array_fget_borrowed(x_769, x_770); +x_800 = lean_box(x_3); +x_801 = lean_box(x_4); +x_802 = lean_box(x_784); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_799); +lean_inc(x_10); +lean_inc_ref(x_2); +x_803 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_803, 0, x_798); +lean_closure_set(x_803, 1, x_796); +lean_closure_set(x_803, 2, x_2); +lean_closure_set(x_803, 3, x_10); +lean_closure_set(x_803, 4, x_800); +lean_closure_set(x_803, 5, x_801); +lean_closure_set(x_803, 6, x_799); +lean_closure_set(x_803, 7, x_5); +lean_closure_set(x_803, 8, x_6); +lean_closure_set(x_803, 9, x_802); +lean_closure_set(x_803, 10, x_732); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_804 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_797, x_782, x_803, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_804) == 0) +{ +lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; +x_805 = lean_ctor_get(x_804, 0); +lean_inc(x_805); +lean_dec_ref(x_804); +x_806 = lean_nat_add(x_770, x_732); +lean_dec(x_770); +if (lean_is_scalar(x_781)) { + x_807 = lean_alloc_ctor(0, 3, 0); +} else { + x_807 = x_781; +} +lean_ctor_set(x_807, 0, x_769); +lean_ctor_set(x_807, 1, x_806); +lean_ctor_set(x_807, 2, x_771); +x_808 = lean_array_push(x_716, x_805); +if (lean_is_scalar(x_717)) { + x_809 = lean_alloc_ctor(0, 2, 0); +} else { + x_809 = x_717; +} +lean_ctor_set(x_809, 0, x_734); +lean_ctor_set(x_809, 1, x_808); +if (lean_is_scalar(x_715)) { + x_810 = lean_alloc_ctor(0, 2, 0); +} else { + x_810 = x_715; +} +lean_ctor_set(x_810, 0, x_747); +lean_ctor_set(x_810, 1, x_809); +if (lean_is_scalar(x_713)) { + x_811 = lean_alloc_ctor(0, 2, 0); +} else { + x_811 = x_713; +} +lean_ctor_set(x_811, 0, x_760); +lean_ctor_set(x_811, 1, x_810); +if (lean_is_scalar(x_711)) { + x_812 = lean_alloc_ctor(0, 2, 0); +} else { + x_812 = x_711; +} +lean_ctor_set(x_812, 0, x_773); +lean_ctor_set(x_812, 1, x_811); +x_813 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_813, 0, x_807); +lean_ctor_set(x_813, 1, x_812); +x_16 = x_813; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_814; lean_object* x_815; lean_object* x_816; +lean_dec(x_781); +lean_dec_ref(x_773); +lean_dec(x_771); +lean_dec(x_770); +lean_dec_ref(x_769); +lean_dec_ref(x_760); +lean_dec_ref(x_747); +lean_dec_ref(x_734); +lean_dec(x_717); +lean_dec(x_716); +lean_dec(x_715); +lean_dec(x_713); +lean_dec(x_711); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_814 = lean_ctor_get(x_804, 0); +lean_inc(x_814); +if (lean_is_exclusive(x_804)) { + lean_ctor_release(x_804, 0); + x_815 = x_804; +} else { + lean_dec_ref(x_804); + x_815 = lean_box(0); +} +if (lean_is_scalar(x_815)) { + x_816 = lean_alloc_ctor(1, 1, 0); +} else { + x_816 = x_815; +} +lean_ctor_set(x_816, 0, x_814); +return x_816; +} +} +} +} +} +} +} +} +block_23: +{ +lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_add(x_10, x_18); +lean_dec(x_10); +x_20 = lean_nat_dec_lt(x_19, x_7); +if (x_20 == 0) +{ +lean_object* x_21; +lean_dec(x_19); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_21 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_21, 0, x_16); +return x_21; +} +else +{ +lean_object* x_22; +x_22 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_16, x_19, x_11, x_12, x_13, x_14); +return x_22; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +_start: +{ +lean_object* x_21; +x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_11, x_12, x_13, x_16, x_17, x_18, x_19); +return x_21; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__21___redArg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; @@ -23891,11 +31286,11 @@ lean_ctor_set(x_7, 0, x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__21(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_7; -x_7 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_1, x_5); +x_7 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__21___redArg(x_1, x_5); return x_7; } } @@ -24544,7 +31939,7 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; uint8_t x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; uint8_t x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; uint8_t x_294; uint8_t x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; size_t x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; uint8_t x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; uint8_t x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; uint8_t x_288; uint8_t x_289; lean_object* x_290; lean_object* x_291; size_t x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; x_13 = lean_st_ref_get(x_11); x_14 = lean_ctor_get(x_13, 0); lean_inc_ref(x_14); @@ -24552,6 +31947,7 @@ lean_dec_ref(x_13); x_15 = lean_ctor_get(x_1, 0); lean_inc_ref(x_15); x_16 = lean_ctor_get(x_1, 1); +lean_inc(x_16); x_17 = lean_ctor_get(x_1, 2); x_18 = lean_ctor_get(x_1, 3); x_19 = lean_ctor_get(x_1, 4); @@ -24560,171 +31956,265 @@ x_21 = lean_ctor_get(x_1, 6); x_22 = lean_ctor_get(x_1, 7); lean_inc_ref(x_22); lean_inc(x_16); -x_294 = l_Lean_isCasesOnRecursor(x_14, x_16); -if (x_294 == 0) +x_288 = l_Lean_isCasesOnRecursor(x_14, x_16); +if (x_288 == 0) { -lean_object* x_448; lean_object* x_449; +lean_object* x_442; lean_object* x_443; lean_inc(x_16); -x_448 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_16, x_11); -x_449 = lean_ctor_get(x_448, 0); -lean_inc(x_449); -lean_dec_ref(x_448); -if (lean_obj_tag(x_449) == 0) +x_442 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__21___redArg(x_16, x_11); +x_443 = lean_ctor_get(x_442, 0); +lean_inc(x_443); +lean_dec_ref(x_442); +if (lean_obj_tag(x_443) == 0) { -lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; uint8_t x_456; +lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; uint8_t x_450; lean_dec_ref(x_22); -lean_inc(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_450 = l_Lean_Meta_MatcherApp_transform___redArg___lam__73___closed__1; -x_451 = l_Lean_MessageData_ofName(x_16); -x_452 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_452, 0, x_450); -lean_ctor_set(x_452, 1, x_451); -x_453 = l_Lean_Meta_MatcherApp_transform___redArg___lam__73___closed__3; -x_454 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_454, 0, x_452); -lean_ctor_set(x_454, 1, x_453); -x_455 = l_Lean_throwError___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__0___redArg(x_454, x_8, x_9, x_10, x_11); +x_444 = l_Lean_Meta_MatcherApp_transform___redArg___lam__73___closed__1; +x_445 = l_Lean_MessageData_ofName(x_16); +x_446 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_446, 0, x_444); +lean_ctor_set(x_446, 1, x_445); +x_447 = l_Lean_Meta_MatcherApp_transform___redArg___lam__73___closed__3; +x_448 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_448, 0, x_446); +lean_ctor_set(x_448, 1, x_447); +x_449 = l_Lean_throwError___at___00__private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__0___redArg(x_448, x_8, x_9, x_10, x_11); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); lean_dec_ref(x_8); -x_456 = !lean_is_exclusive(x_455); -if (x_456 == 0) +x_450 = !lean_is_exclusive(x_449); +if (x_450 == 0) { -return x_455; +return x_449; } else { -lean_object* x_457; lean_object* x_458; -x_457 = lean_ctor_get(x_455, 0); -lean_inc(x_457); -lean_dec(x_455); -x_458 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_458, 0, x_457); -return x_458; +lean_object* x_451; lean_object* x_452; +x_451 = lean_ctor_get(x_449, 0); +lean_inc(x_451); +lean_dec(x_449); +x_452 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_452, 0, x_451); +return x_452; } } else { -lean_object* x_459; lean_object* x_460; -x_459 = lean_ctor_get(x_449, 0); -lean_inc(x_459); -lean_dec_ref(x_449); -x_460 = l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs(x_459); -lean_dec(x_459); -x_407 = x_460; -x_408 = x_8; -x_409 = x_9; -x_410 = x_10; -x_411 = x_11; -x_412 = lean_box(0); -goto block_447; +lean_object* x_453; lean_object* x_454; +x_453 = lean_ctor_get(x_443, 0); +lean_inc(x_453); +lean_dec_ref(x_443); +x_454 = l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs(x_453); +lean_dec(x_453); +x_401 = x_454; +x_402 = x_8; +x_403 = x_9; +x_404 = x_10; +x_405 = x_11; +x_406 = lean_box(0); +goto block_441; } } else { -lean_object* x_461; -x_461 = lean_unsigned_to_nat(0u); -x_407 = x_461; -x_408 = x_8; -x_409 = x_9; -x_410 = x_10; -x_411 = x_11; -x_412 = lean_box(0); -goto block_447; +lean_object* x_455; +x_455 = lean_unsigned_to_nat(0u); +x_401 = x_455; +x_402 = x_8; +x_403 = x_9; +x_404 = x_10; +x_405 = x_11; +x_406 = lean_box(0); +goto block_441; } -block_65: +block_55: { -lean_object* x_35; -x_35 = lean_apply_6(x_7, x_22, x_30, x_31, x_32, x_33, lean_box(0)); -if (lean_obj_tag(x_35) == 0) +lean_object* x_41; +x_41 = lean_apply_6(x_7, x_22, x_36, x_37, x_38, x_39, lean_box(0)); +if (lean_obj_tag(x_41) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_41); +if (x_42 == 0) { -uint8_t x_37; -x_37 = !lean_is_exclusive(x_15); -if (x_37 == 0) -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_38 = lean_ctor_get(x_35, 0); -x_39 = lean_ctor_get(x_15, 4); -lean_dec(x_39); -x_40 = l_Array_append___redArg(x_26, x_38); -lean_dec(x_38); -lean_ctor_set(x_15, 4, x_28); -x_41 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_41, 0, x_15); -lean_ctor_set(x_41, 1, x_16); -lean_ctor_set(x_41, 2, x_27); -lean_ctor_set(x_41, 3, x_23); -lean_ctor_set(x_41, 4, x_24); -lean_ctor_set(x_41, 5, x_25); -lean_ctor_set(x_41, 6, x_29); -lean_ctor_set(x_41, 7, x_40); -lean_ctor_set(x_35, 0, x_41); -return x_35; +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_43 = lean_ctor_get(x_41, 0); +x_44 = l_Array_append___redArg(x_28, x_43); +lean_dec(x_43); +x_45 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_45, 0, x_30); +lean_ctor_set(x_45, 1, x_25); +lean_ctor_set(x_45, 2, x_32); +lean_ctor_set(x_45, 3, x_24); +lean_ctor_set(x_45, 4, x_31); +lean_ctor_set(x_45, 5, x_29); +x_46 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_23); +lean_ctor_set(x_46, 2, x_34); +lean_ctor_set(x_46, 3, x_33); +lean_ctor_set(x_46, 4, x_27); +lean_ctor_set(x_46, 5, x_26); +lean_ctor_set(x_46, 6, x_35); +lean_ctor_set(x_46, 7, x_44); +lean_ctor_set(x_41, 0, x_46); +return x_41; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_42 = lean_ctor_get(x_35, 0); -x_43 = lean_ctor_get(x_15, 0); -x_44 = lean_ctor_get(x_15, 1); -x_45 = lean_ctor_get(x_15, 2); -x_46 = lean_ctor_get(x_15, 3); -x_47 = lean_ctor_get(x_15, 5); +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_47 = lean_ctor_get(x_41, 0); lean_inc(x_47); -lean_inc(x_46); -lean_inc(x_45); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_15); -x_48 = l_Array_append___redArg(x_26, x_42); -lean_dec(x_42); +lean_dec(x_41); +x_48 = l_Array_append___redArg(x_28, x_47); +lean_dec(x_47); x_49 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_49, 0, x_43); -lean_ctor_set(x_49, 1, x_44); -lean_ctor_set(x_49, 2, x_45); -lean_ctor_set(x_49, 3, x_46); -lean_ctor_set(x_49, 4, x_28); -lean_ctor_set(x_49, 5, x_47); +lean_ctor_set(x_49, 0, x_30); +lean_ctor_set(x_49, 1, x_25); +lean_ctor_set(x_49, 2, x_32); +lean_ctor_set(x_49, 3, x_24); +lean_ctor_set(x_49, 4, x_31); +lean_ctor_set(x_49, 5, x_29); x_50 = lean_alloc_ctor(0, 8, 0); lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_16); -lean_ctor_set(x_50, 2, x_27); -lean_ctor_set(x_50, 3, x_23); -lean_ctor_set(x_50, 4, x_24); -lean_ctor_set(x_50, 5, x_25); -lean_ctor_set(x_50, 6, x_29); +lean_ctor_set(x_50, 1, x_23); +lean_ctor_set(x_50, 2, x_34); +lean_ctor_set(x_50, 3, x_33); +lean_ctor_set(x_50, 4, x_27); +lean_ctor_set(x_50, 5, x_26); +lean_ctor_set(x_50, 6, x_35); lean_ctor_set(x_50, 7, x_48); -lean_ctor_set(x_35, 0, x_50); -return x_35; +x_51 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_51, 0, x_50); +return x_51; } } else { -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_51 = lean_ctor_get(x_35, 0); -lean_inc(x_51); -lean_dec(x_35); -x_52 = lean_ctor_get(x_15, 0); -lean_inc(x_52); -x_53 = lean_ctor_get(x_15, 1); +uint8_t x_52; +lean_dec_ref(x_35); +lean_dec_ref(x_34); +lean_dec_ref(x_33); +lean_dec_ref(x_32); +lean_dec_ref(x_31); +lean_dec(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_28); +lean_dec_ref(x_27); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +x_52 = !lean_is_exclusive(x_41); +if (x_52 == 0) +{ +return x_41; +} +else +{ +lean_object* x_53; lean_object* x_54; +x_53 = lean_ctor_get(x_41, 0); lean_inc(x_53); -x_54 = lean_ctor_get(x_15, 2); -lean_inc_ref(x_54); -x_55 = lean_ctor_get(x_15, 3); -lean_inc(x_55); -x_56 = lean_ctor_get(x_15, 5); -lean_inc_ref(x_56); +lean_dec(x_41); +x_54 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_54, 0, x_53); +return x_54; +} +} +} +block_98: +{ +lean_object* x_68; +x_68 = lean_apply_6(x_7, x_22, x_63, x_64, x_65, x_66, lean_box(0)); +if (lean_obj_tag(x_68) == 0) +{ +uint8_t x_69; +x_69 = !lean_is_exclusive(x_68); +if (x_69 == 0) +{ +uint8_t x_70; +x_70 = !lean_is_exclusive(x_15); +if (x_70 == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_71 = lean_ctor_get(x_68, 0); +x_72 = lean_ctor_get(x_15, 4); +lean_dec(x_72); +x_73 = l_Array_append___redArg(x_58, x_71); +lean_dec(x_71); +lean_ctor_set(x_15, 4, x_59); +x_74 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_74, 0, x_15); +lean_ctor_set(x_74, 1, x_16); +lean_ctor_set(x_74, 2, x_61); +lean_ctor_set(x_74, 3, x_60); +lean_ctor_set(x_74, 4, x_57); +lean_ctor_set(x_74, 5, x_56); +lean_ctor_set(x_74, 6, x_62); +lean_ctor_set(x_74, 7, x_73); +lean_ctor_set(x_68, 0, x_74); +return x_68; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_75 = lean_ctor_get(x_68, 0); +x_76 = lean_ctor_get(x_15, 0); +x_77 = lean_ctor_get(x_15, 1); +x_78 = lean_ctor_get(x_15, 2); +x_79 = lean_ctor_get(x_15, 3); +x_80 = lean_ctor_get(x_15, 5); +lean_inc(x_80); +lean_inc(x_79); +lean_inc(x_78); +lean_inc(x_77); +lean_inc(x_76); +lean_dec(x_15); +x_81 = l_Array_append___redArg(x_58, x_75); +lean_dec(x_75); +x_82 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_82, 0, x_76); +lean_ctor_set(x_82, 1, x_77); +lean_ctor_set(x_82, 2, x_78); +lean_ctor_set(x_82, 3, x_79); +lean_ctor_set(x_82, 4, x_59); +lean_ctor_set(x_82, 5, x_80); +x_83 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_83, 0, x_82); +lean_ctor_set(x_83, 1, x_16); +lean_ctor_set(x_83, 2, x_61); +lean_ctor_set(x_83, 3, x_60); +lean_ctor_set(x_83, 4, x_57); +lean_ctor_set(x_83, 5, x_56); +lean_ctor_set(x_83, 6, x_62); +lean_ctor_set(x_83, 7, x_81); +lean_ctor_set(x_68, 0, x_83); +return x_68; +} +} +else +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_84 = lean_ctor_get(x_68, 0); +lean_inc(x_84); +lean_dec(x_68); +x_85 = lean_ctor_get(x_15, 0); +lean_inc(x_85); +x_86 = lean_ctor_get(x_15, 1); +lean_inc(x_86); +x_87 = lean_ctor_get(x_15, 2); +lean_inc_ref(x_87); +x_88 = lean_ctor_get(x_15, 3); +lean_inc(x_88); +x_89 = lean_ctor_get(x_15, 5); +lean_inc_ref(x_89); if (lean_is_exclusive(x_15)) { lean_ctor_release(x_15, 0); lean_ctor_release(x_15, 1); @@ -24732,899 +32222,884 @@ if (lean_is_exclusive(x_15)) { lean_ctor_release(x_15, 3); lean_ctor_release(x_15, 4); lean_ctor_release(x_15, 5); - x_57 = x_15; + x_90 = x_15; } else { lean_dec_ref(x_15); - x_57 = lean_box(0); + x_90 = lean_box(0); } -x_58 = l_Array_append___redArg(x_26, x_51); -lean_dec(x_51); -if (lean_is_scalar(x_57)) { - x_59 = lean_alloc_ctor(0, 6, 0); -} else { - x_59 = x_57; -} -lean_ctor_set(x_59, 0, x_52); -lean_ctor_set(x_59, 1, x_53); -lean_ctor_set(x_59, 2, x_54); -lean_ctor_set(x_59, 3, x_55); -lean_ctor_set(x_59, 4, x_28); -lean_ctor_set(x_59, 5, x_56); -x_60 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_60, 0, x_59); -lean_ctor_set(x_60, 1, x_16); -lean_ctor_set(x_60, 2, x_27); -lean_ctor_set(x_60, 3, x_23); -lean_ctor_set(x_60, 4, x_24); -lean_ctor_set(x_60, 5, x_25); -lean_ctor_set(x_60, 6, x_29); -lean_ctor_set(x_60, 7, x_58); -x_61 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_61, 0, x_60); -return x_61; -} -} -else -{ -uint8_t x_62; -lean_dec_ref(x_29); -lean_dec_ref(x_28); -lean_dec_ref(x_27); -lean_dec_ref(x_26); -lean_dec_ref(x_25); -lean_dec_ref(x_24); -lean_dec_ref(x_23); -lean_dec(x_16); -lean_dec_ref(x_15); -x_62 = !lean_is_exclusive(x_35); -if (x_62 == 0) -{ -return x_35; -} -else -{ -lean_object* x_63; lean_object* x_64; -x_63 = lean_ctor_get(x_35, 0); -lean_inc(x_63); -lean_dec(x_35); -x_64 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_64, 0, x_63); -return x_64; -} -} -} -block_107: -{ -lean_object* x_83; lean_object* x_84; -x_83 = lean_array_get_size(x_21); -lean_inc(x_81); -lean_inc_ref(x_80); -lean_inc(x_79); -lean_inc_ref(x_78); -lean_inc(x_83); -x_84 = l_Lean_Meta_inferArgumentTypesN(x_83, x_71, x_78, x_79, x_80, x_81); -if (lean_obj_tag(x_84) == 0) -{ -lean_object* x_85; uint8_t x_86; -x_85 = lean_ctor_get(x_84, 0); -lean_inc(x_85); -lean_dec_ref(x_84); -x_86 = lean_nat_dec_lt(x_69, x_83); -if (x_86 == 0) -{ -lean_dec(x_85); -lean_dec(x_83); -lean_dec(x_72); -lean_dec(x_69); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_23 = x_67; -x_24 = x_68; -x_25 = x_70; -x_26 = x_77; -x_27 = x_74; -x_28 = x_75; -x_29 = x_76; -x_30 = x_78; -x_31 = x_79; -x_32 = x_80; -x_33 = x_81; -x_34 = lean_box(0); -goto block_65; -} -else -{ -lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; -lean_inc(x_83); -lean_inc(x_69); -lean_inc_ref(x_21); -x_87 = l_Array_toSubarray___redArg(x_21, x_69, x_83); -x_88 = l_Lean_Meta_MatcherApp_altNumParams(x_1); -x_89 = lean_array_get_size(x_88); -lean_inc(x_69); -x_90 = l_Array_toSubarray___redArg(x_88, x_69, x_89); -x_91 = lean_array_get_size(x_85); -lean_inc(x_69); -x_92 = l_Array_toSubarray___redArg(x_85, x_69, x_91); -x_93 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_93, 0, x_92); -lean_ctor_set(x_93, 1, x_76); -x_94 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_94, 0, x_90); -lean_ctor_set(x_94, 1, x_93); -x_95 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_95, 0, x_87); -lean_ctor_set(x_95, 1, x_94); -lean_inc(x_81); -lean_inc_ref(x_80); -lean_inc(x_79); -lean_inc_ref(x_78); -x_96 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__14___redArg(x_66, x_6, x_73, x_72, x_83, x_95, x_69, x_78, x_79, x_80, x_81); -lean_dec(x_83); -if (lean_obj_tag(x_96) == 0) -{ -lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; -x_97 = lean_ctor_get(x_96, 0); -lean_inc(x_97); -lean_dec_ref(x_96); -x_98 = lean_ctor_get(x_97, 1); -lean_inc(x_98); -lean_dec(x_97); -x_99 = lean_ctor_get(x_98, 1); -lean_inc(x_99); -lean_dec(x_98); -x_100 = lean_ctor_get(x_99, 1); -lean_inc(x_100); -lean_dec(x_99); -x_23 = x_67; -x_24 = x_68; -x_25 = x_70; -x_26 = x_77; -x_27 = x_74; -x_28 = x_75; -x_29 = x_100; -x_30 = x_78; -x_31 = x_79; -x_32 = x_80; -x_33 = x_81; -x_34 = lean_box(0); -goto block_65; -} -else -{ -uint8_t x_101; -lean_dec(x_81); -lean_dec_ref(x_80); -lean_dec(x_79); -lean_dec_ref(x_78); -lean_dec_ref(x_77); -lean_dec_ref(x_75); -lean_dec_ref(x_74); -lean_dec_ref(x_70); -lean_dec_ref(x_68); -lean_dec_ref(x_67); -lean_dec_ref(x_22); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -x_101 = !lean_is_exclusive(x_96); -if (x_101 == 0) -{ -return x_96; -} -else -{ -lean_object* x_102; lean_object* x_103; -x_102 = lean_ctor_get(x_96, 0); -lean_inc(x_102); -lean_dec(x_96); -x_103 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_103, 0, x_102); -return x_103; -} -} -} -} -else -{ -uint8_t x_104; -lean_dec(x_83); -lean_dec(x_81); -lean_dec_ref(x_80); -lean_dec(x_79); -lean_dec_ref(x_78); -lean_dec_ref(x_77); -lean_dec_ref(x_76); -lean_dec_ref(x_75); -lean_dec_ref(x_74); -lean_dec(x_72); -lean_dec_ref(x_70); -lean_dec(x_69); -lean_dec_ref(x_68); -lean_dec_ref(x_67); -lean_dec_ref(x_22); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_104 = !lean_is_exclusive(x_84); -if (x_104 == 0) -{ -return x_84; -} -else -{ -lean_object* x_105; lean_object* x_106; -x_105 = lean_ctor_get(x_84, 0); -lean_inc(x_105); +x_91 = l_Array_append___redArg(x_58, x_84); lean_dec(x_84); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_105); -return x_106; +if (lean_is_scalar(x_90)) { + x_92 = lean_alloc_ctor(0, 6, 0); +} else { + x_92 = x_90; +} +lean_ctor_set(x_92, 0, x_85); +lean_ctor_set(x_92, 1, x_86); +lean_ctor_set(x_92, 2, x_87); +lean_ctor_set(x_92, 3, x_88); +lean_ctor_set(x_92, 4, x_59); +lean_ctor_set(x_92, 5, x_89); +x_93 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_16); +lean_ctor_set(x_93, 2, x_61); +lean_ctor_set(x_93, 3, x_60); +lean_ctor_set(x_93, 4, x_57); +lean_ctor_set(x_93, 5, x_56); +lean_ctor_set(x_93, 6, x_62); +lean_ctor_set(x_93, 7, x_91); +x_94 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_94, 0, x_93); +return x_94; } } -} -block_143: +else { -lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; -lean_inc_ref(x_119); -x_123 = lean_array_to_list(x_119); -lean_inc(x_16); -x_124 = l_Lean_mkConst(x_16, x_123); -x_125 = l_Lean_mkAppN(x_124, x_109); -lean_inc_ref(x_116); -x_126 = l_Lean_Expr_app___override(x_125, x_116); -x_127 = l_Lean_mkAppN(x_126, x_118); -lean_inc(x_110); -lean_inc_ref(x_108); -lean_inc(x_111); +uint8_t x_95; +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_60); +lean_dec_ref(x_59); +lean_dec_ref(x_58); +lean_dec_ref(x_57); +lean_dec_ref(x_56); +lean_dec(x_16); +lean_dec_ref(x_15); +x_95 = !lean_is_exclusive(x_68); +if (x_95 == 0) +{ +return x_68; +} +else +{ +lean_object* x_96; lean_object* x_97; +x_96 = lean_ctor_get(x_68, 0); +lean_inc(x_96); +lean_dec(x_68); +x_97 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_97, 0, x_96); +return x_97; +} +} +} +block_140: +{ +lean_object* x_116; lean_object* x_117; +x_116 = lean_array_get_size(x_21); +lean_inc(x_114); lean_inc_ref(x_113); -lean_inc_ref(x_127); -x_128 = l_Lean_Meta_isTypeCorrect(x_127, x_113, x_111, x_108, x_110); -if (lean_obj_tag(x_128) == 0) +lean_inc(x_112); +lean_inc_ref(x_111); +lean_inc(x_116); +x_117 = l_Lean_Meta_inferArgumentTypesN(x_116, x_100, x_111, x_112, x_113, x_114); +if (lean_obj_tag(x_117) == 0) { -lean_object* x_129; uint8_t x_130; uint8_t x_131; -x_129 = lean_ctor_get(x_128, 0); -lean_inc(x_129); -lean_dec_ref(x_128); -x_130 = 1; -x_131 = lean_unbox(x_129); +lean_object* x_118; uint8_t x_119; +x_118 = lean_ctor_get(x_117, 0); +lean_inc(x_118); +lean_dec_ref(x_117); +x_119 = lean_nat_dec_lt(x_101, x_116); +if (x_119 == 0) +{ +lean_dec(x_118); +lean_dec(x_116); +lean_dec(x_104); +lean_dec(x_101); +lean_dec_ref(x_6); +lean_dec_ref(x_1); +x_56 = x_103; +x_57 = x_102; +x_58 = x_110; +x_59 = x_106; +x_60 = x_108; +x_61 = x_107; +x_62 = x_109; +x_63 = x_111; +x_64 = x_112; +x_65 = x_113; +x_66 = x_114; +x_67 = lean_box(0); +goto block_98; +} +else +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; +lean_inc(x_116); +lean_inc(x_101); +lean_inc_ref(x_21); +x_120 = l_Array_toSubarray___redArg(x_21, x_101, x_116); +x_121 = l_Lean_Meta_MatcherApp_altNumParams(x_1); +x_122 = lean_array_get_size(x_121); +lean_inc(x_101); +x_123 = l_Array_toSubarray___redArg(x_121, x_101, x_122); +x_124 = lean_array_get_size(x_118); +lean_inc(x_101); +x_125 = l_Array_toSubarray___redArg(x_118, x_101, x_124); +x_126 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_126, 0, x_125); +lean_ctor_set(x_126, 1, x_109); +x_127 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_127, 0, x_123); +lean_ctor_set(x_127, 1, x_126); +x_128 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_128, 0, x_120); +lean_ctor_set(x_128, 1, x_127); +lean_inc(x_114); +lean_inc_ref(x_113); +lean_inc(x_112); +lean_inc_ref(x_111); +x_129 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__14___redArg(x_99, x_6, x_105, x_104, x_116, x_128, x_101, x_111, x_112, x_113, x_114); +lean_dec(x_116); +if (lean_obj_tag(x_129) == 0) +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +x_130 = lean_ctor_get(x_129, 0); +lean_inc(x_130); +lean_dec_ref(x_129); +x_131 = lean_ctor_get(x_130, 1); +lean_inc(x_131); +lean_dec(x_130); +x_132 = lean_ctor_get(x_131, 1); +lean_inc(x_132); +lean_dec(x_131); +x_133 = lean_ctor_get(x_132, 1); +lean_inc(x_133); +lean_dec(x_132); +x_56 = x_103; +x_57 = x_102; +x_58 = x_110; +x_59 = x_106; +x_60 = x_108; +x_61 = x_107; +x_62 = x_133; +x_63 = x_111; +x_64 = x_112; +x_65 = x_113; +x_66 = x_114; +x_67 = lean_box(0); +goto block_98; +} +else +{ +uint8_t x_134; +lean_dec(x_114); +lean_dec_ref(x_113); +lean_dec(x_112); +lean_dec_ref(x_111); +lean_dec_ref(x_110); +lean_dec_ref(x_108); +lean_dec_ref(x_107); +lean_dec_ref(x_106); +lean_dec_ref(x_103); +lean_dec_ref(x_102); +lean_dec_ref(x_22); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +x_134 = !lean_is_exclusive(x_129); +if (x_134 == 0) +{ +return x_129; +} +else +{ +lean_object* x_135; lean_object* x_136; +x_135 = lean_ctor_get(x_129, 0); +lean_inc(x_135); lean_dec(x_129); -if (x_131 == 0) -{ -lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; -x_132 = l_Lean_Meta_MatcherApp_transform___redArg___lam__39___closed__1; -lean_inc_ref(x_127); -x_133 = l_Lean_indentExpr(x_127); -x_134 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_134, 0, x_132); -lean_ctor_set(x_134, 1, x_133); -lean_inc_ref(x_108); -x_135 = l_Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__15(x_134, x_113, x_111, x_108, x_110); -lean_dec_ref(x_135); -lean_inc(x_110); -lean_inc_ref(x_108); -lean_inc(x_111); -lean_inc_ref(x_113); -lean_inc_ref(x_127); -x_136 = l_Lean_Meta_check(x_127, x_113, x_111, x_108, x_110); -if (lean_obj_tag(x_136) == 0) -{ -lean_dec_ref(x_136); -x_66 = x_115; -x_67 = x_109; -x_68 = x_116; -x_69 = x_117; -x_70 = x_118; -x_71 = x_127; -x_72 = x_112; -x_73 = x_130; -x_74 = x_119; -x_75 = x_122; -x_76 = x_114; -x_77 = x_120; -x_78 = x_113; -x_79 = x_111; -x_80 = x_108; -x_81 = x_110; -x_82 = lean_box(0); -goto block_107; +x_136 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_136, 0, x_135); +return x_136; +} +} +} } else { uint8_t x_137; -lean_dec_ref(x_127); -lean_dec_ref(x_122); -lean_dec_ref(x_120); -lean_dec_ref(x_119); -lean_dec_ref(x_118); -lean_dec(x_117); -lean_dec_ref(x_116); -lean_dec_ref(x_114); +lean_dec(x_116); +lean_dec(x_114); lean_dec_ref(x_113); lean_dec(x_112); -lean_dec(x_111); -lean_dec(x_110); +lean_dec_ref(x_111); +lean_dec_ref(x_110); lean_dec_ref(x_109); lean_dec_ref(x_108); +lean_dec_ref(x_107); +lean_dec_ref(x_106); +lean_dec(x_104); +lean_dec_ref(x_103); +lean_dec_ref(x_102); +lean_dec(x_101); lean_dec_ref(x_22); lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_1); -x_137 = !lean_is_exclusive(x_136); +x_137 = !lean_is_exclusive(x_117); if (x_137 == 0) { -return x_136; +return x_117; } else { lean_object* x_138; lean_object* x_139; -x_138 = lean_ctor_get(x_136, 0); +x_138 = lean_ctor_get(x_117, 0); lean_inc(x_138); -lean_dec(x_136); +lean_dec(x_117); x_139 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_139, 0, x_138); return x_139; } } } -else +block_176: { -x_66 = x_115; -x_67 = x_109; -x_68 = x_116; -x_69 = x_117; -x_70 = x_118; -x_71 = x_127; -x_72 = x_112; -x_73 = x_130; -x_74 = x_119; -x_75 = x_122; -x_76 = x_114; -x_77 = x_120; -x_78 = x_113; -x_79 = x_111; -x_80 = x_108; -x_81 = x_110; -x_82 = lean_box(0); -goto block_107; -} +lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +lean_inc_ref(x_154); +x_156 = lean_array_to_list(x_154); +lean_inc(x_16); +x_157 = l_Lean_mkConst(x_16, x_156); +x_158 = l_Lean_mkAppN(x_157, x_144); +lean_inc_ref(x_149); +x_159 = l_Lean_Expr_app___override(x_158, x_149); +x_160 = l_Lean_mkAppN(x_159, x_142); +lean_inc(x_150); +lean_inc_ref(x_152); +lean_inc(x_155); +lean_inc_ref(x_141); +lean_inc_ref(x_160); +x_161 = l_Lean_Meta_isTypeCorrect(x_160, x_141, x_155, x_152, x_150); +if (lean_obj_tag(x_161) == 0) +{ +lean_object* x_162; uint8_t x_163; uint8_t x_164; +x_162 = lean_ctor_get(x_161, 0); +lean_inc(x_162); +lean_dec_ref(x_161); +x_163 = 1; +x_164 = lean_unbox(x_162); +lean_dec(x_162); +if (x_164 == 0) +{ +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; +x_165 = l_Lean_Meta_MatcherApp_transform___redArg___lam__39___closed__1; +lean_inc_ref(x_160); +x_166 = l_Lean_indentExpr(x_160); +x_167 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_167, 0, x_165); +lean_ctor_set(x_167, 1, x_166); +lean_inc_ref(x_152); +x_168 = l_Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__15(x_167, x_141, x_155, x_152, x_150); +lean_dec_ref(x_168); +lean_inc(x_150); +lean_inc_ref(x_152); +lean_inc(x_155); +lean_inc_ref(x_141); +lean_inc_ref(x_160); +x_169 = l_Lean_Meta_check(x_160, x_141, x_155, x_152, x_150); +if (lean_obj_tag(x_169) == 0) +{ +lean_dec_ref(x_169); +x_99 = x_148; +x_100 = x_160; +x_101 = x_143; +x_102 = x_149; +x_103 = x_142; +x_104 = x_151; +x_105 = x_163; +x_106 = x_153; +x_107 = x_154; +x_108 = x_144; +x_109 = x_146; +x_110 = x_147; +x_111 = x_141; +x_112 = x_155; +x_113 = x_152; +x_114 = x_150; +x_115 = lean_box(0); +goto block_140; } else { -uint8_t x_140; -lean_dec_ref(x_127); -lean_dec_ref(x_122); -lean_dec_ref(x_120); -lean_dec_ref(x_119); -lean_dec_ref(x_118); -lean_dec(x_117); -lean_dec_ref(x_116); -lean_dec_ref(x_114); -lean_dec_ref(x_113); -lean_dec(x_112); -lean_dec(x_111); -lean_dec(x_110); -lean_dec_ref(x_109); -lean_dec_ref(x_108); +uint8_t x_170; +lean_dec_ref(x_160); +lean_dec(x_155); +lean_dec_ref(x_154); +lean_dec_ref(x_153); +lean_dec_ref(x_152); +lean_dec(x_151); +lean_dec(x_150); +lean_dec_ref(x_149); +lean_dec_ref(x_147); +lean_dec_ref(x_146); +lean_dec_ref(x_144); +lean_dec(x_143); +lean_dec_ref(x_142); +lean_dec_ref(x_141); lean_dec_ref(x_22); lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_1); -x_140 = !lean_is_exclusive(x_128); -if (x_140 == 0) +x_170 = !lean_is_exclusive(x_169); +if (x_170 == 0) { -return x_128; +return x_169; } else { -lean_object* x_141; lean_object* x_142; -x_141 = lean_ctor_get(x_128, 0); -lean_inc(x_141); -lean_dec(x_128); -x_142 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_142, 0, x_141); -return x_142; -} -} -} -block_187: -{ -lean_object* x_157; -x_157 = lean_apply_6(x_7, x_22, x_152, x_153, x_154, x_155, lean_box(0)); -if (lean_obj_tag(x_157) == 0) -{ -uint8_t x_158; -x_158 = !lean_is_exclusive(x_157); -if (x_158 == 0) -{ -uint8_t x_159; -x_159 = !lean_is_exclusive(x_15); -if (x_159 == 0) -{ -lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; -x_160 = lean_ctor_get(x_157, 0); -x_161 = lean_ctor_get(x_15, 4); -lean_dec(x_161); -x_162 = l_Array_append___redArg(x_144, x_160); -lean_dec(x_160); -lean_ctor_set(x_15, 4, x_150); -x_163 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_163, 0, x_15); -lean_ctor_set(x_163, 1, x_148); -lean_ctor_set(x_163, 2, x_149); -lean_ctor_set(x_163, 3, x_145); -lean_ctor_set(x_163, 4, x_146); -lean_ctor_set(x_163, 5, x_147); -lean_ctor_set(x_163, 6, x_151); -lean_ctor_set(x_163, 7, x_162); -lean_ctor_set(x_157, 0, x_163); -return x_157; -} -else -{ -lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; -x_164 = lean_ctor_get(x_157, 0); -x_165 = lean_ctor_get(x_15, 0); -x_166 = lean_ctor_get(x_15, 1); -x_167 = lean_ctor_get(x_15, 2); -x_168 = lean_ctor_get(x_15, 3); -x_169 = lean_ctor_get(x_15, 5); -lean_inc(x_169); -lean_inc(x_168); -lean_inc(x_167); -lean_inc(x_166); -lean_inc(x_165); -lean_dec(x_15); -x_170 = l_Array_append___redArg(x_144, x_164); -lean_dec(x_164); -x_171 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_171, 0, x_165); -lean_ctor_set(x_171, 1, x_166); -lean_ctor_set(x_171, 2, x_167); -lean_ctor_set(x_171, 3, x_168); -lean_ctor_set(x_171, 4, x_150); -lean_ctor_set(x_171, 5, x_169); -x_172 = lean_alloc_ctor(0, 8, 0); +lean_object* x_171; lean_object* x_172; +x_171 = lean_ctor_get(x_169, 0); +lean_inc(x_171); +lean_dec(x_169); +x_172 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_172, 1, x_148); -lean_ctor_set(x_172, 2, x_149); -lean_ctor_set(x_172, 3, x_145); -lean_ctor_set(x_172, 4, x_146); -lean_ctor_set(x_172, 5, x_147); -lean_ctor_set(x_172, 6, x_151); -lean_ctor_set(x_172, 7, x_170); -lean_ctor_set(x_157, 0, x_172); -return x_157; +return x_172; +} } } else { -lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; -x_173 = lean_ctor_get(x_157, 0); -lean_inc(x_173); -lean_dec(x_157); -x_174 = lean_ctor_get(x_15, 0); -lean_inc(x_174); -x_175 = lean_ctor_get(x_15, 1); -lean_inc(x_175); -x_176 = lean_ctor_get(x_15, 2); -lean_inc_ref(x_176); -x_177 = lean_ctor_get(x_15, 3); -lean_inc(x_177); -x_178 = lean_ctor_get(x_15, 5); -lean_inc_ref(x_178); -if (lean_is_exclusive(x_15)) { - lean_ctor_release(x_15, 0); - lean_ctor_release(x_15, 1); - lean_ctor_release(x_15, 2); - lean_ctor_release(x_15, 3); - lean_ctor_release(x_15, 4); - lean_ctor_release(x_15, 5); - x_179 = x_15; -} else { - lean_dec_ref(x_15); - x_179 = lean_box(0); -} -x_180 = l_Array_append___redArg(x_144, x_173); -lean_dec(x_173); -if (lean_is_scalar(x_179)) { - x_181 = lean_alloc_ctor(0, 6, 0); -} else { - x_181 = x_179; -} -lean_ctor_set(x_181, 0, x_174); -lean_ctor_set(x_181, 1, x_175); -lean_ctor_set(x_181, 2, x_176); -lean_ctor_set(x_181, 3, x_177); -lean_ctor_set(x_181, 4, x_150); -lean_ctor_set(x_181, 5, x_178); -x_182 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_182, 0, x_181); -lean_ctor_set(x_182, 1, x_148); -lean_ctor_set(x_182, 2, x_149); -lean_ctor_set(x_182, 3, x_145); -lean_ctor_set(x_182, 4, x_146); -lean_ctor_set(x_182, 5, x_147); -lean_ctor_set(x_182, 6, x_151); -lean_ctor_set(x_182, 7, x_180); -x_183 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_183, 0, x_182); -return x_183; +x_99 = x_148; +x_100 = x_160; +x_101 = x_143; +x_102 = x_149; +x_103 = x_142; +x_104 = x_151; +x_105 = x_163; +x_106 = x_153; +x_107 = x_154; +x_108 = x_144; +x_109 = x_146; +x_110 = x_147; +x_111 = x_141; +x_112 = x_155; +x_113 = x_152; +x_114 = x_150; +x_115 = lean_box(0); +goto block_140; } } else { -uint8_t x_184; -lean_dec_ref(x_151); -lean_dec_ref(x_150); +uint8_t x_173; +lean_dec_ref(x_160); +lean_dec(x_155); +lean_dec_ref(x_154); +lean_dec_ref(x_153); +lean_dec_ref(x_152); +lean_dec(x_151); +lean_dec(x_150); lean_dec_ref(x_149); -lean_dec(x_148); lean_dec_ref(x_147); lean_dec_ref(x_146); -lean_dec_ref(x_145); lean_dec_ref(x_144); -lean_dec_ref(x_15); -x_184 = !lean_is_exclusive(x_157); -if (x_184 == 0) -{ -return x_157; -} -else -{ -lean_object* x_185; lean_object* x_186; -x_185 = lean_ctor_get(x_157, 0); -lean_inc(x_185); -lean_dec(x_157); -x_186 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_186, 0, x_185); -return x_186; -} -} -} -block_240: -{ -lean_object* x_209; -lean_inc(x_207); -lean_inc_ref(x_206); -lean_inc(x_205); -lean_inc_ref(x_204); -lean_inc(x_199); -x_209 = l_Lean_Meta_inferArgumentTypesN(x_199, x_191, x_204, x_205, x_206, x_207); -if (lean_obj_tag(x_209) == 0) -{ -lean_object* x_210; uint8_t x_211; -x_210 = lean_ctor_get(x_209, 0); -lean_inc(x_210); -lean_dec_ref(x_209); -x_211 = lean_nat_dec_lt(x_197, x_199); -if (x_211 == 0) -{ -lean_dec(x_210); -lean_dec(x_201); -lean_dec(x_199); -lean_dec(x_197); -lean_dec_ref(x_194); -lean_dec_ref(x_192); -lean_dec(x_189); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_144 = x_203; -x_145 = x_188; -x_146 = x_196; -x_147 = x_198; -x_148 = x_190; -x_149 = x_200; -x_150 = x_202; -x_151 = x_193; -x_152 = x_204; -x_153 = x_205; -x_154 = x_206; -x_155 = x_207; -x_156 = lean_box(0); -goto block_187; -} -else -{ -lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; -lean_inc(x_199); -lean_inc(x_197); -lean_inc_ref(x_21); -x_212 = l_Array_toSubarray___redArg(x_21, x_197, x_199); -x_213 = l_Lean_Meta_MatcherApp_altNumParams(x_1); -x_214 = lean_array_get_size(x_213); -lean_inc(x_197); -x_215 = l_Array_toSubarray___redArg(x_213, x_197, x_214); -x_216 = lean_array_get_size(x_194); -lean_inc(x_197); -x_217 = l_Array_toSubarray___redArg(x_194, x_197, x_216); -x_218 = lean_array_get_size(x_192); -lean_inc(x_197); -x_219 = l_Array_toSubarray___redArg(x_192, x_197, x_218); -x_220 = lean_array_get_size(x_210); -lean_inc(x_197); -x_221 = l_Array_toSubarray___redArg(x_210, x_197, x_220); -x_222 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_222, 0, x_221); -lean_ctor_set(x_222, 1, x_193); -x_223 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_223, 0, x_219); -lean_ctor_set(x_223, 1, x_222); -x_224 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_224, 0, x_217); -lean_ctor_set(x_224, 1, x_223); -x_225 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_225, 0, x_215); -lean_ctor_set(x_225, 1, x_224); -x_226 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_226, 0, x_212); -lean_ctor_set(x_226, 1, x_225); -lean_inc(x_207); -lean_inc_ref(x_206); -lean_inc(x_205); -lean_inc_ref(x_204); -lean_inc(x_197); -x_227 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg(x_6, x_195, x_2, x_189, x_201, x_197, x_199, x_226, x_197, x_204, x_205, x_206, x_207); -lean_dec(x_199); -if (lean_obj_tag(x_227) == 0) -{ -lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_228 = lean_ctor_get(x_227, 0); -lean_inc(x_228); -lean_dec_ref(x_227); -x_229 = lean_ctor_get(x_228, 1); -lean_inc(x_229); -lean_dec(x_228); -x_230 = lean_ctor_get(x_229, 1); -lean_inc(x_230); -lean_dec(x_229); -x_231 = lean_ctor_get(x_230, 1); -lean_inc(x_231); -lean_dec(x_230); -x_232 = lean_ctor_get(x_231, 1); -lean_inc(x_232); -lean_dec(x_231); -x_233 = lean_ctor_get(x_232, 1); -lean_inc(x_233); -lean_dec(x_232); -x_144 = x_203; -x_145 = x_188; -x_146 = x_196; -x_147 = x_198; -x_148 = x_190; -x_149 = x_200; -x_150 = x_202; -x_151 = x_233; -x_152 = x_204; -x_153 = x_205; -x_154 = x_206; -x_155 = x_207; -x_156 = lean_box(0); -goto block_187; -} -else -{ -uint8_t x_234; -lean_dec(x_207); -lean_dec_ref(x_206); -lean_dec(x_205); -lean_dec_ref(x_204); -lean_dec_ref(x_203); -lean_dec_ref(x_202); -lean_dec_ref(x_200); -lean_dec_ref(x_198); -lean_dec_ref(x_196); -lean_dec(x_190); -lean_dec_ref(x_188); +lean_dec(x_143); +lean_dec_ref(x_142); +lean_dec_ref(x_141); lean_dec_ref(x_22); +lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); -x_234 = !lean_is_exclusive(x_227); -if (x_234 == 0) +lean_dec_ref(x_6); +lean_dec_ref(x_1); +x_173 = !lean_is_exclusive(x_161); +if (x_173 == 0) { -return x_227; +return x_161; } else { -lean_object* x_235; lean_object* x_236; -x_235 = lean_ctor_get(x_227, 0); -lean_inc(x_235); -lean_dec(x_227); -x_236 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_236, 0, x_235); -return x_236; +lean_object* x_174; lean_object* x_175; +x_174 = lean_ctor_get(x_161, 0); +lean_inc(x_174); +lean_dec(x_161); +x_175 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_175, 0, x_174); +return x_175; } } } +block_234: +{ +lean_object* x_198; +lean_inc(x_196); +lean_inc_ref(x_195); +lean_inc(x_194); +lean_inc_ref(x_193); +lean_inc(x_177); +x_198 = l_Lean_Meta_inferArgumentTypesN(x_177, x_189, x_193, x_194, x_195, x_196); +if (lean_obj_tag(x_198) == 0) +{ +lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; uint8_t x_206; +x_199 = lean_ctor_get(x_198, 0); +lean_inc(x_199); +lean_dec_ref(x_198); +x_200 = lean_ctor_get(x_15, 0); +lean_inc(x_200); +x_201 = lean_ctor_get(x_15, 1); +lean_inc(x_201); +x_202 = lean_ctor_get(x_15, 2); +lean_inc_ref(x_202); +x_203 = lean_ctor_get(x_15, 3); +lean_inc(x_203); +x_204 = lean_ctor_get(x_15, 5); +lean_inc_ref(x_204); +lean_dec_ref(x_15); +x_205 = lean_ctor_get(x_181, 2); +lean_inc_ref(x_205); +lean_dec_ref(x_181); +x_206 = lean_nat_dec_lt(x_179, x_177); +if (x_206 == 0) +{ +lean_dec_ref(x_205); +lean_dec(x_199); +lean_dec_ref(x_188); +lean_dec(x_187); +lean_dec(x_182); +lean_dec(x_179); +lean_dec(x_177); +lean_dec_ref(x_21); +lean_dec_ref(x_6); +x_23 = x_178; +x_24 = x_203; +x_25 = x_201; +x_26 = x_180; +x_27 = x_186; +x_28 = x_192; +x_29 = x_204; +x_30 = x_200; +x_31 = x_190; +x_32 = x_202; +x_33 = x_183; +x_34 = x_191; +x_35 = x_184; +x_36 = x_193; +x_37 = x_194; +x_38 = x_195; +x_39 = x_196; +x_40 = lean_box(0); +goto block_55; } else { -uint8_t x_237; -lean_dec(x_207); -lean_dec_ref(x_206); -lean_dec(x_205); +lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; +lean_inc(x_177); +lean_inc(x_179); +x_207 = l_Array_toSubarray___redArg(x_21, x_179, x_177); +x_208 = lean_array_get_size(x_202); +lean_inc(x_179); +lean_inc_ref(x_202); +x_209 = l_Array_toSubarray___redArg(x_202, x_179, x_208); +x_210 = lean_array_get_size(x_205); +lean_inc(x_179); +x_211 = l_Array_toSubarray___redArg(x_205, x_179, x_210); +x_212 = lean_array_get_size(x_188); +lean_inc(x_179); +x_213 = l_Array_toSubarray___redArg(x_188, x_179, x_212); +x_214 = lean_array_get_size(x_199); +lean_inc(x_179); +x_215 = l_Array_toSubarray___redArg(x_199, x_179, x_214); +x_216 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_216, 0, x_215); +lean_ctor_set(x_216, 1, x_184); +x_217 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_217, 0, x_213); +lean_ctor_set(x_217, 1, x_216); +x_218 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_218, 0, x_211); +lean_ctor_set(x_218, 1, x_217); +x_219 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_219, 0, x_209); +lean_ctor_set(x_219, 1, x_218); +x_220 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_220, 0, x_207); +lean_ctor_set(x_220, 1, x_219); +lean_inc(x_196); +lean_inc_ref(x_195); +lean_inc(x_194); +lean_inc_ref(x_193); +lean_inc(x_179); +x_221 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19___redArg(x_179, x_6, x_185, x_2, x_187, x_182, x_177, x_179, x_220, x_179, x_193, x_194, x_195, x_196); +lean_dec(x_177); +lean_dec(x_179); +if (lean_obj_tag(x_221) == 0) +{ +lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; +x_222 = lean_ctor_get(x_221, 0); +lean_inc(x_222); +lean_dec_ref(x_221); +x_223 = lean_ctor_get(x_222, 1); +lean_inc(x_223); +lean_dec(x_222); +x_224 = lean_ctor_get(x_223, 1); +lean_inc(x_224); +lean_dec(x_223); +x_225 = lean_ctor_get(x_224, 1); +lean_inc(x_225); +lean_dec(x_224); +x_226 = lean_ctor_get(x_225, 1); +lean_inc(x_226); +lean_dec(x_225); +x_227 = lean_ctor_get(x_226, 1); +lean_inc(x_227); +lean_dec(x_226); +x_23 = x_178; +x_24 = x_203; +x_25 = x_201; +x_26 = x_180; +x_27 = x_186; +x_28 = x_192; +x_29 = x_204; +x_30 = x_200; +x_31 = x_190; +x_32 = x_202; +x_33 = x_183; +x_34 = x_191; +x_35 = x_227; +x_36 = x_193; +x_37 = x_194; +x_38 = x_195; +x_39 = x_196; +x_40 = lean_box(0); +goto block_55; +} +else +{ +uint8_t x_228; lean_dec_ref(x_204); -lean_dec_ref(x_203); +lean_dec(x_203); lean_dec_ref(x_202); lean_dec(x_201); -lean_dec_ref(x_200); -lean_dec(x_199); -lean_dec_ref(x_198); -lean_dec(x_197); -lean_dec_ref(x_196); -lean_dec_ref(x_194); +lean_dec(x_200); +lean_dec(x_196); +lean_dec_ref(x_195); +lean_dec(x_194); lean_dec_ref(x_193); lean_dec_ref(x_192); -lean_dec(x_190); -lean_dec(x_189); -lean_dec_ref(x_188); +lean_dec_ref(x_191); +lean_dec_ref(x_190); +lean_dec_ref(x_186); +lean_dec_ref(x_183); +lean_dec_ref(x_180); +lean_dec(x_178); lean_dec_ref(x_22); -lean_dec_ref(x_15); lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_237 = !lean_is_exclusive(x_209); -if (x_237 == 0) +x_228 = !lean_is_exclusive(x_221); +if (x_228 == 0) { -return x_209; +return x_221; } else { -lean_object* x_238; lean_object* x_239; -x_238 = lean_ctor_get(x_209, 0); -lean_inc(x_238); -lean_dec(x_209); -x_239 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_239, 0, x_238); -return x_239; +lean_object* x_229; lean_object* x_230; +x_229 = lean_ctor_get(x_221, 0); +lean_inc(x_229); +lean_dec(x_221); +x_230 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_230, 0, x_229); +return x_230; } } } -block_293: +} +else { -lean_object* x_259; lean_object* x_260; -x_259 = lean_array_get_size(x_21); -lean_inc(x_257); -lean_inc_ref(x_256); +uint8_t x_231; +lean_dec(x_196); +lean_dec_ref(x_195); +lean_dec(x_194); +lean_dec_ref(x_193); +lean_dec_ref(x_192); +lean_dec_ref(x_191); +lean_dec_ref(x_190); +lean_dec_ref(x_188); +lean_dec(x_187); +lean_dec_ref(x_186); +lean_dec_ref(x_184); +lean_dec_ref(x_183); +lean_dec(x_182); +lean_dec_ref(x_181); +lean_dec_ref(x_180); +lean_dec(x_179); +lean_dec(x_178); +lean_dec(x_177); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_231 = !lean_is_exclusive(x_198); +if (x_231 == 0) +{ +return x_198; +} +else +{ +lean_object* x_232; lean_object* x_233; +x_232 = lean_ctor_get(x_198, 0); +lean_inc(x_232); +lean_dec(x_198); +x_233 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_233, 0, x_232); +return x_233; +} +} +} +block_287: +{ +lean_object* x_253; lean_object* x_254; +x_253 = lean_array_get_size(x_21); +lean_inc(x_251); +lean_inc_ref(x_250); +lean_inc(x_249); +lean_inc_ref(x_248); +lean_inc(x_253); +x_254 = l_Lean_Meta_inferArgumentTypesN(x_253, x_242, x_248, x_249, x_250, x_251); +if (lean_obj_tag(x_254) == 0) +{ +lean_object* x_255; lean_object* x_256; +x_255 = lean_ctor_get(x_254, 0); lean_inc(x_255); -lean_inc_ref(x_254); -lean_inc(x_259); -x_260 = l_Lean_Meta_inferArgumentTypesN(x_259, x_244, x_254, x_255, x_256, x_257); -if (lean_obj_tag(x_260) == 0) +lean_dec_ref(x_254); +lean_inc(x_251); +lean_inc_ref(x_250); +lean_inc(x_249); +lean_inc_ref(x_248); +x_256 = lean_get_match_equations_for(x_16, x_248, x_249, x_250, x_251); +if (lean_obj_tag(x_256) == 0) { -lean_object* x_261; lean_object* x_262; -x_261 = lean_ctor_get(x_260, 0); -lean_inc(x_261); -lean_dec_ref(x_260); +lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; +x_257 = lean_ctor_get(x_256, 0); lean_inc(x_257); -lean_inc_ref(x_256); -lean_inc(x_255); -lean_inc_ref(x_254); -lean_inc(x_16); -x_262 = lean_get_match_equations_for(x_16, x_254, x_255, x_256, x_257); -if (lean_obj_tag(x_262) == 0) +lean_dec_ref(x_256); +x_258 = lean_ctor_get(x_257, 1); +lean_inc(x_258); +x_259 = lean_ctor_get(x_257, 2); +lean_inc_ref(x_259); +lean_dec(x_257); +lean_inc(x_258); +x_260 = l_Lean_mkConst(x_258, x_240); +x_261 = l_Lean_mkAppN(x_260, x_245); +lean_inc_ref(x_238); +x_262 = l_Lean_Expr_app___override(x_261, x_238); +x_263 = l_Lean_mkAppN(x_262, x_237); +lean_inc(x_251); +lean_inc_ref(x_250); +lean_inc(x_249); +lean_inc_ref(x_248); +lean_inc_ref(x_263); +x_264 = l_Lean_Meta_isTypeCorrect(x_263, x_248, x_249, x_250, x_251); +if (lean_obj_tag(x_264) == 0) { -lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; -x_263 = lean_ctor_get(x_262, 0); -lean_inc(x_263); -lean_dec_ref(x_262); -x_264 = lean_ctor_get(x_263, 1); -lean_inc(x_264); -x_265 = lean_ctor_get(x_263, 2); -lean_inc_ref(x_265); -lean_dec(x_263); -lean_inc(x_264); -x_266 = l_Lean_mkConst(x_264, x_251); -x_267 = l_Lean_mkAppN(x_266, x_242); -lean_inc_ref(x_243); -x_268 = l_Lean_Expr_app___override(x_267, x_243); -x_269 = l_Lean_mkAppN(x_268, x_246); -lean_inc(x_257); -lean_inc_ref(x_256); -lean_inc(x_255); -lean_inc_ref(x_254); -lean_inc_ref(x_269); -x_270 = l_Lean_Meta_isTypeCorrect(x_269, x_254, x_255, x_256, x_257); -if (lean_obj_tag(x_270) == 0) +lean_object* x_265; uint8_t x_266; +x_265 = lean_ctor_get(x_264, 0); +lean_inc(x_265); +lean_dec_ref(x_264); +x_266 = lean_unbox(x_265); +lean_dec(x_265); +if (x_266 == 0) { -lean_object* x_271; uint8_t x_272; -x_271 = lean_ctor_get(x_270, 0); -lean_inc(x_271); -lean_dec_ref(x_270); -x_272 = lean_unbox(x_271); -lean_dec(x_271); -if (x_272 == 0) +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_267 = l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__1; +lean_inc_ref(x_263); +x_268 = l_Lean_indentExpr(x_263); +x_269 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_269, 0, x_267); +lean_ctor_set(x_269, 1, x_268); +x_270 = l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__3; +x_271 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_271, 0, x_269); +lean_ctor_set(x_271, 1, x_270); +x_272 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__58), 2, 1); +lean_closure_set(x_272, 0, x_271); +lean_inc_ref(x_263); +x_273 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); +lean_closure_set(x_273, 0, x_263); +lean_inc(x_251); +lean_inc_ref(x_250); +lean_inc(x_249); +lean_inc_ref(x_248); +x_274 = l_Lean_Meta_mapErrorImp___redArg(x_273, x_272, x_248, x_249, x_250, x_251); +if (lean_obj_tag(x_274) == 0) { -lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; -x_273 = l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__1; -lean_inc_ref(x_269); -x_274 = l_Lean_indentExpr(x_269); -x_275 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_275, 0, x_273); -lean_ctor_set(x_275, 1, x_274); -x_276 = l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__3; -x_277 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_277, 0, x_275); -lean_ctor_set(x_277, 1, x_276); -x_278 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__58), 2, 1); -lean_closure_set(x_278, 0, x_277); -lean_inc_ref(x_269); -x_279 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); -lean_closure_set(x_279, 0, x_269); -lean_inc(x_257); -lean_inc_ref(x_256); -lean_inc(x_255); -lean_inc_ref(x_254); -x_280 = l_Lean_Meta_mapErrorImp___redArg(x_279, x_278, x_254, x_255, x_256, x_257); -if (lean_obj_tag(x_280) == 0) +lean_dec_ref(x_274); +x_177 = x_253; +x_178 = x_258; +x_179 = x_236; +x_180 = x_237; +x_181 = x_259; +x_182 = x_244; +x_183 = x_245; +x_184 = x_246; +x_185 = x_235; +x_186 = x_238; +x_187 = x_239; +x_188 = x_255; +x_189 = x_263; +x_190 = x_241; +x_191 = x_243; +x_192 = x_247; +x_193 = x_248; +x_194 = x_249; +x_195 = x_250; +x_196 = x_251; +x_197 = lean_box(0); +goto block_234; +} +else { -lean_dec_ref(x_280); -x_188 = x_242; -x_189 = x_247; -x_190 = x_264; -x_191 = x_269; -x_192 = x_261; -x_193 = x_252; -x_194 = x_265; -x_195 = x_241; -x_196 = x_243; -x_197 = x_245; -x_198 = x_246; -x_199 = x_259; -x_200 = x_248; -x_201 = x_250; -x_202 = x_249; -x_203 = x_253; -x_204 = x_254; -x_205 = x_255; -x_206 = x_256; -x_207 = x_257; -x_208 = lean_box(0); -goto block_240; +uint8_t x_275; +lean_dec_ref(x_263); +lean_dec_ref(x_259); +lean_dec(x_258); +lean_dec(x_255); +lean_dec(x_253); +lean_dec(x_251); +lean_dec_ref(x_250); +lean_dec(x_249); +lean_dec_ref(x_248); +lean_dec_ref(x_247); +lean_dec_ref(x_246); +lean_dec_ref(x_245); +lean_dec(x_244); +lean_dec_ref(x_243); +lean_dec_ref(x_241); +lean_dec(x_239); +lean_dec_ref(x_238); +lean_dec_ref(x_237); +lean_dec(x_236); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_275 = !lean_is_exclusive(x_274); +if (x_275 == 0) +{ +return x_274; +} +else +{ +lean_object* x_276; lean_object* x_277; +x_276 = lean_ctor_get(x_274, 0); +lean_inc(x_276); +lean_dec(x_274); +x_277 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_277, 0, x_276); +return x_277; +} +} +} +else +{ +x_177 = x_253; +x_178 = x_258; +x_179 = x_236; +x_180 = x_237; +x_181 = x_259; +x_182 = x_244; +x_183 = x_245; +x_184 = x_246; +x_185 = x_235; +x_186 = x_238; +x_187 = x_239; +x_188 = x_255; +x_189 = x_263; +x_190 = x_241; +x_191 = x_243; +x_192 = x_247; +x_193 = x_248; +x_194 = x_249; +x_195 = x_250; +x_196 = x_251; +x_197 = lean_box(0); +goto block_234; +} +} +else +{ +uint8_t x_278; +lean_dec_ref(x_263); +lean_dec_ref(x_259); +lean_dec(x_258); +lean_dec(x_255); +lean_dec(x_253); +lean_dec(x_251); +lean_dec_ref(x_250); +lean_dec(x_249); +lean_dec_ref(x_248); +lean_dec_ref(x_247); +lean_dec_ref(x_246); +lean_dec_ref(x_245); +lean_dec(x_244); +lean_dec_ref(x_243); +lean_dec_ref(x_241); +lean_dec(x_239); +lean_dec_ref(x_238); +lean_dec_ref(x_237); +lean_dec(x_236); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_278 = !lean_is_exclusive(x_264); +if (x_278 == 0) +{ +return x_264; +} +else +{ +lean_object* x_279; lean_object* x_280; +x_279 = lean_ctor_get(x_264, 0); +lean_inc(x_279); +lean_dec(x_264); +x_280 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_280, 0, x_279); +return x_280; +} +} } else { uint8_t x_281; -lean_dec_ref(x_269); -lean_dec_ref(x_265); -lean_dec(x_264); -lean_dec(x_261); -lean_dec(x_259); -lean_dec(x_257); -lean_dec_ref(x_256); lean_dec(x_255); -lean_dec_ref(x_254); -lean_dec_ref(x_253); -lean_dec_ref(x_252); -lean_dec(x_250); -lean_dec_ref(x_249); +lean_dec(x_253); +lean_dec(x_251); +lean_dec_ref(x_250); +lean_dec(x_249); lean_dec_ref(x_248); -lean_dec(x_247); +lean_dec_ref(x_247); lean_dec_ref(x_246); -lean_dec(x_245); +lean_dec_ref(x_245); +lean_dec(x_244); lean_dec_ref(x_243); -lean_dec_ref(x_242); +lean_dec_ref(x_241); +lean_dec(x_240); +lean_dec(x_239); +lean_dec_ref(x_238); +lean_dec_ref(x_237); +lean_dec(x_236); lean_dec_ref(x_22); +lean_dec_ref(x_21); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_281 = !lean_is_exclusive(x_280); +x_281 = !lean_is_exclusive(x_256); if (x_281 == 0) { -return x_280; +return x_256; } else { lean_object* x_282; lean_object* x_283; -x_282 = lean_ctor_get(x_280, 0); +x_282 = lean_ctor_get(x_256, 0); lean_inc(x_282); -lean_dec(x_280); +lean_dec(x_256); x_283 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_283, 0, x_282); return x_283; @@ -25633,1127 +33108,1026 @@ return x_283; } else { -x_188 = x_242; -x_189 = x_247; -x_190 = x_264; -x_191 = x_269; -x_192 = x_261; -x_193 = x_252; -x_194 = x_265; -x_195 = x_241; -x_196 = x_243; -x_197 = x_245; -x_198 = x_246; -x_199 = x_259; -x_200 = x_248; -x_201 = x_250; -x_202 = x_249; -x_203 = x_253; -x_204 = x_254; -x_205 = x_255; -x_206 = x_256; -x_207 = x_257; -x_208 = lean_box(0); -goto block_240; -} -} -else -{ uint8_t x_284; -lean_dec_ref(x_269); -lean_dec_ref(x_265); -lean_dec(x_264); -lean_dec(x_261); -lean_dec(x_259); -lean_dec(x_257); -lean_dec_ref(x_256); -lean_dec(x_255); -lean_dec_ref(x_254); -lean_dec_ref(x_253); -lean_dec_ref(x_252); -lean_dec(x_250); -lean_dec_ref(x_249); +lean_dec(x_253); +lean_dec(x_251); +lean_dec_ref(x_250); +lean_dec(x_249); lean_dec_ref(x_248); -lean_dec(x_247); +lean_dec_ref(x_247); lean_dec_ref(x_246); -lean_dec(x_245); +lean_dec_ref(x_245); +lean_dec(x_244); lean_dec_ref(x_243); -lean_dec_ref(x_242); +lean_dec_ref(x_241); +lean_dec(x_240); +lean_dec(x_239); +lean_dec_ref(x_238); +lean_dec_ref(x_237); +lean_dec(x_236); lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_284 = !lean_is_exclusive(x_270); +x_284 = !lean_is_exclusive(x_254); if (x_284 == 0) { -return x_270; +return x_254; } else { lean_object* x_285; lean_object* x_286; -x_285 = lean_ctor_get(x_270, 0); +x_285 = lean_ctor_get(x_254, 0); lean_inc(x_285); -lean_dec(x_270); +lean_dec(x_254); x_286 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_286, 0, x_285); return x_286; } } } -else +block_400: { -uint8_t x_287; -lean_dec(x_261); -lean_dec(x_259); -lean_dec(x_257); -lean_dec_ref(x_256); -lean_dec(x_255); -lean_dec_ref(x_254); -lean_dec_ref(x_253); -lean_dec_ref(x_252); -lean_dec(x_251); -lean_dec(x_250); -lean_dec_ref(x_249); -lean_dec_ref(x_248); -lean_dec(x_247); -lean_dec_ref(x_246); -lean_dec(x_245); -lean_dec_ref(x_243); -lean_dec_ref(x_242); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_287 = !lean_is_exclusive(x_262); -if (x_287 == 0) -{ -return x_262; -} -else -{ -lean_object* x_288; lean_object* x_289; -x_288 = lean_ctor_get(x_262, 0); -lean_inc(x_288); -lean_dec(x_262); -x_289 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_289, 0, x_288); -return x_289; -} -} -} -else -{ -uint8_t x_290; -lean_dec(x_259); -lean_dec(x_257); -lean_dec_ref(x_256); -lean_dec(x_255); -lean_dec_ref(x_254); -lean_dec_ref(x_253); -lean_dec_ref(x_252); -lean_dec(x_251); -lean_dec(x_250); -lean_dec_ref(x_249); -lean_dec_ref(x_248); -lean_dec(x_247); -lean_dec_ref(x_246); -lean_dec(x_245); -lean_dec_ref(x_243); -lean_dec_ref(x_242); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_290 = !lean_is_exclusive(x_260); -if (x_290 == 0) -{ -return x_260; -} -else -{ -lean_object* x_291; lean_object* x_292; -x_291 = lean_ctor_get(x_260, 0); -lean_inc(x_291); -lean_dec(x_260); -x_292 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_292, 0, x_291); -return x_292; -} -} -} -block_406: -{ -lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; size_t x_317; lean_object* x_318; -x_309 = lean_unsigned_to_nat(0u); -x_310 = l_Lean_Meta_MatcherApp_refineThrough___lam__0___closed__0; -x_311 = l_Array_reverse___redArg(x_299); -x_312 = lean_array_get_size(x_311); -x_313 = l_Array_toSubarray___redArg(x_311, x_309, x_312); +lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; size_t x_311; lean_object* x_312; +x_303 = lean_unsigned_to_nat(0u); +x_304 = l_Lean_Meta_MatcherApp_refineThrough___lam__0___closed__0; +x_305 = l_Array_reverse___redArg(x_296); +x_306 = lean_array_get_size(x_305); +x_307 = l_Array_toSubarray___redArg(x_305, x_303, x_306); +lean_inc_ref(x_291); +x_308 = l_Array_reverse___redArg(x_291); +x_309 = l_Lean_Meta_MatcherApp_transform___redArg___lam__64___closed__0; +x_310 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_310, 0, x_307); +lean_ctor_set(x_310, 1, x_309); +x_311 = lean_array_size(x_308); +lean_inc(x_301); +lean_inc_ref(x_300); +lean_inc(x_299); lean_inc_ref(x_298); -x_314 = l_Array_reverse___redArg(x_298); -x_315 = l_Lean_Meta_MatcherApp_transform___redArg___lam__64___closed__0; -x_316 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_316, 0, x_313); -lean_ctor_set(x_316, 1, x_315); -x_317 = lean_array_size(x_314); -lean_inc(x_307); -lean_inc_ref(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -x_318 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__12(x_314, x_317, x_300, x_316, x_304, x_305, x_306, x_307); -lean_dec_ref(x_314); -if (lean_obj_tag(x_318) == 0) +x_312 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__12(x_308, x_311, x_292, x_310, x_298, x_299, x_300, x_301); +lean_dec_ref(x_308); +if (lean_obj_tag(x_312) == 0) { -lean_object* x_319; uint8_t x_320; -x_319 = lean_ctor_get(x_318, 0); -lean_inc(x_319); -lean_dec_ref(x_318); -x_320 = !lean_is_exclusive(x_319); -if (x_320 == 0) +lean_object* x_313; uint8_t x_314; +x_313 = lean_ctor_get(x_312, 0); +lean_inc(x_313); +lean_dec_ref(x_312); +x_314 = !lean_is_exclusive(x_313); +if (x_314 == 0) { -lean_object* x_321; lean_object* x_322; -x_321 = lean_ctor_get(x_319, 1); -x_322 = lean_ctor_get(x_319, 0); -lean_dec(x_322); +lean_object* x_315; lean_object* x_316; +x_315 = lean_ctor_get(x_313, 1); +x_316 = lean_ctor_get(x_313, 0); +lean_dec(x_316); if (x_2 == 0) { -lean_object* x_323; lean_object* x_324; -lean_free_object(x_319); -lean_dec(x_301); -lean_inc(x_16); -x_323 = lean_ctor_get(x_321, 0); -lean_inc(x_323); -x_324 = lean_ctor_get(x_321, 1); -lean_inc(x_324); -lean_dec(x_321); -x_108 = x_306; -x_109 = x_296; -x_110 = x_307; -x_111 = x_305; -x_112 = x_323; -x_113 = x_304; -x_114 = x_310; -x_115 = x_295; -x_116 = x_297; -x_117 = x_309; -x_118 = x_298; -x_119 = x_303; -x_120 = x_324; -x_121 = lean_box(0); -x_122 = x_302; -goto block_143; +lean_object* x_317; lean_object* x_318; +lean_free_object(x_313); +lean_dec(x_294); +x_317 = lean_ctor_get(x_315, 0); +lean_inc(x_317); +x_318 = lean_ctor_get(x_315, 1); +lean_inc(x_318); +lean_dec(x_315); +x_141 = x_298; +x_142 = x_291; +x_143 = x_303; +x_144 = x_295; +x_145 = lean_box(0); +x_146 = x_304; +x_147 = x_318; +x_148 = x_289; +x_149 = x_290; +x_150 = x_301; +x_151 = x_317; +x_152 = x_300; +x_153 = x_293; +x_154 = x_297; +x_155 = x_299; +goto block_176; } else { -if (x_294 == 0) +if (x_288 == 0) { -uint8_t x_325; -x_325 = !lean_is_exclusive(x_321); -if (x_325 == 0) +uint8_t x_319; +lean_inc_ref(x_21); +lean_dec_ref(x_1); +x_319 = !lean_is_exclusive(x_315); +if (x_319 == 0) { -lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; -x_326 = lean_ctor_get(x_321, 0); -x_327 = lean_ctor_get(x_321, 1); -lean_inc_ref(x_303); -x_328 = lean_array_to_list(x_303); -lean_inc(x_328); -lean_inc(x_16); -x_329 = l_Lean_mkConst(x_16, x_328); -x_330 = l_Lean_mkAppN(x_329, x_296); +lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; +x_320 = lean_ctor_get(x_315, 0); +x_321 = lean_ctor_get(x_315, 1); lean_inc_ref(x_297); -x_331 = l_Lean_Expr_app___override(x_330, x_297); -x_332 = l_Lean_mkAppN(x_331, x_298); -lean_inc(x_307); -lean_inc_ref(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -lean_inc_ref(x_332); -x_333 = l_Lean_Meta_isTypeCorrect(x_332, x_304, x_305, x_306, x_307); -if (lean_obj_tag(x_333) == 0) +x_322 = lean_array_to_list(x_297); +lean_inc(x_322); +lean_inc(x_16); +x_323 = l_Lean_mkConst(x_16, x_322); +x_324 = l_Lean_mkAppN(x_323, x_295); +lean_inc_ref(x_290); +x_325 = l_Lean_Expr_app___override(x_324, x_290); +x_326 = l_Lean_mkAppN(x_325, x_291); +lean_inc(x_301); +lean_inc_ref(x_300); +lean_inc(x_299); +lean_inc_ref(x_298); +lean_inc_ref(x_326); +x_327 = l_Lean_Meta_isTypeCorrect(x_326, x_298, x_299, x_300, x_301); +if (lean_obj_tag(x_327) == 0) { -lean_object* x_334; uint8_t x_335; -x_334 = lean_ctor_get(x_333, 0); -lean_inc(x_334); -lean_dec_ref(x_333); -x_335 = lean_unbox(x_334); -lean_dec(x_334); -if (x_335 == 0) +lean_object* x_328; uint8_t x_329; +x_328 = lean_ctor_get(x_327, 0); +lean_inc(x_328); +lean_dec_ref(x_327); +x_329 = lean_unbox(x_328); +lean_dec(x_328); +if (x_329 == 0) { -lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; -x_336 = l_Lean_Meta_MatcherApp_transform___redArg___lam__67___closed__1; -lean_inc_ref(x_332); -x_337 = l_Lean_indentExpr(x_332); -lean_ctor_set_tag(x_321, 7); -lean_ctor_set(x_321, 1, x_337); -lean_ctor_set(x_321, 0, x_336); -x_338 = l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__3; -lean_ctor_set_tag(x_319, 7); -lean_ctor_set(x_319, 1, x_338); -lean_ctor_set(x_319, 0, x_321); -x_339 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__58), 2, 1); -lean_closure_set(x_339, 0, x_319); -lean_inc_ref(x_332); -x_340 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); -lean_closure_set(x_340, 0, x_332); -lean_inc(x_307); -lean_inc_ref(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -x_341 = l_Lean_Meta_mapErrorImp___redArg(x_340, x_339, x_304, x_305, x_306, x_307); -if (lean_obj_tag(x_341) == 0) +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; +x_330 = l_Lean_Meta_MatcherApp_transform___redArg___lam__67___closed__1; +lean_inc_ref(x_326); +x_331 = l_Lean_indentExpr(x_326); +lean_ctor_set_tag(x_315, 7); +lean_ctor_set(x_315, 1, x_331); +lean_ctor_set(x_315, 0, x_330); +x_332 = l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__3; +lean_ctor_set_tag(x_313, 7); +lean_ctor_set(x_313, 1, x_332); +lean_ctor_set(x_313, 0, x_315); +x_333 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__58), 2, 1); +lean_closure_set(x_333, 0, x_313); +lean_inc_ref(x_326); +x_334 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); +lean_closure_set(x_334, 0, x_326); +lean_inc(x_301); +lean_inc_ref(x_300); +lean_inc(x_299); +lean_inc_ref(x_298); +x_335 = l_Lean_Meta_mapErrorImp___redArg(x_334, x_333, x_298, x_299, x_300, x_301); +if (lean_obj_tag(x_335) == 0) { -lean_dec_ref(x_341); -x_241 = x_295; -x_242 = x_296; +lean_dec_ref(x_335); +x_235 = x_289; +x_236 = x_303; +x_237 = x_291; +x_238 = x_290; +x_239 = x_320; +x_240 = x_322; +x_241 = x_293; +x_242 = x_326; x_243 = x_297; -x_244 = x_332; -x_245 = x_309; -x_246 = x_298; -x_247 = x_326; -x_248 = x_303; -x_249 = x_302; -x_250 = x_301; -x_251 = x_328; -x_252 = x_310; -x_253 = x_327; -x_254 = x_304; -x_255 = x_305; -x_256 = x_306; -x_257 = x_307; -x_258 = lean_box(0); -goto block_293; +x_244 = x_294; +x_245 = x_295; +x_246 = x_304; +x_247 = x_321; +x_248 = x_298; +x_249 = x_299; +x_250 = x_300; +x_251 = x_301; +x_252 = lean_box(0); +goto block_287; } else { -uint8_t x_342; -lean_dec_ref(x_332); -lean_dec(x_328); -lean_dec(x_327); -lean_dec(x_326); -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec_ref(x_303); -lean_dec_ref(x_302); +uint8_t x_336; +lean_dec_ref(x_326); +lean_dec(x_322); +lean_dec(x_321); +lean_dec(x_320); lean_dec(x_301); +lean_dec_ref(x_300); +lean_dec(x_299); lean_dec_ref(x_298); lean_dec_ref(x_297); -lean_dec_ref(x_296); +lean_dec_ref(x_295); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec_ref(x_291); +lean_dec_ref(x_290); lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) +x_336 = !lean_is_exclusive(x_335); +if (x_336 == 0) { +return x_335; +} +else +{ +lean_object* x_337; lean_object* x_338; +x_337 = lean_ctor_get(x_335, 0); +lean_inc(x_337); +lean_dec(x_335); +x_338 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_338, 0, x_337); +return x_338; +} +} +} +else +{ +lean_free_object(x_315); +lean_free_object(x_313); +x_235 = x_289; +x_236 = x_303; +x_237 = x_291; +x_238 = x_290; +x_239 = x_320; +x_240 = x_322; +x_241 = x_293; +x_242 = x_326; +x_243 = x_297; +x_244 = x_294; +x_245 = x_295; +x_246 = x_304; +x_247 = x_321; +x_248 = x_298; +x_249 = x_299; +x_250 = x_300; +x_251 = x_301; +x_252 = lean_box(0); +goto block_287; +} +} +else +{ +uint8_t x_339; +lean_dec_ref(x_326); +lean_dec(x_322); +lean_free_object(x_315); +lean_dec(x_321); +lean_dec(x_320); +lean_free_object(x_313); +lean_dec(x_301); +lean_dec_ref(x_300); +lean_dec(x_299); +lean_dec_ref(x_298); +lean_dec_ref(x_297); +lean_dec_ref(x_295); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec_ref(x_291); +lean_dec_ref(x_290); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_339 = !lean_is_exclusive(x_327); +if (x_339 == 0) +{ +return x_327; +} +else +{ +lean_object* x_340; lean_object* x_341; +x_340 = lean_ctor_get(x_327, 0); +lean_inc(x_340); +lean_dec(x_327); +x_341 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_341, 0, x_340); return x_341; } +} +} else { -lean_object* x_343; lean_object* x_344; -x_343 = lean_ctor_get(x_341, 0); +lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; +x_342 = lean_ctor_get(x_315, 0); +x_343 = lean_ctor_get(x_315, 1); lean_inc(x_343); -lean_dec(x_341); -x_344 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_344, 0, x_343); -return x_344; -} -} -} -else -{ -lean_free_object(x_321); -lean_free_object(x_319); -x_241 = x_295; -x_242 = x_296; -x_243 = x_297; -x_244 = x_332; -x_245 = x_309; -x_246 = x_298; -x_247 = x_326; -x_248 = x_303; -x_249 = x_302; -x_250 = x_301; -x_251 = x_328; -x_252 = x_310; -x_253 = x_327; -x_254 = x_304; -x_255 = x_305; -x_256 = x_306; -x_257 = x_307; -x_258 = lean_box(0); -goto block_293; -} -} -else -{ -uint8_t x_345; -lean_dec_ref(x_332); -lean_dec(x_328); -lean_free_object(x_321); -lean_dec(x_327); -lean_dec(x_326); -lean_free_object(x_319); -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec_ref(x_303); -lean_dec_ref(x_302); -lean_dec(x_301); -lean_dec_ref(x_298); -lean_dec_ref(x_297); -lean_dec_ref(x_296); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_345 = !lean_is_exclusive(x_333); -if (x_345 == 0) -{ -return x_333; -} -else -{ -lean_object* x_346; lean_object* x_347; -x_346 = lean_ctor_get(x_333, 0); -lean_inc(x_346); -lean_dec(x_333); -x_347 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_347, 0, x_346); -return x_347; -} -} -} -else -{ -lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; -x_348 = lean_ctor_get(x_321, 0); -x_349 = lean_ctor_get(x_321, 1); -lean_inc(x_349); -lean_inc(x_348); -lean_dec(x_321); -lean_inc_ref(x_303); -x_350 = lean_array_to_list(x_303); -lean_inc(x_350); -lean_inc(x_16); -x_351 = l_Lean_mkConst(x_16, x_350); -x_352 = l_Lean_mkAppN(x_351, x_296); +lean_inc(x_342); +lean_dec(x_315); lean_inc_ref(x_297); -x_353 = l_Lean_Expr_app___override(x_352, x_297); -x_354 = l_Lean_mkAppN(x_353, x_298); -lean_inc(x_307); -lean_inc_ref(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -lean_inc_ref(x_354); -x_355 = l_Lean_Meta_isTypeCorrect(x_354, x_304, x_305, x_306, x_307); -if (lean_obj_tag(x_355) == 0) -{ -lean_object* x_356; uint8_t x_357; -x_356 = lean_ctor_get(x_355, 0); -lean_inc(x_356); -lean_dec_ref(x_355); -x_357 = lean_unbox(x_356); -lean_dec(x_356); -if (x_357 == 0) -{ -lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; -x_358 = l_Lean_Meta_MatcherApp_transform___redArg___lam__67___closed__1; -lean_inc_ref(x_354); -x_359 = l_Lean_indentExpr(x_354); -x_360 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_360, 0, x_358); -lean_ctor_set(x_360, 1, x_359); -x_361 = l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__3; -lean_ctor_set_tag(x_319, 7); -lean_ctor_set(x_319, 1, x_361); -lean_ctor_set(x_319, 0, x_360); -x_362 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__58), 2, 1); -lean_closure_set(x_362, 0, x_319); -lean_inc_ref(x_354); -x_363 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); -lean_closure_set(x_363, 0, x_354); -lean_inc(x_307); -lean_inc_ref(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -x_364 = l_Lean_Meta_mapErrorImp___redArg(x_363, x_362, x_304, x_305, x_306, x_307); -if (lean_obj_tag(x_364) == 0) -{ -lean_dec_ref(x_364); -x_241 = x_295; -x_242 = x_296; -x_243 = x_297; -x_244 = x_354; -x_245 = x_309; -x_246 = x_298; -x_247 = x_348; -x_248 = x_303; -x_249 = x_302; -x_250 = x_301; -x_251 = x_350; -x_252 = x_310; -x_253 = x_349; -x_254 = x_304; -x_255 = x_305; -x_256 = x_306; -x_257 = x_307; -x_258 = lean_box(0); -goto block_293; -} -else -{ -lean_object* x_365; lean_object* x_366; lean_object* x_367; -lean_dec_ref(x_354); -lean_dec(x_350); -lean_dec(x_349); -lean_dec(x_348); -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec_ref(x_303); -lean_dec_ref(x_302); -lean_dec(x_301); -lean_dec_ref(x_298); -lean_dec_ref(x_297); -lean_dec_ref(x_296); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_365 = lean_ctor_get(x_364, 0); -lean_inc(x_365); -if (lean_is_exclusive(x_364)) { - lean_ctor_release(x_364, 0); - x_366 = x_364; -} else { - lean_dec_ref(x_364); - x_366 = lean_box(0); -} -if (lean_is_scalar(x_366)) { - x_367 = lean_alloc_ctor(1, 1, 0); -} else { - x_367 = x_366; -} -lean_ctor_set(x_367, 0, x_365); -return x_367; -} -} -else -{ -lean_free_object(x_319); -x_241 = x_295; -x_242 = x_296; -x_243 = x_297; -x_244 = x_354; -x_245 = x_309; -x_246 = x_298; -x_247 = x_348; -x_248 = x_303; -x_249 = x_302; -x_250 = x_301; -x_251 = x_350; -x_252 = x_310; -x_253 = x_349; -x_254 = x_304; -x_255 = x_305; -x_256 = x_306; -x_257 = x_307; -x_258 = lean_box(0); -goto block_293; -} -} -else -{ -lean_object* x_368; lean_object* x_369; lean_object* x_370; -lean_dec_ref(x_354); -lean_dec(x_350); -lean_dec(x_349); -lean_dec(x_348); -lean_free_object(x_319); -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec_ref(x_303); -lean_dec_ref(x_302); -lean_dec(x_301); -lean_dec_ref(x_298); -lean_dec_ref(x_297); -lean_dec_ref(x_296); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_368 = lean_ctor_get(x_355, 0); -lean_inc(x_368); -if (lean_is_exclusive(x_355)) { - lean_ctor_release(x_355, 0); - x_369 = x_355; -} else { - lean_dec_ref(x_355); - x_369 = lean_box(0); -} -if (lean_is_scalar(x_369)) { - x_370 = lean_alloc_ctor(1, 1, 0); -} else { - x_370 = x_369; -} -lean_ctor_set(x_370, 0, x_368); -return x_370; -} -} -} -else -{ -lean_object* x_371; lean_object* x_372; -lean_free_object(x_319); -lean_dec(x_301); +x_344 = lean_array_to_list(x_297); +lean_inc(x_344); lean_inc(x_16); -x_371 = lean_ctor_get(x_321, 0); -lean_inc(x_371); -x_372 = lean_ctor_get(x_321, 1); -lean_inc(x_372); -lean_dec(x_321); -x_108 = x_306; -x_109 = x_296; -x_110 = x_307; -x_111 = x_305; -x_112 = x_371; -x_113 = x_304; -x_114 = x_310; -x_115 = x_295; -x_116 = x_297; -x_117 = x_309; -x_118 = x_298; -x_119 = x_303; -x_120 = x_372; -x_121 = lean_box(0); -x_122 = x_302; -goto block_143; +x_345 = l_Lean_mkConst(x_16, x_344); +x_346 = l_Lean_mkAppN(x_345, x_295); +lean_inc_ref(x_290); +x_347 = l_Lean_Expr_app___override(x_346, x_290); +x_348 = l_Lean_mkAppN(x_347, x_291); +lean_inc(x_301); +lean_inc_ref(x_300); +lean_inc(x_299); +lean_inc_ref(x_298); +lean_inc_ref(x_348); +x_349 = l_Lean_Meta_isTypeCorrect(x_348, x_298, x_299, x_300, x_301); +if (lean_obj_tag(x_349) == 0) +{ +lean_object* x_350; uint8_t x_351; +x_350 = lean_ctor_get(x_349, 0); +lean_inc(x_350); +lean_dec_ref(x_349); +x_351 = lean_unbox(x_350); +lean_dec(x_350); +if (x_351 == 0) +{ +lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; +x_352 = l_Lean_Meta_MatcherApp_transform___redArg___lam__67___closed__1; +lean_inc_ref(x_348); +x_353 = l_Lean_indentExpr(x_348); +x_354 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_354, 0, x_352); +lean_ctor_set(x_354, 1, x_353); +x_355 = l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__3; +lean_ctor_set_tag(x_313, 7); +lean_ctor_set(x_313, 1, x_355); +lean_ctor_set(x_313, 0, x_354); +x_356 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__58), 2, 1); +lean_closure_set(x_356, 0, x_313); +lean_inc_ref(x_348); +x_357 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); +lean_closure_set(x_357, 0, x_348); +lean_inc(x_301); +lean_inc_ref(x_300); +lean_inc(x_299); +lean_inc_ref(x_298); +x_358 = l_Lean_Meta_mapErrorImp___redArg(x_357, x_356, x_298, x_299, x_300, x_301); +if (lean_obj_tag(x_358) == 0) +{ +lean_dec_ref(x_358); +x_235 = x_289; +x_236 = x_303; +x_237 = x_291; +x_238 = x_290; +x_239 = x_342; +x_240 = x_344; +x_241 = x_293; +x_242 = x_348; +x_243 = x_297; +x_244 = x_294; +x_245 = x_295; +x_246 = x_304; +x_247 = x_343; +x_248 = x_298; +x_249 = x_299; +x_250 = x_300; +x_251 = x_301; +x_252 = lean_box(0); +goto block_287; +} +else +{ +lean_object* x_359; lean_object* x_360; lean_object* x_361; +lean_dec_ref(x_348); +lean_dec(x_344); +lean_dec(x_343); +lean_dec(x_342); +lean_dec(x_301); +lean_dec_ref(x_300); +lean_dec(x_299); +lean_dec_ref(x_298); +lean_dec_ref(x_297); +lean_dec_ref(x_295); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec_ref(x_291); +lean_dec_ref(x_290); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_359 = lean_ctor_get(x_358, 0); +lean_inc(x_359); +if (lean_is_exclusive(x_358)) { + lean_ctor_release(x_358, 0); + x_360 = x_358; +} else { + lean_dec_ref(x_358); + x_360 = lean_box(0); +} +if (lean_is_scalar(x_360)) { + x_361 = lean_alloc_ctor(1, 1, 0); +} else { + x_361 = x_360; +} +lean_ctor_set(x_361, 0, x_359); +return x_361; +} +} +else +{ +lean_free_object(x_313); +x_235 = x_289; +x_236 = x_303; +x_237 = x_291; +x_238 = x_290; +x_239 = x_342; +x_240 = x_344; +x_241 = x_293; +x_242 = x_348; +x_243 = x_297; +x_244 = x_294; +x_245 = x_295; +x_246 = x_304; +x_247 = x_343; +x_248 = x_298; +x_249 = x_299; +x_250 = x_300; +x_251 = x_301; +x_252 = lean_box(0); +goto block_287; +} +} +else +{ +lean_object* x_362; lean_object* x_363; lean_object* x_364; +lean_dec_ref(x_348); +lean_dec(x_344); +lean_dec(x_343); +lean_dec(x_342); +lean_free_object(x_313); +lean_dec(x_301); +lean_dec_ref(x_300); +lean_dec(x_299); +lean_dec_ref(x_298); +lean_dec_ref(x_297); +lean_dec_ref(x_295); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec_ref(x_291); +lean_dec_ref(x_290); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_362 = lean_ctor_get(x_349, 0); +lean_inc(x_362); +if (lean_is_exclusive(x_349)) { + lean_ctor_release(x_349, 0); + x_363 = x_349; +} else { + lean_dec_ref(x_349); + x_363 = lean_box(0); +} +if (lean_is_scalar(x_363)) { + x_364 = lean_alloc_ctor(1, 1, 0); +} else { + x_364 = x_363; +} +lean_ctor_set(x_364, 0, x_362); +return x_364; } } } else { -lean_object* x_373; -x_373 = lean_ctor_get(x_319, 1); -lean_inc(x_373); -lean_dec(x_319); +lean_object* x_365; lean_object* x_366; +lean_free_object(x_313); +lean_dec(x_294); +x_365 = lean_ctor_get(x_315, 0); +lean_inc(x_365); +x_366 = lean_ctor_get(x_315, 1); +lean_inc(x_366); +lean_dec(x_315); +x_141 = x_298; +x_142 = x_291; +x_143 = x_303; +x_144 = x_295; +x_145 = lean_box(0); +x_146 = x_304; +x_147 = x_366; +x_148 = x_289; +x_149 = x_290; +x_150 = x_301; +x_151 = x_365; +x_152 = x_300; +x_153 = x_293; +x_154 = x_297; +x_155 = x_299; +goto block_176; +} +} +} +else +{ +lean_object* x_367; +x_367 = lean_ctor_get(x_313, 1); +lean_inc(x_367); +lean_dec(x_313); if (x_2 == 0) { -lean_object* x_374; lean_object* x_375; -lean_dec(x_301); -lean_inc(x_16); -x_374 = lean_ctor_get(x_373, 0); -lean_inc(x_374); -x_375 = lean_ctor_get(x_373, 1); -lean_inc(x_375); -lean_dec(x_373); -x_108 = x_306; -x_109 = x_296; -x_110 = x_307; -x_111 = x_305; -x_112 = x_374; -x_113 = x_304; -x_114 = x_310; -x_115 = x_295; -x_116 = x_297; -x_117 = x_309; -x_118 = x_298; -x_119 = x_303; -x_120 = x_375; -x_121 = lean_box(0); -x_122 = x_302; -goto block_143; +lean_object* x_368; lean_object* x_369; +lean_dec(x_294); +x_368 = lean_ctor_get(x_367, 0); +lean_inc(x_368); +x_369 = lean_ctor_get(x_367, 1); +lean_inc(x_369); +lean_dec(x_367); +x_141 = x_298; +x_142 = x_291; +x_143 = x_303; +x_144 = x_295; +x_145 = lean_box(0); +x_146 = x_304; +x_147 = x_369; +x_148 = x_289; +x_149 = x_290; +x_150 = x_301; +x_151 = x_368; +x_152 = x_300; +x_153 = x_293; +x_154 = x_297; +x_155 = x_299; +goto block_176; } else { -if (x_294 == 0) +if (x_288 == 0) { -lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; -x_376 = lean_ctor_get(x_373, 0); -lean_inc(x_376); -x_377 = lean_ctor_get(x_373, 1); -lean_inc(x_377); -if (lean_is_exclusive(x_373)) { - lean_ctor_release(x_373, 0); - lean_ctor_release(x_373, 1); - x_378 = x_373; +lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; +lean_inc_ref(x_21); +lean_dec_ref(x_1); +x_370 = lean_ctor_get(x_367, 0); +lean_inc(x_370); +x_371 = lean_ctor_get(x_367, 1); +lean_inc(x_371); +if (lean_is_exclusive(x_367)) { + lean_ctor_release(x_367, 0); + lean_ctor_release(x_367, 1); + x_372 = x_367; } else { - lean_dec_ref(x_373); - x_378 = lean_box(0); + lean_dec_ref(x_367); + x_372 = lean_box(0); } -lean_inc_ref(x_303); -x_379 = lean_array_to_list(x_303); -lean_inc(x_379); -lean_inc(x_16); -x_380 = l_Lean_mkConst(x_16, x_379); -x_381 = l_Lean_mkAppN(x_380, x_296); lean_inc_ref(x_297); -x_382 = l_Lean_Expr_app___override(x_381, x_297); -x_383 = l_Lean_mkAppN(x_382, x_298); -lean_inc(x_307); -lean_inc_ref(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -lean_inc_ref(x_383); -x_384 = l_Lean_Meta_isTypeCorrect(x_383, x_304, x_305, x_306, x_307); -if (lean_obj_tag(x_384) == 0) -{ -lean_object* x_385; uint8_t x_386; -x_385 = lean_ctor_get(x_384, 0); -lean_inc(x_385); -lean_dec_ref(x_384); -x_386 = lean_unbox(x_385); -lean_dec(x_385); -if (x_386 == 0) -{ -lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; -x_387 = l_Lean_Meta_MatcherApp_transform___redArg___lam__67___closed__1; -lean_inc_ref(x_383); -x_388 = l_Lean_indentExpr(x_383); -if (lean_is_scalar(x_378)) { - x_389 = lean_alloc_ctor(7, 2, 0); -} else { - x_389 = x_378; - lean_ctor_set_tag(x_389, 7); -} -lean_ctor_set(x_389, 0, x_387); -lean_ctor_set(x_389, 1, x_388); -x_390 = l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__3; -x_391 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_391, 0, x_389); -lean_ctor_set(x_391, 1, x_390); -x_392 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__58), 2, 1); -lean_closure_set(x_392, 0, x_391); -lean_inc_ref(x_383); -x_393 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); -lean_closure_set(x_393, 0, x_383); -lean_inc(x_307); -lean_inc_ref(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -x_394 = l_Lean_Meta_mapErrorImp___redArg(x_393, x_392, x_304, x_305, x_306, x_307); -if (lean_obj_tag(x_394) == 0) -{ -lean_dec_ref(x_394); -x_241 = x_295; -x_242 = x_296; -x_243 = x_297; -x_244 = x_383; -x_245 = x_309; -x_246 = x_298; -x_247 = x_376; -x_248 = x_303; -x_249 = x_302; -x_250 = x_301; -x_251 = x_379; -x_252 = x_310; -x_253 = x_377; -x_254 = x_304; -x_255 = x_305; -x_256 = x_306; -x_257 = x_307; -x_258 = lean_box(0); -goto block_293; -} -else -{ -lean_object* x_395; lean_object* x_396; lean_object* x_397; -lean_dec_ref(x_383); -lean_dec(x_379); -lean_dec(x_377); -lean_dec(x_376); -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec_ref(x_303); -lean_dec_ref(x_302); -lean_dec(x_301); -lean_dec_ref(x_298); -lean_dec_ref(x_297); -lean_dec_ref(x_296); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_395 = lean_ctor_get(x_394, 0); -lean_inc(x_395); -if (lean_is_exclusive(x_394)) { - lean_ctor_release(x_394, 0); - x_396 = x_394; -} else { - lean_dec_ref(x_394); - x_396 = lean_box(0); -} -if (lean_is_scalar(x_396)) { - x_397 = lean_alloc_ctor(1, 1, 0); -} else { - x_397 = x_396; -} -lean_ctor_set(x_397, 0, x_395); -return x_397; -} -} -else -{ -lean_dec(x_378); -x_241 = x_295; -x_242 = x_296; -x_243 = x_297; -x_244 = x_383; -x_245 = x_309; -x_246 = x_298; -x_247 = x_376; -x_248 = x_303; -x_249 = x_302; -x_250 = x_301; -x_251 = x_379; -x_252 = x_310; -x_253 = x_377; -x_254 = x_304; -x_255 = x_305; -x_256 = x_306; -x_257 = x_307; -x_258 = lean_box(0); -goto block_293; -} -} -else -{ -lean_object* x_398; lean_object* x_399; lean_object* x_400; -lean_dec_ref(x_383); -lean_dec(x_379); -lean_dec(x_378); -lean_dec(x_377); -lean_dec(x_376); -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec_ref(x_303); -lean_dec_ref(x_302); -lean_dec(x_301); -lean_dec_ref(x_298); -lean_dec_ref(x_297); -lean_dec_ref(x_296); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_398 = lean_ctor_get(x_384, 0); -lean_inc(x_398); -if (lean_is_exclusive(x_384)) { - lean_ctor_release(x_384, 0); - x_399 = x_384; -} else { - lean_dec_ref(x_384); - x_399 = lean_box(0); -} -if (lean_is_scalar(x_399)) { - x_400 = lean_alloc_ctor(1, 1, 0); -} else { - x_400 = x_399; -} -lean_ctor_set(x_400, 0, x_398); -return x_400; -} -} -else -{ -lean_object* x_401; lean_object* x_402; -lean_dec(x_301); +x_373 = lean_array_to_list(x_297); +lean_inc(x_373); lean_inc(x_16); -x_401 = lean_ctor_get(x_373, 0); -lean_inc(x_401); -x_402 = lean_ctor_get(x_373, 1); -lean_inc(x_402); +x_374 = l_Lean_mkConst(x_16, x_373); +x_375 = l_Lean_mkAppN(x_374, x_295); +lean_inc_ref(x_290); +x_376 = l_Lean_Expr_app___override(x_375, x_290); +x_377 = l_Lean_mkAppN(x_376, x_291); +lean_inc(x_301); +lean_inc_ref(x_300); +lean_inc(x_299); +lean_inc_ref(x_298); +lean_inc_ref(x_377); +x_378 = l_Lean_Meta_isTypeCorrect(x_377, x_298, x_299, x_300, x_301); +if (lean_obj_tag(x_378) == 0) +{ +lean_object* x_379; uint8_t x_380; +x_379 = lean_ctor_get(x_378, 0); +lean_inc(x_379); +lean_dec_ref(x_378); +x_380 = lean_unbox(x_379); +lean_dec(x_379); +if (x_380 == 0) +{ +lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; +x_381 = l_Lean_Meta_MatcherApp_transform___redArg___lam__67___closed__1; +lean_inc_ref(x_377); +x_382 = l_Lean_indentExpr(x_377); +if (lean_is_scalar(x_372)) { + x_383 = lean_alloc_ctor(7, 2, 0); +} else { + x_383 = x_372; + lean_ctor_set_tag(x_383, 7); +} +lean_ctor_set(x_383, 0, x_381); +lean_ctor_set(x_383, 1, x_382); +x_384 = l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__3; +x_385 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_385, 0, x_383); +lean_ctor_set(x_385, 1, x_384); +x_386 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__58), 2, 1); +lean_closure_set(x_386, 0, x_385); +lean_inc_ref(x_377); +x_387 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); +lean_closure_set(x_387, 0, x_377); +lean_inc(x_301); +lean_inc_ref(x_300); +lean_inc(x_299); +lean_inc_ref(x_298); +x_388 = l_Lean_Meta_mapErrorImp___redArg(x_387, x_386, x_298, x_299, x_300, x_301); +if (lean_obj_tag(x_388) == 0) +{ +lean_dec_ref(x_388); +x_235 = x_289; +x_236 = x_303; +x_237 = x_291; +x_238 = x_290; +x_239 = x_370; +x_240 = x_373; +x_241 = x_293; +x_242 = x_377; +x_243 = x_297; +x_244 = x_294; +x_245 = x_295; +x_246 = x_304; +x_247 = x_371; +x_248 = x_298; +x_249 = x_299; +x_250 = x_300; +x_251 = x_301; +x_252 = lean_box(0); +goto block_287; +} +else +{ +lean_object* x_389; lean_object* x_390; lean_object* x_391; +lean_dec_ref(x_377); lean_dec(x_373); -x_108 = x_306; -x_109 = x_296; -x_110 = x_307; -x_111 = x_305; -x_112 = x_401; -x_113 = x_304; -x_114 = x_310; -x_115 = x_295; -x_116 = x_297; -x_117 = x_309; -x_118 = x_298; -x_119 = x_303; -x_120 = x_402; -x_121 = lean_box(0); -x_122 = x_302; -goto block_143; +lean_dec(x_371); +lean_dec(x_370); +lean_dec(x_301); +lean_dec_ref(x_300); +lean_dec(x_299); +lean_dec_ref(x_298); +lean_dec_ref(x_297); +lean_dec_ref(x_295); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec_ref(x_291); +lean_dec_ref(x_290); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_389 = lean_ctor_get(x_388, 0); +lean_inc(x_389); +if (lean_is_exclusive(x_388)) { + lean_ctor_release(x_388, 0); + x_390 = x_388; +} else { + lean_dec_ref(x_388); + x_390 = lean_box(0); +} +if (lean_is_scalar(x_390)) { + x_391 = lean_alloc_ctor(1, 1, 0); +} else { + x_391 = x_390; +} +lean_ctor_set(x_391, 0, x_389); +return x_391; +} +} +else +{ +lean_dec(x_372); +x_235 = x_289; +x_236 = x_303; +x_237 = x_291; +x_238 = x_290; +x_239 = x_370; +x_240 = x_373; +x_241 = x_293; +x_242 = x_377; +x_243 = x_297; +x_244 = x_294; +x_245 = x_295; +x_246 = x_304; +x_247 = x_371; +x_248 = x_298; +x_249 = x_299; +x_250 = x_300; +x_251 = x_301; +x_252 = lean_box(0); +goto block_287; +} +} +else +{ +lean_object* x_392; lean_object* x_393; lean_object* x_394; +lean_dec_ref(x_377); +lean_dec(x_373); +lean_dec(x_372); +lean_dec(x_371); +lean_dec(x_370); +lean_dec(x_301); +lean_dec_ref(x_300); +lean_dec(x_299); +lean_dec_ref(x_298); +lean_dec_ref(x_297); +lean_dec_ref(x_295); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec_ref(x_291); +lean_dec_ref(x_290); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_392 = lean_ctor_get(x_378, 0); +lean_inc(x_392); +if (lean_is_exclusive(x_378)) { + lean_ctor_release(x_378, 0); + x_393 = x_378; +} else { + lean_dec_ref(x_378); + x_393 = lean_box(0); +} +if (lean_is_scalar(x_393)) { + x_394 = lean_alloc_ctor(1, 1, 0); +} else { + x_394 = x_393; +} +lean_ctor_set(x_394, 0, x_392); +return x_394; +} +} +else +{ +lean_object* x_395; lean_object* x_396; +lean_dec(x_294); +x_395 = lean_ctor_get(x_367, 0); +lean_inc(x_395); +x_396 = lean_ctor_get(x_367, 1); +lean_inc(x_396); +lean_dec(x_367); +x_141 = x_298; +x_142 = x_291; +x_143 = x_303; +x_144 = x_295; +x_145 = lean_box(0); +x_146 = x_304; +x_147 = x_396; +x_148 = x_289; +x_149 = x_290; +x_150 = x_301; +x_151 = x_395; +x_152 = x_300; +x_153 = x_293; +x_154 = x_297; +x_155 = x_299; +goto block_176; } } } } else { -uint8_t x_403; -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec_ref(x_303); -lean_dec_ref(x_302); +uint8_t x_397; lean_dec(x_301); +lean_dec_ref(x_300); +lean_dec(x_299); lean_dec_ref(x_298); lean_dec_ref(x_297); -lean_dec_ref(x_296); +lean_dec_ref(x_295); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec_ref(x_291); +lean_dec_ref(x_290); lean_dec_ref(x_22); +lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_1); -x_403 = !lean_is_exclusive(x_318); -if (x_403 == 0) +x_397 = !lean_is_exclusive(x_312); +if (x_397 == 0) { -return x_318; +return x_312; } else { -lean_object* x_404; lean_object* x_405; -x_404 = lean_ctor_get(x_318, 0); -lean_inc(x_404); -lean_dec(x_318); -x_405 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_405, 0, x_404); -return x_405; +lean_object* x_398; lean_object* x_399; +x_398 = lean_ctor_get(x_312, 0); +lean_inc(x_398); +lean_dec(x_312); +x_399 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_399, 0, x_398); +return x_399; } } } -block_447: +block_441: { -size_t x_413; size_t x_414; lean_object* x_415; -x_413 = lean_array_size(x_18); -x_414 = 0; -lean_inc(x_411); -lean_inc_ref(x_410); -lean_inc(x_409); -lean_inc_ref(x_408); +size_t x_407; size_t x_408; lean_object* x_409; +x_407 = lean_array_size(x_18); +x_408 = 0; +lean_inc(x_405); +lean_inc_ref(x_404); +lean_inc(x_403); +lean_inc_ref(x_402); lean_inc_ref(x_18); lean_inc_ref(x_4); -x_415 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__10(x_4, x_413, x_414, x_18, x_408, x_409, x_410, x_411); -if (lean_obj_tag(x_415) == 0) +x_409 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__10(x_4, x_407, x_408, x_18, x_402, x_403, x_404, x_405); +if (lean_obj_tag(x_409) == 0) { -lean_object* x_416; size_t x_417; lean_object* x_418; -x_416 = lean_ctor_get(x_415, 0); -lean_inc(x_416); -lean_dec_ref(x_415); -x_417 = lean_array_size(x_20); -lean_inc(x_411); -lean_inc_ref(x_410); -lean_inc(x_409); -lean_inc_ref(x_408); +lean_object* x_410; size_t x_411; lean_object* x_412; +x_410 = lean_ctor_get(x_409, 0); +lean_inc(x_410); +lean_dec_ref(x_409); +x_411 = lean_array_size(x_20); +lean_inc(x_405); +lean_inc_ref(x_404); +lean_inc(x_403); +lean_inc_ref(x_402); lean_inc_ref(x_20); -x_418 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__10(x_4, x_417, x_414, x_20, x_408, x_409, x_410, x_411); +x_412 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__10(x_4, x_411, x_408, x_20, x_402, x_403, x_404, x_405); +if (lean_obj_tag(x_412) == 0) +{ +lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; uint8_t x_417; lean_object* x_418; +x_413 = lean_ctor_get(x_412, 0); +lean_inc(x_413); +lean_dec_ref(x_412); +x_414 = lean_box(x_3); +x_415 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9___boxed__const__1; +lean_inc_ref(x_20); +lean_inc(x_413); +lean_inc_ref(x_15); +x_416 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9___lam__2___boxed), 13, 6); +lean_closure_set(x_416, 0, x_5); +lean_closure_set(x_416, 1, x_15); +lean_closure_set(x_416, 2, x_413); +lean_closure_set(x_416, 3, x_414); +lean_closure_set(x_416, 4, x_415); +lean_closure_set(x_416, 5, x_20); +x_417 = 0; +lean_inc(x_405); +lean_inc_ref(x_404); +lean_inc(x_403); +lean_inc_ref(x_402); +lean_inc_ref(x_19); +x_418 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_addArg_spec__2___redArg(x_19, x_416, x_417, x_402, x_403, x_404, x_405); if (lean_obj_tag(x_418) == 0) { -lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; uint8_t x_423; lean_object* x_424; +lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; x_419 = lean_ctor_get(x_418, 0); lean_inc(x_419); lean_dec_ref(x_418); -x_420 = lean_box(x_3); -x_421 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9___boxed__const__1; -lean_inc_ref(x_20); -lean_inc(x_419); -lean_inc_ref(x_15); -x_422 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9___lam__2___boxed), 13, 6); -lean_closure_set(x_422, 0, x_5); -lean_closure_set(x_422, 1, x_15); -lean_closure_set(x_422, 2, x_419); -lean_closure_set(x_422, 3, x_420); -lean_closure_set(x_422, 4, x_421); -lean_closure_set(x_422, 5, x_20); -x_423 = 0; -lean_inc(x_411); -lean_inc_ref(x_410); -lean_inc(x_409); -lean_inc_ref(x_408); -lean_inc_ref(x_19); -x_424 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_addArg_spec__2___redArg(x_19, x_422, x_423, x_408, x_409, x_410, x_411); -if (lean_obj_tag(x_424) == 0) +x_420 = lean_ctor_get(x_419, 1); +x_421 = lean_ctor_get(x_420, 1); +lean_inc(x_421); +x_422 = lean_ctor_get(x_15, 3); +if (lean_obj_tag(x_422) == 0) { -lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; -x_425 = lean_ctor_get(x_424, 0); -lean_inc(x_425); -lean_dec_ref(x_424); -x_426 = lean_ctor_get(x_425, 1); -x_427 = lean_ctor_get(x_426, 1); -lean_inc(x_427); -x_428 = lean_ctor_get(x_15, 3); -if (lean_obj_tag(x_428) == 0) -{ -lean_object* x_429; lean_object* x_430; lean_object* x_431; -x_429 = lean_ctor_get(x_425, 0); -lean_inc(x_429); -lean_dec(x_425); -x_430 = lean_ctor_get(x_427, 0); -lean_inc(x_430); -x_431 = lean_ctor_get(x_427, 1); -lean_inc(x_431); -lean_dec(x_427); -lean_inc_ref(x_17); -x_295 = x_423; -x_296 = x_416; -x_297 = x_429; -x_298 = x_419; -x_299 = x_430; -x_300 = x_414; -x_301 = x_407; -x_302 = x_431; -x_303 = x_17; -x_304 = x_408; -x_305 = x_409; -x_306 = x_410; -x_307 = x_411; -x_308 = lean_box(0); -goto block_406; -} -else -{ -lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; -lean_inc(x_426); -x_432 = lean_ctor_get(x_425, 0); -lean_inc(x_432); -lean_dec(x_425); -x_433 = lean_ctor_get(x_426, 0); -lean_inc(x_433); -lean_dec(x_426); -x_434 = lean_ctor_get(x_427, 0); -lean_inc(x_434); -x_435 = lean_ctor_get(x_427, 1); -lean_inc(x_435); -lean_dec(x_427); -x_436 = lean_ctor_get(x_428, 0); -lean_inc_ref(x_17); -x_437 = lean_array_set(x_17, x_436, x_433); -x_295 = x_423; -x_296 = x_416; -x_297 = x_432; -x_298 = x_419; -x_299 = x_434; -x_300 = x_414; -x_301 = x_407; -x_302 = x_435; -x_303 = x_437; -x_304 = x_408; -x_305 = x_409; -x_306 = x_410; -x_307 = x_411; -x_308 = lean_box(0); -goto block_406; -} -} -else -{ -uint8_t x_438; +lean_object* x_423; lean_object* x_424; lean_object* x_425; +x_423 = lean_ctor_get(x_419, 0); +lean_inc(x_423); lean_dec(x_419); -lean_dec(x_416); -lean_dec(x_411); -lean_dec_ref(x_410); -lean_dec(x_409); -lean_dec_ref(x_408); -lean_dec(x_407); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_438 = !lean_is_exclusive(x_424); -if (x_438 == 0) -{ -return x_424; +x_424 = lean_ctor_get(x_421, 0); +lean_inc(x_424); +x_425 = lean_ctor_get(x_421, 1); +lean_inc(x_425); +lean_dec(x_421); +lean_inc_ref(x_17); +x_289 = x_417; +x_290 = x_423; +x_291 = x_413; +x_292 = x_408; +x_293 = x_425; +x_294 = x_401; +x_295 = x_410; +x_296 = x_424; +x_297 = x_17; +x_298 = x_402; +x_299 = x_403; +x_300 = x_404; +x_301 = x_405; +x_302 = lean_box(0); +goto block_400; } else { -lean_object* x_439; lean_object* x_440; -x_439 = lean_ctor_get(x_424, 0); -lean_inc(x_439); -lean_dec(x_424); -x_440 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_440, 0, x_439); -return x_440; -} +lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; +lean_inc(x_420); +x_426 = lean_ctor_get(x_419, 0); +lean_inc(x_426); +lean_dec(x_419); +x_427 = lean_ctor_get(x_420, 0); +lean_inc(x_427); +lean_dec(x_420); +x_428 = lean_ctor_get(x_421, 0); +lean_inc(x_428); +x_429 = lean_ctor_get(x_421, 1); +lean_inc(x_429); +lean_dec(x_421); +x_430 = lean_ctor_get(x_422, 0); +lean_inc_ref(x_17); +x_431 = lean_array_set(x_17, x_430, x_427); +x_289 = x_417; +x_290 = x_426; +x_291 = x_413; +x_292 = x_408; +x_293 = x_429; +x_294 = x_401; +x_295 = x_410; +x_296 = x_428; +x_297 = x_431; +x_298 = x_402; +x_299 = x_403; +x_300 = x_404; +x_301 = x_405; +x_302 = lean_box(0); +goto block_400; } } else { -uint8_t x_441; -lean_dec(x_416); -lean_dec(x_411); -lean_dec_ref(x_410); -lean_dec(x_409); -lean_dec_ref(x_408); -lean_dec(x_407); +uint8_t x_432; +lean_dec(x_413); +lean_dec(x_410); +lean_dec(x_405); +lean_dec_ref(x_404); +lean_dec(x_403); +lean_dec_ref(x_402); +lean_dec(x_401); lean_dec_ref(x_22); +lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); lean_dec_ref(x_1); -x_441 = !lean_is_exclusive(x_418); -if (x_441 == 0) +x_432 = !lean_is_exclusive(x_418); +if (x_432 == 0) { return x_418; } else { -lean_object* x_442; lean_object* x_443; -x_442 = lean_ctor_get(x_418, 0); -lean_inc(x_442); +lean_object* x_433; lean_object* x_434; +x_433 = lean_ctor_get(x_418, 0); +lean_inc(x_433); lean_dec(x_418); -x_443 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_443, 0, x_442); -return x_443; +x_434 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_434, 0, x_433); +return x_434; } } } else { -uint8_t x_444; -lean_dec(x_411); -lean_dec_ref(x_410); -lean_dec(x_409); -lean_dec_ref(x_408); -lean_dec(x_407); +uint8_t x_435; +lean_dec(x_410); +lean_dec(x_405); +lean_dec_ref(x_404); +lean_dec(x_403); +lean_dec_ref(x_402); +lean_dec(x_401); lean_dec_ref(x_22); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_1); +x_435 = !lean_is_exclusive(x_412); +if (x_435 == 0) +{ +return x_412; +} +else +{ +lean_object* x_436; lean_object* x_437; +x_436 = lean_ctor_get(x_412, 0); +lean_inc(x_436); +lean_dec(x_412); +x_437 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_437, 0, x_436); +return x_437; +} +} +} +else +{ +uint8_t x_438; +lean_dec(x_405); +lean_dec_ref(x_404); +lean_dec(x_403); +lean_dec_ref(x_402); +lean_dec(x_401); +lean_dec_ref(x_22); +lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_444 = !lean_is_exclusive(x_415); -if (x_444 == 0) +x_438 = !lean_is_exclusive(x_409); +if (x_438 == 0) { -return x_415; +return x_409; } else { -lean_object* x_445; lean_object* x_446; -x_445 = lean_ctor_get(x_415, 0); -lean_inc(x_445); -lean_dec(x_415); -x_446 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_446, 0, x_445); -return x_446; +lean_object* x_439; lean_object* x_440; +x_439 = lean_ctor_get(x_409, 0); +lean_inc(x_439); +lean_dec(x_409); +x_440 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_440, 0, x_439); +return x_440; } } } @@ -27585,66 +34959,82 @@ lean_dec_ref(x_2); return x_7; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17(x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec_ref(x_5); lean_dec_ref(x_4); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; x_17 = lean_unbox(x_7); x_18 = lean_unbox(x_8); -x_19 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_17, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_19 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_17, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec_ref(x_10); lean_dec_ref(x_6); lean_dec_ref(x_2); return x_19; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; x_17 = lean_unbox(x_6); x_18 = lean_unbox(x_7); -x_19 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_17, x_18, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_19 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_17, x_18, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); return x_19; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; x_17 = lean_unbox(x_5); x_18 = lean_unbox(x_6); -x_19 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__2(x_1, x_2, x_3, x_4, x_17, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_19 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__2(x_1, x_2, x_3, x_4, x_17, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); return x_19; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -27665,28 +35055,29 @@ lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; lean_object* x_21; -x_19 = lean_unbox(x_4); -x_20 = lean_unbox(x_5); -x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__3(x_1, x_2, x_3, x_19, x_20, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +uint8_t x_19; uint8_t x_20; uint8_t x_21; lean_object* x_22; +x_19 = lean_unbox(x_5); +x_20 = lean_unbox(x_6); +x_21 = lean_unbox(x_10); +x_22 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___lam__3(x_1, x_2, x_3, x_4, x_19, x_20, x_7, x_8, x_9, x_21, x_11, x_12, x_13, x_14, x_15, x_16, x_17); lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -return x_21; +lean_dec_ref(x_1); +return x_22; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { uint8_t x_15; uint8_t x_16; lean_object* x_17; -x_15 = lean_unbox(x_2); -x_16 = lean_unbox(x_3); -x_17 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg(x_1, x_15, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_15 = lean_unbox(x_3); +x_16 = lean_unbox(x_4); +x_17 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___redArg(x_1, x_2, x_15, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_7); +lean_dec(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -27710,28 +35101,75 @@ lean_object* x_20 = _args[19]; _start: { uint8_t x_21; uint8_t x_22; lean_object* x_23; -x_21 = lean_unbox(x_2); -x_22 = lean_unbox(x_3); -x_23 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17(x_1, x_21, x_22, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +x_21 = lean_unbox(x_3); +x_22 = lean_unbox(x_4); +x_23 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19_spec__19(x_1, x_2, x_21, x_22, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); lean_dec(x_11); lean_dec(x_10); +lean_dec(x_1); return x_23; } } -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; uint8_t x_17; lean_object* x_18; +x_16 = lean_unbox(x_3); +x_17 = lean_unbox(x_4); +x_18 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19___redArg(x_1, x_2, x_16, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_1); +return x_18; +} +} +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +_start: +{ +uint8_t x_21; uint8_t x_22; lean_object* x_23; +x_21 = lean_unbox(x_3); +x_22 = lean_unbox(x_4); +x_23 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__19(x_1, x_2, x_21, x_22, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_1); +return x_23; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__21___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg(x_1, x_2); +x_4 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__21___redArg(x_1, x_2); lean_dec(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__21___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18(x_1, x_2, x_3, x_4, x_5); +x_7 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__21(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -27909,6 +35347,34 @@ l_Lean_Meta_MatcherApp_transform___redArg___lam__48___closed__1 = _init_l_Lean_M lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__48___closed__1); l_Lean_Meta_MatcherApp_transform___redArg___lam__48___closed__2 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__48___closed__2(); lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__48___closed__2); +l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__0 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__0(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__0); +l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__1 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__1); +l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__2 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__2(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__2); +l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__3 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__3(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__47___closed__3); +l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__0 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__0(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__0); +l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__1 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__1); +l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__2 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__2(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__2); +l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__3 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__3(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__3); +l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__4 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__4(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__4); +l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__5 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__5(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__5); +l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__6 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__6(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__6); +l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__7); +l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__8 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__8(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__8); +l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__51___closed__9); l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__0 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__0(); lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__0); l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__1 = _init_l_Lean_Meta_MatcherApp_transform___redArg___lam__59___closed__1(); @@ -27957,6 +35423,16 @@ l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_De lean_mark_persistent(l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Lean_Meta_MatcherApp_inferMatchType_spec__5_spec__5___redArg___closed__4); l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Lean_Meta_MatcherApp_inferMatchType_spec__5_spec__5___redArg___closed__5 = _init_l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Lean_Meta_MatcherApp_inferMatchType_spec__5_spec__5___redArg___closed__5(); lean_mark_persistent(l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Lean_Meta_MatcherApp_inferMatchType_spec__5_spec__5___redArg___closed__5); +l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__0 = _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__0(); +lean_mark_persistent(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__0); +l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__1 = _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__1(); +lean_mark_persistent(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__1); +l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__2 = _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__2(); +lean_mark_persistent(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__2); +l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3 = _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3(); +lean_mark_persistent(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__3); +l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4 = _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4(); +lean_mark_persistent(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16___closed__4); l_Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9___boxed__const__1 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9___boxed__const__1(); lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Meta_MatcherApp_inferMatchType_spec__9___boxed__const__1); l_Lean_Meta_MatcherApp_inferMatchType___lam__2___closed__0 = _init_l_Lean_Meta_MatcherApp_inferMatchType___lam__2___closed__0(); diff --git a/stage0/stdlib/Lean/Meta/Match/MatcherInfo.c b/stage0/stdlib/Lean/Meta/Match/MatcherInfo.c index bf6400ba3c..faa37d3e47 100644 --- a/stage0/stdlib/Lean/Meta/Match/MatcherInfo.c +++ b/stage0/stdlib/Lean/Meta/Match/MatcherInfo.c @@ -14,11 +14,19 @@ extern "C" { #endif LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__3; LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_foldl___at___00Lean_Meta_Match_Overlaps_overlapping_spec__2(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprDiscrInfo___closed__0; LEAN_EXPORT uint8_t lean_is_matcher(lean_object*, lean_object*); +lean_object* l_Lean_Name_reprPrec(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_SMap_switch___at___00Lean_Meta_Match_Extension_State_switch_spec__0___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getFirstDiscrPos___boxed(lean_object*); +static lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_ctorIdx(lean_object*); +LEAN_EXPORT lean_object* l_List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*); +static lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__9; +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_foldrM___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_addMatcherInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getFirstAltPos(lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); @@ -26,28 +34,48 @@ LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___00__pri LEAN_EXPORT lean_object* l_Lean_Meta_Match_Overlaps_overlapping(lean_object*, lean_object*); size_t lean_usize_shift_right(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfoCore_x3f(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__4; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_mkStateFromImportedEntries___at___00Lean_Meta_Match_Extension_initFn_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2__spec__1_spec__2_spec__2(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__5_spec__9(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__2; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_Match_Overlaps_overlapping_spec__0___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_ctorIdx___boxed(lean_object*); -static lean_object* l_Lean_Meta_Match_Extension_instInhabitedState___closed__7; +LEAN_EXPORT lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__3_spec__3___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_Match_MatcherInfo_altNumParams_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr(lean_object*, lean_object*); uint8_t lean_usize_dec_le(size_t, size_t); +LEAN_EXPORT lean_object* l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__10; uint64_t lean_uint64_of_nat(lean_object*); +static lean_object* l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__1; +lean_object* l_Std_Format_fill(lean_object*); +LEAN_EXPORT lean_object* l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0(lean_object*, lean_object*); size_t lean_uint64_to_usize(uint64_t); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__5_spec__5___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprOverlaps_repr(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprAltParamInfo___closed__0; size_t lean_usize_mul(size_t, size_t); +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getMotivePos___boxed(lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); +LEAN_EXPORT lean_object* l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprOverlaps; LEAN_EXPORT lean_object* l_Lean_Meta_Match_Overlaps_overlapping___boxed(lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__5_spec__5_spec__5_spec__5(lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_Match_instInhabitedDiscrInfo_default; +LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_foldrM___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__0(lean_object*, lean_object*); +static lean_object* l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__0; +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__15; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_Match_Overlaps_overlapping_spec__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_arity(lean_object*); @@ -57,132 +85,229 @@ static lean_object* l_Lean_Meta_Match_Extension_initFn___closed__0_00___x40_Lean LEAN_EXPORT lean_object* l_Lean_Meta_Match_Overlaps_insert(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_Match_MatcherInfo_altNumParams_spec__0(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Meta_Match_instInhabitedAltParamInfo_default___closed__0; +LEAN_EXPORT lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0(lean_object*); +static lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__10; lean_object* lean_array_fget_borrowed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__0___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprOverlaps_repr___redArg(lean_object*); +static lean_object* l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__3; lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__13; +static lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_Match_addMatcherInfo___redArg___lam__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_mkStateFromImportedEntries___at___00Lean_Meta_Match_Extension_initFn_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2__spec__1_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__4; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherApp(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__0_spec__0_spec__2(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_filterTR_loop___at___00Lean_Meta_Match_Extension_initFn_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2__spec__0(lean_object*, lean_object*, lean_object*); +lean_object* lean_string_length(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprOverlaps_repr___boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_Const_alter___at___00Lean_Meta_Match_Overlaps_insert_spec__2_spec__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn___closed__6_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2_; +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprMatcherInfo; +static lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__7; LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_instInhabitedState; LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_State_addEntry(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__3(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn___closed__4_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l_Lean_Meta_Match_DiscrInfo_ctorIdx(lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); +LEAN_EXPORT lean_object* l_List_foldl___at___00Std_Format_joinSep___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__8_spec__8(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_Const_alter___at___00Lean_Meta_Match_Overlaps_insert_spec__2_spec__2___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0___redArg(lean_object*); +static lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__1; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__5_spec__5___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_initFn___lam__2_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2_(lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___redArg(lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_Const_alter___at___00Lean_Meta_Match_Overlaps_insert_spec__2_spec__3_spec__3_spec__3___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg(lean_object*); +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__12; +lean_object* l_Nat_reprFast(lean_object*); +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__7; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_Match_getNumEqsFromDiscrInfos_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_Match_getNumEqsFromDiscrInfos_spec__0(lean_object*, size_t, size_t, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprDiscrInfo; +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__5(lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_insert___at___00Lean_Meta_Match_Overlaps_insert_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_Const_alter___at___00Lean_Meta_Match_Overlaps_insert_spec__2_spec__3___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__5(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__0_spec__0(lean_object*, lean_object*, size_t, lean_object*); +static lean_object* l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__0; +static lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__8; +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__5; static lean_object* l_Lean_Meta_Match_Extension_instInhabitedState___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_altNumParams(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(lean_object*, lean_object*); +static lean_object* l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getFirstAltPos___boxed(lean_object*); uint64_t lean_uint64_shift_right(uint64_t, uint64_t); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getMotivePos(lean_object*); +lean_object* lean_nat_to_int(lean_object*); +LEAN_EXPORT lean_object* l_List_foldl___at___00Std_Format_joinSep___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__5_spec__5(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_State_ctorIdx___boxed(lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_Const_alter___at___00Lean_Meta_Match_Overlaps_insert_spec__2_spec__3_spec__3_spec__3(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprAltParamInfo; lean_object* lean_nat_div(lean_object*, lean_object*); +static lean_object* l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__7; +lean_object* l_Array_empty(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcher___redArg___lam__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_instInhabitedAltParamInfo; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getDiscrRange___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__8(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_foldl___at___00Std_Format_joinSep___at___00List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1_spec__1_spec__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__1; LEAN_EXPORT lean_object* l_Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__0_spec__0_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_mkStateFromImportedEntries___at___00Lean_Meta_Match_Extension_initFn_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2__spec__1_spec__2(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_getMatcherInfo_x3f___closed__1; +static lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_Entry_ctorIdx___boxed(lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_Match_Overlaps_overlapping_spec__0___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__1; +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldrM___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__12___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__0; +static lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_numAlts(lean_object*); +static lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getFirstDiscrPos(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_instInhabitedDiscrInfo; static lean_object* l_Lean_Meta_Match_Extension_instInhabitedState___closed__3; +LEAN_EXPORT lean_object* l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__5_spec__6_spec__6(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__9; +static lean_object* l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_arity___boxed(lean_object*); +lean_object* lean_array_to_list(lean_object*); +LEAN_EXPORT lean_object* l_List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__5_spec__5_spec__5(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__4; static lean_object* l_Lean_Meta_Match_Overlaps_overlapping___closed__0; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherApp___redArg___lam__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__0_spec__0(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_Match_Overlaps_overlapping_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Overlaps_ctorIdx___boxed(lean_object*); +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__6; lean_object* l_Lean_Expr_constName_x21(lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn___closed__5_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Option_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__4___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__8; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__0_spec__0___redArg(lean_object*, size_t, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_initFn___lam__2_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2____boxed(lean_object*); +static lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__10; LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_insert___at___00Lean_Meta_Match_Overlaps_insert_spec__1___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Std_DTreeMap_Internal_Impl_contains___at___00Lean_Meta_Match_Overlaps_insert_spec__0___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_initFn_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2____boxed(lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_Const_alter___at___00Lean_Meta_Match_Overlaps_insert_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getAltRange___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_numAlts___boxed(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); +static lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__4; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__5_spec__9___redArg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_Match_AltParamInfo_ctorIdx___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_foldlM___at___00Std_DTreeMap_Internal_Impl_foldl___at___00Lean_Meta_Match_Overlaps_overlapping_spec__2_spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherAppCore_x3f(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__4; +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__5_spec__5(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Std_DTreeMap_Internal_Impl_contains___at___00Lean_Meta_Match_Overlaps_insert_spec__0(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg(lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_Const_alter___at___00Lean_Meta_Match_Overlaps_insert_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__9; static lean_object* l_Lean_Meta_Match_Extension_getMatcherInfo_x3f___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_Match_addMatcherInfo___redArg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__4; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_Match_Overlaps_overlapping_spec__0_spec__0(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__6; +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__14; LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__5_spec__5(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0___boxed(lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); lean_object* l_Lean_SimplePersistentEnvExtension_getState___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Environment_contains(lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__13(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_State_switch(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherCore___boxed(lean_object*, lean_object*); static size_t l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__0_spec__0___redArg___closed__1; +LEAN_EXPORT lean_object* l_Nat_cast___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__1(lean_object*); +static lean_object* l_Lean_Meta_Match_instInhabitedMatcherInfo_default___closed__1; +static lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__4; +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instInhabitedOverlaps; LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgs(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherAppCore_x3f___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_State_ctorIdx(lean_object*); +static lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__1; +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__9; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__3___redArg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__11; +static lean_object* l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_addMatcherInfo(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_AltParamInfo_ctorIdx(lean_object*); +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__1; lean_object* lean_array_fget(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_instInhabitedState___closed__1; +static lean_object* l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__2; +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_Entry_ctorIdx(lean_object*); +static lean_object* l_Lean_Meta_Match_instReprOverlaps___closed__0; +static lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__7; +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo___closed__0; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkCollisionNode___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_Extension_instInhabitedState___closed__5; +static lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__0; +static lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__8; LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_initFn___lam__1_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2_(lean_object*); +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0_spec__0(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__6; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_mkStateFromImportedEntries___at___00Lean_Meta_Match_Extension_initFn_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2__spec__1_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_DiscrInfo_ctorIdx___boxed(lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__3___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_isMatcherAppCore(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__1; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_alter___at___00Lean_Meta_Match_Overlaps_insert_spec__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__5_spec__5___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_getNumEqsFromDiscrInfos(lean_object*); +static lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__5; LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_Const_alter___at___00Lean_Meta_Match_Overlaps_insert_spec__2_spec__3_spec__3___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_getNumEqsFromDiscrInfos___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__5_spec__6(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__3; +static lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__11; +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instInhabitedMatcherInfo; +static lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__3; +static lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__7; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getDiscrRange(lean_object*); +static lean_object* l_Lean_Meta_Match_instInhabitedMatcherInfo_default___closed__0; uint64_t l_Lean_Name_hash___override(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at___00Lean_Meta_Match_Extension_initFn_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2__spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__12; +static lean_object* l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__5; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_Const_alter___at___00Std_DHashMap_Internal_Raw_u2080_Const_alter___at___00Lean_Meta_Match_Overlaps_insert_spec__2_spec__6___lam__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_Match_Overlaps_overlapping_spec__0___redArg(lean_object*, lean_object*); uint64_t lean_uint64_xor(uint64_t, uint64_t); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_initFn_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2_(); +lean_object* l_Repr_addAppParen(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_addMatcherInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_addMatcherInfo___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_Match_instInhabitedAltParamInfo_default; @@ -190,18 +315,22 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_SMap_inse LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___redArg___lam__0(lean_object*, lean_object*, lean_object*); lean_object* l_List_reverse___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_initFn___lam__0_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2____boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_Extension_instInhabitedState___closed__6; +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instInhabitedMatcherInfo_default; lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l_Bool_repr___redArg(uint8_t); lean_object* l_Lean_Expr_getAppFn(lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_Const_alter___at___00Lean_Meta_Match_Overlaps_insert_spec__2_spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_mkStateFromImportedEntries___at___00Lean_Meta_Match_Extension_initFn_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2__spec__1_spec__1(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__5_spec__6___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_initFn___lam__0_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2_(lean_object*, lean_object*, lean_object*, uint8_t); +static lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__4; +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instInhabitedOverlaps_default; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_nextPowerOfTwo(lean_object*); uint8_t lean_string_memcmp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); +static lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__5; lean_object* l_Lean_PersistentEnvExtension_addEntry___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__5_spec__6_spec__6_spec__6(lean_object*, lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); @@ -209,25 +338,36 @@ LEAN_EXPORT lean_object* l_Lean_SMap_switch___at___00Lean_Meta_Match_Extension_S LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__0_spec__0_spec__2___redArg(size_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn___closed__3_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l_Lean_Meta_Match_Overlaps_ctorIdx(lean_object*); +static lean_object* l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__2; +static lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_sub(size_t, size_t); lean_object* lean_array_mk(lean_object*); +static lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__2; +static lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__10; lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherApp___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_Extension_instInhabitedState___closed__2; size_t lean_usize_add(size_t, size_t); +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1_spec__1(lean_object*, lean_object*); +static lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__0; +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldrM___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__12(lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcher(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_array_size(lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn___closed__2_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2_; +static lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__3; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__5_spec__6_spec__6___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherAppCore___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getAltRange(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg(lean_object*); size_t lean_usize_shift_left(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_mkStateFromImportedEntries___at___00Lean_Meta_Match_Extension_initFn_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2__spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs(lean_object*); +static lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__2; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_Const_alter___at___00Std_DHashMap_Internal_Raw_u2080_Const_alter___at___00Lean_Meta_Match_Overlaps_insert_spec__2_spec__6(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcher___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__0_spec__0___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); @@ -235,25 +375,33 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_ lean_object* lean_array_get_size(lean_object*); static lean_object* l_Lean_Meta_Match_Extension_initFn___closed__1_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2_; static lean_object* l_Lean_Meta_Match_Extension_instInhabitedState___closed__4; +static lean_object* l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_Const_alter___at___00Lean_Meta_Match_Overlaps_insert_spec__2_spec__3_spec__3(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1_spec__1___lam__0(lean_object*); static size_t l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__0_spec__0___redArg___closed__0; uint8_t lean_usize_dec_lt(size_t, size_t); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_Match_Overlaps_overlapping_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__3_spec__3___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1_spec__1_spec__1_spec__1(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherApp___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_Match_Overlaps_overlapping_spec__0_spec__0___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_contains___at___00Lean_Meta_Match_Overlaps_insert_spec__0___redArg___boxed(lean_object*, lean_object*); uint8_t l_Lean_Expr_isConst(lean_object*); +static lean_object* l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__0; +static lean_object* l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__0_spec__0_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Option_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__4(lean_object*, lean_object*); +static lean_object* l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__2; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__3_spec__3(lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__5___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_contains___at___00Lean_Meta_Match_Overlaps_insert_spec__0___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Meta_Match_Extension_getMatcherInfo_x3f_spec__0_spec__3___redArg(lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at___00Lean_Meta_Match_Extension_initFn_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2__spec__1___boxed(lean_object*, lean_object*); @@ -262,6 +410,8 @@ static lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentH size_t lean_usize_land(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_extension; static lean_object* l_Lean_Meta_Match_Extension_initFn___closed__7_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2_; +LEAN_EXPORT lean_object* l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__8_spec__8_spec__8(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__8; LEAN_EXPORT lean_object* l_Lean_Meta_Match_DiscrInfo_ctorIdx(lean_object* x_1) { _start: { @@ -295,6 +445,277 @@ x_1 = lean_box(0); return x_1; } } +static lean_object* _init_l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("none", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__0; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("some ", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__2; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__1; +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +lean_dec_ref(x_1); +x_5 = l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__3; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Name_reprPrec(x_4, x_6); +x_8 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_8, 0, x_5); +lean_ctor_set(x_8, 1, x_7); +x_9 = l_Repr_addAppParen(x_8, x_2); +return x_9; +} +} +} +LEAN_EXPORT lean_object* l_Nat_cast___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("{ ", 2, 2); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("hName\?", 6, 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__1; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__2; +x_2 = lean_box(0); +x_3 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(" := ", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__4; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__5; +x_2 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__3; +x_3 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(10u); +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(" }", 2, 2); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__0; +x_2 = lean_string_length(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__9; +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__0; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__8; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_2 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__6; +x_3 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__7; +x_4 = lean_unsigned_to_nat(0u); +x_5 = l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0(x_1, x_4); +x_6 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_6, 0, x_3); +lean_ctor_set(x_6, 1, x_5); +x_7 = 0; +x_8 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_8, 0, x_6); +lean_ctor_set_uint8(x_8, sizeof(void*)*1, x_7); +x_9 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_9, 0, x_2); +lean_ctor_set(x_9, 1, x_8); +x_10 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__10; +x_11 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__11; +x_12 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_9); +x_13 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__12; +x_14 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +x_15 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_15, 0, x_10); +lean_ctor_set(x_15, 1, x_14); +x_16 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set_uint8(x_16, sizeof(void*)*1, x_7); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprDiscrInfo_repr___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Meta_Match_instReprDiscrInfo_repr(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_Match_instReprDiscrInfo_repr___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprDiscrInfo() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_Match_instReprDiscrInfo___closed__0; +return x_1; +} +} LEAN_EXPORT lean_object* l_Lean_Meta_Match_Overlaps_ctorIdx(lean_object* x_1) { _start: { @@ -312,6 +733,1140 @@ lean_dec_ref(x_1); return x_2; } } +static lean_object* _init_l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(4u); +x_2 = lean_unsigned_to_nat(8u); +x_3 = lean_nat_mul(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(3u); +x_2 = l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__0; +x_3 = lean_nat_div(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__1; +x_2 = l_Nat_nextPowerOfTwo(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__2; +x_3 = lean_mk_array(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__3; +x_2 = lean_unsigned_to_nat(0u); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instInhabitedOverlaps_default() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__4; +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instInhabitedOverlaps() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_Match_instInhabitedOverlaps_default; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_foldrM___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_3 = lean_ctor_get(x_2, 1); +x_4 = lean_ctor_get(x_2, 3); +x_5 = lean_ctor_get(x_2, 4); +x_6 = l_Std_DTreeMap_Internal_Impl_foldrM___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__0(x_1, x_5); +lean_inc(x_3); +x_7 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_7, 0, x_3); +lean_ctor_set(x_7, 1, x_6); +x_1 = x_7; +x_2 = x_4; +goto _start; +} +else +{ +return x_1; +} +} +} +LEAN_EXPORT lean_object* l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1_spec__1_spec__1_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_ctor_get(x_3, 1); +lean_inc(x_1); +lean_ctor_set_tag(x_3, 5); +lean_ctor_set(x_3, 1, x_1); +lean_ctor_set(x_3, 0, x_2); +x_7 = l_Nat_reprFast(x_5); +x_8 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_8, 0, x_7); +x_9 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_9, 0, x_3); +lean_ctor_set(x_9, 1, x_8); +x_2 = x_9; +x_3 = x_6; +goto _start; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_11 = lean_ctor_get(x_3, 0); +x_12 = lean_ctor_get(x_3, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_3); +lean_inc(x_1); +x_13 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_13, 0, x_2); +lean_ctor_set(x_13, 1, x_1); +x_14 = l_Nat_reprFast(x_11); +x_15 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_15, 0, x_14); +x_16 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_16, 0, x_13); +lean_ctor_set(x_16, 1, x_15); +x_2 = x_16; +x_3 = x_12; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_List_foldl___at___00Std_Format_joinSep___at___00List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1_spec__1_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_ctor_get(x_3, 1); +lean_inc(x_1); +lean_ctor_set_tag(x_3, 5); +lean_ctor_set(x_3, 1, x_1); +lean_ctor_set(x_3, 0, x_2); +x_7 = l_Nat_reprFast(x_5); +x_8 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_8, 0, x_7); +x_9 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_9, 0, x_3); +lean_ctor_set(x_9, 1, x_8); +x_10 = l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1_spec__1_spec__1_spec__1(x_1, x_9, x_6); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_11 = lean_ctor_get(x_3, 0); +x_12 = lean_ctor_get(x_3, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_3); +lean_inc(x_1); +x_13 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_13, 0, x_2); +lean_ctor_set(x_13, 1, x_1); +x_14 = l_Nat_reprFast(x_11); +x_15 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_15, 0, x_14); +x_16 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_16, 0, x_13); +lean_ctor_set(x_16, 1, x_15); +x_17 = l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1_spec__1_spec__1_spec__1(x_1, x_16, x_12); +return x_17; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1_spec__1___lam__0(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Nat_reprFast(x_1); +x_3 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_3, 0, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1_spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +lean_dec(x_2); +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; +x_4 = lean_ctor_get(x_1, 1); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_5; lean_object* x_6; +lean_dec(x_2); +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +lean_dec_ref(x_1); +x_6 = l_Std_Format_joinSep___at___00List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1_spec__1___lam__0(x_5); +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +lean_inc(x_4); +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +lean_dec_ref(x_1); +x_8 = l_Std_Format_joinSep___at___00List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1_spec__1___lam__0(x_7); +x_9 = l_List_foldl___at___00Std_Format_joinSep___at___00List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1_spec__1_spec__1(x_2, x_8, x_4); +return x_9; +} +} +} +} +static lean_object* _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("[]", 2, 2); +return x_1; +} +} +static lean_object* _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__0; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("[", 1, 1); +return x_1; +} +} +static lean_object* _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(",", 1, 1); +return x_1; +} +} +static lean_object* _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__3; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(1); +x_2 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__4; +x_3 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("]", 1, 1); +return x_1; +} +} +static lean_object* _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__2; +x_2 = lean_string_length(x_1); +return x_2; +} +} +static lean_object* _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__7; +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__2; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__6; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__1; +return x_2; +} +else +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; +x_3 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__5; +x_4 = l_Std_Format_joinSep___at___00List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1_spec__1(x_1, x_3); +x_5 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__8; +x_6 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__9; +x_7 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_4); +x_8 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__10; +x_9 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_9, 0, x_7); +lean_ctor_set(x_9, 1, x_8); +x_10 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_10, 0, x_5); +lean_ctor_set(x_10, 1, x_9); +x_11 = 0; +x_12 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set_uint8(x_12, sizeof(void*)*1, x_11); +return x_12; +} +} +} +LEAN_EXPORT lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_foldl___at___00Std_Format_joinSep___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__5_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_ctor_get(x_3, 1); +lean_inc(x_1); +lean_ctor_set_tag(x_3, 5); +lean_ctor_set(x_3, 1, x_1); +lean_ctor_set(x_3, 0, x_2); +x_7 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_7, 0, x_3); +lean_ctor_set(x_7, 1, x_5); +x_2 = x_7; +x_3 = x_6; +goto _start; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_ctor_get(x_3, 0); +x_10 = lean_ctor_get(x_3, 1); +lean_inc(x_10); +lean_inc(x_9); +lean_dec(x_3); +lean_inc(x_1); +x_11 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_11, 0, x_2); +lean_ctor_set(x_11, 1, x_1); +x_12 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_9); +x_2 = x_12; +x_3 = x_10; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__5(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +lean_dec(x_2); +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; +x_4 = lean_ctor_get(x_1, 1); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_5; +lean_dec(x_2); +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +lean_dec_ref(x_1); +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; +lean_inc(x_4); +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +lean_dec_ref(x_1); +x_7 = l_List_foldl___at___00Std_Format_joinSep___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__5_spec__5(x_2, x_6, x_4); +return x_7; +} +} +} +} +static lean_object* _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("(", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Std.TreeSet.ofList ", 19, 19); +return x_1; +} +} +static lean_object* _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__1; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(")", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__0; +x_2 = lean_string_length(x_1); +return x_2; +} +} +static lean_object* _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__4; +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__0; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__3; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg(lean_object* x_1) { +_start: +{ +uint8_t x_2; +x_2 = !lean_is_exclusive(x_1); +if (x_2 == 0) +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; +x_3 = lean_ctor_get(x_1, 0); +x_4 = lean_ctor_get(x_1, 1); +x_5 = l_Nat_reprFast(x_3); +x_6 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_6, 0, x_5); +x_7 = lean_box(0); +lean_ctor_set_tag(x_1, 1); +lean_ctor_set(x_1, 1, x_7); +lean_ctor_set(x_1, 0, x_6); +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__2; +x_10 = l_Std_DTreeMap_Internal_Impl_foldrM___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__0(x_7, x_4); +lean_dec(x_4); +x_11 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg(x_10); +x_12 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_12, 0, x_9); +lean_ctor_set(x_12, 1, x_11); +x_13 = l_Repr_addAppParen(x_12, x_8); +x_14 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_1); +x_15 = l_List_reverse___redArg(x_14); +x_16 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__5; +x_17 = l_Std_Format_joinSep___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__5(x_15, x_16); +x_18 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__5; +x_19 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__6; +x_20 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_17); +x_21 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__7; +x_22 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_23, 0, x_18); +lean_ctor_set(x_23, 1, x_22); +x_24 = 0; +x_25 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set_uint8(x_25, sizeof(void*)*1, x_24); +return x_25; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; lean_object* x_49; +x_26 = lean_ctor_get(x_1, 0); +x_27 = lean_ctor_get(x_1, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_1); +x_28 = l_Nat_reprFast(x_26); +x_29 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_29, 0, x_28); +x_30 = lean_box(0); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +x_32 = lean_unsigned_to_nat(0u); +x_33 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__2; +x_34 = l_Std_DTreeMap_Internal_Impl_foldrM___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__0(x_30, x_27); +lean_dec(x_27); +x_35 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg(x_34); +x_36 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_36, 0, x_33); +lean_ctor_set(x_36, 1, x_35); +x_37 = l_Repr_addAppParen(x_36, x_32); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_31); +x_39 = l_List_reverse___redArg(x_38); +x_40 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__5; +x_41 = l_Std_Format_joinSep___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__5(x_39, x_40); +x_42 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__5; +x_43 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__6; +x_44 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_41); +x_45 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__7; +x_46 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +x_47 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_47, 0, x_42); +lean_ctor_set(x_47, 1, x_46); +x_48 = 0; +x_49 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set_uint8(x_49, sizeof(void*)*1, x_48); +return x_49; +} +} +} +LEAN_EXPORT lean_object* l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__8_spec__8_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_ctor_get(x_3, 1); +lean_inc(x_1); +lean_ctor_set_tag(x_3, 5); +lean_ctor_set(x_3, 1, x_1); +lean_ctor_set(x_3, 0, x_2); +x_7 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg(x_5); +x_8 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_8, 0, x_3); +lean_ctor_set(x_8, 1, x_7); +x_2 = x_8; +x_3 = x_6; +goto _start; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = lean_ctor_get(x_3, 0); +x_11 = lean_ctor_get(x_3, 1); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_3); +lean_inc(x_1); +x_12 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_12, 0, x_2); +lean_ctor_set(x_12, 1, x_1); +x_13 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg(x_10); +x_14 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +x_2 = x_14; +x_3 = x_11; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_List_foldl___at___00Std_Format_joinSep___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__8_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_ctor_get(x_3, 1); +lean_inc(x_1); +lean_ctor_set_tag(x_3, 5); +lean_ctor_set(x_3, 1, x_1); +lean_ctor_set(x_3, 0, x_2); +x_7 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg(x_5); +x_8 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_8, 0, x_3); +lean_ctor_set(x_8, 1, x_7); +x_9 = l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__8_spec__8_spec__8(x_1, x_8, x_6); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_10 = lean_ctor_get(x_3, 0); +x_11 = lean_ctor_get(x_3, 1); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_3); +lean_inc(x_1); +x_12 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_12, 0, x_2); +lean_ctor_set(x_12, 1, x_1); +x_13 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg(x_10); +x_14 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +x_15 = l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__8_spec__8_spec__8(x_1, x_14, x_11); +return x_15; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__8(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +lean_dec(x_2); +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; +x_4 = lean_ctor_get(x_1, 1); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_5; lean_object* x_6; +lean_dec(x_2); +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +lean_dec_ref(x_1); +x_6 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg(x_5); +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +lean_inc(x_4); +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +lean_dec_ref(x_1); +x_8 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg(x_7); +x_9 = l_List_foldl___at___00Std_Format_joinSep___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__8_spec__8(x_2, x_8, x_4); +return x_9; +} +} +} +} +LEAN_EXPORT lean_object* l_List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0___redArg(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__1; +return x_2; +} +else +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; +x_3 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__5; +x_4 = l_Std_Format_joinSep___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__8(x_1, x_3); +x_5 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__8; +x_6 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__9; +x_7 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_4); +x_8 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__10; +x_9 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_9, 0, x_7); +lean_ctor_set(x_9, 1, x_8); +x_10 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_10, 0, x_5); +lean_ctor_set(x_10, 1, x_9); +x_11 = 0; +x_12 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set_uint8(x_12, sizeof(void*)*1, x_11); +return x_12; +} +} +} +LEAN_EXPORT lean_object* l_List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0___redArg(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldrM___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__12(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_inc(x_1); +return x_1; +} +else +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_3 = lean_ctor_get(x_2, 0); +x_4 = lean_ctor_get(x_2, 1); +x_5 = lean_ctor_get(x_2, 2); +x_6 = l_Std_DHashMap_Internal_AssocList_foldrM___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__12(x_1, x_5); +lean_inc(x_4); +lean_inc(x_3); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_3); +lean_ctor_set(x_7, 1, x_4); +x_8 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_6); +return x_8; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__13(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = lean_usize_dec_eq(x_2, x_3); +if (x_5 == 0) +{ +size_t x_6; size_t x_7; lean_object* x_8; lean_object* x_9; +x_6 = 1; +x_7 = lean_usize_sub(x_2, x_6); +x_8 = lean_array_uget(x_1, x_7); +x_9 = l_Std_DHashMap_Internal_AssocList_foldrM___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__12(x_4, x_8); +lean_dec(x_8); +lean_dec(x_4); +x_2 = x_7; +x_4 = x_9; +goto _start; +} +else +{ +return x_4; +} +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("map", 3, 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__0; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__1; +x_2 = lean_box(0); +x_3 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__5; +x_2 = l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__2; +x_3 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(7u); +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Std.HashMap.ofList ", 19, 19); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__5; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprOverlaps_repr___redArg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_2 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_2); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_3 = x_1; +} else { + lean_dec_ref(x_1); + x_3 = lean_box(0); +} +x_4 = l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__3; +x_5 = l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__4; +x_6 = lean_unsigned_to_nat(0u); +x_7 = l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__6; +x_24 = lean_box(0); +x_25 = lean_array_get_size(x_2); +x_26 = lean_nat_dec_lt(x_6, x_25); +if (x_26 == 0) +{ +lean_dec(x_25); +lean_dec_ref(x_2); +x_8 = x_24; +goto block_23; +} +else +{ +size_t x_27; size_t x_28; lean_object* x_29; +x_27 = lean_usize_of_nat(x_25); +lean_dec(x_25); +x_28 = 0; +x_29 = l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__13(x_2, x_27, x_28, x_24); +lean_dec_ref(x_2); +x_8 = x_29; +goto block_23; +} +block_23: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_9 = l_List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0___redArg(x_8); +if (lean_is_scalar(x_3)) { + x_10 = lean_alloc_ctor(5, 2, 0); +} else { + x_10 = x_3; + lean_ctor_set_tag(x_10, 5); +} +lean_ctor_set(x_10, 0, x_7); +lean_ctor_set(x_10, 1, x_9); +x_11 = l_Repr_addAppParen(x_10, x_6); +x_12 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_12, 0, x_5); +lean_ctor_set(x_12, 1, x_11); +x_13 = 0; +x_14 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set_uint8(x_14, sizeof(void*)*1, x_13); +x_15 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_15, 0, x_4); +lean_ctor_set(x_15, 1, x_14); +x_16 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__10; +x_17 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__11; +x_18 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_15); +x_19 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__12; +x_20 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +x_21 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_21, 0, x_16); +lean_ctor_set(x_21, 1, x_20); +x_22 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set_uint8(x_22, sizeof(void*)*1, x_13); +return x_22; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprOverlaps_repr(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Meta_Match_instReprOverlaps_repr___redArg(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_foldrM___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Std_DTreeMap_Internal_Impl_foldrM___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__0(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldrM___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__12___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Std_DHashMap_Internal_AssocList_foldrM___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__12(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__13(x_1, x_5, x_6, x_4); +lean_dec_ref(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprOverlaps_repr___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Meta_Match_instReprOverlaps_repr(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprOverlaps___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_Match_instReprOverlaps_repr___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprOverlaps() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_Match_instReprOverlaps___closed__0; +return x_1; +} +} LEAN_EXPORT uint8_t l_Std_DTreeMap_Internal_Impl_contains___at___00Lean_Meta_Match_Overlaps_insert_spec__0___redArg(lean_object* x_1, lean_object* x_2) { _start: { @@ -973,9 +2528,9 @@ goto block_152; block_144: { lean_object* x_141; lean_object* x_142; lean_object* x_143; -x_141 = lean_nat_add(x_139, x_140); +x_141 = lean_nat_add(x_138, x_140); lean_dec(x_140); -lean_dec(x_139); +lean_dec(x_138); if (lean_is_scalar(x_135)) { x_142 = lean_alloc_ctor(0, 5, 0); } else { @@ -994,7 +2549,7 @@ if (lean_is_scalar(x_125)) { lean_ctor_set(x_143, 0, x_137); lean_ctor_set(x_143, 1, x_128); lean_ctor_set(x_143, 2, x_129); -lean_ctor_set(x_143, 3, x_138); +lean_ctor_set(x_143, 3, x_139); lean_ctor_set(x_143, 4, x_142); return x_143; } @@ -1020,8 +2575,8 @@ if (lean_obj_tag(x_131) == 0) lean_object* x_150; x_150 = lean_ctor_get(x_131, 0); lean_inc(x_150); -x_138 = x_148; -x_139 = x_149; +x_138 = x_149; +x_139 = x_148; x_140 = x_150; goto block_144; } @@ -1029,8 +2584,8 @@ else { lean_object* x_151; x_151 = lean_unsigned_to_nat(0u); -x_138 = x_148; -x_139 = x_149; +x_138 = x_149; +x_139 = x_148; x_140 = x_151; goto block_144; } @@ -2096,6 +3651,240 @@ x_1 = l_Lean_Meta_Match_instInhabitedAltParamInfo_default; return x_1; } } +static lean_object* _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("numFields", 9, 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__0; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__1; +x_2 = lean_box(0); +x_3 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__5; +x_2 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__2; +x_3 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(13u); +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("numOverlaps", 11, 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__5; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(15u); +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("hasUnitThunk", 12, 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__8; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(16u); +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = lean_ctor_get(x_1, 1); +lean_inc(x_3); +x_4 = lean_ctor_get_uint8(x_1, sizeof(void*)*2); +lean_dec_ref(x_1); +x_5 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__5; +x_6 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__3; +x_7 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__4; +x_8 = l_Nat_reprFast(x_2); +x_9 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_9, 0, x_8); +x_10 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_10, 0, x_7); +lean_ctor_set(x_10, 1, x_9); +x_11 = 0; +x_12 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set_uint8(x_12, sizeof(void*)*1, x_11); +x_13 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_13, 0, x_6); +lean_ctor_set(x_13, 1, x_12); +x_14 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__4; +x_15 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +x_16 = lean_box(1); +x_17 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +x_18 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__6; +x_19 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +x_20 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_5); +x_21 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__7; +x_22 = l_Nat_reprFast(x_3); +x_23 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_23, 0, x_22); +x_24 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_24, 0, x_21); +lean_ctor_set(x_24, 1, x_23); +x_25 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set_uint8(x_25, sizeof(void*)*1, x_11); +x_26 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_26, 0, x_20); +lean_ctor_set(x_26, 1, x_25); +x_27 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_14); +x_28 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_16); +x_29 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__9; +x_30 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +x_31 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_5); +x_32 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__10; +x_33 = l_Bool_repr___redArg(x_4); +x_34 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +x_35 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set_uint8(x_35, sizeof(void*)*1, x_11); +x_36 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_36, 0, x_31); +lean_ctor_set(x_36, 1, x_35); +x_37 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__10; +x_38 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__11; +x_39 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_36); +x_40 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__12; +x_41 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +x_42 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_42, 0, x_37); +lean_ctor_set(x_42, 1, x_41); +x_43 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set_uint8(x_43, sizeof(void*)*1, x_11); +return x_43; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprAltParamInfo_repr___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Meta_Match_instReprAltParamInfo_repr(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprAltParamInfo___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_Match_instReprAltParamInfo_repr___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprAltParamInfo() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_Match_instReprAltParamInfo___closed__0; +return x_1; +} +} LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_ctorIdx(lean_object* x_1) { _start: { @@ -2113,6 +3902,869 @@ lean_dec_ref(x_1); return x_2; } } +static lean_object* _init_l_Lean_Meta_Match_instInhabitedMatcherInfo_default___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Array_empty(lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instInhabitedMatcherInfo_default___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Meta_Match_instInhabitedOverlaps_default; +x_2 = lean_box(0); +x_3 = l_Lean_Meta_Match_instInhabitedMatcherInfo_default___closed__0; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_4); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_2); +lean_ctor_set(x_5, 4, x_3); +lean_ctor_set(x_5, 5, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Meta_Match_instInhabitedMatcherInfo_default() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_Match_instInhabitedMatcherInfo_default___closed__1; +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instInhabitedMatcherInfo() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_Match_instInhabitedMatcherInfo_default; +return x_1; +} +} +LEAN_EXPORT lean_object* l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0_spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_ctor_get(x_3, 1); +lean_inc(x_1); +lean_ctor_set_tag(x_3, 5); +lean_ctor_set(x_3, 1, x_1); +lean_ctor_set(x_3, 0, x_2); +x_7 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg(x_5); +x_8 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_8, 0, x_3); +lean_ctor_set(x_8, 1, x_7); +x_2 = x_8; +x_3 = x_6; +goto _start; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = lean_ctor_get(x_3, 0); +x_11 = lean_ctor_get(x_3, 1); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_3); +lean_inc(x_1); +x_12 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_12, 0, x_2); +lean_ctor_set(x_12, 1, x_1); +x_13 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg(x_10); +x_14 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +x_2 = x_14; +x_3 = x_11; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_ctor_get(x_3, 1); +lean_inc(x_1); +lean_ctor_set_tag(x_3, 5); +lean_ctor_set(x_3, 1, x_1); +lean_ctor_set(x_3, 0, x_2); +x_7 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg(x_5); +x_8 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_8, 0, x_3); +lean_ctor_set(x_8, 1, x_7); +x_9 = l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0_spec__0_spec__0_spec__0(x_1, x_8, x_6); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_10 = lean_ctor_get(x_3, 0); +x_11 = lean_ctor_get(x_3, 1); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_3); +lean_inc(x_1); +x_12 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_12, 0, x_2); +lean_ctor_set(x_12, 1, x_1); +x_13 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg(x_10); +x_14 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +x_15 = l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0_spec__0_spec__0_spec__0(x_1, x_14, x_11); +return x_15; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0_spec__0(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +lean_dec(x_2); +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; +x_4 = lean_ctor_get(x_1, 1); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_5; lean_object* x_6; +lean_dec(x_2); +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +lean_dec_ref(x_1); +x_6 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg(x_5); +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +lean_inc(x_4); +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +lean_dec_ref(x_1); +x_8 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg(x_7); +x_9 = l_List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0_spec__0_spec__0(x_2, x_8, x_4); +return x_9; +} +} +} +} +static lean_object* _init_l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("#[", 2, 2); +return x_1; +} +} +static lean_object* _init_l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__0; +x_2 = lean_string_length(x_1); +return x_2; +} +} +static lean_object* _init_l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__1; +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__0; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("#[]", 3, 3); +return x_1; +} +} +static lean_object* _init_l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__4; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; +x_2 = lean_array_get_size(x_1); +x_3 = lean_unsigned_to_nat(0u); +x_4 = lean_nat_dec_eq(x_2, x_3); +lean_dec(x_2); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_5 = lean_array_to_list(x_1); +x_6 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__5; +x_7 = l_Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0_spec__0(x_5, x_6); +x_8 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__2; +x_9 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__3; +x_10 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_7); +x_11 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__10; +x_12 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set(x_12, 1, x_11); +x_13 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_13, 0, x_8); +lean_ctor_set(x_13, 1, x_12); +x_14 = l_Std_Format_fill(x_13); +return x_14; +} +else +{ +lean_object* x_15; +lean_dec_ref(x_1); +x_15 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__5; +return x_15; +} +} +} +LEAN_EXPORT lean_object* l_Option_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__4(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__1; +return x_3; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_5 = lean_ctor_get(x_1, 0); +x_6 = l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__3; +x_7 = l_Nat_reprFast(x_5); +lean_ctor_set_tag(x_1, 3); +lean_ctor_set(x_1, 0, x_7); +x_8 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_8, 0, x_6); +lean_ctor_set(x_8, 1, x_1); +x_9 = l_Repr_addAppParen(x_8, x_2); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_10 = lean_ctor_get(x_1, 0); +lean_inc(x_10); +lean_dec(x_1); +x_11 = l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__3; +x_12 = l_Nat_reprFast(x_10); +x_13 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_13, 0, x_12); +x_14 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_14, 0, x_11); +lean_ctor_set(x_14, 1, x_13); +x_15 = l_Repr_addAppParen(x_14, x_2); +return x_15; +} +} +} +} +LEAN_EXPORT lean_object* l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__5_spec__5_spec__5_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_ctor_get(x_3, 1); +lean_inc(x_1); +lean_ctor_set_tag(x_3, 5); +lean_ctor_set(x_3, 1, x_1); +lean_ctor_set(x_3, 0, x_2); +x_7 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg(x_5); +x_8 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_8, 0, x_3); +lean_ctor_set(x_8, 1, x_7); +x_2 = x_8; +x_3 = x_6; +goto _start; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = lean_ctor_get(x_3, 0); +x_11 = lean_ctor_get(x_3, 1); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_3); +lean_inc(x_1); +x_12 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_12, 0, x_2); +lean_ctor_set(x_12, 1, x_1); +x_13 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg(x_10); +x_14 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +x_2 = x_14; +x_3 = x_11; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__5_spec__5_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_ctor_get(x_3, 1); +lean_inc(x_1); +lean_ctor_set_tag(x_3, 5); +lean_ctor_set(x_3, 1, x_1); +lean_ctor_set(x_3, 0, x_2); +x_7 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg(x_5); +x_8 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_8, 0, x_3); +lean_ctor_set(x_8, 1, x_7); +x_9 = l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__5_spec__5_spec__5_spec__5(x_1, x_8, x_6); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_10 = lean_ctor_get(x_3, 0); +x_11 = lean_ctor_get(x_3, 1); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_3); +lean_inc(x_1); +x_12 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_12, 0, x_2); +lean_ctor_set(x_12, 1, x_1); +x_13 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg(x_10); +x_14 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +x_15 = l_List_foldl___at___00List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__5_spec__5_spec__5_spec__5(x_1, x_14, x_11); +return x_15; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__5_spec__5(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +lean_dec(x_2); +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; +x_4 = lean_ctor_get(x_1, 1); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_5; lean_object* x_6; +lean_dec(x_2); +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +lean_dec_ref(x_1); +x_6 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg(x_5); +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +lean_inc(x_4); +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +lean_dec_ref(x_1); +x_8 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg(x_7); +x_9 = l_List_foldl___at___00Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__5_spec__5_spec__5(x_2, x_8, x_4); +return x_9; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__5(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; +x_2 = lean_array_get_size(x_1); +x_3 = lean_unsigned_to_nat(0u); +x_4 = lean_nat_dec_eq(x_2, x_3); +lean_dec(x_2); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_5 = lean_array_to_list(x_1); +x_6 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__5; +x_7 = l_Std_Format_joinSep___at___00Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__5_spec__5(x_5, x_6); +x_8 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__2; +x_9 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__3; +x_10 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_7); +x_11 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__10; +x_12 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set(x_12, 1, x_11); +x_13 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_13, 0, x_8); +lean_ctor_set(x_13, 1, x_12); +x_14 = l_Std_Format_fill(x_13); +return x_14; +} +else +{ +lean_object* x_15; +lean_dec_ref(x_1); +x_15 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__5; +return x_15; +} +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("numParams", 9, 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__0; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__1; +x_2 = lean_box(0); +x_3 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__5; +x_2 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__2; +x_3 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("numDiscrs", 9, 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__4; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("altInfos", 8, 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__6; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(12u); +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("uElimPos\?", 9, 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__9; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("discrInfos", 10, 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__11; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(14u); +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__14() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("overlaps", 8, 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__14; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = lean_ctor_get(x_1, 1); +lean_inc(x_3); +x_4 = lean_ctor_get(x_1, 2); +lean_inc_ref(x_4); +x_5 = lean_ctor_get(x_1, 3); +lean_inc(x_5); +x_6 = lean_ctor_get(x_1, 4); +lean_inc_ref(x_6); +x_7 = lean_ctor_get(x_1, 5); +lean_inc_ref(x_7); +lean_dec_ref(x_1); +x_8 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__5; +x_9 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__3; +x_10 = l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__4; +x_11 = l_Nat_reprFast(x_2); +x_12 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_12, 0, x_11); +x_13 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_13, 0, x_10); +lean_ctor_set(x_13, 1, x_12); +x_14 = 0; +x_15 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set_uint8(x_15, sizeof(void*)*1, x_14); +x_16 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_16, 0, x_9); +lean_ctor_set(x_16, 1, x_15); +x_17 = l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__4; +x_18 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +x_19 = lean_box(1); +x_20 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +x_21 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__5; +x_22 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_8); +x_24 = l_Nat_reprFast(x_3); +x_25 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_25, 0, x_24); +x_26 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_26, 0, x_10); +lean_ctor_set(x_26, 1, x_25); +x_27 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set_uint8(x_27, sizeof(void*)*1, x_14); +x_28 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_28, 0, x_23); +lean_ctor_set(x_28, 1, x_27); +x_29 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_17); +x_30 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_19); +x_31 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__7; +x_32 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +x_33 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_8); +x_34 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__8; +x_35 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0(x_4); +x_36 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +x_37 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set_uint8(x_37, sizeof(void*)*1, x_14); +x_38 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_38, 0, x_33); +lean_ctor_set(x_38, 1, x_37); +x_39 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_17); +x_40 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_19); +x_41 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__10; +x_42 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +x_43 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_8); +x_44 = lean_unsigned_to_nat(0u); +x_45 = l_Option_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__4(x_5, x_44); +x_46 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_46, 0, x_10); +lean_ctor_set(x_46, 1, x_45); +x_47 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set_uint8(x_47, sizeof(void*)*1, x_14); +x_48 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_48, 0, x_43); +lean_ctor_set(x_48, 1, x_47); +x_49 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_17); +x_50 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_19); +x_51 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__12; +x_52 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +x_53 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set(x_53, 1, x_8); +x_54 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__13; +x_55 = l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__5(x_6); +x_56 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +x_57 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set_uint8(x_57, sizeof(void*)*1, x_14); +x_58 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_58, 0, x_53); +lean_ctor_set(x_58, 1, x_57); +x_59 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_17); +x_60 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_60, 0, x_59); +lean_ctor_set(x_60, 1, x_19); +x_61 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__15; +x_62 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +x_63 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_8); +x_64 = l_Lean_Meta_Match_instReprOverlaps_repr___redArg(x_7); +x_65 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_65, 0, x_34); +lean_ctor_set(x_65, 1, x_64); +x_66 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set_uint8(x_66, sizeof(void*)*1, x_14); +x_67 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_67, 0, x_63); +lean_ctor_set(x_67, 1, x_66); +x_68 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__10; +x_69 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__11; +x_70 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_70, 0, x_69); +lean_ctor_set(x_70, 1, x_67); +x_71 = l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__12; +x_72 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_72, 0, x_70); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_73, 0, x_68); +lean_ctor_set(x_73, 1, x_72); +x_74 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint8(x_74, sizeof(void*)*1, x_14); +return x_74; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Option_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__4___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Option_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__4(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Match_instReprMatcherInfo_repr___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Meta_Match_instReprMatcherInfo_repr(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_Match_instReprMatcherInfo_repr___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Match_instReprMatcherInfo() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_Match_instReprMatcherInfo___closed__0; +return x_1; +} +} LEAN_EXPORT lean_object* l_Lean_Meta_Match_MatcherInfo_numAlts(lean_object* x_1) { _start: { @@ -2472,9 +5124,9 @@ static lean_object* _init_l_Lean_Meta_Match_Extension_instInhabitedState___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(4u); -x_2 = lean_unsigned_to_nat(8u); -x_3 = lean_nat_mul(x_2, x_1); +x_1 = lean_box(0); +x_2 = l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__2; +x_3 = lean_mk_array(x_2, x_1); return x_3; } } @@ -2482,36 +5134,7 @@ static lean_object* _init_l_Lean_Meta_Match_Extension_instInhabitedState___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(3u); -x_2 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__0; -x_3 = lean_nat_div(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__1; -x_2 = l_Nat_nextPowerOfTwo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__2; -x_3 = lean_mk_array(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__3; +x_1 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__0; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); @@ -2519,7 +5142,7 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__5() { +static lean_object* _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__2() { _start: { lean_object* x_1; @@ -2527,22 +5150,22 @@ x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__6() { +static lean_object* _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__5; +x_1 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__7() { +static lean_object* _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__4() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__6; -x_2 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__4; +x_1 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__3; +x_2 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__1; x_3 = 1; x_4 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_4, 0, x_2); @@ -2555,7 +5178,7 @@ static lean_object* _init_l_Lean_Meta_Match_Extension_instInhabitedState() { _start: { lean_object* x_1; -x_1 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__7; +x_1 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__4; return x_1; } } @@ -3934,7 +6557,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_Extension_initFn___lam__2_00___x40_Le _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__7; +x_2 = l_Lean_Meta_Match_Extension_instInhabitedState___closed__4; x_3 = l_Lean_mkStateFromImportedEntries___at___00Lean_Meta_Match_Extension_initFn_00___x40_Lean_Meta_Match_MatcherInfo_2900206600____hygCtx___hyg_2__spec__1(x_2, x_1); x_4 = l_Lean_SMap_switch___at___00Lean_Meta_Match_Extension_State_switch_spec__0___redArg(x_3); return x_4; @@ -4991,6 +7614,114 @@ l_Lean_Meta_Match_instInhabitedDiscrInfo_default = _init_l_Lean_Meta_Match_instI lean_mark_persistent(l_Lean_Meta_Match_instInhabitedDiscrInfo_default); l_Lean_Meta_Match_instInhabitedDiscrInfo = _init_l_Lean_Meta_Match_instInhabitedDiscrInfo(); lean_mark_persistent(l_Lean_Meta_Match_instInhabitedDiscrInfo); +l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__0 = _init_l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__0(); +lean_mark_persistent(l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__0); +l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__1 = _init_l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__1(); +lean_mark_persistent(l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__1); +l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__2 = _init_l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__2(); +lean_mark_persistent(l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__2); +l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__3 = _init_l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__3(); +lean_mark_persistent(l_Option_repr___at___00Lean_Meta_Match_instReprDiscrInfo_repr_spec__0___closed__3); +l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__0 = _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__0(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__0); +l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__1 = _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__1(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__1); +l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__2 = _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__2(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__2); +l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__3 = _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__3(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__3); +l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__4 = _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__4(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__4); +l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__5 = _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__5(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__5); +l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__6 = _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__6(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__6); +l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__7 = _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__7(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__7); +l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__8 = _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__8(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__8); +l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__9 = _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__9(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__9); +l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__10 = _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__10(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__10); +l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__11 = _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__11(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__11); +l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__12 = _init_l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__12(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo_repr___redArg___closed__12); +l_Lean_Meta_Match_instReprDiscrInfo___closed__0 = _init_l_Lean_Meta_Match_instReprDiscrInfo___closed__0(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo___closed__0); +l_Lean_Meta_Match_instReprDiscrInfo = _init_l_Lean_Meta_Match_instReprDiscrInfo(); +lean_mark_persistent(l_Lean_Meta_Match_instReprDiscrInfo); +l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__0 = _init_l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__0(); +lean_mark_persistent(l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__0); +l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__1 = _init_l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__1(); +lean_mark_persistent(l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__1); +l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__2 = _init_l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__2(); +lean_mark_persistent(l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__2); +l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__3 = _init_l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__3(); +lean_mark_persistent(l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__3); +l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__4 = _init_l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__4(); +lean_mark_persistent(l_Lean_Meta_Match_instInhabitedOverlaps_default___closed__4); +l_Lean_Meta_Match_instInhabitedOverlaps_default = _init_l_Lean_Meta_Match_instInhabitedOverlaps_default(); +lean_mark_persistent(l_Lean_Meta_Match_instInhabitedOverlaps_default); +l_Lean_Meta_Match_instInhabitedOverlaps = _init_l_Lean_Meta_Match_instInhabitedOverlaps(); +lean_mark_persistent(l_Lean_Meta_Match_instInhabitedOverlaps); +l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__0 = _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__0(); +lean_mark_persistent(l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__0); +l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__1 = _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__1(); +lean_mark_persistent(l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__1); +l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__2 = _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__2(); +lean_mark_persistent(l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__2); +l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__3 = _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__3(); +lean_mark_persistent(l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__3); +l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__4 = _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__4(); +lean_mark_persistent(l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__4); +l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__5 = _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__5(); +lean_mark_persistent(l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__5); +l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__6 = _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__6(); +lean_mark_persistent(l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__6); +l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__7 = _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__7(); +lean_mark_persistent(l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__7); +l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__8 = _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__8(); +lean_mark_persistent(l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__8); +l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__9 = _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__9(); +lean_mark_persistent(l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__9); +l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__10 = _init_l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__10(); +lean_mark_persistent(l_List_repr___at___00Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0_spec__1___redArg___closed__10); +l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__0 = _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__0(); +lean_mark_persistent(l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__0); +l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__1 = _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__1(); +lean_mark_persistent(l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__1); +l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__2 = _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__2(); +lean_mark_persistent(l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__2); +l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__3 = _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__3(); +lean_mark_persistent(l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__3); +l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__4 = _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__4(); +lean_mark_persistent(l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__4); +l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__5 = _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__5(); +lean_mark_persistent(l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__5); +l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__6 = _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__6(); +lean_mark_persistent(l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__6); +l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__7 = _init_l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__7(); +lean_mark_persistent(l_Prod_repr___at___00List_repr___at___00Lean_Meta_Match_instReprOverlaps_repr_spec__0_spec__0___redArg___closed__7); +l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__0 = _init_l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__0(); +lean_mark_persistent(l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__0); +l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__1 = _init_l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__1(); +lean_mark_persistent(l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__1); +l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__2 = _init_l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__2(); +lean_mark_persistent(l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__2); +l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__3 = _init_l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__3(); +lean_mark_persistent(l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__3); +l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__4 = _init_l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__4(); +lean_mark_persistent(l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__4); +l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__5 = _init_l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__5(); +lean_mark_persistent(l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__5); +l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__6 = _init_l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__6(); +lean_mark_persistent(l_Lean_Meta_Match_instReprOverlaps_repr___redArg___closed__6); +l_Lean_Meta_Match_instReprOverlaps___closed__0 = _init_l_Lean_Meta_Match_instReprOverlaps___closed__0(); +lean_mark_persistent(l_Lean_Meta_Match_instReprOverlaps___closed__0); +l_Lean_Meta_Match_instReprOverlaps = _init_l_Lean_Meta_Match_instReprOverlaps(); +lean_mark_persistent(l_Lean_Meta_Match_instReprOverlaps); l_Lean_Meta_Match_Overlaps_overlapping___closed__0 = _init_l_Lean_Meta_Match_Overlaps_overlapping___closed__0(); lean_mark_persistent(l_Lean_Meta_Match_Overlaps_overlapping___closed__0); l_Lean_Meta_Match_instInhabitedAltParamInfo_default___closed__0 = _init_l_Lean_Meta_Match_instInhabitedAltParamInfo_default___closed__0(); @@ -4999,6 +7730,88 @@ l_Lean_Meta_Match_instInhabitedAltParamInfo_default = _init_l_Lean_Meta_Match_in lean_mark_persistent(l_Lean_Meta_Match_instInhabitedAltParamInfo_default); l_Lean_Meta_Match_instInhabitedAltParamInfo = _init_l_Lean_Meta_Match_instInhabitedAltParamInfo(); lean_mark_persistent(l_Lean_Meta_Match_instInhabitedAltParamInfo); +l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__0 = _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__0(); +lean_mark_persistent(l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__0); +l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__1 = _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__1(); +lean_mark_persistent(l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__1); +l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__2 = _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__2(); +lean_mark_persistent(l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__2); +l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__3 = _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__3(); +lean_mark_persistent(l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__3); +l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__4 = _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__4(); +lean_mark_persistent(l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__4); +l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__5 = _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__5(); +lean_mark_persistent(l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__5); +l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__6 = _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__6(); +lean_mark_persistent(l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__6); +l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__7 = _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__7(); +lean_mark_persistent(l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__7); +l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__8 = _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__8(); +lean_mark_persistent(l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__8); +l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__9 = _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__9(); +lean_mark_persistent(l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__9); +l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__10 = _init_l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__10(); +lean_mark_persistent(l_Lean_Meta_Match_instReprAltParamInfo_repr___redArg___closed__10); +l_Lean_Meta_Match_instReprAltParamInfo___closed__0 = _init_l_Lean_Meta_Match_instReprAltParamInfo___closed__0(); +lean_mark_persistent(l_Lean_Meta_Match_instReprAltParamInfo___closed__0); +l_Lean_Meta_Match_instReprAltParamInfo = _init_l_Lean_Meta_Match_instReprAltParamInfo(); +lean_mark_persistent(l_Lean_Meta_Match_instReprAltParamInfo); +l_Lean_Meta_Match_instInhabitedMatcherInfo_default___closed__0 = _init_l_Lean_Meta_Match_instInhabitedMatcherInfo_default___closed__0(); +lean_mark_persistent(l_Lean_Meta_Match_instInhabitedMatcherInfo_default___closed__0); +l_Lean_Meta_Match_instInhabitedMatcherInfo_default___closed__1 = _init_l_Lean_Meta_Match_instInhabitedMatcherInfo_default___closed__1(); +lean_mark_persistent(l_Lean_Meta_Match_instInhabitedMatcherInfo_default___closed__1); +l_Lean_Meta_Match_instInhabitedMatcherInfo_default = _init_l_Lean_Meta_Match_instInhabitedMatcherInfo_default(); +lean_mark_persistent(l_Lean_Meta_Match_instInhabitedMatcherInfo_default); +l_Lean_Meta_Match_instInhabitedMatcherInfo = _init_l_Lean_Meta_Match_instInhabitedMatcherInfo(); +lean_mark_persistent(l_Lean_Meta_Match_instInhabitedMatcherInfo); +l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__0 = _init_l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__0(); +lean_mark_persistent(l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__0); +l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__1 = _init_l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__1(); +lean_mark_persistent(l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__1); +l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__2 = _init_l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__2(); +lean_mark_persistent(l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__2); +l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__3 = _init_l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__3(); +lean_mark_persistent(l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__3); +l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__4 = _init_l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__4(); +lean_mark_persistent(l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__4); +l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__5 = _init_l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__5(); +lean_mark_persistent(l_Array_Array_repr___at___00Lean_Meta_Match_instReprMatcherInfo_repr_spec__0___closed__5); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__0 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__0(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__0); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__1 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__1(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__1); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__2 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__2(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__2); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__3 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__3(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__3); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__4 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__4(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__4); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__5 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__5(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__5); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__6 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__6(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__6); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__7 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__7(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__7); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__8 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__8(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__8); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__9 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__9(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__9); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__10 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__10(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__10); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__11 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__11(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__11); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__12 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__12(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__12); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__13 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__13(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__13); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__14 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__14(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__14); +l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__15 = _init_l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__15(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo_repr___redArg___closed__15); +l_Lean_Meta_Match_instReprMatcherInfo___closed__0 = _init_l_Lean_Meta_Match_instReprMatcherInfo___closed__0(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo___closed__0); +l_Lean_Meta_Match_instReprMatcherInfo = _init_l_Lean_Meta_Match_instReprMatcherInfo(); +lean_mark_persistent(l_Lean_Meta_Match_instReprMatcherInfo); l_Lean_Meta_Match_Extension_instInhabitedState___closed__0 = _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__0(); lean_mark_persistent(l_Lean_Meta_Match_Extension_instInhabitedState___closed__0); l_Lean_Meta_Match_Extension_instInhabitedState___closed__1 = _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__1(); @@ -5009,12 +7822,6 @@ l_Lean_Meta_Match_Extension_instInhabitedState___closed__3 = _init_l_Lean_Meta_M lean_mark_persistent(l_Lean_Meta_Match_Extension_instInhabitedState___closed__3); l_Lean_Meta_Match_Extension_instInhabitedState___closed__4 = _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__4(); lean_mark_persistent(l_Lean_Meta_Match_Extension_instInhabitedState___closed__4); -l_Lean_Meta_Match_Extension_instInhabitedState___closed__5 = _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__5(); -lean_mark_persistent(l_Lean_Meta_Match_Extension_instInhabitedState___closed__5); -l_Lean_Meta_Match_Extension_instInhabitedState___closed__6 = _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__6(); -lean_mark_persistent(l_Lean_Meta_Match_Extension_instInhabitedState___closed__6); -l_Lean_Meta_Match_Extension_instInhabitedState___closed__7 = _init_l_Lean_Meta_Match_Extension_instInhabitedState___closed__7(); -lean_mark_persistent(l_Lean_Meta_Match_Extension_instInhabitedState___closed__7); l_Lean_Meta_Match_Extension_instInhabitedState = _init_l_Lean_Meta_Match_Extension_instInhabitedState(); lean_mark_persistent(l_Lean_Meta_Match_Extension_instInhabitedState); l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__0_spec__0___redArg___closed__0 = _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Meta_Match_Extension_State_addEntry_spec__0_spec__0_spec__0___redArg___closed__0(); diff --git a/stage0/stdlib/Lean/Meta/SizeOf.c b/stage0/stdlib/Lean/Meta/SizeOf.c index 3b817b1d28..6a39c909d2 100644 --- a/stage0/stdlib/Lean/Meta/SizeOf.c +++ b/stage0/stdlib/Lean/Meta/SizeOf.c @@ -20,6 +20,7 @@ static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_m static lean_object* l_Lean_Meta_mkSizeOfSpecLemmaInstance___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_mkSizeOfInstances___lam__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Meta_mkSizeOfInstances_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__4; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProofStep_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___closed__8; static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__0; @@ -49,7 +50,7 @@ static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_initFn___closed__1 lean_object* l_Lean_Meta_whnfI(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00Lean_Meta_mkSizeOfFn_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__16; LEAN_EXPORT lean_object* l_Lean_Option_register___at___00Lean_Meta_initFn_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4__spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_mkSizeOfFn___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_unfoldDefinition(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_initFn___closed__8_00___x40_Lean_Meta_SizeOf_726572898____hygCtx___hyg_2_; @@ -71,8 +72,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNes lean_object* l_Lean_indentD(lean_object*); double lean_float_div(double, double); LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00Lean_Meta_mkSizeOfFn_spec__0_spec__0_spec__0_spec__0_spec__0_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__12; LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_ignoreFieldType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqSymm(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__8; static lean_object* l_Lean_withExporting___at___00Lean_Meta_mkSizeOfFn_spec__10___redArg___closed__0; uint8_t l_Lean_Exception_isInterrupt(lean_object*); LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00Lean_Meta_mkSizeOfInstances_spec__0___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -152,6 +155,7 @@ LEAN_EXPORT lean_object* l_Lean_getConstInfoCtor___at___00__private_Lean_Meta_Si static lean_object* l_Lean_Meta_mkSizeOfInstances___closed__2; static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__5___redArg___closed__1; lean_object* l_Lean_inferDefEqAttr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__10; static lean_object* l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5___redArg___closed__3; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SizeOfSpecNested_throwUnexpected___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -180,6 +184,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinor LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemma_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SizeOfSpecNested_throwUnexpected___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_genSizeOf; +lean_object* l_Array_mkArray0(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_mkSizeOfSpecLemmaInstance_spec__0___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemma_spec__1_spec__1___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -199,13 +204,13 @@ lean_object* l_Lean_Meta_mkAdd(lean_object*, lean_object*, lean_object*, lean_ob LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof_spec__10___redArg(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof_spec__9(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__15; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Meta_mkSizeOfInstances_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances_loop_spec__1___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00Lean_Meta_mkSizeOfFn_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__10; static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00Lean_Meta_mkSizeOfFn_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__6; LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_Meta_mkSizeOfFn_spec__10___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn___closed__5_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_; LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00Lean_Meta_mkSizeOfFn_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00List_forIn_x27_loop___at___00Lean_Meta_mkSizeOfInstances_spec__3_spec__3___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___lam__1___boxed__const__1; @@ -257,6 +262,7 @@ static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheore LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProofStep(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00List_forIn_x27_loop___at___00Lean_Meta_mkSizeOfInstances_spec__3_spec__3___redArg___lam__0(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_initFn___closed__7_00___x40_Lean_Meta_SizeOf_726572898____hygCtx___hyg_2_; +lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); static double l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5___redArg___closed__2; static lean_object* l_Lean_Meta_initFn___closed__3_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_; static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_initFn___closed__12_00___x40_Lean_Meta_SizeOf_726572898____hygCtx___hyg_2_; @@ -371,9 +377,12 @@ static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_ignoreFieldType___ static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_initFn___closed__18_00___x40_Lean_Meta_SizeOf_726572898____hygCtx___hyg_2_; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); lean_object* l_Lean_PersistentArray_append___redArg(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__13; LEAN_EXPORT lean_object* l_List_mapTR_loop___at___00Lean_Meta_mkSizeOfFn_spec__9(lean_object*, lean_object*); uint8_t l_Lean_Expr_isArrow(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__2; static lean_object* l_Lean_withExporting___at___00Lean_Meta_mkSizeOfFn_spec__10___redArg___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_initFn___closed__3_00___x40_Lean_Meta_SizeOf_3847602515____hygCtx___hyg_4_; @@ -392,6 +401,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinor LEAN_EXPORT lean_object* l_Lean_Meta_mkSizeOfInstances___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProofStep_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_Meta_mkSizeOfFn_spec__10(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__7; static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_initFn___closed__14_00___x40_Lean_Meta_SizeOf_726572898____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00Lean_Meta_mkSizeOfFn_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_mkSizeOfFn___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -431,10 +441,12 @@ uint8_t l_Lean_Environment_contains(lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorems_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_mkSizeOfFns___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_mkSizeOfInstances___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__6; lean_object* l_Lean_MessageData_ofExpr(lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00Lean_Meta_mkSizeOfFn_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__3; static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___closed__7; static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_initFn___closed__11_00___x40_Lean_Meta_SizeOf_726572898____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_isRecField_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -463,6 +475,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinor LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemma_spec__3(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__5; static lean_object* l_Lean_throwMaxRecDepthAt___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemma_spec__4___redArg___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -485,6 +498,7 @@ lean_object* l_Lean_Expr_constLevels_x21(lean_object*); static lean_object* l_Lean_Meta_mkSizeOfInstances___closed__1; lean_object* l_Lean_Expr_bindingDomain_x21(lean_object*); static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_isRecField_x3f___closed__0; +static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__14; LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_recToSizeOf___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___00Lean_addTrace___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withExporting___at___00Lean_Meta_mkSizeOfFn_spec__10___redArg___closed__1; @@ -497,7 +511,7 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Uns LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00List_forIn_x27_loop___at___00Lean_Meta_mkSizeOfInstances_spec__3_spec__3___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_isInductiveHypothesis_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__6_spec__6(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -527,6 +541,7 @@ LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifie LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_Meta_mkSizeOfFn_spec__10___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__9; static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_main_loop___closed__0; static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_initFn___closed__15_00___x40_Lean_Meta_SizeOf_726572898____hygCtx___hyg_2_; lean_object* l_Lean_PersistentArray_toArray___redArg(lean_object*); @@ -541,6 +556,7 @@ static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknow LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00Lean_Meta_mkSizeOfFn_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_EnvironmentHeader_moduleNames(lean_object*); +lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00Lean_Meta_mkSizeOfFn_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__18; uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForallFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -601,6 +617,7 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstanc LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemma_spec__4___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemma_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances_loop_spec__1___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__11; static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00Lean_Meta_mkSizeOfFn_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__8; lean_object* lean_array_mk(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_mkSizeOfFn(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4943,7 +4960,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors___redArg___closed__2; x_2 = lean_unsigned_to_nat(2u); -x_3 = lean_unsigned_to_nat(105u); +x_3 = lean_unsigned_to_nat(102u); x_4 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors___redArg___closed__1; x_5 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors___redArg___closed__0; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -16518,854 +16535,897 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { _start: { -lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_53 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop_spec__0___closed__0; -x_54 = lean_unsigned_to_nat(1u); -x_55 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances_loop___redArg___lam__0___closed__2; -x_56 = lean_array_push(x_55, x_1); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc(x_14); -lean_inc_ref(x_13); -x_57 = l_Lean_Meta_mkAppM(x_53, x_56, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_57) == 0) +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_58 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop_spec__0___closed__0; +x_59 = lean_unsigned_to_nat(1u); +x_60 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances_loop___redArg___lam__0___closed__2; +x_61 = lean_array_push(x_60, x_1); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +x_62 = l_Lean_Meta_mkAppM(x_58, x_61, x_16, x_17, x_18, x_19); +if (lean_obj_tag(x_62) == 0) { -lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_58 = lean_ctor_get(x_57, 0); -lean_inc(x_58); -lean_dec_ref(x_57); -x_59 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___redArg___lam__0___closed__1; -x_60 = l_Lean_mkConst(x_59, x_2); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc(x_14); -lean_inc_ref(x_13); -x_61 = l_Lean_Meta_mkNumeral(x_60, x_54, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_61) == 0) -{ -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_62 = lean_ctor_get(x_61, 0); -lean_inc(x_62); -lean_dec_ref(x_61); -x_63 = lean_ctor_get(x_3, 1); -x_64 = lean_ctor_get(x_3, 2); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_63 = lean_ctor_get(x_62, 0); lean_inc(x_63); -x_65 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_65, 0, x_63); -lean_inc(x_64); -x_66 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_66, 0, x_65); -lean_ctor_set(x_66, 1, x_64); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc(x_14); -lean_inc_ref(x_13); -x_67 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem_spec__2___redArg(x_3, x_53, x_66, x_62, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_67) == 0) +lean_dec_ref(x_62); +x_64 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___redArg___lam__0___closed__1; +x_65 = l_Lean_mkConst(x_64, x_2); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +x_66 = l_Lean_Meta_mkNumeral(x_65, x_59, x_16, x_17, x_18, x_19); +if (lean_obj_tag(x_66) == 0) { -lean_object* x_68; lean_object* x_69; -x_68 = lean_ctor_get(x_67, 0); +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_67 = lean_ctor_get(x_66, 0); +lean_inc(x_67); +lean_dec_ref(x_66); +x_68 = lean_ctor_get(x_3, 1); +x_69 = lean_ctor_get(x_3, 2); lean_inc(x_68); -lean_dec_ref(x_67); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_68); -lean_inc(x_58); -x_69 = l_Lean_Meta_mkEq(x_58, x_68, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_69) == 0) +x_70 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_70, 0, x_68); +lean_inc(x_69); +x_71 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_71, 0, x_70); +lean_ctor_set(x_71, 1, x_69); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +x_72 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem_spec__2___redArg(x_3, x_58, x_71, x_67, x_16, x_17, x_18, x_19); +if (lean_obj_tag(x_72) == 0) { -lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_object* x_73; uint8_t x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_97; lean_object* x_98; uint8_t x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; uint8_t x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_165; lean_object* x_166; uint8_t x_167; -x_70 = lean_ctor_get(x_69, 0); -lean_inc(x_70); -lean_dec_ref(x_69); -x_71 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___redArg___closed__2; -x_165 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__0___redArg(x_71, x_15); -x_166 = lean_ctor_get(x_165, 0); -lean_inc(x_166); -lean_dec_ref(x_165); -x_167 = lean_unbox(x_166); -lean_dec(x_166); -if (x_167 == 0) +lean_object* x_73; lean_object* x_74; +x_73 = lean_ctor_get(x_72, 0); +lean_inc(x_73); +lean_dec_ref(x_72); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc(x_73); +lean_inc(x_63); +x_74 = l_Lean_Meta_mkEq(x_63, x_73, x_16, x_17, x_18, x_19); +if (lean_obj_tag(x_74) == 0) { -lean_dec(x_11); -x_140 = x_13; -x_141 = x_14; -x_142 = x_15; -x_143 = x_16; -x_144 = lean_box(0); -goto block_164; +lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_124; uint8_t x_125; lean_object* x_126; lean_object* x_127; uint8_t x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_166; lean_object* x_167; uint8_t x_168; +x_75 = lean_ctor_get(x_74, 0); +lean_inc(x_75); +lean_dec_ref(x_74); +x_76 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___redArg___closed__2; +x_166 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__0___redArg(x_76, x_18); +x_167 = lean_ctor_get(x_166, 0); +lean_inc(x_167); +lean_dec_ref(x_166); +x_168 = lean_unbox(x_167); +lean_dec(x_167); +if (x_168 == 0) +{ +lean_dec(x_14); +x_142 = x_16; +x_143 = x_17; +x_144 = x_18; +x_145 = x_19; +x_146 = lean_box(0); +goto block_165; } else { -lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; -x_168 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___closed__9; -x_169 = l_Lean_MessageData_ofName(x_11); -x_170 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_170, 0, x_168); -lean_ctor_set(x_170, 1, x_169); -x_171 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___closed__11; -x_172 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_172, 0, x_170); -lean_ctor_set(x_172, 1, x_171); -lean_inc(x_70); -x_173 = l_Lean_MessageData_ofExpr(x_70); -x_174 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_174, 0, x_172); -lean_ctor_set(x_174, 1, x_173); -x_175 = l_Lean_addTrace___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__1(x_71, x_174, x_13, x_14, x_15, x_16); -lean_dec_ref(x_175); -x_140 = x_13; -x_141 = x_14; -x_142 = x_15; -x_143 = x_16; -x_144 = lean_box(0); -goto block_164; +lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; +x_169 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___closed__9; +x_170 = l_Lean_MessageData_ofName(x_14); +x_171 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_171, 0, x_169); +lean_ctor_set(x_171, 1, x_170); +x_172 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___closed__11; +x_173 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_173, 0, x_171); +lean_ctor_set(x_173, 1, x_172); +lean_inc(x_75); +x_174 = l_Lean_MessageData_ofExpr(x_75); +x_175 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +x_176 = l_Lean_addTrace___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__1(x_76, x_175, x_16, x_17, x_18, x_19); +lean_dec_ref(x_176); +x_142 = x_16; +x_143 = x_17; +x_144 = x_18; +x_145 = x_19; +x_146 = lean_box(0); +goto block_165; } -block_96: +block_100: { -lean_object* x_84; -x_84 = l_Lean_Meta_mkLambdaFVars(x_76, x_78, x_74, x_72, x_74, x_72, x_77, x_79, x_80, x_81, x_82); -lean_dec_ref(x_76); -if (lean_obj_tag(x_84) == 0) +lean_object* x_88; +x_88 = l_Lean_Meta_mkLambdaFVars(x_80, x_82, x_5, x_78, x_5, x_78, x_81, x_83, x_84, x_85, x_86); +lean_dec_ref(x_80); +if (lean_obj_tag(x_88) == 0) { -lean_object* x_85; lean_object* x_86; lean_object* x_87; uint8_t x_88; -x_85 = lean_ctor_get(x_84, 0); -lean_inc(x_85); -lean_dec_ref(x_84); -x_86 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__0___redArg(x_71, x_81); -x_87 = lean_ctor_get(x_86, 0); -lean_inc(x_87); -lean_dec_ref(x_86); -x_88 = lean_unbox(x_87); -lean_dec(x_87); -if (x_88 == 0) +lean_object* x_89; lean_object* x_90; lean_object* x_91; uint8_t x_92; +x_89 = lean_ctor_get(x_88, 0); +lean_inc(x_89); +lean_dec_ref(x_88); +x_90 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__0___redArg(x_76, x_85); +x_91 = lean_ctor_get(x_90, 0); +lean_inc(x_91); +lean_dec_ref(x_90); +x_92 = lean_unbox(x_91); +lean_dec(x_91); +if (x_92 == 0) { -x_18 = x_85; -x_19 = x_73; -x_20 = x_74; -x_21 = x_75; -x_22 = x_79; -x_23 = x_80; -x_24 = x_81; -x_25 = x_82; -x_26 = lean_box(0); -goto block_52; +x_21 = x_77; +x_22 = x_89; +x_23 = x_79; +x_24 = x_83; +x_25 = x_84; +x_26 = x_85; +x_27 = x_86; +x_28 = lean_box(0); +goto block_57; } else { -lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_89 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___closed__3; -lean_inc(x_85); -x_90 = l_Lean_MessageData_ofExpr(x_85); -x_91 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_91, 0, x_89); -lean_ctor_set(x_91, 1, x_90); -x_92 = l_Lean_addTrace___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__1(x_71, x_91, x_79, x_80, x_81, x_82); -lean_dec_ref(x_92); -x_18 = x_85; -x_19 = x_73; -x_20 = x_74; -x_21 = x_75; -x_22 = x_79; -x_23 = x_80; -x_24 = x_81; -x_25 = x_82; -x_26 = lean_box(0); -goto block_52; +lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_93 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___closed__3; +lean_inc(x_89); +x_94 = l_Lean_MessageData_ofExpr(x_89); +x_95 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_95, 0, x_93); +lean_ctor_set(x_95, 1, x_94); +x_96 = l_Lean_addTrace___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__1(x_76, x_95, x_83, x_84, x_85, x_86); +lean_dec_ref(x_96); +x_21 = x_77; +x_22 = x_89; +x_23 = x_79; +x_24 = x_83; +x_25 = x_84; +x_26 = x_85; +x_27 = x_86; +x_28 = lean_box(0); +goto block_57; } } else { -uint8_t x_93; -lean_dec(x_82); -lean_dec_ref(x_81); -lean_dec(x_80); -lean_dec_ref(x_79); -lean_dec_ref(x_75); -lean_dec(x_73); -lean_dec_ref(x_5); -lean_dec(x_4); -x_93 = !lean_is_exclusive(x_84); -if (x_93 == 0) -{ -return x_84; -} -else -{ -lean_object* x_94; lean_object* x_95; -x_94 = lean_ctor_get(x_84, 0); -lean_inc(x_94); +uint8_t x_97; +lean_dec(x_86); +lean_dec_ref(x_85); lean_dec(x_84); -x_95 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_95, 0, x_94); -return x_95; -} -} -} -block_120: -{ -uint8_t x_108; -x_108 = l_Lean_InductiveVal_isNested(x_6); -if (x_108 == 0) -{ -lean_object* x_109; -lean_dec(x_58); -lean_dec_ref(x_12); -lean_dec(x_10); -lean_dec_ref(x_9); +lean_dec_ref(x_83); +lean_dec_ref(x_79); +lean_dec(x_77); lean_dec(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_inc(x_106); -lean_inc_ref(x_105); -lean_inc(x_104); -lean_inc_ref(x_103); -x_109 = l_Lean_Meta_mkEqRefl(x_68, x_103, x_104, x_105, x_106); -if (lean_obj_tag(x_109) == 0) +lean_dec(x_4); +x_97 = !lean_is_exclusive(x_88); +if (x_97 == 0) { -lean_object* x_110; -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -lean_dec_ref(x_109); -x_72 = x_97; -x_73 = x_98; -x_74 = x_99; -x_75 = x_101; -x_76 = x_100; -x_77 = x_102; -x_78 = x_110; -x_79 = x_103; -x_80 = x_104; -x_81 = x_105; -x_82 = x_106; -x_83 = lean_box(0); -goto block_96; +return x_88; } else { +lean_object* x_98; lean_object* x_99; +x_98 = lean_ctor_get(x_88, 0); +lean_inc(x_98); +lean_dec(x_88); +x_99 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_99, 0, x_98); +return x_99; +} +} +} +block_123: +{ uint8_t x_111; -lean_dec(x_106); -lean_dec_ref(x_105); -lean_dec(x_104); -lean_dec_ref(x_103); -lean_dec_ref(x_101); -lean_dec_ref(x_100); -lean_dec(x_98); -lean_dec_ref(x_5); -lean_dec(x_4); -x_111 = !lean_is_exclusive(x_109); +x_111 = l_Lean_InductiveVal_isNested(x_9); if (x_111 == 0) { -return x_109; -} -else +lean_object* x_112; +lean_dec(x_63); +lean_dec_ref(x_15); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_inc(x_109); +lean_inc_ref(x_108); +lean_inc(x_107); +lean_inc_ref(x_106); +x_112 = l_Lean_Meta_mkEqRefl(x_73, x_106, x_107, x_108, x_109); +if (lean_obj_tag(x_112) == 0) { -lean_object* x_112; lean_object* x_113; -x_112 = lean_ctor_get(x_109, 0); -lean_inc(x_112); -lean_dec(x_109); -x_113 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_113, 0, x_112); -return x_113; -} -} -} -else -{ -lean_object* x_114; lean_object* x_115; -x_114 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_114, 0, x_6); -lean_ctor_set(x_114, 1, x_7); -lean_ctor_set(x_114, 2, x_8); -lean_ctor_set(x_114, 3, x_9); -lean_ctor_set(x_114, 4, x_12); -lean_ctor_set(x_114, 5, x_10); -lean_inc(x_106); -lean_inc_ref(x_105); -lean_inc(x_104); -lean_inc_ref(x_103); -x_115 = l_Lean_Meta_SizeOfSpecNested_main(x_58, x_68, x_114, x_103, x_104, x_105, x_106); -if (lean_obj_tag(x_115) == 0) -{ -lean_object* x_116; -x_116 = lean_ctor_get(x_115, 0); -lean_inc(x_116); -lean_dec_ref(x_115); -x_72 = x_97; -x_73 = x_98; -x_74 = x_99; -x_75 = x_101; -x_76 = x_100; -x_77 = x_102; -x_78 = x_116; -x_79 = x_103; -x_80 = x_104; +lean_object* x_113; +x_113 = lean_ctor_get(x_112, 0); +lean_inc(x_113); +lean_dec_ref(x_112); +x_77 = x_101; +x_78 = x_102; +x_79 = x_104; +x_80 = x_103; x_81 = x_105; -x_82 = x_106; -x_83 = lean_box(0); -goto block_96; +x_82 = x_113; +x_83 = x_106; +x_84 = x_107; +x_85 = x_108; +x_86 = x_109; +x_87 = lean_box(0); +goto block_100; } else { -uint8_t x_117; -lean_dec(x_106); -lean_dec_ref(x_105); -lean_dec(x_104); +uint8_t x_114; +lean_dec(x_109); +lean_dec_ref(x_108); +lean_dec(x_107); +lean_dec_ref(x_106); +lean_dec_ref(x_104); lean_dec_ref(x_103); -lean_dec_ref(x_101); -lean_dec_ref(x_100); -lean_dec(x_98); -lean_dec_ref(x_5); +lean_dec(x_101); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); lean_dec(x_4); -x_117 = !lean_is_exclusive(x_115); -if (x_117 == 0) +x_114 = !lean_is_exclusive(x_112); +if (x_114 == 0) { -return x_115; +return x_112; } else { -lean_object* x_118; lean_object* x_119; -x_118 = lean_ctor_get(x_115, 0); -lean_inc(x_118); -lean_dec(x_115); -x_119 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_119, 0, x_118); -return x_119; +lean_object* x_115; lean_object* x_116; +x_115 = lean_ctor_get(x_112, 0); +lean_inc(x_115); +lean_dec(x_112); +x_116 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_116, 0, x_115); +return x_116; } } } -} -block_139: -{ -lean_object* x_132; lean_object* x_133; uint8_t x_134; -x_132 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__0___redArg(x_71, x_129); -x_133 = lean_ctor_get(x_132, 0); -lean_inc(x_133); -lean_dec_ref(x_132); -x_134 = lean_unbox(x_133); -lean_dec(x_133); -if (x_134 == 0) -{ -x_97 = x_121; -x_98 = x_122; -x_99 = x_123; -x_100 = x_125; -x_101 = x_124; -x_102 = x_126; -x_103 = x_127; -x_104 = x_128; -x_105 = x_129; -x_106 = x_130; -x_107 = lean_box(0); -goto block_120; -} else { -lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; -x_135 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___closed__5; -lean_inc_ref(x_124); -x_136 = l_Lean_MessageData_ofExpr(x_124); -x_137 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_137, 0, x_135); -lean_ctor_set(x_137, 1, x_136); -x_138 = l_Lean_addTrace___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__1(x_71, x_137, x_127, x_128, x_129, x_130); -lean_dec_ref(x_138); -x_97 = x_121; -x_98 = x_122; -x_99 = x_123; -x_100 = x_125; -x_101 = x_124; -x_102 = x_126; -x_103 = x_127; -x_104 = x_128; -x_105 = x_129; -x_106 = x_130; -x_107 = lean_box(0); -goto block_120; -} -} -block_164: +lean_object* x_117; lean_object* x_118; +x_117 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_117, 0, x_9); +lean_ctor_set(x_117, 1, x_10); +lean_ctor_set(x_117, 2, x_11); +lean_ctor_set(x_117, 3, x_12); +lean_ctor_set(x_117, 4, x_15); +lean_ctor_set(x_117, 5, x_13); +lean_inc(x_109); +lean_inc_ref(x_108); +lean_inc(x_107); +lean_inc_ref(x_106); +x_118 = l_Lean_Meta_SizeOfSpecNested_main(x_63, x_73, x_117, x_106, x_107, x_108, x_109); +if (lean_obj_tag(x_118) == 0) { -lean_object* x_145; lean_object* x_146; lean_object* x_147; uint8_t x_148; uint8_t x_149; uint8_t x_150; lean_object* x_151; -lean_inc_ref(x_9); -x_145 = l_Array_append___redArg(x_9, x_12); -x_146 = l_Array_ofSubarray___redArg(x_3); -x_147 = l_Array_append___redArg(x_145, x_146); -lean_dec_ref(x_146); -x_148 = 0; -x_149 = 1; +lean_object* x_119; +x_119 = lean_ctor_get(x_118, 0); +lean_inc(x_119); +lean_dec_ref(x_118); +x_77 = x_101; +x_78 = x_102; +x_79 = x_104; +x_80 = x_103; +x_81 = x_105; +x_82 = x_119; +x_83 = x_106; +x_84 = x_107; +x_85 = x_108; +x_86 = x_109; +x_87 = lean_box(0); +goto block_100; +} +else +{ +uint8_t x_120; +lean_dec(x_109); +lean_dec_ref(x_108); +lean_dec(x_107); +lean_dec_ref(x_106); +lean_dec_ref(x_104); +lean_dec_ref(x_103); +lean_dec(x_101); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec(x_4); +x_120 = !lean_is_exclusive(x_118); +if (x_120 == 0) +{ +return x_118; +} +else +{ +lean_object* x_121; lean_object* x_122; +x_121 = lean_ctor_get(x_118, 0); +lean_inc(x_121); +lean_dec(x_118); +x_122 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_122, 0, x_121); +return x_122; +} +} +} +} +block_141: +{ +lean_object* x_134; lean_object* x_135; uint8_t x_136; +x_134 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__0___redArg(x_76, x_131); +x_135 = lean_ctor_get(x_134, 0); +lean_inc(x_135); +lean_dec_ref(x_134); +x_136 = lean_unbox(x_135); +lean_dec(x_135); +if (x_136 == 0) +{ +x_101 = x_124; +x_102 = x_125; +x_103 = x_127; +x_104 = x_126; +x_105 = x_128; +x_106 = x_129; +x_107 = x_130; +x_108 = x_131; +x_109 = x_132; +x_110 = lean_box(0); +goto block_123; +} +else +{ +lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; +x_137 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___closed__5; +lean_inc_ref(x_126); +x_138 = l_Lean_MessageData_ofExpr(x_126); +x_139 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_139, 0, x_137); +lean_ctor_set(x_139, 1, x_138); +x_140 = l_Lean_addTrace___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__1(x_76, x_139, x_129, x_130, x_131, x_132); +lean_dec_ref(x_140); +x_101 = x_124; +x_102 = x_125; +x_103 = x_127; +x_104 = x_126; +x_105 = x_128; +x_106 = x_129; +x_107 = x_130; +x_108 = x_131; +x_109 = x_132; +x_110 = lean_box(0); +goto block_123; +} +} +block_165: +{ +lean_object* x_147; lean_object* x_148; lean_object* x_149; uint8_t x_150; uint8_t x_151; lean_object* x_152; +lean_inc_ref(x_12); +x_147 = l_Array_append___redArg(x_12, x_15); +x_148 = l_Array_ofSubarray___redArg(x_3); +x_149 = l_Array_append___redArg(x_147, x_148); +lean_dec_ref(x_148); x_150 = 1; -x_151 = l_Lean_Meta_mkForallFVars(x_147, x_70, x_148, x_149, x_149, x_150, x_140, x_141, x_142, x_143); -if (lean_obj_tag(x_151) == 0) +x_151 = 1; +x_152 = l_Lean_Meta_mkForallFVars(x_149, x_75, x_5, x_150, x_150, x_151, x_142, x_143, x_144, x_145); +if (lean_obj_tag(x_152) == 0) { -lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; uint8_t x_156; -x_152 = lean_ctor_get(x_151, 0); -lean_inc(x_152); -lean_dec_ref(x_151); -x_153 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__0___redArg(x_71, x_142); -x_154 = lean_ctor_get(x_153, 0); -lean_inc(x_154); -lean_dec_ref(x_153); -lean_inc(x_8); -x_155 = l_Lean_Meta_mkSizeOfSpecLemmaName(x_8); -x_156 = lean_unbox(x_154); -lean_dec(x_154); -if (x_156 == 0) -{ -x_121 = x_149; -x_122 = x_155; -x_123 = x_148; -x_124 = x_152; -x_125 = x_147; -x_126 = x_150; -x_127 = x_140; -x_128 = x_141; -x_129 = x_142; -x_130 = x_143; -x_131 = lean_box(0); -goto block_139; -} -else -{ -lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; -x_157 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___closed__7; +lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; uint8_t x_157; +x_153 = lean_ctor_get(x_152, 0); +lean_inc(x_153); +lean_dec_ref(x_152); +x_154 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__0___redArg(x_76, x_144); +x_155 = lean_ctor_get(x_154, 0); lean_inc(x_155); -x_158 = l_Lean_MessageData_ofName(x_155); -x_159 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_159, 0, x_157); -lean_ctor_set(x_159, 1, x_158); -x_160 = l_Lean_addTrace___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__1(x_71, x_159, x_140, x_141, x_142, x_143); -lean_dec_ref(x_160); -x_121 = x_149; -x_122 = x_155; -x_123 = x_148; -x_124 = x_152; -x_125 = x_147; -x_126 = x_150; -x_127 = x_140; -x_128 = x_141; +lean_dec_ref(x_154); +lean_inc(x_11); +x_156 = l_Lean_Meta_mkSizeOfSpecLemmaName(x_11); +x_157 = lean_unbox(x_155); +lean_dec(x_155); +if (x_157 == 0) +{ +x_124 = x_156; +x_125 = x_150; +x_126 = x_153; +x_127 = x_149; +x_128 = x_151; x_129 = x_142; x_130 = x_143; -x_131 = lean_box(0); -goto block_139; +x_131 = x_144; +x_132 = x_145; +x_133 = lean_box(0); +goto block_141; +} +else +{ +lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_158 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___closed__7; +lean_inc(x_156); +x_159 = l_Lean_MessageData_ofName(x_156); +x_160 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_160, 0, x_158); +lean_ctor_set(x_160, 1, x_159); +x_161 = l_Lean_addTrace___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__1(x_76, x_160, x_142, x_143, x_144, x_145); +lean_dec_ref(x_161); +x_124 = x_156; +x_125 = x_150; +x_126 = x_153; +x_127 = x_149; +x_128 = x_151; +x_129 = x_142; +x_130 = x_143; +x_131 = x_144; +x_132 = x_145; +x_133 = lean_box(0); +goto block_141; } } else { -uint8_t x_161; -lean_dec_ref(x_147); +uint8_t x_162; +lean_dec_ref(x_149); +lean_dec(x_145); +lean_dec_ref(x_144); lean_dec(x_143); lean_dec_ref(x_142); -lean_dec(x_141); -lean_dec_ref(x_140); -lean_dec(x_68); -lean_dec(x_58); -lean_dec_ref(x_12); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -x_161 = !lean_is_exclusive(x_151); -if (x_161 == 0) -{ -return x_151; -} -else -{ -lean_object* x_162; lean_object* x_163; -x_162 = lean_ctor_get(x_151, 0); -lean_inc(x_162); -lean_dec(x_151); -x_163 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_163, 0, x_162); -return x_163; -} -} -} -} -else -{ -uint8_t x_176; -lean_dec(x_68); -lean_dec(x_58); -lean_dec(x_16); +lean_dec(x_73); +lean_dec(x_63); lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); +lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); -lean_dec(x_10); +lean_dec_ref(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); lean_dec(x_4); -x_176 = !lean_is_exclusive(x_69); -if (x_176 == 0) +x_162 = !lean_is_exclusive(x_152); +if (x_162 == 0) { -return x_69; +return x_152; } else { -lean_object* x_177; lean_object* x_178; -x_177 = lean_ctor_get(x_69, 0); -lean_inc(x_177); -lean_dec(x_69); -x_178 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_178, 0, x_177); -return x_178; +lean_object* x_163; lean_object* x_164; +x_163 = lean_ctor_get(x_152, 0); +lean_inc(x_163); +lean_dec(x_152); +x_164 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_164, 0, x_163); +return x_164; +} } } } else { -uint8_t x_179; -lean_dec(x_58); -lean_dec(x_16); +uint8_t x_177; +lean_dec(x_73); +lean_dec(x_63); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); lean_dec_ref(x_15); lean_dec(x_14); -lean_dec_ref(x_13); +lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); -lean_dec(x_10); +lean_dec_ref(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); lean_dec(x_4); -x_179 = !lean_is_exclusive(x_67); -if (x_179 == 0) +x_177 = !lean_is_exclusive(x_74); +if (x_177 == 0) { -return x_67; +return x_74; } else { -lean_object* x_180; lean_object* x_181; -x_180 = lean_ctor_get(x_67, 0); -lean_inc(x_180); -lean_dec(x_67); -x_181 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_181, 0, x_180); -return x_181; +lean_object* x_178; lean_object* x_179; +x_178 = lean_ctor_get(x_74, 0); +lean_inc(x_178); +lean_dec(x_74); +x_179 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_179, 0, x_178); +return x_179; } } } else { -uint8_t x_182; -lean_dec(x_58); -lean_dec(x_16); +uint8_t x_180; +lean_dec(x_63); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); lean_dec_ref(x_15); lean_dec(x_14); -lean_dec_ref(x_13); +lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); -lean_dec(x_10); +lean_dec_ref(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); lean_dec(x_4); -x_182 = !lean_is_exclusive(x_61); -if (x_182 == 0) +x_180 = !lean_is_exclusive(x_72); +if (x_180 == 0) { -return x_61; +return x_72; } else { -lean_object* x_183; lean_object* x_184; -x_183 = lean_ctor_get(x_61, 0); -lean_inc(x_183); -lean_dec(x_61); -x_184 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_184, 0, x_183); -return x_184; +lean_object* x_181; lean_object* x_182; +x_181 = lean_ctor_get(x_72, 0); +lean_inc(x_181); +lean_dec(x_72); +x_182 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_182, 0, x_181); +return x_182; } } } else { -uint8_t x_185; -lean_dec(x_16); +uint8_t x_183; +lean_dec(x_63); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); lean_dec_ref(x_15); lean_dec(x_14); -lean_dec_ref(x_13); +lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); -lean_dec(x_10); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec(x_4); +x_183 = !lean_is_exclusive(x_66); +if (x_183 == 0) +{ +return x_66; +} +else +{ +lean_object* x_184; lean_object* x_185; +x_184 = lean_ctor_get(x_66, 0); +lean_inc(x_184); +lean_dec(x_66); +x_185 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_185, 0, x_184); +return x_185; +} +} +} +else +{ +uint8_t x_186; +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); lean_dec(x_4); lean_dec(x_2); -x_185 = !lean_is_exclusive(x_57); -if (x_185 == 0) +x_186 = !lean_is_exclusive(x_62); +if (x_186 == 0) { -return x_57; +return x_62; } else { -lean_object* x_186; lean_object* x_187; -x_186 = lean_ctor_get(x_57, 0); -lean_inc(x_186); -lean_dec(x_57); -x_187 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_187, 0, x_186); -return x_187; +lean_object* x_187; lean_object* x_188; +x_187 = lean_ctor_get(x_62, 0); +lean_inc(x_187); +lean_dec(x_62); +x_188 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_188, 0, x_187); +return x_188; } } -block_52: +block_57: { -lean_object* x_27; +lean_object* x_29; +lean_inc(x_27); +lean_inc_ref(x_26); lean_inc(x_25); lean_inc_ref(x_24); -lean_inc(x_23); lean_inc_ref(x_22); -lean_inc_ref(x_18); -x_27 = lean_infer_type(x_18, x_22, x_23, x_24, x_25); -if (lean_obj_tag(x_27) == 0) -{ -lean_object* x_28; lean_object* x_29; -x_28 = lean_ctor_get(x_27, 0); -lean_inc(x_28); -lean_dec_ref(x_27); -lean_inc(x_25); -lean_inc_ref(x_24); -lean_inc(x_23); -lean_inc_ref(x_22); -lean_inc_ref(x_21); -x_29 = l_Lean_Meta_isExprDefEq(x_28, x_21, x_22, x_23, x_24, x_25); +x_29 = lean_infer_type(x_22, x_24, x_25, x_26, x_27); if (lean_obj_tag(x_29) == 0) { -lean_object* x_30; uint8_t x_31; +lean_object* x_30; lean_object* x_31; x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); lean_dec_ref(x_29); -x_31 = lean_unbox(x_30); -lean_dec(x_30); -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; -lean_dec_ref(x_21); -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec_ref(x_5); -lean_dec(x_4); -x_32 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___closed__1; -x_33 = l_Lean_throwError___at___00Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00Lean_Meta_mkSizeOfFn_spec__0_spec__0_spec__0_spec__0_spec__0_spec__2_spec__2___redArg(x_32, x_22, x_23, x_24, x_25); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -return x_33; -} -else -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -lean_inc(x_19); -x_34 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_34, 0, x_19); -lean_ctor_set(x_34, 1, x_4); -lean_ctor_set(x_34, 2, x_21); -x_35 = lean_box(0); -lean_inc(x_19); -x_36 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_36, 0, x_19); -lean_ctor_set(x_36, 1, x_35); -x_37 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_37, 0, x_34); -lean_ctor_set(x_37, 1, x_18); -lean_ctor_set(x_37, 2, x_36); -x_38 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_38, 0, x_37); +lean_inc(x_27); +lean_inc_ref(x_26); lean_inc(x_25); lean_inc_ref(x_24); -x_39 = l_Lean_addDecl(x_38, x_20, x_24, x_25); -if (lean_obj_tag(x_39) == 0) +lean_inc_ref(x_23); +x_31 = l_Lean_Meta_isExprDefEq(x_30, x_23, x_24, x_25, x_26, x_27); +if (lean_obj_tag(x_31) == 0) { -lean_object* x_40; -lean_dec_ref(x_39); -lean_inc(x_25); -lean_inc_ref(x_24); -lean_inc(x_19); -x_40 = l_Lean_inferDefEqAttr(x_19, x_22, x_23, x_24, x_25); -if (lean_obj_tag(x_40) == 0) +lean_object* x_32; uint8_t x_33; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +lean_dec_ref(x_31); +x_33 = lean_unbox(x_32); +lean_dec(x_32); +if (x_33 == 0) { -lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; -lean_dec_ref(x_40); -x_41 = lean_ctor_get(x_5, 1); -lean_inc_ref(x_41); -lean_dec_ref(x_5); -x_42 = lean_box(0); -x_43 = 0; -x_44 = lean_box(x_43); -x_45 = lean_apply_6(x_41, x_19, x_42, x_44, x_24, x_25, lean_box(0)); -return x_45; -} -else -{ -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_19); -lean_dec_ref(x_5); -return x_40; -} -} -else -{ -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); +lean_object* x_34; lean_object* x_35; +lean_dec_ref(x_23); lean_dec_ref(x_22); -lean_dec(x_19); -lean_dec_ref(x_5); -return x_39; -} -} -} -else -{ -uint8_t x_46; -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec_ref(x_21); -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec_ref(x_5); +lean_dec(x_21); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); lean_dec(x_4); -x_46 = !lean_is_exclusive(x_29); -if (x_46 == 0) +x_34 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___closed__1; +x_35 = l_Lean_throwError___at___00Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoRec___at___00Lean_Meta_mkSizeOfFn_spec__0_spec__0_spec__0_spec__0_spec__0_spec__2_spec__2___redArg(x_34, x_24, x_25, x_26, x_27); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec_ref(x_24); +return x_35; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_inc(x_21); +x_36 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_36, 0, x_21); +lean_ctor_set(x_36, 1, x_4); +lean_ctor_set(x_36, 2, x_23); +x_37 = lean_box(0); +lean_inc(x_21); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_21); +lean_ctor_set(x_38, 1, x_37); +x_39 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_39, 0, x_36); +lean_ctor_set(x_39, 1, x_22); +lean_ctor_set(x_39, 2, x_38); +x_40 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_40, 0, x_39); +lean_inc(x_27); +lean_inc_ref(x_26); +x_41 = l_Lean_addDecl(x_40, x_5, x_26, x_27); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; +lean_dec_ref(x_41); +lean_inc(x_27); +lean_inc_ref(x_26); +lean_inc(x_21); +x_42 = l_Lean_inferDefEqAttr(x_21, x_24, x_25, x_26, x_27); +if (lean_obj_tag(x_42) == 0) +{ +lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; +lean_dec_ref(x_42); +x_43 = lean_ctor_get(x_6, 1); +lean_inc_ref(x_43); +lean_dec_ref(x_6); +x_44 = lean_box(0); +x_45 = 0; +x_46 = lean_box(x_45); +lean_inc(x_27); +lean_inc_ref(x_26); +lean_inc(x_21); +x_47 = lean_apply_6(x_43, x_21, x_44, x_46, x_26, x_27, lean_box(0)); +if (lean_obj_tag(x_47) == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +lean_dec_ref(x_47); +x_48 = lean_ctor_get(x_7, 1); +lean_inc_ref(x_48); +lean_dec_ref(x_7); +x_49 = lean_box(x_45); +x_50 = lean_apply_6(x_48, x_21, x_8, x_49, x_26, x_27, lean_box(0)); +return x_50; +} +else +{ +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_21); +lean_dec(x_8); +lean_dec_ref(x_7); +return x_47; +} +} +else +{ +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_21); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +return x_42; +} +} +else +{ +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_21); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +return x_41; +} +} +} +else +{ +uint8_t x_51; +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec(x_4); +x_51 = !lean_is_exclusive(x_31); +if (x_51 == 0) +{ +return x_31; +} +else +{ +lean_object* x_52; lean_object* x_53; +x_52 = lean_ctor_get(x_31, 0); +lean_inc(x_52); +lean_dec(x_31); +x_53 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_53, 0, x_52); +return x_53; +} +} +} +else +{ +uint8_t x_54; +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec(x_4); +x_54 = !lean_is_exclusive(x_29); +if (x_54 == 0) { return x_29; } else { -lean_object* x_47; lean_object* x_48; -x_47 = lean_ctor_get(x_29, 0); -lean_inc(x_47); +lean_object* x_55; lean_object* x_56; +x_55 = lean_ctor_get(x_29, 0); +lean_inc(x_55); lean_dec(x_29); -x_48 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_48, 0, x_47); -return x_48; -} -} -} -else -{ -uint8_t x_49; -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec_ref(x_21); -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec_ref(x_5); -lean_dec(x_4); -x_49 = !lean_is_exclusive(x_27); -if (x_49 == 0) -{ -return x_27; -} -else -{ -lean_object* x_50; lean_object* x_51; -x_50 = lean_ctor_get(x_27, 0); -lean_inc(x_50); -lean_dec(x_27); -x_51 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_51, 0, x_50); -return x_51; +x_56 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_56, 0, x_55); +return x_56; } } } } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { _start: { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_28; lean_object* x_29; lean_object* x_35; lean_object* x_36; uint8_t x_37; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_32; lean_object* x_33; lean_object* x_39; lean_object* x_40; uint8_t x_41; +x_39 = lean_unsigned_to_nat(0u); +x_40 = lean_array_get_size(x_14); +x_41 = lean_nat_dec_le(x_13, x_40); +if (x_41 == 0) +{ +x_32 = x_39; +x_33 = x_40; +goto block_38; +} +else +{ +lean_dec(x_40); +lean_inc(x_13); +x_32 = x_39; +x_33 = x_13; +goto block_38; +} +block_31: +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_inc_ref(x_14); +x_24 = l_Array_toSubarray___redArg(x_14, x_22, x_23); +lean_inc(x_1); +x_25 = l_Lean_mkConst(x_1, x_2); +x_26 = l_Lean_mkAppN(x_25, x_14); +lean_dec_ref(x_14); +x_27 = l_Array_ofSubarray___redArg(x_21); +lean_dec_ref(x_21); +x_28 = lean_box(x_5); +lean_inc_ref(x_27); +x_29 = lean_alloc_closure((void*)(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___boxed), 20, 14); +lean_closure_set(x_29, 0, x_26); +lean_closure_set(x_29, 1, x_3); +lean_closure_set(x_29, 2, x_24); +lean_closure_set(x_29, 3, x_4); +lean_closure_set(x_29, 4, x_28); +lean_closure_set(x_29, 5, x_6); +lean_closure_set(x_29, 6, x_7); +lean_closure_set(x_29, 7, x_8); +lean_closure_set(x_29, 8, x_9); +lean_closure_set(x_29, 9, x_10); +lean_closure_set(x_29, 10, x_1); +lean_closure_set(x_29, 11, x_27); +lean_closure_set(x_29, 12, x_11); +lean_closure_set(x_29, 13, x_12); +x_30 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances___redArg(x_27, x_29, x_16, x_17, x_18, x_19); +return x_30; +} +block_38: +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +lean_inc_ref(x_14); +x_34 = l_Array_toSubarray___redArg(x_14, x_32, x_33); x_35 = lean_unsigned_to_nat(0u); -x_36 = lean_array_get_size(x_11); -x_37 = lean_nat_dec_le(x_10, x_36); +x_36 = lean_array_get_size(x_14); +x_37 = lean_nat_dec_le(x_13, x_35); if (x_37 == 0) { -x_28 = x_35; -x_29 = x_36; -goto block_34; +x_21 = x_34; +x_22 = x_13; +x_23 = x_36; +goto block_31; } else { -lean_dec(x_36); -lean_inc(x_10); -x_28 = x_35; -x_29 = x_10; -goto block_34; -} -block_27: -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_inc_ref(x_11); -x_21 = l_Array_toSubarray___redArg(x_11, x_19, x_20); -lean_inc(x_1); -x_22 = l_Lean_mkConst(x_1, x_2); -x_23 = l_Lean_mkAppN(x_22, x_11); -lean_dec_ref(x_11); -x_24 = l_Array_ofSubarray___redArg(x_18); -lean_dec_ref(x_18); -lean_inc_ref(x_24); -x_25 = lean_alloc_closure((void*)(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0___boxed), 17, 11); -lean_closure_set(x_25, 0, x_23); -lean_closure_set(x_25, 1, x_3); -lean_closure_set(x_25, 2, x_21); -lean_closure_set(x_25, 3, x_4); -lean_closure_set(x_25, 4, x_5); -lean_closure_set(x_25, 5, x_6); -lean_closure_set(x_25, 6, x_7); -lean_closure_set(x_25, 7, x_1); -lean_closure_set(x_25, 8, x_24); -lean_closure_set(x_25, 9, x_8); -lean_closure_set(x_25, 10, x_9); -x_26 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances___redArg(x_24, x_25, x_13, x_14, x_15, x_16); -return x_26; -} -block_34: -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; -lean_inc_ref(x_11); -x_30 = l_Array_toSubarray___redArg(x_11, x_28, x_29); -x_31 = lean_unsigned_to_nat(0u); -x_32 = lean_array_get_size(x_11); -x_33 = lean_nat_dec_le(x_10, x_31); -if (x_33 == 0) -{ -x_18 = x_30; -x_19 = x_10; -x_20 = x_32; -goto block_27; -} -else -{ -lean_dec(x_10); -x_18 = x_30; -x_19 = x_31; -x_20 = x_32; -goto block_27; +lean_dec(x_13); +x_21 = x_34; +x_22 = x_35; +x_23 = x_36; +goto block_31; } } } @@ -17387,6 +17447,132 @@ x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } +static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("grind", 5, 5); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__2; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Lean", 4, 4); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Parser", 6, 6); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Attr", 4, 4); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__2; +x_2 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__6; +x_3 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__5; +x_4 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__4; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("null", 4, 4); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__8; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("grindMod", 8, 8); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__10; +x_2 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__6; +x_3 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__5; +x_4 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__4; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("grindEq", 7, 7); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__12; +x_2 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__6; +x_3 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__5; +x_4 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__4; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__14() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("=", 1, 1); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__15() { +_start: +{ +lean_object* x_1; +x_1 = l_Array_mkArray0(lean_box(0)); +return x_1; +} +} LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { @@ -17409,43 +17595,151 @@ x_15 = l_Lean_getAttributeImpl(x_13, x_14); x_16 = l_Lean_ofExcept___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem_spec__1___redArg(x_15, x_5, x_6, x_7, x_8); if (lean_obj_tag(x_16) == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; -x_17 = lean_ctor_get(x_11, 0); -lean_inc_ref(x_17); -x_18 = lean_ctor_get(x_16, 0); -lean_inc(x_18); +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); lean_dec_ref(x_16); -x_19 = lean_ctor_get(x_11, 3); -lean_inc(x_19); +x_18 = lean_st_ref_get(x_8); +x_19 = lean_ctor_get(x_18, 0); +lean_inc_ref(x_19); +lean_dec_ref(x_18); +x_20 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__2; +x_21 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__3; +x_22 = l_Lean_getAttributeImpl(x_19, x_21); +x_23 = l_Lean_ofExcept___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem_spec__1___redArg(x_22, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_24 = lean_ctor_get(x_11, 0); +lean_inc_ref(x_24); +x_25 = lean_ctor_get(x_23, 0); +lean_inc(x_25); +lean_dec_ref(x_23); +x_26 = lean_ctor_get(x_11, 3); +lean_inc(x_26); lean_dec(x_11); -x_20 = lean_ctor_get(x_17, 0); -lean_inc(x_20); -x_21 = lean_ctor_get(x_17, 1); -lean_inc(x_21); -x_22 = lean_ctor_get(x_17, 2); -lean_inc_ref(x_22); -lean_dec_ref(x_17); -x_23 = lean_box(0); -lean_inc(x_21); -x_24 = l_List_mapTR_loop___at___00Lean_Meta_mkSizeOfFn_spec__9(x_21, x_23); -x_25 = lean_alloc_closure((void*)(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__1___boxed), 17, 10); -lean_closure_set(x_25, 0, x_1); -lean_closure_set(x_25, 1, x_24); -lean_closure_set(x_25, 2, x_23); -lean_closure_set(x_25, 3, x_21); -lean_closure_set(x_25, 4, x_18); -lean_closure_set(x_25, 5, x_2); -lean_closure_set(x_25, 6, x_3); -lean_closure_set(x_25, 7, x_4); -lean_closure_set(x_25, 8, x_20); -lean_closure_set(x_25, 9, x_19); -x_26 = 0; -x_27 = l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances_loop_spec__0___redArg(x_22, x_25, x_26, x_26, x_5, x_6, x_7, x_8); -return x_27; +x_27 = !lean_is_exclusive(x_24); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_28 = lean_ctor_get(x_24, 0); +x_29 = lean_ctor_get(x_24, 1); +x_30 = lean_ctor_get(x_24, 2); +x_31 = lean_ctor_get(x_7, 5); +x_32 = lean_box(0); +lean_inc(x_29); +x_33 = l_List_mapTR_loop___at___00Lean_Meta_mkSizeOfFn_spec__9(x_29, x_32); +x_34 = 0; +x_35 = l_Lean_SourceInfo_fromRef(x_31, x_34); +x_36 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__7; +lean_inc(x_35); +x_37 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_20); +x_38 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__9; +x_39 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__11; +x_40 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__13; +x_41 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__14; +lean_inc(x_35); +x_42 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_42, 0, x_35); +lean_ctor_set(x_42, 1, x_41); +x_43 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__15; +lean_inc(x_35); +lean_ctor_set_tag(x_24, 1); +lean_ctor_set(x_24, 2, x_43); +lean_ctor_set(x_24, 1, x_38); +lean_ctor_set(x_24, 0, x_35); +lean_inc(x_35); +x_44 = l_Lean_Syntax_node2(x_35, x_40, x_42, x_24); +lean_inc(x_35); +x_45 = l_Lean_Syntax_node1(x_35, x_39, x_44); +lean_inc(x_35); +x_46 = l_Lean_Syntax_node1(x_35, x_38, x_45); +x_47 = l_Lean_Syntax_node2(x_35, x_36, x_37, x_46); +x_48 = lean_box(x_34); +x_49 = lean_alloc_closure((void*)(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__1___boxed), 20, 13); +lean_closure_set(x_49, 0, x_1); +lean_closure_set(x_49, 1, x_33); +lean_closure_set(x_49, 2, x_32); +lean_closure_set(x_49, 3, x_29); +lean_closure_set(x_49, 4, x_48); +lean_closure_set(x_49, 5, x_17); +lean_closure_set(x_49, 6, x_25); +lean_closure_set(x_49, 7, x_47); +lean_closure_set(x_49, 8, x_2); +lean_closure_set(x_49, 9, x_3); +lean_closure_set(x_49, 10, x_4); +lean_closure_set(x_49, 11, x_28); +lean_closure_set(x_49, 12, x_26); +x_50 = l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances_loop_spec__0___redArg(x_30, x_49, x_34, x_34, x_5, x_6, x_7, x_8); +return x_50; } else { -uint8_t x_28; +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_51 = lean_ctor_get(x_24, 0); +x_52 = lean_ctor_get(x_24, 1); +x_53 = lean_ctor_get(x_24, 2); +lean_inc(x_53); +lean_inc(x_52); +lean_inc(x_51); +lean_dec(x_24); +x_54 = lean_ctor_get(x_7, 5); +x_55 = lean_box(0); +lean_inc(x_52); +x_56 = l_List_mapTR_loop___at___00Lean_Meta_mkSizeOfFn_spec__9(x_52, x_55); +x_57 = 0; +x_58 = l_Lean_SourceInfo_fromRef(x_54, x_57); +x_59 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__7; +lean_inc(x_58); +x_60 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_60, 0, x_58); +lean_ctor_set(x_60, 1, x_20); +x_61 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__9; +x_62 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__11; +x_63 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__13; +x_64 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__14; +lean_inc(x_58); +x_65 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_65, 0, x_58); +lean_ctor_set(x_65, 1, x_64); +x_66 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__15; +lean_inc(x_58); +x_67 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_67, 0, x_58); +lean_ctor_set(x_67, 1, x_61); +lean_ctor_set(x_67, 2, x_66); +lean_inc(x_58); +x_68 = l_Lean_Syntax_node2(x_58, x_63, x_65, x_67); +lean_inc(x_58); +x_69 = l_Lean_Syntax_node1(x_58, x_62, x_68); +lean_inc(x_58); +x_70 = l_Lean_Syntax_node1(x_58, x_61, x_69); +x_71 = l_Lean_Syntax_node2(x_58, x_59, x_60, x_70); +x_72 = lean_box(x_57); +x_73 = lean_alloc_closure((void*)(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__1___boxed), 20, 13); +lean_closure_set(x_73, 0, x_1); +lean_closure_set(x_73, 1, x_56); +lean_closure_set(x_73, 2, x_55); +lean_closure_set(x_73, 3, x_52); +lean_closure_set(x_73, 4, x_72); +lean_closure_set(x_73, 5, x_17); +lean_closure_set(x_73, 6, x_25); +lean_closure_set(x_73, 7, x_71); +lean_closure_set(x_73, 8, x_2); +lean_closure_set(x_73, 9, x_3); +lean_closure_set(x_73, 10, x_4); +lean_closure_set(x_73, 11, x_51); +lean_closure_set(x_73, 12, x_26); +x_74 = l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances_loop_spec__0___redArg(x_53, x_73, x_57, x_57, x_5, x_6, x_7, x_8); +return x_74; +} +} +else +{ +uint8_t x_75; +lean_dec(x_17); lean_dec(x_11); lean_dec(x_8); lean_dec_ref(x_7); @@ -17455,26 +17749,55 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec(x_1); -x_28 = !lean_is_exclusive(x_16); -if (x_28 == 0) +x_75 = !lean_is_exclusive(x_23); +if (x_75 == 0) +{ +return x_23; +} +else +{ +lean_object* x_76; lean_object* x_77; +x_76 = lean_ctor_get(x_23, 0); +lean_inc(x_76); +lean_dec(x_23); +x_77 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_77, 0, x_76); +return x_77; +} +} +} +else +{ +uint8_t x_78; +lean_dec(x_11); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +x_78 = !lean_is_exclusive(x_16); +if (x_78 == 0) { return x_16; } else { -lean_object* x_29; lean_object* x_30; -x_29 = lean_ctor_get(x_16, 0); -lean_inc(x_29); +lean_object* x_79; lean_object* x_80; +x_79 = lean_ctor_get(x_16, 0); +lean_inc(x_79); lean_dec(x_16); -x_30 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_30, 0, x_29); -return x_30; +x_80 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_80, 0, x_79); +return x_80; } } } else { -uint8_t x_31; +uint8_t x_81; lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -17483,20 +17806,20 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec(x_1); -x_31 = !lean_is_exclusive(x_10); -if (x_31 == 0) +x_81 = !lean_is_exclusive(x_10); +if (x_81 == 0) { return x_10; } else { -lean_object* x_32; lean_object* x_33; -x_32 = lean_ctor_get(x_10, 0); -lean_inc(x_32); +lean_object* x_82; lean_object* x_83; +x_82 = lean_ctor_get(x_10, 0); +lean_inc(x_82); lean_dec(x_10); -x_33 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_33, 0, x_32); -return x_33; +x_83 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_83, 0, x_82); +return x_83; } } } @@ -17600,12 +17923,16 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; _start: { -lean_object* x_18; -x_18 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +uint8_t x_21; lean_object* x_22; +x_21 = lean_unbox(x_5); +x_22 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__0(x_1, x_2, x_3, x_4, x_21, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); lean_dec_ref(x_3); -return x_18; +return x_22; } } LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__1___boxed(lean_object** _args) { @@ -17626,12 +17953,16 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; _start: { -lean_object* x_18; -x_18 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec_ref(x_12); -return x_18; +uint8_t x_21; lean_object* x_22; +x_21 = lean_unbox(x_5); +x_22 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__1(x_1, x_2, x_3, x_4, x_21, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec_ref(x_15); +return x_22; } } LEAN_EXPORT lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { @@ -18096,18 +18427,10 @@ return x_5; static lean_object* _init_l_Lean_Meta_initFn___closed__4_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Lean", 4, 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_initFn___closed__5_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Meta_initFn___closed__0_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_; x_2 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___redArg___closed__0; -x_3 = l_Lean_Meta_initFn___closed__4_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_; +x_3 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__4; x_4 = l_Lean_Name_mkStr3(x_3, x_2, x_1); return x_4; } @@ -18118,7 +18441,7 @@ _start: lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Meta_initFn___closed__1_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_; x_3 = l_Lean_Meta_initFn___closed__3_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_; -x_4 = l_Lean_Meta_initFn___closed__5_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_; +x_4 = l_Lean_Meta_initFn___closed__4_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_; x_5 = l_Lean_Option_register___at___00Lean_Meta_initFn_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4__spec__0(x_2, x_3, x_4); return x_5; } @@ -18186,7 +18509,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Meta_initFn___closed__0_00___x40_Lean_Meta_SizeOf_3847602515____hygCtx___hyg_4_; x_2 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___redArg___closed__0; -x_3 = l_Lean_Meta_initFn___closed__4_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_; +x_3 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__4; x_4 = l_Lean_Name_mkStr3(x_3, x_2, x_1); return x_4; } @@ -20154,7 +20477,7 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_25; lean_object* x_26; uint8_t x_27; double x_28; double x_29; lean_object* x_30; lean_object* x_31; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; double x_40; double x_41; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_58; lean_object* x_59; lean_object* x_60; double x_61; double x_62; lean_object* x_63; lean_object* x_64; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint8_t x_72; double x_73; double x_74; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; double x_85; double x_86; uint8_t x_87; lean_object* x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; double x_125; double x_126; double x_127; uint8_t x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_153; uint8_t x_154; lean_object* x_155; lean_object* x_156; double x_157; double x_158; uint8_t x_159; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; double x_197; double x_198; double x_199; uint8_t x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; uint8_t x_243; +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_25; uint8_t x_26; double x_27; double x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_36; uint8_t x_37; lean_object* x_38; double x_39; double x_40; lean_object* x_41; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_58; uint8_t x_59; double x_60; double x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_69; lean_object* x_70; uint8_t x_71; double x_72; double x_73; lean_object* x_74; lean_object* x_79; lean_object* x_80; lean_object* x_81; uint8_t x_82; lean_object* x_83; double x_84; double x_85; lean_object* x_86; uint8_t x_87; lean_object* x_121; uint8_t x_122; lean_object* x_123; double x_124; double x_125; lean_object* x_126; double x_127; lean_object* x_131; lean_object* x_132; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_153; lean_object* x_154; uint8_t x_155; double x_156; double x_157; lean_object* x_158; uint8_t x_159; lean_object* x_193; lean_object* x_194; uint8_t x_195; double x_196; double x_197; lean_object* x_198; double x_199; lean_object* x_203; uint8_t x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; uint8_t x_243; x_11 = lean_ctor_get(x_8, 2); x_12 = lean_ctor_get(x_8, 5); lean_inc(x_1); @@ -20192,7 +20515,7 @@ goto block_242; block_24: { lean_object* x_22; lean_object* x_23; -x_22 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__6(x_14, x_16, x_12, x_15, x_17, x_18, x_19, x_20); +x_22 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__6(x_15, x_16, x_12, x_14, x_17, x_18, x_19, x_20); lean_dec(x_20); lean_dec(x_18); lean_dec_ref(x_17); @@ -20202,7 +20525,7 @@ return x_23; } block_35: { -if (x_27 == 0) +if (x_26 == 0) { double x_32; lean_object* x_33; x_32 = l_Lean_addTrace___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__1___closed__0; @@ -20213,8 +20536,8 @@ lean_ctor_set_float(x_33, sizeof(void*)*2, x_32); lean_ctor_set_float(x_33, sizeof(void*)*2 + 8, x_32); lean_ctor_set_uint8(x_33, sizeof(void*)*2 + 16, x_4); x_13 = x_25; -x_14 = x_26; -x_15 = x_30; +x_14 = x_30; +x_15 = x_29; x_16 = x_33; x_17 = x_6; x_18 = x_7; @@ -20229,12 +20552,12 @@ lean_object* x_34; x_34 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_34, 0, x_1); lean_ctor_set(x_34, 1, x_5); -lean_ctor_set_float(x_34, sizeof(void*)*2, x_29); +lean_ctor_set_float(x_34, sizeof(void*)*2, x_27); lean_ctor_set_float(x_34, sizeof(void*)*2 + 8, x_28); lean_ctor_set_uint8(x_34, sizeof(void*)*2 + 16, x_4); x_13 = x_25; -x_14 = x_26; -x_15 = x_30; +x_14 = x_30; +x_15 = x_29; x_16 = x_34; x_17 = x_6; x_18 = x_7; @@ -20251,16 +20574,16 @@ lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); -lean_inc_ref(x_37); -x_42 = lean_apply_6(x_2, x_37, x_6, x_7, x_8, x_9, lean_box(0)); +lean_inc_ref(x_36); +x_42 = lean_apply_6(x_2, x_36, x_6, x_7, x_8, x_9, lean_box(0)); if (lean_obj_tag(x_42) == 0) { lean_object* x_43; x_43 = lean_ctor_get(x_42, 0); lean_inc(x_43); lean_dec_ref(x_42); -x_25 = x_37; -x_26 = x_38; +x_25 = x_36; +x_26 = x_37; x_27 = x_39; x_28 = x_40; x_29 = x_41; @@ -20273,8 +20596,8 @@ else lean_object* x_44; lean_dec_ref(x_42); x_44 = l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5___redArg___closed__1; -x_25 = x_37; -x_26 = x_38; +x_25 = x_36; +x_26 = x_37; x_27 = x_39; x_28 = x_40; x_29 = x_41; @@ -20286,17 +20609,17 @@ goto block_35; block_57: { lean_object* x_55; lean_object* x_56; -x_55 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__6(x_48, x_49, x_12, x_46, x_50, x_51, x_52, x_53); +x_55 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__6(x_48, x_49, x_12, x_47, x_50, x_51, x_52, x_53); lean_dec(x_53); lean_dec(x_51); lean_dec_ref(x_50); lean_dec_ref(x_55); -x_56 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__8___redArg(x_47); +x_56 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__8___redArg(x_46); return x_56; } block_68: { -if (x_58 == 0) +if (x_59 == 0) { double x_65; lean_object* x_66; x_65 = l_Lean_addTrace___at___00__private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop_spec__1___closed__0; @@ -20306,9 +20629,9 @@ lean_ctor_set(x_66, 1, x_5); lean_ctor_set_float(x_66, sizeof(void*)*2, x_65); lean_ctor_set_float(x_66, sizeof(void*)*2 + 8, x_65); lean_ctor_set_uint8(x_66, sizeof(void*)*2 + 16, x_4); -x_46 = x_63; -x_47 = x_60; -x_48 = x_59; +x_46 = x_58; +x_47 = x_63; +x_48 = x_62; x_49 = x_66; x_50 = x_6; x_51 = x_7; @@ -20323,12 +20646,12 @@ lean_object* x_67; x_67 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_67, 0, x_1); lean_ctor_set(x_67, 1, x_5); -lean_ctor_set_float(x_67, sizeof(void*)*2, x_62); -lean_ctor_set_float(x_67, sizeof(void*)*2 + 8, x_61); +lean_ctor_set_float(x_67, sizeof(void*)*2, x_61); +lean_ctor_set_float(x_67, sizeof(void*)*2 + 8, x_60); lean_ctor_set_uint8(x_67, sizeof(void*)*2 + 16, x_4); -x_46 = x_63; -x_47 = x_60; -x_48 = x_59; +x_46 = x_58; +x_47 = x_63; +x_48 = x_62; x_49 = x_67; x_50 = x_6; x_51 = x_7; @@ -20345,17 +20668,17 @@ lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); -lean_inc_ref(x_70); -x_75 = lean_apply_6(x_2, x_70, x_6, x_7, x_8, x_9, lean_box(0)); +lean_inc_ref(x_69); +x_75 = lean_apply_6(x_2, x_69, x_6, x_7, x_8, x_9, lean_box(0)); if (lean_obj_tag(x_75) == 0) { lean_object* x_76; x_76 = lean_ctor_get(x_75, 0); lean_inc(x_76); lean_dec_ref(x_75); -x_58 = x_72; +x_58 = x_69; x_59 = x_71; -x_60 = x_70; +x_60 = x_72; x_61 = x_73; x_62 = x_74; x_63 = x_76; @@ -20367,9 +20690,9 @@ else lean_object* x_77; lean_dec_ref(x_75); x_77 = l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5___redArg___closed__1; -x_58 = x_72; +x_58 = x_69; x_59 = x_71; -x_60 = x_70; +x_60 = x_72; x_61 = x_73; x_62 = x_74; x_63 = x_77; @@ -20405,12 +20728,12 @@ if (x_92 == 0) { lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; x_93 = lean_ctor_get(x_91, 0); -x_94 = l_Lean_PersistentArray_append___redArg(x_83, x_93); +x_94 = l_Lean_PersistentArray_append___redArg(x_86, x_93); lean_dec_ref(x_93); lean_ctor_set(x_91, 0, x_94); x_95 = lean_st_ref_set(x_9, x_89); lean_dec(x_9); -x_96 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__8___redArg(x_82); +x_96 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__8___redArg(x_81); return x_96; } else @@ -20420,7 +20743,7 @@ x_97 = lean_ctor_get_uint64(x_91, sizeof(void*)*1); x_98 = lean_ctor_get(x_91, 0); lean_inc(x_98); lean_dec(x_91); -x_99 = l_Lean_PersistentArray_append___redArg(x_83, x_98); +x_99 = l_Lean_PersistentArray_append___redArg(x_86, x_98); lean_dec_ref(x_98); x_100 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_100, 0, x_99); @@ -20428,7 +20751,7 @@ lean_ctor_set_uint64(x_100, sizeof(void*)*1, x_97); lean_ctor_set(x_89, 4, x_100); x_101 = lean_st_ref_set(x_9, x_89); lean_dec(x_9); -x_102 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__8___redArg(x_82); +x_102 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__8___redArg(x_81); return x_102; } } @@ -20464,7 +20787,7 @@ if (lean_is_exclusive(x_103)) { lean_dec_ref(x_103); x_114 = lean_box(0); } -x_115 = l_Lean_PersistentArray_append___redArg(x_83, x_113); +x_115 = l_Lean_PersistentArray_append___redArg(x_86, x_113); lean_dec_ref(x_113); if (lean_is_scalar(x_114)) { x_116 = lean_alloc_ctor(0, 1, 8); @@ -20485,15 +20808,15 @@ lean_ctor_set(x_117, 7, x_110); lean_ctor_set(x_117, 8, x_111); x_118 = lean_st_ref_set(x_9, x_117); lean_dec(x_9); -x_119 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__8___redArg(x_82); +x_119 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__8___redArg(x_81); return x_119; } } else { -x_36 = lean_box(0); +x_36 = x_81; x_37 = x_82; -x_38 = x_83; +x_38 = lean_box(0); x_39 = x_84; x_40 = x_85; x_41 = x_86; @@ -20502,9 +20825,9 @@ goto block_45; } else { -x_36 = lean_box(0); +x_36 = x_81; x_37 = x_82; -x_38 = x_83; +x_38 = lean_box(0); x_39 = x_84; x_40 = x_85; x_41 = x_86; @@ -20514,11 +20837,11 @@ goto block_45; block_130: { double x_128; uint8_t x_129; -x_128 = lean_float_sub(x_125, x_126); +x_128 = lean_float_sub(x_125, x_124); x_129 = lean_float_decLt(x_127, x_128); -x_81 = lean_box(0); +x_81 = x_121; x_82 = x_122; -x_83 = x_123; +x_83 = lean_box(0); x_84 = x_124; x_85 = x_125; x_86 = x_126; @@ -20529,7 +20852,7 @@ block_152: { lean_object* x_136; double x_137; double x_138; double x_139; double x_140; double x_141; lean_object* x_142; uint8_t x_143; x_136 = lean_io_mono_nanos_now(); -x_137 = lean_float_of_nat(x_133); +x_137 = lean_float_of_nat(x_131); x_138 = l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5___redArg___closed__2; x_139 = lean_float_div(x_137, x_138); x_140 = lean_float_of_nat(x_136); @@ -20538,18 +20861,18 @@ x_142 = l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5___redA x_143 = l_Lean_Option_get___at___00Lean_Meta_mkSizeOfInstances_spec__1(x_11, x_142); if (x_143 == 0) { -x_81 = lean_box(0); -x_82 = x_134; -x_83 = x_132; -x_84 = x_143; +x_81 = x_134; +x_82 = x_143; +x_83 = lean_box(0); +x_84 = x_139; x_85 = x_141; -x_86 = x_139; +x_86 = x_132; x_87 = x_143; goto block_120; } else { -if (x_131 == 0) +if (x_133 == 0) { lean_object* x_144; lean_object* x_145; double x_146; double x_147; double x_148; x_144 = l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5___redArg___closed__4; @@ -20557,12 +20880,12 @@ x_145 = l_Lean_Option_get___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeO x_146 = lean_float_of_nat(x_145); x_147 = l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5___redArg___closed__5; x_148 = lean_float_div(x_146, x_147); -x_121 = lean_box(0); -x_122 = x_134; -x_123 = x_132; -x_124 = x_143; +x_121 = x_134; +x_122 = x_143; +x_123 = lean_box(0); +x_124 = x_139; x_125 = x_141; -x_126 = x_139; +x_126 = x_132; x_127 = x_148; goto block_130; } @@ -20572,12 +20895,12 @@ lean_object* x_149; lean_object* x_150; double x_151; x_149 = l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5___redArg___closed__4; x_150 = l_Lean_Option_get___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__9(x_11, x_149); x_151 = lean_float_of_nat(x_150); -x_121 = lean_box(0); -x_122 = x_134; -x_123 = x_132; -x_124 = x_143; +x_121 = x_134; +x_122 = x_143; +x_123 = lean_box(0); +x_124 = x_139; x_125 = x_141; -x_126 = x_139; +x_126 = x_132; x_127 = x_151; goto block_130; } @@ -20611,12 +20934,12 @@ if (x_164 == 0) { lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; x_165 = lean_ctor_get(x_163, 0); -x_166 = l_Lean_PersistentArray_append___redArg(x_156, x_165); +x_166 = l_Lean_PersistentArray_append___redArg(x_158, x_165); lean_dec_ref(x_165); lean_ctor_set(x_163, 0, x_166); x_167 = lean_st_ref_set(x_9, x_161); lean_dec(x_9); -x_168 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__8___redArg(x_155); +x_168 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__8___redArg(x_153); return x_168; } else @@ -20626,7 +20949,7 @@ x_169 = lean_ctor_get_uint64(x_163, sizeof(void*)*1); x_170 = lean_ctor_get(x_163, 0); lean_inc(x_170); lean_dec(x_163); -x_171 = l_Lean_PersistentArray_append___redArg(x_156, x_170); +x_171 = l_Lean_PersistentArray_append___redArg(x_158, x_170); lean_dec_ref(x_170); x_172 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_172, 0, x_171); @@ -20634,7 +20957,7 @@ lean_ctor_set_uint64(x_172, sizeof(void*)*1, x_169); lean_ctor_set(x_161, 4, x_172); x_173 = lean_st_ref_set(x_9, x_161); lean_dec(x_9); -x_174 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__8___redArg(x_155); +x_174 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__8___redArg(x_153); return x_174; } } @@ -20670,7 +20993,7 @@ if (lean_is_exclusive(x_175)) { lean_dec_ref(x_175); x_186 = lean_box(0); } -x_187 = l_Lean_PersistentArray_append___redArg(x_156, x_185); +x_187 = l_Lean_PersistentArray_append___redArg(x_158, x_185); lean_dec_ref(x_185); if (lean_is_scalar(x_186)) { x_188 = lean_alloc_ctor(0, 1, 8); @@ -20691,16 +21014,16 @@ lean_ctor_set(x_189, 7, x_182); lean_ctor_set(x_189, 8, x_183); x_190 = lean_st_ref_set(x_9, x_189); lean_dec(x_9); -x_191 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__8___redArg(x_155); +x_191 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__8___redArg(x_153); return x_191; } } else { -x_69 = lean_box(0); -x_70 = x_155; -x_71 = x_156; -x_72 = x_154; +x_69 = x_153; +x_70 = lean_box(0); +x_71 = x_155; +x_72 = x_156; x_73 = x_157; x_74 = x_158; goto block_78; @@ -20708,10 +21031,10 @@ goto block_78; } else { -x_69 = lean_box(0); -x_70 = x_155; -x_71 = x_156; -x_72 = x_154; +x_69 = x_153; +x_70 = lean_box(0); +x_71 = x_155; +x_72 = x_156; x_73 = x_157; x_74 = x_158; goto block_78; @@ -20720,12 +21043,12 @@ goto block_78; block_202: { double x_200; uint8_t x_201; -x_200 = lean_float_sub(x_197, x_198); +x_200 = lean_float_sub(x_196, x_197); x_201 = lean_float_decLt(x_199, x_200); -x_153 = lean_box(0); -x_154 = x_196; +x_153 = x_193; +x_154 = lean_box(0); x_155 = x_195; -x_156 = x_194; +x_156 = x_196; x_157 = x_197; x_158 = x_198; x_159 = x_201; @@ -20741,18 +21064,18 @@ x_211 = l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5___redA x_212 = l_Lean_Option_get___at___00Lean_Meta_mkSizeOfInstances_spec__1(x_11, x_211); if (x_212 == 0) { -x_153 = lean_box(0); -x_154 = x_212; -x_155 = x_206; -x_156 = x_204; -x_157 = x_210; -x_158 = x_209; +x_153 = x_206; +x_154 = lean_box(0); +x_155 = x_212; +x_156 = x_210; +x_157 = x_209; +x_158 = x_203; x_159 = x_212; goto block_192; } else { -if (x_203 == 0) +if (x_204 == 0) { lean_object* x_213; lean_object* x_214; double x_215; double x_216; double x_217; x_213 = l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5___redArg___closed__4; @@ -20760,12 +21083,12 @@ x_214 = l_Lean_Option_get___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeO x_215 = lean_float_of_nat(x_214); x_216 = l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5___redArg___closed__5; x_217 = lean_float_div(x_215, x_216); -x_193 = lean_box(0); -x_194 = x_204; -x_195 = x_206; -x_196 = x_212; -x_197 = x_210; -x_198 = x_209; +x_193 = x_206; +x_194 = lean_box(0); +x_195 = x_212; +x_196 = x_210; +x_197 = x_209; +x_198 = x_203; x_199 = x_217; goto block_202; } @@ -20775,12 +21098,12 @@ lean_object* x_218; lean_object* x_219; double x_220; x_218 = l_Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5___redArg___closed__4; x_219 = l_Lean_Option_get___at___00Lean_withTraceNode___at___00Lean_Meta_mkSizeOfInstances_spec__5_spec__9(x_11, x_218); x_220 = lean_float_of_nat(x_219); -x_193 = lean_box(0); -x_194 = x_204; -x_195 = x_206; -x_196 = x_212; -x_197 = x_210; -x_198 = x_209; +x_193 = x_206; +x_194 = lean_box(0); +x_195 = x_212; +x_196 = x_210; +x_197 = x_209; +x_198 = x_203; x_199 = x_220; goto block_202; } @@ -20811,9 +21134,9 @@ x_228 = !lean_is_exclusive(x_227); if (x_228 == 0) { lean_ctor_set_tag(x_227, 1); -x_131 = x_225; +x_131 = x_226; x_132 = x_223; -x_133 = x_226; +x_133 = x_225; x_134 = x_227; x_135 = lean_box(0); goto block_152; @@ -20826,9 +21149,9 @@ lean_inc(x_229); lean_dec(x_227); x_230 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_230, 0, x_229); -x_131 = x_225; +x_131 = x_226; x_132 = x_223; -x_133 = x_226; +x_133 = x_225; x_134 = x_230; x_135 = lean_box(0); goto block_152; @@ -20841,9 +21164,9 @@ x_231 = !lean_is_exclusive(x_227); if (x_231 == 0) { lean_ctor_set_tag(x_227, 0); -x_131 = x_225; +x_131 = x_226; x_132 = x_223; -x_133 = x_226; +x_133 = x_225; x_134 = x_227; x_135 = lean_box(0); goto block_152; @@ -20856,9 +21179,9 @@ lean_inc(x_232); lean_dec(x_227); x_233 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_233, 0, x_232); -x_131 = x_225; +x_131 = x_226; x_132 = x_223; -x_133 = x_226; +x_133 = x_225; x_134 = x_233; x_135 = lean_box(0); goto block_152; @@ -20881,8 +21204,8 @@ x_236 = !lean_is_exclusive(x_235); if (x_236 == 0) { lean_ctor_set_tag(x_235, 1); -x_203 = x_225; -x_204 = x_223; +x_203 = x_223; +x_204 = x_225; x_205 = x_234; x_206 = x_235; x_207 = lean_box(0); @@ -20896,8 +21219,8 @@ lean_inc(x_237); lean_dec(x_235); x_238 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_238, 0, x_237); -x_203 = x_225; -x_204 = x_223; +x_203 = x_223; +x_204 = x_225; x_205 = x_234; x_206 = x_238; x_207 = lean_box(0); @@ -20911,8 +21234,8 @@ x_239 = !lean_is_exclusive(x_235); if (x_239 == 0) { lean_ctor_set_tag(x_235, 0); -x_203 = x_225; -x_204 = x_223; +x_203 = x_223; +x_204 = x_225; x_205 = x_234; x_206 = x_235; x_207 = lean_box(0); @@ -20926,8 +21249,8 @@ lean_inc(x_240); lean_dec(x_235); x_241 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_241, 0, x_240); -x_203 = x_225; -x_204 = x_223; +x_203 = x_223; +x_204 = x_225; x_205 = x_234; x_206 = x_241; x_207 = lean_box(0); @@ -21834,7 +22157,7 @@ static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_initFn___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn___closed__4_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_; +x_1 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__4; x_2 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_initFn___closed__1_00___x40_Lean_Meta_SizeOf_726572898____hygCtx___hyg_2_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; @@ -21874,7 +22197,7 @@ static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_initFn___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn___closed__4_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_; +x_1 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__4; x_2 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_initFn___closed__5_00___x40_Lean_Meta_SizeOf_726572898____hygCtx___hyg_2_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; @@ -21930,7 +22253,7 @@ static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_initFn___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn___closed__4_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_; +x_1 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__4; x_2 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_initFn___closed__11_00___x40_Lean_Meta_SizeOf_726572898____hygCtx___hyg_2_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; @@ -22373,6 +22696,34 @@ l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed_ lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__0); l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__1 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__1(); lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__1); +l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__2 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__2); +l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__3 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__3); +l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__4 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__4); +l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__5 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__5); +l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__6 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__6); +l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__7 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__7); +l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__8 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__8(); +lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__8); +l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__9 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__9(); +lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__9); +l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__10 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__10(); +lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__10); +l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__11 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__11(); +lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__11); +l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__12 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__12(); +lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__12); +l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__13 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__13(); +lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__13); +l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__14 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__14(); +lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__14); +l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__15 = _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__15(); +lean_mark_persistent(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lam__2___closed__15); l_Lean_Meta_initFn___closed__0_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_ = _init_l_Lean_Meta_initFn___closed__0_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_(); lean_mark_persistent(l_Lean_Meta_initFn___closed__0_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_); l_Lean_Meta_initFn___closed__1_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_ = _init_l_Lean_Meta_initFn___closed__1_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_(); @@ -22383,8 +22734,6 @@ l_Lean_Meta_initFn___closed__3_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___ lean_mark_persistent(l_Lean_Meta_initFn___closed__3_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_); l_Lean_Meta_initFn___closed__4_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_ = _init_l_Lean_Meta_initFn___closed__4_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_(); lean_mark_persistent(l_Lean_Meta_initFn___closed__4_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_); -l_Lean_Meta_initFn___closed__5_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_ = _init_l_Lean_Meta_initFn___closed__5_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_(); -lean_mark_persistent(l_Lean_Meta_initFn___closed__5_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_); if (builtin) {res = l_Lean_Meta_initFn_00___x40_Lean_Meta_SizeOf_3942519336____hygCtx___hyg_4_(); if (lean_io_result_is_error(res)) return res; l_Lean_Meta_genSizeOf = lean_io_result_get_value(res); diff --git a/stage0/stdlib/Lean/Meta/Tactic/FunInd.c b/stage0/stdlib/Lean/Meta/Tactic/FunInd.c index 9b2b14116e..fce3d42b70 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/FunInd.c +++ b/stage0/stdlib/Lean/Meta/Tactic/FunInd.c @@ -13,7 +13,6 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__42(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forInAux___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__0_spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_inProdLambdaLastArg___closed__0; static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__16; @@ -21,6 +20,7 @@ LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHas LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__12(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLambda___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__6___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); +static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg___closed__2; lean_object* l_Lean_Expr_fvarId_x3f(lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__16_00___x40_Lean_Meta_Tactic_FunInd_922168289____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00Lean_Tactic_FunInd_rwMatcher_spec__12_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -31,6 +31,7 @@ lean_object* l_Lean_Meta_mkEqHEq(lean_object*, lean_object*, lean_object*, lean_ static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___redArg___closed__2; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__2___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43___redArg___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwMData___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerReservedNameAction(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -51,12 +52,11 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go_spec__4(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__31___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__42_spec__42(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLet___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__41___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__9; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_tell___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__20; @@ -64,6 +64,7 @@ static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__8; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__21(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__2_spec__2___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__35_spec__35___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__3___closed__0; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__6; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__4_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -75,6 +76,7 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_m LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___00Lean_Meta_withErasedFVars___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__36_spec__36___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_unpackMutualInduction_doRealize___closed__1; LEAN_EXPORT lean_object* l_Array_contains___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__28___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_finIdxOf_x3f___at___00Array_idxOf_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__18_spec__18(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__18_spec__18___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -85,6 +87,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_ lean_object* l_Lean_Core_instMonadCoreM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forInAux___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__10___closed__3; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__12___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -96,20 +99,20 @@ lean_object* l_Lean_mkAppN(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_eval___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__1_00___x40_Lean_Meta_Tactic_FunInd_922168289____hygCtx___hyg_2_; -LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47_spec__47___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_shift_right(size_t, size_t); uint8_t l_Lean_ExprStructEq_beq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__1___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwLetWith_spec__0___redArg(lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__14; LEAN_EXPORT uint8_t l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___lam__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_branch___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_addTrace___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__2___closed__0; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___redArg___closed__4; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__13(lean_object*, lean_object*); @@ -121,15 +124,17 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_de static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__21___closed__2; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__29(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___lam__2___closed__0; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__29(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__35_spec__35(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_unpackMutualInduction_doRealize___lam__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInduction___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__5; -static lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47_spec__47___redArg___closed__1; static lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__5___redArg___closed__5; static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_withErasedFVars___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__3___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__33_spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__4_spec__4_spec__4___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__18___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32_spec__32_spec__32___lam__0___closed__4; @@ -138,6 +143,7 @@ LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__pri static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__3; static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___lam__2___closed__5; static lean_object* l_Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0___closed__0; +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__47(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkNoConfusion(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__1___closed__2; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -155,7 +161,6 @@ LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknow lean_object* l_StateT_instMonad___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__30_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__4; static lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32_spec__32_spec__32___lam__0___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__2___boxed(lean_object*, lean_object*, lean_object*); @@ -174,7 +179,6 @@ lean_object* l_Lean_ConstantInfo_type(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__18(uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__14; lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_header(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -185,6 +189,7 @@ LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Meta_Tac uint8_t lean_usize_dec_le(size_t, size_t); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__11; +LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_setNaryFunIndInfo(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -194,21 +199,24 @@ lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*, lean_o lean_object* l_Lean_ConstantInfo_levelParams(lean_object*); lean_object* l_Lean_indentD(lean_object*); double lean_float_div(double, double); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__43___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___lam__0(lean_object*, lean_object*); lean_object* l_Lean_Expr_projExpr_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__9___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___redArg(lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__41___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___redArg___closed__13; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_assertIHs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwFun_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__22_spec__22___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Exception_isInterrupt(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_ask___redArg(lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__7; static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__23; +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__0; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__43___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_setNaryFunIndInfo_spec__2_spec__2___redArg___closed__2; static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__7; @@ -218,9 +226,8 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_re LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInduction___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__33_spec__33(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_localMapM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__33___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg___closed__1; LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__3(lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__0; @@ -230,6 +237,7 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_in lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_LocalContext_foldlM___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__11(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMatcher(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__17___closed__1; @@ -241,11 +249,13 @@ lean_object* l_Lean_Meta_forallMetaTelescope(lean_object*, uint8_t, lean_object* LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_inProdLambdaLastArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forInAux___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__1_spec__1_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50_spec__50(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isLet(lean_object*); lean_object* l_Lean_Elab_Structural_RecArgInfo_pickIndicesMajor(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); lean_object* l_Array_mask___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__41___redArg(lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___redArg___closed__10; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__0; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__23___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -258,10 +268,12 @@ uint8_t l_Lean_instBEqMVarId_beq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___00Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isApp(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__0___closed__0; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__4; extern lean_object* l_Lean_Meta_instInhabitedConfigWithKey___private__1; LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__19___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Array_filterMapM___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__33_spec__33(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___redArg___closed__1; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_assertIHs_spec__0(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -271,6 +283,7 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Uns static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__21; static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___closed__9; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__0(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Option_get___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__48(lean_object*, lean_object*); lean_object* l_Lean_Expr_sort___override(lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_setNaryFunIndInfo_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -279,7 +292,6 @@ lean_object* l_Array_qpartition___redArg(lean_object*, lean_object*, lean_object LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofList(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_unpackMutualInduction_doRealize___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -287,6 +299,7 @@ lean_object* lean_array_push(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50_spec__50___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -315,12 +328,10 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_in LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__40(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___00Lean_Meta_withErasedFVars___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__3_spec__5___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__27___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_unknownIdentifierMessageTag; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_isFunCasesName___closed__1; uint8_t lean_usize_dec_eq(size_t, size_t); static lean_object* l_Lean_Tactic_FunInd_isFunInductName___closed__0; -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__33_spec__33___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___lam__2___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_find(lean_object*, lean_object*); @@ -333,10 +344,10 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Structural_Positions_groupAndSort___at___00 uint8_t l_Lean_Name_isAnonymous(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Option_get___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__45(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__4_spec__4___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_withLetDecls_go_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ST_Prim_Ref_get___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__4; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__0(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -350,8 +361,10 @@ LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tac lean_object* l_Lean_Elab_Structural_getRecArgInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__25___redArg(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +static double l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__0; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__29___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___00Lean_Meta_withErasedFVars___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__3_spec__5___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_setNaryFunIndInfo_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); @@ -363,8 +376,8 @@ static lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___ lean_object* lean_mk_array(lean_object*, lean_object*); static lean_object* l_Lean_throwMaxRecDepthAt___at___00Lean_Core_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__6_spec__6___redArg___closed__4; uint64_t l_Lean_ExprStructEq_hash(lean_object*); -static double l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__6; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwLetWith___closed__4; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30___boxed(lean_object**); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__23___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_insert___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__8(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__16___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -373,22 +386,20 @@ LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Tactic_FunInd_0__L static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___closed__8; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__35_spec__35___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getPos_x3f(lean_object*, uint8_t); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__16; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___closed__1; -static double l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__0; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__8_00___x40_Lean_Meta_Tactic_FunInd_922168289____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases_spec__4_spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__17___closed__4; static lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32_spec__32_spec__32___closed__1; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__0_00___x40_Lean_Meta_Tactic_FunInd_4256658486____hygCtx___hyg_2_; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__6; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__7; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__0___closed__1; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__4___closed__5; lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); @@ -411,11 +422,9 @@ LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstInfo_ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__9_00___x40_Lean_Meta_Tactic_FunInd_922168289____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l_Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__31___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withErasedFVars___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); static lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__8_spec__8___redArg___closed__0; -LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__5___redArg___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_allHeqToEq___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5_00___x40_Lean_Meta_Tactic_FunInd_4256658486____hygCtx___hyg_2_; @@ -429,12 +438,14 @@ LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkU uint8_t lean_float_decLt(double, double); LEAN_EXPORT lean_object* l_Lean_observing_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f___lam__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__9; +static lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50_spec__50___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__15; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30_spec__30___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__22_spec__22(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__23___boxed(lean_object**); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___closed__6; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_withLetDecls___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_MVarId_assign___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__6_spec__6_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -450,10 +461,8 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_in lean_object* l_Nat_blt___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_inlineExprTrailing(lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__2; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalContextImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MessageData_hasSyntheticSorry(lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__0___closed__1; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__4_spec__4(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__9; LEAN_EXPORT lean_object* l_Lean_Core_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -465,13 +474,13 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_de lean_object* lean_array_fget_borrowed(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__4___closed__3; lean_object* l_Lean_Meta_PProdN_projM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___redArg___closed__18; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__10___closed__0; +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Array_filterMapM___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__33_spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__21(uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases_spec__0(size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__33___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__0; static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___lam__2___closed__2; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Core_transform_visit_visitPost___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -479,6 +488,7 @@ uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__5; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__12; lean_object* l_Lean_Meta_PProdN_packLambdas___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30_spec__30___redArg___lam__1___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forInAux___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__0_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__11___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_withLetDecls_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -492,6 +502,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__23(uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__3; static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases_spec__4_spec__4___closed__2; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Array_contains___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__15_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -500,12 +511,12 @@ static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__7; lean_object* lean_io_get_num_heartbeats(); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLet___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__7_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__17(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_cleanupAnnotations(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Nat_Control_0__Nat_foldRevM_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__20___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_trace_profiler_useHeartbeats; -LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_withLetDecls_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -529,7 +540,6 @@ static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknow LEAN_EXPORT uint8_t l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Array_contains___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__28_spec__28(lean_object*, lean_object*, size_t, size_t); lean_object* l_Lean_MessageData_note(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_branch___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__10(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -542,16 +552,17 @@ static lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Meta_Tactic_F LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__4___closed__1; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__35___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__14_00___x40_Lean_Meta_Tactic_FunInd_922168289____hygCtx___hyg_2_; uint8_t lean_string_dec_eq(lean_object*, lean_object*); static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_setNaryFunIndInfo_spec__2_spec__2___redArg___closed__0; LEAN_EXPORT lean_object* l_panic___at___00Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__24___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47_spec__47___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_MVarId_assign___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__6_spec__6_spec__6_spec__6(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitForall___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__4_spec__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__5___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forInAux___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__1_spec__1_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50_spec__50___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_FixedParamPerm_forallTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__39___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -560,18 +571,17 @@ lean_object* l_Lean_Exception_toMessageData(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__8_spec__12___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_run___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase___lam__0___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__28___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_getConstVal___at___00Lean_mkConstWithLevelParams___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withErasedFVars___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_withLetDecls___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__15(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Tactic_FunInd_rwMatcher_spec__5(size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30_spec__30___redArg___lam__0___boxed(lean_object**); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__0___closed__2; static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwFun_spec__1_spec__1___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -608,17 +618,18 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_un LEAN_EXPORT lean_object* l_Lean_observing_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instMonad___redArg(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__27___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___00Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__25___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__6___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_FixedParamPerm_forallTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__39___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_getConstInfoInduct___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__2___closed__0; static lean_object* l_Lean_throwMaxRecDepthAt___at___00Lean_Core_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__6_spec__6___redArg___closed__5; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__10; extern lean_object* l_Lean_Elab_WF_eqnInfoExt; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_get___at___00Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32_spec__32_spec__32_spec__32___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__7; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__1_spec__5_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M2_run___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__12_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -626,8 +637,8 @@ lean_object* l_Lean_LocalDecl_index(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_inLastArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__21_spec__21___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__10; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___closed__2; static lean_object* l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__5; LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -636,6 +647,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_branch___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwLetWith_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -648,6 +660,7 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Uns LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__7___boxed(lean_object**); uint8_t l_Lean_Expr_isSemiOutParam(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__9(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__35(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -658,7 +671,7 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_m LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___00Lean_Tactic_FunInd_rwMatcher_spec__7(lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Option_get___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__45___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isLambda(lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__9; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -666,7 +679,6 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__21_0 LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwLetWith_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__4___closed__3; -LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47_spec__47___redArg___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_ask(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_tell___redArg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__0; @@ -679,17 +691,22 @@ size_t lean_ptr_addr(lean_object*); lean_object* l_Lean_Meta_isTypeCorrect(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__0(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0_00___x40_Lean_Meta_Tactic_FunInd_4256658486____hygCtx___hyg_2_(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50_spec__50___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__15(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitPost___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_FixedParamPerm_instantiateLambda(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__29___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___00Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__47___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__4_00___x40_Lean_Meta_Tactic_FunInd_4256658486____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l_Array_isEqvAux___at___00Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__10___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__35___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwFun(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__11; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__5; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__35___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMatcher___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingImp(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_MVarId_assign___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__6_spec__6___redArg(lean_object*, lean_object*, lean_object*); @@ -699,9 +716,7 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_de LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6___redArg___closed__3; static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___redArg___closed__16; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_isFunInductName___closed__2; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__21_spec__21(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -713,12 +728,11 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_inProdLambdaLastArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__9; LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__22_spec__22___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__5___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__1___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Array_contains___at___00Lean_Meta_withErasedFVars___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__3_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___00Lean_Core_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__6_spec__6___redArg___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50_spec__50___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getNumHeadForalls(lean_object*); static lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2___closed__0; @@ -742,9 +756,9 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI LEAN_EXPORT lean_object* l_Lean_Core_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__6___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__12_spec__12___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__11; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__19; -static lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47_spec__47___redArg___closed__0; static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__24; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_getConstInfoDefn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getFunInductName(lean_object*, uint8_t); @@ -762,7 +776,6 @@ LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Meta_ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_projectMutualInduct_spec__0_spec__0___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at___00__private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___00Lean_PersistentArray_foldlM___at___00Lean_LocalContext_foldlM___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitForall___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__4___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0___lam__1___closed__0; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__6___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go_spec__1___redArg(lean_object*, lean_object*, lean_object*); @@ -775,9 +788,9 @@ lean_object* l_Lean_inlineExpr(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__24_spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__12(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__1; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47_spec__47___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__11; @@ -785,6 +798,7 @@ lean_object* l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(lean_object*, lean_o LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__13(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__22_spec__22___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__21___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -795,9 +809,7 @@ static lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at__ static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__13; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__0_spec__0___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___boxed(lean_object**); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__25; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__28___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__6_00___x40_Lean_Meta_Tactic_FunInd_922168289____hygCtx___hyg_2_; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deduplicateIHs___closed__0; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__21___lam__0(uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -812,19 +824,21 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_m static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__5; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_MVarId_assign___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__6_spec__6_spec__6_spec__6_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___00Lean_throwError___at___00Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__4_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__3___closed__1; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__2; -LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47_spec__47___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_exec___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__6___closed__0; LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__21___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn_00___x40_Lean_Meta_Tactic_FunInd_922168289____hygCtx___hyg_2_(); +static lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__21___boxed(lean_object**); lean_object* l_instMonadEST(lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30_spec__30___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__3; lean_object* l_Lean_MVarId_getType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); @@ -832,8 +846,8 @@ lean_object* l_Array_empty(lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__4___closed__8; LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__7___closed__0; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isEq(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__33_spec__33___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwFun_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -843,6 +857,7 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_de LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__0___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_inLastArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_setNaryFunIndInfo___closed__1; +static lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50_spec__50___redArg___closed__0; lean_object* l_Lean_Elab_Structural_Positions_numIndices(lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__23___redArg___lam__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__11___redArg(lean_object*, lean_object*, lean_object*); @@ -852,7 +867,6 @@ static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__13; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__29___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__30___redArg(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__15_00___x40_Lean_Meta_Tactic_FunInd_922168289____hygCtx___hyg_2_; -LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__7; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__4___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__16___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -893,9 +907,11 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__8_spec__8___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_withLetDecls_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__1___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__3___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__18___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__12; LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_projIdx_x21(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_projectMutualInduct___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -908,12 +924,13 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_m LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_check(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_unpackMutualInduction_doRealize___closed__0; lean_object* l_Lean_Meta_Match_MatcherInfo_numAlts(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M2_branch___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__47___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Tactic_FunInd_rwMatcher_spec__10_spec__10(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__11; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwMaxRecDepthAt___at___00Lean_Core_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__6_spec__6___redArg___closed__3; @@ -922,8 +939,8 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_Persis LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__17___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getFunIndInfoForInduct_x3f___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__28___redArg___lam__3(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwFun___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__16___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_withLetDecls___redArg___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwLetWith___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -931,7 +948,6 @@ lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*, lean LEAN_EXPORT lean_object* l___private_Init_Data_Nat_Control_0__Nat_foldRevM_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__20___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M2_run___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_Tactic_FunInd_rwMatcher_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_forallE___override(lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_withLetDecls___redArg___closed__1; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___boxed(lean_object**); @@ -969,18 +985,17 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Core_transform_ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_eval___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__5; lean_object* lean_array_pop(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkAppM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__12; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Meta_withErasedFVars___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__3_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__7; static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__26; lean_object* l_Lean_Elab_getParamRevDeps(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_projectMutualInduct(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47_spec__47___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__35_spec__35___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__5___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLambda___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__12_00___x40_Lean_Meta_Tactic_FunInd_922168289____hygCtx___hyg_2_; @@ -992,22 +1007,21 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_de lean_object* lean_st_mk_ref(lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_run___redArg___closed__0; lean_object* l_Lean_MVarId_tryClearMany_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__9_spec__9(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_is_no_confusion(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInduction(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__5___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_filterMapM___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__33___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__30_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_Tactic_FunInd_rwMatcher_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__13; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__28___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInduction___lam__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MessageData_hasTag(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_withLetDecls_go___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1016,7 +1030,6 @@ uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_idxOf_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__18___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__4_spec__4_spec__4_spec__4_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47_spec__47___redArg___closed__2; lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); uint8_t lean_is_out_param(lean_object*); lean_object* l_ST_Prim_mkRef___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -1025,15 +1038,16 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_ofSubarray___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__17(size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_isFunInductName___closed__3; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Meta_withErasedFVars___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__3_spec__6(lean_object*, lean_object*, size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static size_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0_spec__0___redArg___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50_spec__50___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l_StateT_instMonad___redArg___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1053,14 +1067,12 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___00Lean_Meta_withErasedFVars LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00Lean_Tactic_FunInd_rwMatcher_spec__12_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__42___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at___00__private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___00Lean_PersistentArray_foldlM___at___00Lean_LocalContext_foldlM___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__8; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__5___redArg___closed__6; static lean_object* l_Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6___redArg___closed__1; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__14(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___closed__0; lean_object* l_Lean_MVarId_revert(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_mono_nanos_now(); lean_object* l_Lean_Elab_FixedParamPerm_instantiateForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1106,14 +1118,15 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_fo LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forInAux___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__1_spec__1_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentArray_push___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Tactic_FunInd_rwMatcher_spec__10_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_localMapM___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Nat_Control_0__Nat_foldRevM_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43___redArg___closed__1; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30_spec__30___redArg___lam__2___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30_spec__30___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__15___boxed(lean_object**); @@ -1134,13 +1147,13 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__5_00___x40_Lean_Meta_Tactic_FunInd_922168289____hygCtx___hyg_2_; lean_object* l_Lean_Meta_mkLetFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__41___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__13_00___x40_Lean_Meta_Tactic_FunInd_922168289____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_spec__2_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__8_spec__8___redArg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_projectMutualInduct_spec__0_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkConstWithLevelParams___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__15(size_t, size_t, lean_object*); @@ -1175,7 +1188,6 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_de LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__2___redArg(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkPProdFstM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__11_00___x40_Lean_Meta_Tactic_FunInd_922168289____hygCtx___hyg_2_; -LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47_spec__47___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_foldlM___at___00Lean_LocalContext_foldlM___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__5; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__16___closed__1; @@ -1208,13 +1220,14 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__10_0 LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_inProdLambdaLastArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_go(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_withLetDecls_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__29___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_StateT_bind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__4(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_range(lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__12; LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Option_get___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__48___boxed(lean_object*, lean_object*); static lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__5___redArg___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations___lam__1(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__2___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__18_spec__18___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1232,13 +1245,12 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI static lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__0; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__5___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appFn_x21(lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__2___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__19(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__19; -LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases_spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1248,6 +1260,7 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_ LEAN_EXPORT lean_object* l_Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32_spec__32(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30___redArg___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__13_spec__13(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___lam__2___closed__7; @@ -1256,7 +1269,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___00Lean_Persisten LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Structural_argsInGroup(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___redArg___closed__14; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__2___closed__3; LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___00Lean_Tactic_FunInd_rwMatcher_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); @@ -1265,7 +1277,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32___boxed(lean_object**); lean_object* l_Lean_MVarId_assert(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__33(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2___closed__1; @@ -1289,6 +1300,8 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_se LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_projectMutualInduct_spec__0_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitForall___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__4_spec__4___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLet___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__7_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_filterMapM___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__33(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00Lean_Tactic_FunInd_rwMatcher_spec__12_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__6; @@ -1304,7 +1317,6 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_bu LEAN_EXPORT lean_object* l_Lean_getConstVal___at___00Lean_mkConstWithLevelParams___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__9_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__11; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_isFunCasesName___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__17___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Array_contains___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deduplicateIHs_spec__0_spec__0(lean_object*, lean_object*, size_t, size_t); @@ -1316,7 +1328,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lea LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___closed__2; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__4_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_filterMapM___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__31___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___00Array_zipWithMAux___at___00Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__25_spec__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_tell(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1333,7 +1344,6 @@ static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_l LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInduction___closed__0; lean_object* l_Lean_MessageData_ofExpr(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwLetWith_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1349,15 +1359,16 @@ LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifie static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_setNaryFunIndInfo___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___boxed(lean_object**); static lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherApp___at___00Lean_Tactic_FunInd_rwMatcher_spec__4___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__29___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__23___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwLetWith___closed__2; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__8; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__43(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___redArg___closed__15; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__28___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_withLetDecls___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInduction___lam__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1380,11 +1391,13 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Uns LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___00Lean_Meta_withErasedFVars___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__36_spec__36___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__0___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwIfWith___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__19; lean_object* l_Lean_Expr_getAppNumArgs(lean_object*); static lean_object* l_Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23___redArg___closed__1; lean_object* l_Lean_LocalDecl_userName(lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30_spec__30___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___00Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__9; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__23___redArg___lam__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1410,27 +1423,23 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI LEAN_EXPORT lean_object* l_panic___at___00Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__24___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deduplicateIHs_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_FixedParams_0__Lean_Elab_FixedParamPerm_forallTelescopeImpl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isFVarOf(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__0___closed__1; LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__31___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__1; static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__4; -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__40___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__21___closed__0; -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__0; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__4___closed__5; lean_object* l_Lean_Meta_MatcherApp_inferMatchType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___closed__3; LEAN_EXPORT lean_object* l_panic___at___00Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__7(lean_object*); static lean_object* l_Lean_throwMaxRecDepthAt___at___00Lean_Core_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__6_spec__6___redArg___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg(lean_object*, lean_object*); lean_object* l_Array_zipMasked___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__42_spec__42___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations___lam__0___closed__0; @@ -1438,7 +1447,9 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__23(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50_spec__50___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___00Lean_PersistentArray_foldlM___at___00Lean_LocalContext_foldlM___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deduplicateIHs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1454,10 +1465,8 @@ uint8_t l_Lean_Name_hasMacroScopes(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__3___closed__1; LEAN_EXPORT lean_object* l_panic___at___00Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__4; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f___lam__0___closed__0; lean_object* l_Lean_Elab_FixedParamPerm_buildArgs___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_MVarId_assign___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__6_spec__6_spec__6___redArg___closed__0; @@ -1466,17 +1475,16 @@ LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___00Lean_Elab_Structural_Posit uint8_t l_Lean_instBEqFVarId_beq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_bindingDomain_x21(lean_object*); +static lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43___redArg___closed__5; lean_object* l_Lean_Expr_letValue_x21(lean_object*); +lean_object* l_Subarray_empty(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16___lam__3(lean_object*, lean_object*, lean_object*, uint8_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__2; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__33___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__14; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16___boxed__const__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__18_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_withLetDecls___redArg___closed__0; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__40___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__6; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__28___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___lam__2___closed__2; static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__23; static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__0; @@ -1493,8 +1501,6 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Uns static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__4___closed__0; static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__2; LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___closed__1; -static lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__5; lean_object* l_Lean_Meta_Simp_Result_addLambdas(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwLetWith___closed__3; LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1504,6 +1510,7 @@ lean_object* l_Lean_Meta_instMonadMetaM___lam__0___boxed(lean_object*, lean_obje LEAN_EXPORT lean_object* l_Lean_mkConstWithLevelParams___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at___00__private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___00Lean_PersistentArray_foldlM___at___00Lean_LocalContext_foldlM___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__0_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_withLetDecls_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_projectMutualInduct_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__0_spec__0___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1523,6 +1530,7 @@ lean_object* l_Lean_collectLevelParams(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__2___closed__2; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_FixedParamPerm_forallTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__39___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30_spec__30___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__17(lean_object*, size_t, size_t, lean_object*); static lean_object* l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__2; @@ -1539,8 +1547,6 @@ static lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at__ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_setNaryFunIndInfo___closed__8; -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__40___redArg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__22_spec__22___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l_Lean_instHashableMVarId_hash(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1563,6 +1569,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00Lean_Tactic_FunInd_rwMatcher_spec__12___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__11___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6(lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstInfoInduct___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__12; @@ -1578,6 +1585,7 @@ lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); uint8_t l_Lean_Meta_isMatcherAppCore(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_unpackMutualInduction_doRealize(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___redArg___closed__0; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__35___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__4___closed__7; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitForall___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__4(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1585,17 +1593,14 @@ static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__11; LEAN_EXPORT uint8_t l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__19(lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_MVarId_assign___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__6_spec__6_spec__6___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_PersistentArray_toArray___redArg(lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__28___redArg___lam__3___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__28___redArg___lam__0___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go_spec__2_spec__2___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1609,7 +1614,6 @@ LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___00Lean_throwUn static lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__13_spec__13___closed__1; lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); static lean_object* l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__1; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__28___redArg___lam__1___boxed(lean_object**); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__10; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__17___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1619,6 +1623,7 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_fo lean_object* l_Lean_EnvironmentHeader_moduleNames(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__22___redArg(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__45_spec__45___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__16___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__4___boxed(lean_object**); static lean_object* l_panic___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__24___closed__0; @@ -1634,15 +1639,14 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__10; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_MVarId_assign___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__6_spec__6(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Environment_isSafeDefinition(lean_object*, lean_object*); lean_object* l_Lean_Meta_matchConstructorApp_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__41___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__3; uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForallFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_isBRecOnRecursor(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_withRewrittenMotiveArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__28___redArg___lam__2___boxed(lean_object**); lean_object* lean_local_ctx_erase(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_instBEqBinderInfo_beq(uint8_t, uint8_t); @@ -1665,7 +1669,6 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_se lean_object* l_Lean_Meta_instInhabitedMetaM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___00Lean_Tactic_FunInd_rwMatcher_spec__6___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__31___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__28(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__8_00___x40_Lean_Meta_Tactic_FunInd_4256658486____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__12; @@ -1683,9 +1686,9 @@ LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_ lean_object* l_Array_toSubarray___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___lam__2___closed__9; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Array_filterMapM___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__31_spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__2_00___x40_Lean_Meta_Tactic_FunInd_4256658486____hygCtx___hyg_2_; lean_object* lean_panic_fn(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_saveState___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__4_spec__4_spec__4_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__11(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1697,6 +1700,7 @@ extern lean_object* l_Lean_Meta_Match_instInhabitedAltParamInfo_default; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M2_branch___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___redArg___closed__9; +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__1(lean_object*, lean_object*); lean_object* l_List_reverse___redArg(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1726,6 +1730,7 @@ lean_object* l_Array_append___redArg(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Option_get___at___00Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32_spec__32_spec__32_spec__32(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__4_spec__4_spec__4_spec__4_spec__4_spec__4___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__41(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherApp___at___00Lean_Tactic_FunInd_rwMatcher_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__3; lean_object* l_Lean_Meta_Simp_mkCongr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1770,7 +1775,6 @@ static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_l uint8_t lean_string_memcmp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__4_spec__4_spec__4_spec__4_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__17___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__11; lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); static lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2___redArg___closed__1; @@ -1791,14 +1795,12 @@ LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__8_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__13(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__40(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__45_spec__45(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34___redArg___lam__0___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go_spec__4_spec__4(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___closed__1; lean_object* l_Subarray_size___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_observing_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__27___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__40___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__8(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__4_spec__4_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate_rev(lean_object*, lean_object*); @@ -1814,6 +1816,7 @@ LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnkn lean_object* l_Lean_Meta_Simp_mkCongrArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_MatcherApp_altNumParams(lean_object*); lean_object* l_Lean_Meta_getUnfoldEqnFor_x3f(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_PersistentArray_forInAux___at___00Lean_PersistentArray_forIn___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__1_spec__1_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32_spec__32_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1841,11 +1844,14 @@ lean_object* l_Lean_instantiateMVarsCore(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__19; LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___boxed__const__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInduction___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__8; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__1; lean_object* l_Lean_Meta_PProdN_stripProjs(lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__0_spec__0___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1855,7 +1861,7 @@ LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logError__ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__6; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00Lean_Tactic_FunInd_rwMatcher_spec__12(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43___redArg___closed__7; size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_assertIHs_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__22(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1873,7 +1879,6 @@ LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tac LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FVarId_getDecl___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__13_spec__13___closed__0; lean_object* l_Lean_Meta_mkEqOfHEq(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__15; @@ -1889,6 +1894,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__14; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvar___override(lean_object*); LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__8_spec__9_spec__9___redArg(lean_object*, lean_object*, lean_object*); @@ -1901,7 +1907,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___00Lean_throwError___at___00Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__4_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__6; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_eval___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_localMapM_spec__0(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1912,6 +1917,7 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_ab LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__7; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_exec___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1924,6 +1930,7 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_fo LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___00Array_zipWithMAux___at___00Lean_Elab_Structural_Positions_mapMwith___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__25_spec__25___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*); lean_object* l_Lean_FVarId_getType___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__20_00___x40_Lean_Meta_Tactic_FunInd_922168289____hygCtx___hyg_2_; LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___00Lean_Meta_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__11_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1941,6 +1948,7 @@ static lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Met LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionCase___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__9_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__30___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1979,11 +1987,13 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_in lean_object* lean_string_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_allHeqToEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___00Lean_Core_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_ArgsPacker_unpack(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__17; +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34___redArg___lam__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2010,7 +2020,6 @@ static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_de static lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___lam__2___closed__4; lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__8_spec__9_spec__9(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47_spec__47(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_localMapM_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___lam__2___closed__6; @@ -2026,8 +2035,9 @@ LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Met uint8_t l_Lean_Expr_isMData(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__8___redArg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__25___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static double l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__3; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__45(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___closed__0; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__10(lean_object*, lean_object*); @@ -2041,9 +2051,11 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__18___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__45___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_branch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00__private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__8_spec__8___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_setNaryFunIndInfo___closed__10; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__29___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__13_spec__13(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__2___closed__0; static lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__5; @@ -2057,25 +2069,21 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___closed__5; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__4_spec__4_spec__4_spec__4_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__3_00___x40_Lean_Meta_Tactic_FunInd_922168289____hygCtx___hyg_2_; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__13; LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_filterMapM___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__31(lean_object*, lean_object*, lean_object*); uint64_t l_Lean_Meta_TransparencyMode_toUInt64(uint8_t); LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__47___redArg___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00Lean_Tactic_FunInd_rwMatcher_spec__12_spec__12(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateLambda(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_mkLambdaFVarsMasked___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_observing_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_exceptEmoji___redArg(lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__3; -static lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__47_spec__47___redArg___closed__3; static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__2; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__33___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__11___closed__2; static lean_object* l_Lean_getConstInfoRec___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__3___closed__1; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__27___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwMData___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static uint64_t l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__8; @@ -2093,6 +2101,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_Persist lean_object* l_Lean_Expr_beta(lean_object*, lean_object*); lean_object* l_Lean_mkApp5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__5___redArg___closed__2; +static double l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43___redArg___closed__6; lean_object* l_Lean_Expr_mdataExpr_x21(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_mkLambdaFVarsMasked(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_spec__0___redArg(uint8_t, lean_object*, size_t, size_t, lean_object*); @@ -2126,14 +2135,16 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI LEAN_EXPORT lean_object* l_List_mapTR_loop___at___00Lean_mkConstWithLevelParams___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__9_spec__10(lean_object*, lean_object*); lean_object* l_Lean_Expr_consumeMData(lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30_spec__30(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__38___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00Lean_Tactic_FunInd_rwMatcher_spec__12_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__31(uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__5___closed__0; static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__13; LEAN_EXPORT lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_mkLambdaFVarsMasked_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50_spec__50___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__2; LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_idxOfAux___at___00Array_finIdxOf_x3f___at___00Array_idxOf_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__18_spec__18_spec__18___boxed(lean_object*, lean_object*, lean_object*); @@ -2147,6 +2158,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___00__private_ LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__31___redArg___lam__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0___closed__2; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30_spec__30___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_refinedArguments_go_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_FixedParamPerm_forallTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__39(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2154,7 +2166,10 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withErasedFVars___at___00__private_Lean_Met static lean_object* l_Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0___closed__5; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwFun_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__6; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_lambdaTelescope1___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__35___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_get_x21Internal___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30_spec__30___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__43___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__3(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_FixedParamPerm_forallTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__39___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2162,6 +2177,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunI LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__31___boxed(lean_object**); lean_object* l_Lean_mkLevelParam(lean_object*); LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__23___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_unpackMutualInduction_doRealize___lam__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_rwLetWith___closed__0; @@ -2176,7 +2192,6 @@ lean_object* l_Lean_MVarId_hrefl(lean_object*, lean_object*, lean_object*, lean_ LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___closed__1; -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__28___redArg(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveCases___lam__10___closed__1; static lean_object* l_Lean_Expr_withAppAux___at___00Lean_Expr_withAppAux___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__14; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2187,6 +2202,7 @@ LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at__ lean_object* l_StateT_instMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__10; lean_object* l_Lean_Meta_matchEq_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__17___closed__3; size_t lean_usize_land(size_t, size_t); static lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__10; @@ -2196,23 +2212,27 @@ lean_object* l_Lean_Meta_setFunIndInfo(lean_object*, lean_object*, lean_object*) LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Structural_Positions_groupAndSort___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__8_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Meta_elimOptParam(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__9; static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__0___closed__3; LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___00Lean_Meta_withIncRecDepth___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__11_spec__11___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Array_filterMapM___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__31_spec__31(lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__3___closed__0; LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_abstractIndependentMVars_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43___redArg___closed__4; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__9___boxed(lean_object**); LEAN_EXPORT uint8_t l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Array_contains___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__15_spec__15(lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2_spec__2_spec__2_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); double lean_float_sub(double, double); +static lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50_spec__50___redArg___closed__3; lean_object* l_Lean_Expr_letBody_x21(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit_visitLambda___at___00__private_Lean_Meta_Transform_0__Lean_Meta_transformWithCache_visit___at___00Lean_Meta_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__6(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__1; +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__50_spec__50___redArg___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static double l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43___redArg___closed__3; +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__30_spec__30___redArg___lam__3___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect___lam__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__17; @@ -14333,7 +14353,7 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32_spec__32_spec__32(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; uint8_t x_55; uint8_t x_56; lean_object* x_57; lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_80; uint8_t x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; uint8_t x_92; lean_object* x_93; uint8_t x_94; uint8_t x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; +lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_50; uint8_t x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_77; lean_object* x_78; uint8_t x_79; uint8_t x_80; lean_object* x_81; uint8_t x_82; lean_object* x_83; lean_object* x_84; lean_object* x_88; uint8_t x_89; lean_object* x_90; lean_object* x_91; uint8_t x_92; lean_object* x_93; uint8_t x_94; uint8_t x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; x_100 = 2; x_125 = l_Lean_instBEqMessageSeverity_beq(x_3, x_100); if (x_125 == 0) @@ -14368,15 +14388,15 @@ lean_ctor_set(x_25, 0, x_21); lean_ctor_set(x_25, 1, x_22); x_26 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_14); +lean_ctor_set(x_26, 1, x_12); x_27 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_27, 0, x_11); -lean_ctor_set(x_27, 1, x_16); -lean_ctor_set(x_27, 2, x_13); -lean_ctor_set(x_27, 3, x_10); +lean_ctor_set(x_27, 0, x_10); +lean_ctor_set(x_27, 1, x_13); +lean_ctor_set(x_27, 2, x_16); +lean_ctor_set(x_27, 3, x_14); lean_ctor_set(x_27, 4, x_26); -lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_12); -lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_15); +lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_15); +lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_11); lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 2, x_4); x_28 = l_Lean_MessageLog_add(x_27, x_24); lean_ctor_set(x_20, 6, x_28); @@ -14413,15 +14433,15 @@ lean_ctor_set(x_41, 0, x_21); lean_ctor_set(x_41, 1, x_22); x_42 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_14); +lean_ctor_set(x_42, 1, x_12); x_43 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_43, 0, x_11); -lean_ctor_set(x_43, 1, x_16); -lean_ctor_set(x_43, 2, x_13); -lean_ctor_set(x_43, 3, x_10); +lean_ctor_set(x_43, 0, x_10); +lean_ctor_set(x_43, 1, x_13); +lean_ctor_set(x_43, 2, x_16); +lean_ctor_set(x_43, 3, x_14); lean_ctor_set(x_43, 4, x_42); -lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_12); -lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_15); +lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_15); +lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_11); lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 2, x_4); x_44 = l_Lean_MessageLog_add(x_43, x_38); x_45 = lean_alloc_ctor(0, 9, 0); @@ -14451,25 +14471,25 @@ if (x_60 == 0) { lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_61 = lean_ctor_get(x_59, 0); -lean_inc_ref(x_52); -x_62 = l_Lean_FileMap_toPosition(x_52, x_54); -lean_dec(x_54); -x_63 = l_Lean_FileMap_toPosition(x_52, x_57); +lean_inc_ref(x_54); +x_62 = l_Lean_FileMap_toPosition(x_54, x_56); +lean_dec(x_56); +x_63 = l_Lean_FileMap_toPosition(x_54, x_57); lean_dec(x_57); x_64 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_64, 0, x_63); x_65 = l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32_spec__32_spec__32___closed__0; -if (x_55 == 0) +if (x_51 == 0) { lean_free_object(x_59); lean_dec_ref(x_50); -x_10 = x_65; -x_11 = x_51; -x_12 = x_53; -x_13 = x_64; -x_14 = x_61; -x_15 = x_56; -x_16 = x_62; +x_10 = x_52; +x_11 = x_53; +x_12 = x_61; +x_13 = x_62; +x_14 = x_65; +x_15 = x_55; +x_16 = x_64; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -14486,7 +14506,7 @@ lean_object* x_67; lean_dec_ref(x_64); lean_dec_ref(x_62); lean_dec(x_61); -lean_dec_ref(x_51); +lean_dec_ref(x_52); lean_dec_ref(x_7); x_67 = lean_box(0); lean_ctor_set(x_59, 0, x_67); @@ -14495,13 +14515,13 @@ return x_59; else { lean_free_object(x_59); -x_10 = x_65; -x_11 = x_51; -x_12 = x_53; -x_13 = x_64; -x_14 = x_61; -x_15 = x_56; -x_16 = x_62; +x_10 = x_52; +x_11 = x_53; +x_12 = x_61; +x_13 = x_62; +x_14 = x_65; +x_15 = x_55; +x_16 = x_64; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -14515,24 +14535,24 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean x_68 = lean_ctor_get(x_59, 0); lean_inc(x_68); lean_dec(x_59); -lean_inc_ref(x_52); -x_69 = l_Lean_FileMap_toPosition(x_52, x_54); -lean_dec(x_54); -x_70 = l_Lean_FileMap_toPosition(x_52, x_57); +lean_inc_ref(x_54); +x_69 = l_Lean_FileMap_toPosition(x_54, x_56); +lean_dec(x_56); +x_70 = l_Lean_FileMap_toPosition(x_54, x_57); lean_dec(x_57); x_71 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_71, 0, x_70); x_72 = l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32_spec__32_spec__32___closed__0; -if (x_55 == 0) +if (x_51 == 0) { lean_dec_ref(x_50); -x_10 = x_72; -x_11 = x_51; -x_12 = x_53; -x_13 = x_71; -x_14 = x_68; -x_15 = x_56; -x_16 = x_69; +x_10 = x_52; +x_11 = x_53; +x_12 = x_68; +x_13 = x_69; +x_14 = x_72; +x_15 = x_55; +x_16 = x_71; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -14549,7 +14569,7 @@ lean_object* x_74; lean_object* x_75; lean_dec_ref(x_71); lean_dec_ref(x_69); lean_dec(x_68); -lean_dec_ref(x_51); +lean_dec_ref(x_52); lean_dec_ref(x_7); x_74 = lean_box(0); x_75 = lean_alloc_ctor(0, 1, 0); @@ -14558,13 +14578,13 @@ return x_75; } else { -x_10 = x_72; -x_11 = x_51; -x_12 = x_53; -x_13 = x_71; -x_14 = x_68; -x_15 = x_56; -x_16 = x_69; +x_10 = x_52; +x_11 = x_53; +x_12 = x_68; +x_13 = x_69; +x_14 = x_72; +x_15 = x_55; +x_16 = x_71; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -14576,8 +14596,8 @@ goto block_49; block_87: { lean_object* x_85; -x_85 = l_Lean_Syntax_getTailPos_x3f(x_82, x_80); -lean_dec(x_82); +x_85 = l_Lean_Syntax_getTailPos_x3f(x_83, x_82); +lean_dec(x_83); if (lean_obj_tag(x_85) == 0) { lean_inc(x_84); @@ -14585,9 +14605,9 @@ x_50 = x_77; x_51 = x_79; x_52 = x_78; x_53 = x_80; -x_54 = x_84; -x_55 = x_81; -x_56 = x_83; +x_54 = x_81; +x_55 = x_82; +x_56 = x_84; x_57 = x_84; goto block_76; } @@ -14601,9 +14621,9 @@ x_50 = x_77; x_51 = x_79; x_52 = x_78; x_53 = x_80; -x_54 = x_84; -x_55 = x_81; -x_56 = x_83; +x_54 = x_81; +x_55 = x_82; +x_56 = x_84; x_57 = x_86; goto block_76; } @@ -14613,7 +14633,7 @@ block_99: lean_object* x_95; lean_object* x_96; x_95 = l_Lean_replaceRef(x_1, x_93); lean_dec(x_93); -x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_91); +x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_92); if (lean_obj_tag(x_96) == 0) { lean_object* x_97; @@ -14621,10 +14641,10 @@ x_97 = lean_unsigned_to_nat(0u); x_77 = x_88; x_78 = x_90; x_79 = x_89; -x_80 = x_91; -x_81 = x_92; -x_82 = x_95; -x_83 = x_94; +x_80 = x_94; +x_81 = x_91; +x_82 = x_92; +x_83 = x_95; x_84 = x_97; goto block_87; } @@ -14637,10 +14657,10 @@ lean_dec_ref(x_96); x_77 = x_88; x_78 = x_90; x_79 = x_89; -x_80 = x_91; -x_81 = x_92; -x_82 = x_95; -x_83 = x_94; +x_80 = x_94; +x_81 = x_91; +x_82 = x_92; +x_83 = x_95; x_84 = x_98; goto block_87; } @@ -14649,22 +14669,22 @@ block_108: { if (x_107 == 0) { -x_88 = x_103; +x_88 = x_104; x_89 = x_102; x_90 = x_101; -x_91 = x_106; -x_92 = x_104; +x_91 = x_103; +x_92 = x_106; x_93 = x_105; x_94 = x_3; goto block_99; } else { -x_88 = x_103; +x_88 = x_104; x_89 = x_102; x_90 = x_101; -x_91 = x_106; -x_92 = x_104; +x_91 = x_103; +x_92 = x_106; x_93 = x_105; x_94 = x_100; goto block_99; @@ -14690,12 +14710,12 @@ x_119 = l_Lean_instBEqMessageSeverity_beq(x_3, x_118); if (x_119 == 0) { lean_inc(x_113); -lean_inc_ref(x_110); lean_inc_ref(x_111); -x_101 = x_111; -x_102 = x_110; -x_103 = x_117; -x_104 = x_114; +lean_inc_ref(x_110); +x_101 = x_110; +x_102 = x_114; +x_103 = x_111; +x_104 = x_117; x_105 = x_113; x_106 = x_109; x_107 = x_119; @@ -14707,12 +14727,12 @@ lean_object* x_120; uint8_t x_121; x_120 = l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32_spec__32_spec__32___closed__1; x_121 = l_Lean_Option_get___at___00Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32_spec__32_spec__32_spec__32(x_112, x_120); lean_inc(x_113); -lean_inc_ref(x_110); lean_inc_ref(x_111); -x_101 = x_111; -x_102 = x_110; -x_103 = x_117; -x_104 = x_114; +lean_inc_ref(x_110); +x_101 = x_110; +x_102 = x_114; +x_103 = x_111; +x_104 = x_117; x_105 = x_113; x_106 = x_109; x_107 = x_121; @@ -14753,7 +14773,965 @@ x_9 = l_Lean_log___at___00Lean_logError___at___00Lean_Meta_MatcherApp_transform_ return x_9; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +static lean_object* _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Subarray_empty(lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Array_empty(lean_box(0)); +return x_1; +} +} +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__0; +x_8 = l_ReaderT_instMonad___redArg(x_7); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_8, 1); +lean_dec(x_11); +x_12 = !lean_is_exclusive(x_10); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_13 = lean_ctor_get(x_10, 0); +x_14 = lean_ctor_get(x_10, 2); +x_15 = lean_ctor_get(x_10, 3); +x_16 = lean_ctor_get(x_10, 4); +x_17 = lean_ctor_get(x_10, 1); +lean_dec(x_17); +x_18 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__1; +x_19 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__2; +lean_inc_ref(x_13); +x_20 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_20, 0, x_13); +x_21 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_21, 0, x_13); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_23, 0, x_16); +x_24 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_24, 0, x_15); +x_25 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_25, 0, x_14); +lean_ctor_set(x_10, 4, x_23); +lean_ctor_set(x_10, 3, x_24); +lean_ctor_set(x_10, 2, x_25); +lean_ctor_set(x_10, 1, x_18); +lean_ctor_set(x_10, 0, x_22); +lean_ctor_set(x_8, 1, x_19); +x_26 = l_ReaderT_instMonad___redArg(x_8); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_28 = lean_ctor_get(x_26, 0); +x_29 = lean_ctor_get(x_26, 1); +lean_dec(x_29); +x_30 = !lean_is_exclusive(x_28); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_31 = lean_ctor_get(x_28, 0); +x_32 = lean_ctor_get(x_28, 2); +x_33 = lean_ctor_get(x_28, 3); +x_34 = lean_ctor_get(x_28, 4); +x_35 = lean_ctor_get(x_28, 1); +lean_dec(x_35); +x_36 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_37 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_31); +x_38 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_38, 0, x_31); +x_39 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_39, 0, x_31); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +x_41 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_41, 0, x_34); +x_42 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_42, 0, x_33); +x_43 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_43, 0, x_32); +lean_ctor_set(x_28, 4, x_41); +lean_ctor_set(x_28, 3, x_42); +lean_ctor_set(x_28, 2, x_43); +lean_ctor_set(x_28, 1, x_36); +lean_ctor_set(x_28, 0, x_40); +lean_ctor_set(x_26, 1, x_37); +x_44 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___closed__0; +x_45 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___closed__1; +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_44); +lean_ctor_set(x_47, 1, x_46); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_44); +lean_ctor_set(x_48, 1, x_47); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_44); +lean_ctor_set(x_49, 1, x_48); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_44); +lean_ctor_set(x_50, 1, x_49); +x_51 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_51, 0, x_50); +x_52 = l_instInhabitedOfMonad___redArg(x_26, x_51); +x_53 = lean_panic_fn(x_52, x_1); +x_54 = lean_apply_5(x_53, x_2, x_3, x_4, x_5, lean_box(0)); +return x_54; +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_55 = lean_ctor_get(x_28, 0); +x_56 = lean_ctor_get(x_28, 2); +x_57 = lean_ctor_get(x_28, 3); +x_58 = lean_ctor_get(x_28, 4); +lean_inc(x_58); +lean_inc(x_57); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_28); +x_59 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_60 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_55); +x_61 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_61, 0, x_55); +x_62 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_62, 0, x_55); +x_63 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +x_64 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_64, 0, x_58); +x_65 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_65, 0, x_57); +x_66 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_66, 0, x_56); +x_67 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_67, 0, x_63); +lean_ctor_set(x_67, 1, x_59); +lean_ctor_set(x_67, 2, x_66); +lean_ctor_set(x_67, 3, x_65); +lean_ctor_set(x_67, 4, x_64); +lean_ctor_set(x_26, 1, x_60); +lean_ctor_set(x_26, 0, x_67); +x_68 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___closed__0; +x_69 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___closed__1; +x_70 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_69); +x_71 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_71, 0, x_68); +lean_ctor_set(x_71, 1, x_70); +x_72 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_72, 0, x_68); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_73, 0, x_68); +lean_ctor_set(x_73, 1, x_72); +x_74 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_74, 0, x_68); +lean_ctor_set(x_74, 1, x_73); +x_75 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_75, 0, x_74); +x_76 = l_instInhabitedOfMonad___redArg(x_26, x_75); +x_77 = lean_panic_fn(x_76, x_1); +x_78 = lean_apply_5(x_77, x_2, x_3, x_4, x_5, lean_box(0)); +return x_78; +} +} +else +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_79 = lean_ctor_get(x_26, 0); +lean_inc(x_79); +lean_dec(x_26); +x_80 = lean_ctor_get(x_79, 0); +lean_inc_ref(x_80); +x_81 = lean_ctor_get(x_79, 2); +lean_inc(x_81); +x_82 = lean_ctor_get(x_79, 3); +lean_inc(x_82); +x_83 = lean_ctor_get(x_79, 4); +lean_inc(x_83); +if (lean_is_exclusive(x_79)) { + lean_ctor_release(x_79, 0); + lean_ctor_release(x_79, 1); + lean_ctor_release(x_79, 2); + lean_ctor_release(x_79, 3); + lean_ctor_release(x_79, 4); + x_84 = x_79; +} else { + lean_dec_ref(x_79); + x_84 = lean_box(0); +} +x_85 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_86 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_80); +x_87 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_87, 0, x_80); +x_88 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_88, 0, x_80); +x_89 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_89, 0, x_87); +lean_ctor_set(x_89, 1, x_88); +x_90 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_90, 0, x_83); +x_91 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_91, 0, x_82); +x_92 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_92, 0, x_81); +if (lean_is_scalar(x_84)) { + x_93 = lean_alloc_ctor(0, 5, 0); +} else { + x_93 = x_84; +} +lean_ctor_set(x_93, 0, x_89); +lean_ctor_set(x_93, 1, x_85); +lean_ctor_set(x_93, 2, x_92); +lean_ctor_set(x_93, 3, x_91); +lean_ctor_set(x_93, 4, x_90); +x_94 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_94, 0, x_93); +lean_ctor_set(x_94, 1, x_86); +x_95 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___closed__0; +x_96 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___closed__1; +x_97 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_97, 0, x_95); +lean_ctor_set(x_97, 1, x_96); +x_98 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_98, 0, x_95); +lean_ctor_set(x_98, 1, x_97); +x_99 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_99, 0, x_95); +lean_ctor_set(x_99, 1, x_98); +x_100 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_100, 0, x_95); +lean_ctor_set(x_100, 1, x_99); +x_101 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_101, 0, x_95); +lean_ctor_set(x_101, 1, x_100); +x_102 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_102, 0, x_101); +x_103 = l_instInhabitedOfMonad___redArg(x_94, x_102); +x_104 = lean_panic_fn(x_103, x_1); +x_105 = lean_apply_5(x_104, x_2, x_3, x_4, x_5, lean_box(0)); +return x_105; +} +} +else +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; +x_106 = lean_ctor_get(x_10, 0); +x_107 = lean_ctor_get(x_10, 2); +x_108 = lean_ctor_get(x_10, 3); +x_109 = lean_ctor_get(x_10, 4); +lean_inc(x_109); +lean_inc(x_108); +lean_inc(x_107); +lean_inc(x_106); +lean_dec(x_10); +x_110 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__1; +x_111 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__2; +lean_inc_ref(x_106); +x_112 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_112, 0, x_106); +x_113 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_113, 0, x_106); +x_114 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_114, 0, x_112); +lean_ctor_set(x_114, 1, x_113); +x_115 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_115, 0, x_109); +x_116 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_116, 0, x_108); +x_117 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_117, 0, x_107); +x_118 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_118, 0, x_114); +lean_ctor_set(x_118, 1, x_110); +lean_ctor_set(x_118, 2, x_117); +lean_ctor_set(x_118, 3, x_116); +lean_ctor_set(x_118, 4, x_115); +lean_ctor_set(x_8, 1, x_111); +lean_ctor_set(x_8, 0, x_118); +x_119 = l_ReaderT_instMonad___redArg(x_8); +x_120 = lean_ctor_get(x_119, 0); +lean_inc_ref(x_120); +if (lean_is_exclusive(x_119)) { + lean_ctor_release(x_119, 0); + lean_ctor_release(x_119, 1); + x_121 = x_119; +} else { + lean_dec_ref(x_119); + x_121 = lean_box(0); +} +x_122 = lean_ctor_get(x_120, 0); +lean_inc_ref(x_122); +x_123 = lean_ctor_get(x_120, 2); +lean_inc(x_123); +x_124 = lean_ctor_get(x_120, 3); +lean_inc(x_124); +x_125 = lean_ctor_get(x_120, 4); +lean_inc(x_125); +if (lean_is_exclusive(x_120)) { + lean_ctor_release(x_120, 0); + lean_ctor_release(x_120, 1); + lean_ctor_release(x_120, 2); + lean_ctor_release(x_120, 3); + lean_ctor_release(x_120, 4); + x_126 = x_120; +} else { + lean_dec_ref(x_120); + x_126 = lean_box(0); +} +x_127 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_128 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_122); +x_129 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_129, 0, x_122); +x_130 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_130, 0, x_122); +x_131 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_131, 0, x_129); +lean_ctor_set(x_131, 1, x_130); +x_132 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_132, 0, x_125); +x_133 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_133, 0, x_124); +x_134 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_134, 0, x_123); +if (lean_is_scalar(x_126)) { + x_135 = lean_alloc_ctor(0, 5, 0); +} else { + x_135 = x_126; +} +lean_ctor_set(x_135, 0, x_131); +lean_ctor_set(x_135, 1, x_127); +lean_ctor_set(x_135, 2, x_134); +lean_ctor_set(x_135, 3, x_133); +lean_ctor_set(x_135, 4, x_132); +if (lean_is_scalar(x_121)) { + x_136 = lean_alloc_ctor(0, 2, 0); +} else { + x_136 = x_121; +} +lean_ctor_set(x_136, 0, x_135); +lean_ctor_set(x_136, 1, x_128); +x_137 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___closed__0; +x_138 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___closed__1; +x_139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_139, 0, x_137); +lean_ctor_set(x_139, 1, x_138); +x_140 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_140, 0, x_137); +lean_ctor_set(x_140, 1, x_139); +x_141 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_141, 0, x_137); +lean_ctor_set(x_141, 1, x_140); +x_142 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_142, 0, x_137); +lean_ctor_set(x_142, 1, x_141); +x_143 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_143, 0, x_137); +lean_ctor_set(x_143, 1, x_142); +x_144 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_144, 0, x_143); +x_145 = l_instInhabitedOfMonad___redArg(x_136, x_144); +x_146 = lean_panic_fn(x_145, x_1); +x_147 = lean_apply_5(x_146, x_2, x_3, x_4, x_5, lean_box(0)); +return x_147; +} +} +else +{ +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_148 = lean_ctor_get(x_8, 0); +lean_inc(x_148); +lean_dec(x_8); +x_149 = lean_ctor_get(x_148, 0); +lean_inc_ref(x_149); +x_150 = lean_ctor_get(x_148, 2); +lean_inc(x_150); +x_151 = lean_ctor_get(x_148, 3); +lean_inc(x_151); +x_152 = lean_ctor_get(x_148, 4); +lean_inc(x_152); +if (lean_is_exclusive(x_148)) { + lean_ctor_release(x_148, 0); + lean_ctor_release(x_148, 1); + lean_ctor_release(x_148, 2); + lean_ctor_release(x_148, 3); + lean_ctor_release(x_148, 4); + x_153 = x_148; +} else { + lean_dec_ref(x_148); + x_153 = lean_box(0); +} +x_154 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__1; +x_155 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__2; +lean_inc_ref(x_149); +x_156 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_156, 0, x_149); +x_157 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_157, 0, x_149); +x_158 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_158, 0, x_156); +lean_ctor_set(x_158, 1, x_157); +x_159 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_159, 0, x_152); +x_160 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_160, 0, x_151); +x_161 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_161, 0, x_150); +if (lean_is_scalar(x_153)) { + x_162 = lean_alloc_ctor(0, 5, 0); +} else { + x_162 = x_153; +} +lean_ctor_set(x_162, 0, x_158); +lean_ctor_set(x_162, 1, x_154); +lean_ctor_set(x_162, 2, x_161); +lean_ctor_set(x_162, 3, x_160); +lean_ctor_set(x_162, 4, x_159); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_162); +lean_ctor_set(x_163, 1, x_155); +x_164 = l_ReaderT_instMonad___redArg(x_163); +x_165 = lean_ctor_get(x_164, 0); +lean_inc_ref(x_165); +if (lean_is_exclusive(x_164)) { + lean_ctor_release(x_164, 0); + lean_ctor_release(x_164, 1); + x_166 = x_164; +} else { + lean_dec_ref(x_164); + x_166 = lean_box(0); +} +x_167 = lean_ctor_get(x_165, 0); +lean_inc_ref(x_167); +x_168 = lean_ctor_get(x_165, 2); +lean_inc(x_168); +x_169 = lean_ctor_get(x_165, 3); +lean_inc(x_169); +x_170 = lean_ctor_get(x_165, 4); +lean_inc(x_170); +if (lean_is_exclusive(x_165)) { + lean_ctor_release(x_165, 0); + lean_ctor_release(x_165, 1); + lean_ctor_release(x_165, 2); + lean_ctor_release(x_165, 3); + lean_ctor_release(x_165, 4); + x_171 = x_165; +} else { + lean_dec_ref(x_165); + x_171 = lean_box(0); +} +x_172 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_173 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_167); +x_174 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_174, 0, x_167); +x_175 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_175, 0, x_167); +x_176 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_176, 0, x_174); +lean_ctor_set(x_176, 1, x_175); +x_177 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_177, 0, x_170); +x_178 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_178, 0, x_169); +x_179 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_179, 0, x_168); +if (lean_is_scalar(x_171)) { + x_180 = lean_alloc_ctor(0, 5, 0); +} else { + x_180 = x_171; +} +lean_ctor_set(x_180, 0, x_176); +lean_ctor_set(x_180, 1, x_172); +lean_ctor_set(x_180, 2, x_179); +lean_ctor_set(x_180, 3, x_178); +lean_ctor_set(x_180, 4, x_177); +if (lean_is_scalar(x_166)) { + x_181 = lean_alloc_ctor(0, 2, 0); +} else { + x_181 = x_166; +} +lean_ctor_set(x_181, 0, x_180); +lean_ctor_set(x_181, 1, x_173); +x_182 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___closed__0; +x_183 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___closed__1; +x_184 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_184, 0, x_182); +lean_ctor_set(x_184, 1, x_183); +x_185 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_185, 0, x_182); +lean_ctor_set(x_185, 1, x_184); +x_186 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_186, 0, x_182); +lean_ctor_set(x_186, 1, x_185); +x_187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_187, 0, x_182); +lean_ctor_set(x_187, 1, x_186); +x_188 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_188, 0, x_182); +lean_ctor_set(x_188, 1, x_187); +x_189 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_189, 0, x_188); +x_190 = l_instInhabitedOfMonad___redArg(x_181, x_189); +x_191 = lean_panic_fn(x_190, x_1); +x_192 = lean_apply_5(x_191, x_2, x_3, x_4, x_5, lean_box(0)); +return x_192; +} +} +} +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__0; +x_8 = l_ReaderT_instMonad___redArg(x_7); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_8, 1); +lean_dec(x_11); +x_12 = !lean_is_exclusive(x_10); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_13 = lean_ctor_get(x_10, 0); +x_14 = lean_ctor_get(x_10, 2); +x_15 = lean_ctor_get(x_10, 3); +x_16 = lean_ctor_get(x_10, 4); +x_17 = lean_ctor_get(x_10, 1); +lean_dec(x_17); +x_18 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__1; +x_19 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__2; +lean_inc_ref(x_13); +x_20 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_20, 0, x_13); +x_21 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_21, 0, x_13); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_23, 0, x_16); +x_24 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_24, 0, x_15); +x_25 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_25, 0, x_14); +lean_ctor_set(x_10, 4, x_23); +lean_ctor_set(x_10, 3, x_24); +lean_ctor_set(x_10, 2, x_25); +lean_ctor_set(x_10, 1, x_18); +lean_ctor_set(x_10, 0, x_22); +lean_ctor_set(x_8, 1, x_19); +x_26 = l_ReaderT_instMonad___redArg(x_8); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_28 = lean_ctor_get(x_26, 0); +x_29 = lean_ctor_get(x_26, 1); +lean_dec(x_29); +x_30 = !lean_is_exclusive(x_28); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_31 = lean_ctor_get(x_28, 0); +x_32 = lean_ctor_get(x_28, 2); +x_33 = lean_ctor_get(x_28, 3); +x_34 = lean_ctor_get(x_28, 4); +x_35 = lean_ctor_get(x_28, 1); +lean_dec(x_35); +x_36 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_37 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_31); +x_38 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_38, 0, x_31); +x_39 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_39, 0, x_31); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +x_41 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_41, 0, x_34); +x_42 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_42, 0, x_33); +x_43 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_43, 0, x_32); +lean_ctor_set(x_28, 4, x_41); +lean_ctor_set(x_28, 3, x_42); +lean_ctor_set(x_28, 2, x_43); +lean_ctor_set(x_28, 1, x_36); +lean_ctor_set(x_28, 0, x_40); +lean_ctor_set(x_26, 1, x_37); +x_44 = l_Lean_instInhabitedExpr; +x_45 = l_instInhabitedOfMonad___redArg(x_26, x_44); +x_46 = lean_panic_fn(x_45, x_1); +x_47 = lean_apply_5(x_46, x_2, x_3, x_4, x_5, lean_box(0)); +return x_47; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_48 = lean_ctor_get(x_28, 0); +x_49 = lean_ctor_get(x_28, 2); +x_50 = lean_ctor_get(x_28, 3); +x_51 = lean_ctor_get(x_28, 4); +lean_inc(x_51); +lean_inc(x_50); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_28); +x_52 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_53 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_48); +x_54 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_54, 0, x_48); +x_55 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_55, 0, x_48); +x_56 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +x_57 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_57, 0, x_51); +x_58 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_58, 0, x_50); +x_59 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_59, 0, x_49); +x_60 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_60, 0, x_56); +lean_ctor_set(x_60, 1, x_52); +lean_ctor_set(x_60, 2, x_59); +lean_ctor_set(x_60, 3, x_58); +lean_ctor_set(x_60, 4, x_57); +lean_ctor_set(x_26, 1, x_53); +lean_ctor_set(x_26, 0, x_60); +x_61 = l_Lean_instInhabitedExpr; +x_62 = l_instInhabitedOfMonad___redArg(x_26, x_61); +x_63 = lean_panic_fn(x_62, x_1); +x_64 = lean_apply_5(x_63, x_2, x_3, x_4, x_5, lean_box(0)); +return x_64; +} +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_65 = lean_ctor_get(x_26, 0); +lean_inc(x_65); +lean_dec(x_26); +x_66 = lean_ctor_get(x_65, 0); +lean_inc_ref(x_66); +x_67 = lean_ctor_get(x_65, 2); +lean_inc(x_67); +x_68 = lean_ctor_get(x_65, 3); +lean_inc(x_68); +x_69 = lean_ctor_get(x_65, 4); +lean_inc(x_69); +if (lean_is_exclusive(x_65)) { + lean_ctor_release(x_65, 0); + lean_ctor_release(x_65, 1); + lean_ctor_release(x_65, 2); + lean_ctor_release(x_65, 3); + lean_ctor_release(x_65, 4); + x_70 = x_65; +} else { + lean_dec_ref(x_65); + x_70 = lean_box(0); +} +x_71 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_72 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_66); +x_73 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_73, 0, x_66); +x_74 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_74, 0, x_66); +x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_75, 0, x_73); +lean_ctor_set(x_75, 1, x_74); +x_76 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_76, 0, x_69); +x_77 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_77, 0, x_68); +x_78 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_78, 0, x_67); +if (lean_is_scalar(x_70)) { + x_79 = lean_alloc_ctor(0, 5, 0); +} else { + x_79 = x_70; +} +lean_ctor_set(x_79, 0, x_75); +lean_ctor_set(x_79, 1, x_71); +lean_ctor_set(x_79, 2, x_78); +lean_ctor_set(x_79, 3, x_77); +lean_ctor_set(x_79, 4, x_76); +x_80 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_79); +lean_ctor_set(x_80, 1, x_72); +x_81 = l_Lean_instInhabitedExpr; +x_82 = l_instInhabitedOfMonad___redArg(x_80, x_81); +x_83 = lean_panic_fn(x_82, x_1); +x_84 = lean_apply_5(x_83, x_2, x_3, x_4, x_5, lean_box(0)); +return x_84; +} +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_85 = lean_ctor_get(x_10, 0); +x_86 = lean_ctor_get(x_10, 2); +x_87 = lean_ctor_get(x_10, 3); +x_88 = lean_ctor_get(x_10, 4); +lean_inc(x_88); +lean_inc(x_87); +lean_inc(x_86); +lean_inc(x_85); +lean_dec(x_10); +x_89 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__1; +x_90 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__2; +lean_inc_ref(x_85); +x_91 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_91, 0, x_85); +x_92 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_92, 0, x_85); +x_93 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_93, 0, x_91); +lean_ctor_set(x_93, 1, x_92); +x_94 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_94, 0, x_88); +x_95 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_95, 0, x_87); +x_96 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_96, 0, x_86); +x_97 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_97, 0, x_93); +lean_ctor_set(x_97, 1, x_89); +lean_ctor_set(x_97, 2, x_96); +lean_ctor_set(x_97, 3, x_95); +lean_ctor_set(x_97, 4, x_94); +lean_ctor_set(x_8, 1, x_90); +lean_ctor_set(x_8, 0, x_97); +x_98 = l_ReaderT_instMonad___redArg(x_8); +x_99 = lean_ctor_get(x_98, 0); +lean_inc_ref(x_99); +if (lean_is_exclusive(x_98)) { + lean_ctor_release(x_98, 0); + lean_ctor_release(x_98, 1); + x_100 = x_98; +} else { + lean_dec_ref(x_98); + x_100 = lean_box(0); +} +x_101 = lean_ctor_get(x_99, 0); +lean_inc_ref(x_101); +x_102 = lean_ctor_get(x_99, 2); +lean_inc(x_102); +x_103 = lean_ctor_get(x_99, 3); +lean_inc(x_103); +x_104 = lean_ctor_get(x_99, 4); +lean_inc(x_104); +if (lean_is_exclusive(x_99)) { + lean_ctor_release(x_99, 0); + lean_ctor_release(x_99, 1); + lean_ctor_release(x_99, 2); + lean_ctor_release(x_99, 3); + lean_ctor_release(x_99, 4); + x_105 = x_99; +} else { + lean_dec_ref(x_99); + x_105 = lean_box(0); +} +x_106 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_107 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_101); +x_108 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_108, 0, x_101); +x_109 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_109, 0, x_101); +x_110 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_110, 0, x_108); +lean_ctor_set(x_110, 1, x_109); +x_111 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_111, 0, x_104); +x_112 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_112, 0, x_103); +x_113 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_113, 0, x_102); +if (lean_is_scalar(x_105)) { + x_114 = lean_alloc_ctor(0, 5, 0); +} else { + x_114 = x_105; +} +lean_ctor_set(x_114, 0, x_110); +lean_ctor_set(x_114, 1, x_106); +lean_ctor_set(x_114, 2, x_113); +lean_ctor_set(x_114, 3, x_112); +lean_ctor_set(x_114, 4, x_111); +if (lean_is_scalar(x_100)) { + x_115 = lean_alloc_ctor(0, 2, 0); +} else { + x_115 = x_100; +} +lean_ctor_set(x_115, 0, x_114); +lean_ctor_set(x_115, 1, x_107); +x_116 = l_Lean_instInhabitedExpr; +x_117 = l_instInhabitedOfMonad___redArg(x_115, x_116); +x_118 = lean_panic_fn(x_117, x_1); +x_119 = lean_apply_5(x_118, x_2, x_3, x_4, x_5, lean_box(0)); +return x_119; +} +} +else +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; +x_120 = lean_ctor_get(x_8, 0); +lean_inc(x_120); +lean_dec(x_8); +x_121 = lean_ctor_get(x_120, 0); +lean_inc_ref(x_121); +x_122 = lean_ctor_get(x_120, 2); +lean_inc(x_122); +x_123 = lean_ctor_get(x_120, 3); +lean_inc(x_123); +x_124 = lean_ctor_get(x_120, 4); +lean_inc(x_124); +if (lean_is_exclusive(x_120)) { + lean_ctor_release(x_120, 0); + lean_ctor_release(x_120, 1); + lean_ctor_release(x_120, 2); + lean_ctor_release(x_120, 3); + lean_ctor_release(x_120, 4); + x_125 = x_120; +} else { + lean_dec_ref(x_120); + x_125 = lean_box(0); +} +x_126 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__1; +x_127 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__2; +lean_inc_ref(x_121); +x_128 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_128, 0, x_121); +x_129 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_129, 0, x_121); +x_130 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_130, 0, x_128); +lean_ctor_set(x_130, 1, x_129); +x_131 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_131, 0, x_124); +x_132 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_132, 0, x_123); +x_133 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_133, 0, x_122); +if (lean_is_scalar(x_125)) { + x_134 = lean_alloc_ctor(0, 5, 0); +} else { + x_134 = x_125; +} +lean_ctor_set(x_134, 0, x_130); +lean_ctor_set(x_134, 1, x_126); +lean_ctor_set(x_134, 2, x_133); +lean_ctor_set(x_134, 3, x_132); +lean_ctor_set(x_134, 4, x_131); +x_135 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_127); +x_136 = l_ReaderT_instMonad___redArg(x_135); +x_137 = lean_ctor_get(x_136, 0); +lean_inc_ref(x_137); +if (lean_is_exclusive(x_136)) { + lean_ctor_release(x_136, 0); + lean_ctor_release(x_136, 1); + x_138 = x_136; +} else { + lean_dec_ref(x_136); + x_138 = lean_box(0); +} +x_139 = lean_ctor_get(x_137, 0); +lean_inc_ref(x_139); +x_140 = lean_ctor_get(x_137, 2); +lean_inc(x_140); +x_141 = lean_ctor_get(x_137, 3); +lean_inc(x_141); +x_142 = lean_ctor_get(x_137, 4); +lean_inc(x_142); +if (lean_is_exclusive(x_137)) { + lean_ctor_release(x_137, 0); + lean_ctor_release(x_137, 1); + lean_ctor_release(x_137, 2); + lean_ctor_release(x_137, 3); + lean_ctor_release(x_137, 4); + x_143 = x_137; +} else { + lean_dec_ref(x_137); + x_143 = lean_box(0); +} +x_144 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_145 = l_panic___at___00Lean_Meta_matchMatcherApp_x3f___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_139); +x_146 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_146, 0, x_139); +x_147 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_147, 0, x_139); +x_148 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_148, 0, x_146); +lean_ctor_set(x_148, 1, x_147); +x_149 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_149, 0, x_142); +x_150 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_150, 0, x_141); +x_151 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_151, 0, x_140); +if (lean_is_scalar(x_143)) { + x_152 = lean_alloc_ctor(0, 5, 0); +} else { + x_152 = x_143; +} +lean_ctor_set(x_152, 0, x_148); +lean_ctor_set(x_152, 1, x_144); +lean_ctor_set(x_152, 2, x_151); +lean_ctor_set(x_152, 3, x_150); +lean_ctor_set(x_152, 4, x_149); +if (lean_is_scalar(x_138)) { + x_153 = lean_alloc_ctor(0, 2, 0); +} else { + x_153 = x_138; +} +lean_ctor_set(x_153, 0, x_152); +lean_ctor_set(x_153, 1, x_145); +x_154 = l_Lean_instInhabitedExpr; +x_155 = l_instInhabitedOfMonad___redArg(x_153, x_154); +x_156 = lean_panic_fn(x_155, x_1); +x_157 = lean_apply_5(x_156, x_2, x_3, x_4, x_5, lean_box(0)); +return x_157; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_11; @@ -14761,62 +15739,62 @@ x_11 = lean_apply_7(x_1, x_2, x_3, x_6, x_7, x_8, x_9, lean_box(0)); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_10; lean_object* x_11; -x_10 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg___lam__0___boxed), 10, 1); -lean_closure_set(x_10, 0, x_4); -x_11 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_1, x_2, x_3, x_10, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_11) == 0) +lean_object* x_9; lean_object* x_10; +x_9 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg___lam__0___boxed), 10, 1); +lean_closure_set(x_9, 0, x_3); +x_10 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_1, x_2, x_9, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_10) == 0) { -uint8_t x_12; -x_12 = !lean_is_exclusive(x_11); -if (x_12 == 0) +uint8_t x_11; +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) { -return x_11; +return x_10; } else { -lean_object* x_13; lean_object* x_14; -x_13 = lean_ctor_get(x_11, 0); -lean_inc(x_13); -lean_dec(x_11); -x_14 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_14, 0, x_13); -return x_14; +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_13, 0, x_12); +return x_13; } } else { -uint8_t x_15; -x_15 = !lean_is_exclusive(x_11); -if (x_15 == 0) +uint8_t x_14; +x_14 = !lean_is_exclusive(x_10); +if (x_14 == 0) { -return x_11; +return x_10; } else { -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_11, 0); -lean_inc(x_16); -lean_dec(x_11); -x_17 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_17, 0, x_16); -return x_17; +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_10, 0); +lean_inc(x_15); +lean_dec(x_10); +x_16 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_16, 0, x_15); +return x_16; } } } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_11; -x_11 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; +lean_object* x_10; +x_10 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__0___closed__0() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__0___closed__0() { _start: { lean_object* x_1; @@ -14824,16 +15802,16 @@ x_1 = lean_mk_string_unchecked("unexpected matcher application, insufficient num return x_1; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__0___closed__1() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__0___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__0___closed__0; +x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__0___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_17; lean_object* x_18; lean_object* x_28; @@ -14874,7 +15852,7 @@ if (x_30 == 0) { lean_object* x_31; lean_object* x_32; lean_dec_ref(x_28); -x_31 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__0___closed__1; +x_31 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__0___closed__1; x_32 = l_Lean_throwError___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__21___redArg(x_31, x_12, x_13, x_14, x_15); x_18 = x_32; goto block_27; @@ -14943,13 +15921,13 @@ return x_18; } } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_17 = lean_box(x_6); x_18 = lean_box(x_7); -x_19 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__0___boxed), 16, 9); +x_19 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__0___boxed), 16, 9); lean_closure_set(x_19, 0, x_1); lean_closure_set(x_19, 1, x_10); lean_closure_set(x_19, 2, x_2); @@ -14965,13 +15943,13 @@ x_21 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Tactic_Fu return x_21; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_17 = lean_box(x_5); x_18 = lean_box(x_6); -x_19 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__1___boxed), 16, 9); +x_19 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__1___boxed), 16, 9); lean_closure_set(x_19, 0, x_1); lean_closure_set(x_19, 1, x_2); lean_closure_set(x_19, 2, x_3); @@ -14987,7 +15965,44 @@ x_21 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Tactic_Fu return x_21; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__0() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Lean.Meta.Match.MatcherApp.Transform", 36, 36); +return x_1; +} +} +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Lean.Meta.MatcherApp.transform", 30, 30); +return x_1; +} +} +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("assertion violation: ys.size == splitterAltInfo.numFields\n ", 66, 66); +return x_1; +} +} +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__2; +x_2 = lean_unsigned_to_nat(8u); +x_3 = lean_unsigned_to_nat(317u); +x_4 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__1; +x_5 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__0; +x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); +return x_6; +} +} +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__4() { _start: { lean_object* x_1; @@ -14995,7 +16010,7 @@ x_1 = lean_mk_string_unchecked("Function", 8, 8); return x_1; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__1() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__5() { _start: { lean_object* x_1; @@ -15003,17 +16018,17 @@ x_1 = lean_mk_string_unchecked("const", 5, 5); return x_1; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__2() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__1; -x_2 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__0; +x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__5; +x_2 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__4; x_3 = l_Lean_Name_mkStr2(x_2, x_1); return x_3; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__3() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__7() { _start: { lean_object* x_1; @@ -15021,26 +16036,26 @@ x_1 = lean_mk_string_unchecked("Unit", 4, 4); return x_1; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__4() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__3; +x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__7; x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__5() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__4; +x_2 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__8; x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__6() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__10() { _start: { lean_object* x_1; lean_object* x_2; @@ -15049,17 +16064,17 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__7() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__5; -x_2 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__6; +x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__9; +x_2 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__10; x_3 = lean_array_push(x_2, x_1); return x_3; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__8() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__12() { _start: { lean_object* x_1; @@ -15067,169 +16082,176 @@ x_1 = lean_mk_string_unchecked("unit", 4, 4); return x_1; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__9() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__8; -x_2 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__3; +x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__12; +x_2 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__7; x_3 = l_Lean_Name_mkStr2(x_2, x_1); return x_3; } } -static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__10() { +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__9; +x_2 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__13; x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, uint8_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_19; +lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; uint8_t x_23; +x_19 = lean_ctor_get(x_1, 0); +x_20 = lean_ctor_get(x_1, 1); +x_21 = lean_ctor_get_uint8(x_1, sizeof(void*)*2); +x_22 = lean_array_get_size(x_12); +x_23 = lean_nat_dec_eq(x_22, x_19); +lean_dec(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_24 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__3; +x_25 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37(x_24, x_14, x_15, x_16, x_17); +return x_25; +} +else +{ +lean_object* x_26; lean_inc(x_17); lean_inc_ref(x_16); lean_inc(x_15); lean_inc_ref(x_14); -x_19 = l_Lean_Meta_instantiateForall(x_1, x_12, x_14, x_15, x_16, x_17); -if (lean_obj_tag(x_19) == 0) +x_26 = l_Lean_Meta_instantiateForall(x_2, x_12, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_26) == 0) { -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_43; uint8_t x_44; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - x_21 = x_19; +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + x_28 = x_26; } else { - lean_dec_ref(x_19); - x_21 = lean_box(0); + lean_dec_ref(x_26); + x_28 = lean_box(0); } -x_22 = lean_box(x_4); -x_23 = lean_box(x_5); -lean_inc(x_8); -lean_inc_ref(x_12); -x_24 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__2___boxed), 16, 9); -lean_closure_set(x_24, 0, x_13); -lean_closure_set(x_24, 1, x_2); -lean_closure_set(x_24, 2, x_3); -lean_closure_set(x_24, 3, x_12); -lean_closure_set(x_24, 4, x_22); -lean_closure_set(x_24, 5, x_23); -lean_closure_set(x_24, 6, x_6); -lean_closure_set(x_24, 7, x_7); -lean_closure_set(x_24, 8, x_8); -x_43 = lean_nat_add(x_9, x_8); -x_44 = lean_nat_dec_eq(x_43, x_10); -lean_dec(x_43); -if (x_44 == 0) +x_29 = lean_box(x_5); +x_30 = lean_box(x_6); +x_31 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__2___boxed), 16, 9); +lean_closure_set(x_31, 0, x_13); +lean_closure_set(x_31, 1, x_3); +lean_closure_set(x_31, 2, x_4); +lean_closure_set(x_31, 3, x_12); +lean_closure_set(x_31, 4, x_29); +lean_closure_set(x_31, 5, x_30); +lean_closure_set(x_31, 6, x_7); +lean_closure_set(x_31, 7, x_8); +lean_closure_set(x_31, 8, x_9); +if (x_10 == 0) { -x_25 = x_20; -x_26 = x_14; -x_27 = x_15; -x_28 = x_16; -x_29 = x_17; -x_30 = lean_box(0); -goto block_42; +x_32 = x_27; +x_33 = x_14; +x_34 = x_15; +x_35 = x_16; +x_36 = x_17; +x_37 = lean_box(0); +goto block_45; } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_45 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__10; -x_46 = lean_mk_empty_array_with_capacity(x_11); -x_47 = lean_array_push(x_46, x_45); +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_46 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__14; +x_47 = lean_mk_empty_array_with_capacity(x_11); +x_48 = lean_array_push(x_47, x_46); lean_inc(x_17); lean_inc_ref(x_16); lean_inc(x_15); lean_inc_ref(x_14); -x_48 = l_Lean_Meta_instantiateForall(x_20, x_47, x_14, x_15, x_16, x_17); -lean_dec_ref(x_47); -if (lean_obj_tag(x_48) == 0) -{ -lean_object* x_49; -x_49 = lean_ctor_get(x_48, 0); -lean_inc(x_49); +x_49 = l_Lean_Meta_instantiateForall(x_27, x_48, x_14, x_15, x_16, x_17); lean_dec_ref(x_48); -x_25 = x_49; -x_26 = x_14; -x_27 = x_15; -x_28 = x_16; -x_29 = x_17; -x_30 = lean_box(0); -goto block_42; +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_50; +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +lean_dec_ref(x_49); +x_32 = x_50; +x_33 = x_14; +x_34 = x_15; +x_35 = x_16; +x_36 = x_17; +x_37 = lean_box(0); +goto block_45; } else { -lean_dec_ref(x_24); -lean_dec(x_21); +lean_dec_ref(x_31); +lean_dec(x_28); lean_dec(x_17); lean_dec_ref(x_16); lean_dec(x_15); lean_dec_ref(x_14); -lean_dec_ref(x_12); -lean_dec(x_8); -return x_48; +return x_49; } } -block_42: +block_45: { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_31 = lean_array_get_size(x_12); -lean_dec_ref(x_12); -x_32 = lean_nat_sub(x_9, x_31); -lean_dec(x_31); -if (lean_is_scalar(x_21)) { - x_33 = lean_alloc_ctor(1, 1, 0); +lean_object* x_38; lean_object* x_39; +lean_inc(x_20); +if (lean_is_scalar(x_28)) { + x_38 = lean_alloc_ctor(1, 1, 0); } else { - x_33 = x_21; - lean_ctor_set_tag(x_33, 1); + x_38 = x_28; + lean_ctor_set_tag(x_38, 1); } -lean_ctor_set(x_33, 0, x_32); -lean_inc(x_29); -lean_inc_ref(x_28); -lean_inc(x_27); -lean_inc_ref(x_26); -x_34 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__25___redArg(x_25, x_33, x_24, x_4, x_4, x_26, x_27, x_28, x_29); -if (lean_obj_tag(x_34) == 0) +lean_ctor_set(x_38, 0, x_20); +lean_inc(x_36); +lean_inc_ref(x_35); +lean_inc(x_34); +lean_inc_ref(x_33); +x_39 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__25___redArg(x_32, x_38, x_31, x_5, x_5, x_33, x_34, x_35, x_36); +if (lean_obj_tag(x_39) == 0) +{ +if (x_21 == 0) { -lean_object* x_35; lean_object* x_36; uint8_t x_37; -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = lean_nat_add(x_9, x_8); -lean_dec(x_8); -x_37 = lean_nat_dec_eq(x_36, x_10); lean_dec(x_36); -if (x_37 == 0) -{ -lean_dec(x_35); -lean_dec(x_29); -lean_dec_ref(x_28); -lean_dec(x_27); -lean_dec_ref(x_26); -return x_34; +lean_dec_ref(x_35); +lean_dec(x_34); +lean_dec_ref(x_33); +return x_39; } else { -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -lean_dec_ref(x_34); -x_38 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__2; -x_39 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___closed__7; -x_40 = lean_array_push(x_39, x_35); -x_41 = l_Lean_Meta_mkAppM(x_38, x_40, x_26, x_27, x_28, x_29); -return x_41; +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +lean_dec_ref(x_39); +x_41 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__6; +x_42 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__11; +x_43 = lean_array_push(x_42, x_40); +x_44 = l_Lean_Meta_mkAppM(x_41, x_43, x_33, x_34, x_35, x_36); +return x_44; } } else { -lean_dec(x_29); -lean_dec_ref(x_28); -lean_dec(x_27); -lean_dec_ref(x_26); -lean_dec(x_8); -return x_34; +lean_dec(x_36); +lean_dec_ref(x_35); +lean_dec(x_34); +lean_dec_ref(x_33); +return x_39; } } } @@ -15241,113 +16263,93 @@ lean_dec(x_15); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); +lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_19; +lean_dec_ref(x_7); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_26; } } } -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +} +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__0() { _start: { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_15 = lean_ctor_get(x_8, 1); -lean_inc(x_15); -x_16 = lean_ctor_get(x_15, 1); -lean_inc(x_16); -x_17 = lean_ctor_get(x_16, 1); -lean_inc(x_17); -x_18 = lean_ctor_get(x_17, 1); -lean_inc(x_18); -x_19 = lean_ctor_get(x_18, 0); -lean_inc(x_19); -x_20 = !lean_is_exclusive(x_8); -if (x_20 == 0) -{ -lean_object* x_21; lean_object* x_22; uint8_t x_23; -x_21 = lean_ctor_get(x_8, 0); -x_22 = lean_ctor_get(x_8, 1); -lean_dec(x_22); -x_23 = !lean_is_exclusive(x_15); -if (x_23 == 0) -{ -lean_object* x_24; lean_object* x_25; uint8_t x_26; -x_24 = lean_ctor_get(x_15, 0); -x_25 = lean_ctor_get(x_15, 1); -lean_dec(x_25); -x_26 = !lean_is_exclusive(x_16); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; uint8_t x_29; -x_27 = lean_ctor_get(x_16, 0); -x_28 = lean_ctor_get(x_16, 1); -lean_dec(x_28); -x_29 = !lean_is_exclusive(x_17); -if (x_29 == 0) -{ -lean_object* x_30; lean_object* x_31; uint8_t x_32; -x_30 = lean_ctor_get(x_17, 0); -x_31 = lean_ctor_get(x_17, 1); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_18); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_33 = lean_ctor_get(x_18, 1); -x_34 = lean_ctor_get(x_18, 0); -lean_dec(x_34); -x_35 = lean_ctor_get(x_19, 0); -x_36 = lean_ctor_get(x_19, 1); -x_37 = lean_ctor_get(x_19, 2); -x_38 = lean_nat_dec_lt(x_36, x_37); -if (x_38 == 0) -{ -lean_object* x_39; -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_39 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_39, 0, x_8); -return x_39; +lean_object* x_1; +x_1 = lean_mk_string_unchecked("assertion violation: altInfo.numOverlaps = 0\n ", 51, 51); +return x_1; } -else +} +static lean_object* _init_l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1() { +_start: { -uint8_t x_40; -lean_inc(x_37); -lean_inc(x_36); -lean_inc_ref(x_35); -x_40 = !lean_is_exclusive(x_19); +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_1 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__0; +x_2 = lean_unsigned_to_nat(6u); +x_3 = lean_unsigned_to_nat(315u); +x_4 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__1; +x_5 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___closed__0; +x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_15; lean_object* x_16; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_23 = lean_ctor_get(x_8, 1); +lean_inc(x_23); +x_24 = lean_ctor_get(x_23, 1); +lean_inc(x_24); +x_25 = lean_ctor_get(x_24, 1); +lean_inc(x_25); +x_26 = lean_ctor_get(x_25, 1); +lean_inc(x_26); +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = !lean_is_exclusive(x_8); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_29 = lean_ctor_get(x_8, 0); +x_30 = lean_ctor_get(x_8, 1); +lean_dec(x_30); +x_31 = !lean_is_exclusive(x_23); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; uint8_t x_34; +x_32 = lean_ctor_get(x_23, 0); +x_33 = lean_ctor_get(x_23, 1); +lean_dec(x_33); +x_34 = !lean_is_exclusive(x_24); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_35 = lean_ctor_get(x_24, 0); +x_36 = lean_ctor_get(x_24, 1); +lean_dec(x_36); +x_37 = !lean_is_exclusive(x_25); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; uint8_t x_40; +x_38 = lean_ctor_get(x_25, 0); +x_39 = lean_ctor_get(x_25, 1); +lean_dec(x_39); +x_40 = !lean_is_exclusive(x_26); if (x_40 == 0) { -lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; -x_41 = lean_ctor_get(x_19, 2); -lean_dec(x_41); -x_42 = lean_ctor_get(x_19, 1); +lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; +x_41 = lean_ctor_get(x_26, 1); +x_42 = lean_ctor_get(x_26, 0); lean_dec(x_42); -x_43 = lean_ctor_get(x_19, 0); -lean_dec(x_43); -x_44 = lean_ctor_get(x_30, 0); -x_45 = lean_ctor_get(x_30, 1); -x_46 = lean_ctor_get(x_30, 2); -x_47 = lean_unsigned_to_nat(1u); -x_48 = lean_nat_add(x_36, x_47); -lean_inc_ref(x_35); -lean_ctor_set(x_19, 1, x_48); -x_49 = lean_nat_dec_lt(x_45, x_46); -if (x_49 == 0) +x_43 = lean_ctor_get(x_27, 0); +x_44 = lean_ctor_get(x_27, 1); +x_45 = lean_ctor_get(x_27, 2); +x_46 = lean_nat_dec_lt(x_44, x_45); +if (x_46 == 0) { -lean_object* x_50; -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_47; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -15355,42 +16357,82 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_50 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_50, 0, x_8); -return x_50; +lean_dec_ref(x_2); +x_47 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_47, 0, x_8); +return x_47; } else { -uint8_t x_51; -lean_inc(x_46); +uint8_t x_48; lean_inc(x_45); -lean_inc_ref(x_44); -x_51 = !lean_is_exclusive(x_30); -if (x_51 == 0) +lean_inc(x_44); +lean_inc_ref(x_43); +x_48 = !lean_is_exclusive(x_27); +if (x_48 == 0) { -lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; -x_52 = lean_ctor_get(x_30, 2); -lean_dec(x_52); -x_53 = lean_ctor_get(x_30, 1); -lean_dec(x_53); -x_54 = lean_ctor_get(x_30, 0); -lean_dec(x_54); -x_55 = lean_ctor_get(x_27, 0); -x_56 = lean_ctor_get(x_27, 1); -x_57 = lean_ctor_get(x_27, 2); -x_58 = lean_nat_add(x_45, x_47); -lean_inc_ref(x_44); -lean_ctor_set(x_30, 1, x_58); -x_59 = lean_nat_dec_lt(x_56, x_57); +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; +x_49 = lean_ctor_get(x_27, 2); +lean_dec(x_49); +x_50 = lean_ctor_get(x_27, 1); +lean_dec(x_50); +x_51 = lean_ctor_get(x_27, 0); +lean_dec(x_51); +x_52 = lean_ctor_get(x_38, 0); +x_53 = lean_ctor_get(x_38, 1); +x_54 = lean_ctor_get(x_38, 2); +x_55 = lean_unsigned_to_nat(1u); +x_56 = lean_nat_add(x_44, x_55); +lean_inc_ref(x_43); +lean_ctor_set(x_27, 1, x_56); +x_57 = lean_nat_dec_lt(x_53, x_54); +if (x_57 == 0) +{ +lean_object* x_58; +lean_dec(x_44); +lean_dec_ref(x_43); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_58 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_58, 0, x_8); +return x_58; +} +else +{ +uint8_t x_59; +lean_inc(x_54); +lean_inc(x_53); +lean_inc_ref(x_52); +x_59 = !lean_is_exclusive(x_38); if (x_59 == 0) { -lean_object* x_60; -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; uint8_t x_67; +x_60 = lean_ctor_get(x_38, 2); +lean_dec(x_60); +x_61 = lean_ctor_get(x_38, 1); +lean_dec(x_61); +x_62 = lean_ctor_get(x_38, 0); +lean_dec(x_62); +x_63 = lean_ctor_get(x_35, 0); +x_64 = lean_ctor_get(x_35, 1); +x_65 = lean_ctor_get(x_35, 2); +x_66 = lean_nat_add(x_53, x_55); +lean_inc_ref(x_52); +lean_ctor_set(x_38, 1, x_66); +x_67 = lean_nat_dec_lt(x_64, x_65); +if (x_67 == 0) +{ +lean_object* x_68; +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -15398,44 +16440,43 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_60 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_60, 0, x_8); -return x_60; +lean_dec_ref(x_2); +x_68 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_68, 0, x_8); +return x_68; } else { -uint8_t x_61; -lean_inc(x_57); -lean_inc(x_56); -lean_inc_ref(x_55); -x_61 = !lean_is_exclusive(x_27); -if (x_61 == 0) -{ -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; -x_62 = lean_ctor_get(x_27, 2); -lean_dec(x_62); -x_63 = lean_ctor_get(x_27, 1); -lean_dec(x_63); -x_64 = lean_ctor_get(x_27, 0); -lean_dec(x_64); -x_65 = lean_ctor_get(x_24, 0); -x_66 = lean_ctor_get(x_24, 1); -x_67 = lean_ctor_get(x_24, 2); -x_68 = lean_nat_add(x_56, x_47); -lean_inc_ref(x_55); -lean_ctor_set(x_27, 1, x_68); -x_69 = lean_nat_dec_lt(x_66, x_67); +uint8_t x_69; +lean_inc(x_65); +lean_inc(x_64); +lean_inc_ref(x_63); +x_69 = !lean_is_exclusive(x_35); if (x_69 == 0) { -lean_object* x_70; -lean_dec(x_56); -lean_dec_ref(x_55); -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; +x_70 = lean_ctor_get(x_35, 2); +lean_dec(x_70); +x_71 = lean_ctor_get(x_35, 1); +lean_dec(x_71); +x_72 = lean_ctor_get(x_35, 0); +lean_dec(x_72); +x_73 = lean_ctor_get(x_32, 0); +x_74 = lean_ctor_get(x_32, 1); +x_75 = lean_ctor_get(x_32, 2); +x_76 = lean_nat_add(x_64, x_55); +lean_inc_ref(x_63); +lean_ctor_set(x_35, 1, x_76); +x_77 = lean_nat_dec_lt(x_74, x_75); +if (x_77 == 0) +{ +lean_object* x_78; +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -15443,46 +16484,45 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_70 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_70, 0, x_8); -return x_70; +lean_dec_ref(x_2); +x_78 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_78, 0, x_8); +return x_78; } else { -uint8_t x_71; -lean_inc(x_67); -lean_inc(x_66); -lean_inc_ref(x_65); -x_71 = !lean_is_exclusive(x_24); -if (x_71 == 0) -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79; -x_72 = lean_ctor_get(x_24, 2); -lean_dec(x_72); -x_73 = lean_ctor_get(x_24, 1); -lean_dec(x_73); -x_74 = lean_ctor_get(x_24, 0); -lean_dec(x_74); -x_75 = lean_ctor_get(x_21, 0); -x_76 = lean_ctor_get(x_21, 1); -x_77 = lean_ctor_get(x_21, 2); -x_78 = lean_nat_add(x_66, x_47); -lean_inc_ref(x_65); -lean_ctor_set(x_24, 1, x_78); -x_79 = lean_nat_dec_lt(x_76, x_77); +uint8_t x_79; +lean_inc(x_75); +lean_inc(x_74); +lean_inc_ref(x_73); +x_79 = !lean_is_exclusive(x_32); if (x_79 == 0) { -lean_object* x_80; -lean_dec(x_66); -lean_dec_ref(x_65); -lean_dec(x_56); -lean_dec_ref(x_55); -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; uint8_t x_87; +x_80 = lean_ctor_get(x_32, 2); +lean_dec(x_80); +x_81 = lean_ctor_get(x_32, 1); +lean_dec(x_81); +x_82 = lean_ctor_get(x_32, 0); +lean_dec(x_82); +x_83 = lean_ctor_get(x_29, 0); +x_84 = lean_ctor_get(x_29, 1); +x_85 = lean_ctor_get(x_29, 2); +x_86 = lean_nat_add(x_74, x_55); +lean_inc_ref(x_73); +lean_ctor_set(x_32, 1, x_86); +x_87 = lean_nat_dec_lt(x_84, x_85); +if (x_87 == 0) +{ +lean_object* x_88; +lean_dec(x_74); +lean_dec_ref(x_73); +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -15490,159 +16530,233 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_80 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_80, 0, x_8); -return x_80; +lean_dec_ref(x_2); +x_88 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_88, 0, x_8); +return x_88; } else { -uint8_t x_81; -lean_inc(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -x_81 = !lean_is_exclusive(x_21); -if (x_81 == 0) +uint8_t x_89; +lean_inc(x_85); +lean_inc(x_84); +lean_inc_ref(x_83); +x_89 = !lean_is_exclusive(x_29); +if (x_89 == 0) { -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; -x_82 = lean_ctor_get(x_21, 2); -lean_dec(x_82); -x_83 = lean_ctor_get(x_21, 1); -lean_dec(x_83); -x_84 = lean_ctor_get(x_21, 0); +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; uint8_t x_96; +x_90 = lean_ctor_get(x_29, 2); +lean_dec(x_90); +x_91 = lean_ctor_get(x_29, 1); +lean_dec(x_91); +x_92 = lean_ctor_get(x_29, 0); +lean_dec(x_92); +x_93 = lean_array_fget(x_73, x_74); +lean_dec(x_74); +lean_dec_ref(x_73); +x_94 = lean_ctor_get(x_93, 1); +x_95 = lean_ctor_get_uint8(x_93, sizeof(void*)*2); +x_96 = lean_nat_dec_eq(x_94, x_1); +if (x_96 == 0) +{ +lean_object* x_97; lean_object* x_98; +lean_dec_ref(x_93); +lean_free_object(x_29); +lean_dec_ref(x_32); +lean_dec(x_85); lean_dec(x_84); -x_85 = lean_array_fget(x_35, x_36); -lean_dec(x_36); +lean_dec_ref(x_83); lean_dec_ref(x_35); -x_86 = lean_array_fget(x_44, x_45); -lean_dec(x_45); -lean_dec_ref(x_44); -x_87 = lean_array_fget(x_55, x_56); -lean_dec(x_56); -lean_dec_ref(x_55); -x_88 = lean_array_fget(x_65, x_66); -lean_dec(x_66); -lean_dec_ref(x_65); -x_89 = lean_array_fget_borrowed(x_75, x_76); -x_90 = lean_box(x_2); -x_91 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_89); -lean_inc(x_9); -lean_inc_ref(x_1); -x_92 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_92, 0, x_85); -lean_closure_set(x_92, 1, x_1); -lean_closure_set(x_92, 2, x_9); -lean_closure_set(x_92, 3, x_90); -lean_closure_set(x_92, 4, x_91); -lean_closure_set(x_92, 5, x_89); -lean_closure_set(x_92, 6, x_4); -lean_closure_set(x_92, 7, x_5); -lean_closure_set(x_92, 8, x_87); -lean_closure_set(x_92, 9, x_6); -lean_closure_set(x_92, 10, x_47); -x_93 = lean_nat_sub(x_88, x_5); -lean_dec(x_88); +lean_dec_ref(x_38); +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec_ref(x_27); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +x_97 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_94 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg(x_86, x_93, x_6, x_92, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_94) == 0) +x_98 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_97, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_98) == 0) { -uint8_t x_95; -x_95 = !lean_is_exclusive(x_94); -if (x_95 == 0) +uint8_t x_99; +x_99 = !lean_is_exclusive(x_98); +if (x_99 == 0) { -lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; -x_96 = lean_ctor_get(x_94, 0); -x_97 = lean_nat_add(x_76, x_47); -lean_dec(x_76); -lean_ctor_set(x_21, 1, x_97); -x_98 = lean_array_push(x_33, x_96); -lean_ctor_set(x_18, 1, x_98); -x_99 = lean_nat_add(x_9, x_47); -lean_dec(x_9); -x_100 = lean_nat_dec_lt(x_99, x_7); -if (x_100 == 0) +lean_object* x_100; +x_100 = lean_ctor_get(x_98, 0); +if (lean_obj_tag(x_100) == 0) { -lean_dec(x_99); +lean_object* x_101; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_94, 0, x_8); -return x_94; +lean_dec_ref(x_2); +x_101 = lean_ctor_get(x_100, 0); +lean_inc(x_101); +lean_dec_ref(x_100); +lean_ctor_set(x_98, 0, x_101); +return x_98; } else { -lean_free_object(x_94); -x_9 = x_99; -goto _start; -} -} -else -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; -x_102 = lean_ctor_get(x_94, 0); +lean_object* x_102; +lean_free_object(x_98); +x_102 = lean_ctor_get(x_100, 0); lean_inc(x_102); -lean_dec(x_94); -x_103 = lean_nat_add(x_76, x_47); -lean_dec(x_76); -lean_ctor_set(x_21, 1, x_103); -x_104 = lean_array_push(x_33, x_102); -lean_ctor_set(x_18, 1, x_104); -x_105 = lean_nat_add(x_9, x_47); -lean_dec(x_9); -x_106 = lean_nat_dec_lt(x_105, x_7); -if (x_106 == 0) +lean_dec_ref(x_100); +x_15 = x_102; +x_16 = lean_box(0); +goto block_22; +} +} +else { -lean_object* x_107; -lean_dec(x_105); +lean_object* x_103; +x_103 = lean_ctor_get(x_98, 0); +lean_inc(x_103); +lean_dec(x_98); +if (lean_obj_tag(x_103) == 0) +{ +lean_object* x_104; lean_object* x_105; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_107 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_107, 0, x_8); -return x_107; +lean_dec_ref(x_2); +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +lean_dec_ref(x_103); +x_105 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_105, 0, x_104); +return x_105; } else { -x_9 = x_105; -goto _start; +lean_object* x_106; +x_106 = lean_ctor_get(x_103, 0); +lean_inc(x_106); +lean_dec_ref(x_103); +x_15 = x_106; +x_16 = lean_box(0); +goto block_22; } } } else { -uint8_t x_109; -lean_free_object(x_21); -lean_dec_ref(x_24); -lean_dec(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); +uint8_t x_107; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_107 = !lean_is_exclusive(x_98); +if (x_107 == 0) +{ +return x_98; +} +else +{ +lean_object* x_108; lean_object* x_109; +x_108 = lean_ctor_get(x_98, 0); +lean_inc(x_108); +lean_dec(x_98); +x_109 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_109, 0, x_108); +return x_109; +} +} +} +else +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_110 = lean_array_fget(x_43, x_44); +lean_dec(x_44); +lean_dec_ref(x_43); +x_111 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_112 = lean_array_fget(x_63, x_64); +lean_dec(x_64); +lean_dec_ref(x_63); +x_113 = lean_array_fget_borrowed(x_83, x_84); +x_114 = lean_box(x_3); +x_115 = lean_box(x_4); +x_116 = lean_box(x_95); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_113); +lean_inc(x_9); +lean_inc_ref(x_2); +x_117 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_117, 0, x_112); +lean_closure_set(x_117, 1, x_110); +lean_closure_set(x_117, 2, x_2); +lean_closure_set(x_117, 3, x_9); +lean_closure_set(x_117, 4, x_114); +lean_closure_set(x_117, 5, x_115); +lean_closure_set(x_117, 6, x_113); +lean_closure_set(x_117, 7, x_5); +lean_closure_set(x_117, 8, x_6); +lean_closure_set(x_117, 9, x_116); +lean_closure_set(x_117, 10, x_55); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_118 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_111, x_93, x_117, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_118) == 0) +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; +x_119 = lean_ctor_get(x_118, 0); +lean_inc(x_119); +lean_dec_ref(x_118); +x_120 = lean_nat_add(x_84, x_55); +lean_dec(x_84); +lean_ctor_set(x_29, 1, x_120); +x_121 = lean_array_push(x_41, x_119); +lean_ctor_set(x_26, 1, x_121); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +uint8_t x_122; +lean_free_object(x_29); +lean_dec_ref(x_32); +lean_dec(x_85); +lean_dec(x_84); +lean_dec_ref(x_83); +lean_dec_ref(x_35); +lean_dec_ref(x_38); lean_dec_ref(x_27); -lean_dec_ref(x_30); -lean_dec_ref(x_19); -lean_free_object(x_18); -lean_dec(x_33); -lean_free_object(x_17); -lean_free_object(x_16); -lean_free_object(x_15); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); lean_free_object(x_8); lean_dec(x_13); lean_dec_ref(x_12); @@ -15651,191 +16765,79 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_109 = !lean_is_exclusive(x_94); -if (x_109 == 0) +lean_dec_ref(x_2); +x_122 = !lean_is_exclusive(x_118); +if (x_122 == 0) { -return x_94; +return x_118; } else { -lean_object* x_110; lean_object* x_111; -x_110 = lean_ctor_get(x_94, 0); -lean_inc(x_110); -lean_dec(x_94); -x_111 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_111, 0, x_110); -return x_111; +lean_object* x_123; lean_object* x_124; +x_123 = lean_ctor_get(x_118, 0); +lean_inc(x_123); +lean_dec(x_118); +x_124 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_124, 0, x_123); +return x_124; +} } } } else { -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; -lean_dec(x_21); -x_112 = lean_array_fget(x_35, x_36); -lean_dec(x_36); -lean_dec_ref(x_35); -x_113 = lean_array_fget(x_44, x_45); -lean_dec(x_45); -lean_dec_ref(x_44); -x_114 = lean_array_fget(x_55, x_56); -lean_dec(x_56); -lean_dec_ref(x_55); -x_115 = lean_array_fget(x_65, x_66); -lean_dec(x_66); -lean_dec_ref(x_65); -x_116 = lean_array_fget_borrowed(x_75, x_76); -x_117 = lean_box(x_2); -x_118 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_116); -lean_inc(x_9); -lean_inc_ref(x_1); -x_119 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_119, 0, x_112); -lean_closure_set(x_119, 1, x_1); -lean_closure_set(x_119, 2, x_9); -lean_closure_set(x_119, 3, x_117); -lean_closure_set(x_119, 4, x_118); -lean_closure_set(x_119, 5, x_116); -lean_closure_set(x_119, 6, x_4); -lean_closure_set(x_119, 7, x_5); -lean_closure_set(x_119, 8, x_114); -lean_closure_set(x_119, 9, x_6); -lean_closure_set(x_119, 10, x_47); -x_120 = lean_nat_sub(x_115, x_5); -lean_dec(x_115); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_6); -x_121 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg(x_113, x_120, x_6, x_119, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_121) == 0) -{ -lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; uint8_t x_128; -x_122 = lean_ctor_get(x_121, 0); -lean_inc(x_122); -if (lean_is_exclusive(x_121)) { - lean_ctor_release(x_121, 0); - x_123 = x_121; -} else { - lean_dec_ref(x_121); - x_123 = lean_box(0); -} -x_124 = lean_nat_add(x_76, x_47); -lean_dec(x_76); -x_125 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_125, 0, x_75); -lean_ctor_set(x_125, 1, x_124); -lean_ctor_set(x_125, 2, x_77); -x_126 = lean_array_push(x_33, x_122); -lean_ctor_set(x_18, 1, x_126); -lean_ctor_set(x_8, 0, x_125); -x_127 = lean_nat_add(x_9, x_47); -lean_dec(x_9); -x_128 = lean_nat_dec_lt(x_127, x_7); +lean_object* x_125; lean_object* x_126; uint8_t x_127; uint8_t x_128; +lean_dec(x_29); +x_125 = lean_array_fget(x_73, x_74); +lean_dec(x_74); +lean_dec_ref(x_73); +x_126 = lean_ctor_get(x_125, 1); +x_127 = lean_ctor_get_uint8(x_125, sizeof(void*)*2); +x_128 = lean_nat_dec_eq(x_126, x_1); if (x_128 == 0) { -lean_object* x_129; -lean_dec(x_127); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_123)) { - x_129 = lean_alloc_ctor(0, 1, 0); -} else { - x_129 = x_123; -} -lean_ctor_set(x_129, 0, x_8); -return x_129; -} -else -{ -lean_dec(x_123); -x_9 = x_127; -goto _start; -} -} -else -{ -lean_object* x_131; lean_object* x_132; lean_object* x_133; -lean_dec_ref(x_24); -lean_dec(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); +lean_object* x_129; lean_object* x_130; +lean_dec_ref(x_125); +lean_dec_ref(x_32); +lean_dec(x_85); +lean_dec(x_84); +lean_dec_ref(x_83); +lean_dec_ref(x_35); +lean_dec_ref(x_38); +lean_dec(x_64); +lean_dec_ref(x_63); lean_dec_ref(x_27); -lean_dec_ref(x_30); -lean_dec_ref(x_19); -lean_free_object(x_18); -lean_dec(x_33); -lean_free_object(x_17); -lean_free_object(x_16); -lean_free_object(x_15); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); lean_free_object(x_8); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_131 = lean_ctor_get(x_121, 0); +x_129 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_130 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_129, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_130) == 0) +{ +lean_object* x_131; lean_object* x_132; +x_131 = lean_ctor_get(x_130, 0); lean_inc(x_131); -if (lean_is_exclusive(x_121)) { - lean_ctor_release(x_121, 0); - x_132 = x_121; +if (lean_is_exclusive(x_130)) { + lean_ctor_release(x_130, 0); + x_132 = x_130; } else { - lean_dec_ref(x_121); + lean_dec_ref(x_130); x_132 = lean_box(0); } -if (lean_is_scalar(x_132)) { - x_133 = lean_alloc_ctor(1, 1, 0); -} else { - x_133 = x_132; -} -lean_ctor_set(x_133, 0, x_131); -return x_133; -} -} -} -} -else +if (lean_obj_tag(x_131) == 0) { -lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; -lean_dec(x_24); -x_134 = lean_ctor_get(x_21, 0); -x_135 = lean_ctor_get(x_21, 1); -x_136 = lean_ctor_get(x_21, 2); -x_137 = lean_nat_add(x_66, x_47); -lean_inc_ref(x_65); -x_138 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_138, 0, x_65); -lean_ctor_set(x_138, 1, x_137); -lean_ctor_set(x_138, 2, x_67); -x_139 = lean_nat_dec_lt(x_135, x_136); -if (x_139 == 0) -{ -lean_object* x_140; -lean_dec(x_66); -lean_dec_ref(x_65); -lean_dec(x_56); -lean_dec_ref(x_55); -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_133; lean_object* x_134; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -15843,142 +16845,186 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_15, 0, x_138); -x_140 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_140, 0, x_8); -return x_140; +lean_dec_ref(x_2); +x_133 = lean_ctor_get(x_131, 0); +lean_inc(x_133); +lean_dec_ref(x_131); +if (lean_is_scalar(x_132)) { + x_134 = lean_alloc_ctor(0, 1, 0); +} else { + x_134 = x_132; +} +lean_ctor_set(x_134, 0, x_133); +return x_134; } else { -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; -lean_inc(x_136); +lean_object* x_135; +lean_dec(x_132); +x_135 = lean_ctor_get(x_131, 0); lean_inc(x_135); -lean_inc_ref(x_134); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_141 = x_21; -} else { - lean_dec_ref(x_21); - x_141 = lean_box(0); +lean_dec_ref(x_131); +x_15 = x_135; +x_16 = lean_box(0); +goto block_22; } -x_142 = lean_array_fget(x_35, x_36); -lean_dec(x_36); -lean_dec_ref(x_35); -x_143 = lean_array_fget(x_44, x_45); -lean_dec(x_45); -lean_dec_ref(x_44); -x_144 = lean_array_fget(x_55, x_56); -lean_dec(x_56); -lean_dec_ref(x_55); -x_145 = lean_array_fget(x_65, x_66); -lean_dec(x_66); -lean_dec_ref(x_65); -x_146 = lean_array_fget_borrowed(x_134, x_135); -x_147 = lean_box(x_2); -x_148 = lean_box(x_3); +} +else +{ +lean_object* x_136; lean_object* x_137; lean_object* x_138; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_136 = lean_ctor_get(x_130, 0); +lean_inc(x_136); +if (lean_is_exclusive(x_130)) { + lean_ctor_release(x_130, 0); + x_137 = x_130; +} else { + lean_dec_ref(x_130); + x_137 = lean_box(0); +} +if (lean_is_scalar(x_137)) { + x_138 = lean_alloc_ctor(1, 1, 0); +} else { + x_138 = x_137; +} +lean_ctor_set(x_138, 0, x_136); +return x_138; +} +} +else +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; +x_139 = lean_array_fget(x_43, x_44); +lean_dec(x_44); +lean_dec_ref(x_43); +x_140 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_141 = lean_array_fget(x_63, x_64); +lean_dec(x_64); +lean_dec_ref(x_63); +x_142 = lean_array_fget_borrowed(x_83, x_84); +x_143 = lean_box(x_3); +x_144 = lean_box(x_4); +x_145 = lean_box(x_127); lean_inc(x_6); lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_146); +lean_inc_ref(x_142); lean_inc(x_9); -lean_inc_ref(x_1); -x_149 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_149, 0, x_142); -lean_closure_set(x_149, 1, x_1); -lean_closure_set(x_149, 2, x_9); -lean_closure_set(x_149, 3, x_147); -lean_closure_set(x_149, 4, x_148); -lean_closure_set(x_149, 5, x_146); -lean_closure_set(x_149, 6, x_4); -lean_closure_set(x_149, 7, x_5); -lean_closure_set(x_149, 8, x_144); -lean_closure_set(x_149, 9, x_6); -lean_closure_set(x_149, 10, x_47); -x_150 = lean_nat_sub(x_145, x_5); -lean_dec(x_145); +lean_inc_ref(x_2); +x_146 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_146, 0, x_141); +lean_closure_set(x_146, 1, x_139); +lean_closure_set(x_146, 2, x_2); +lean_closure_set(x_146, 3, x_9); +lean_closure_set(x_146, 4, x_143); +lean_closure_set(x_146, 5, x_144); +lean_closure_set(x_146, 6, x_142); +lean_closure_set(x_146, 7, x_5); +lean_closure_set(x_146, 8, x_6); +lean_closure_set(x_146, 9, x_145); +lean_closure_set(x_146, 10, x_55); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_151 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg(x_143, x_150, x_6, x_149, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_151) == 0) +x_147 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_140, x_125, x_146, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_147) == 0) { -lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; uint8_t x_158; -x_152 = lean_ctor_get(x_151, 0); +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; +x_148 = lean_ctor_get(x_147, 0); +lean_inc(x_148); +lean_dec_ref(x_147); +x_149 = lean_nat_add(x_84, x_55); +lean_dec(x_84); +x_150 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_150, 0, x_83); +lean_ctor_set(x_150, 1, x_149); +lean_ctor_set(x_150, 2, x_85); +x_151 = lean_array_push(x_41, x_148); +lean_ctor_set(x_26, 1, x_151); +lean_ctor_set(x_8, 0, x_150); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; +lean_dec_ref(x_32); +lean_dec(x_85); +lean_dec(x_84); +lean_dec_ref(x_83); +lean_dec_ref(x_35); +lean_dec_ref(x_38); +lean_dec_ref(x_27); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_152 = lean_ctor_get(x_147, 0); lean_inc(x_152); -if (lean_is_exclusive(x_151)) { - lean_ctor_release(x_151, 0); - x_153 = x_151; +if (lean_is_exclusive(x_147)) { + lean_ctor_release(x_147, 0); + x_153 = x_147; } else { - lean_dec_ref(x_151); + lean_dec_ref(x_147); x_153 = lean_box(0); } -x_154 = lean_nat_add(x_135, x_47); -lean_dec(x_135); -if (lean_is_scalar(x_141)) { - x_155 = lean_alloc_ctor(0, 3, 0); -} else { - x_155 = x_141; -} -lean_ctor_set(x_155, 0, x_134); -lean_ctor_set(x_155, 1, x_154); -lean_ctor_set(x_155, 2, x_136); -x_156 = lean_array_push(x_33, x_152); -lean_ctor_set(x_18, 1, x_156); -lean_ctor_set(x_15, 0, x_138); -lean_ctor_set(x_8, 0, x_155); -x_157 = lean_nat_add(x_9, x_47); -lean_dec(x_9); -x_158 = lean_nat_dec_lt(x_157, x_7); -if (x_158 == 0) -{ -lean_object* x_159; -lean_dec(x_157); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); if (lean_is_scalar(x_153)) { - x_159 = lean_alloc_ctor(0, 1, 0); + x_154 = lean_alloc_ctor(1, 1, 0); } else { - x_159 = x_153; + x_154 = x_153; +} +lean_ctor_set(x_154, 0, x_152); +return x_154; +} } -lean_ctor_set(x_159, 0, x_8); -return x_159; } -else -{ -lean_dec(x_153); -x_9 = x_157; -goto _start; } } else { -lean_object* x_161; lean_object* x_162; lean_object* x_163; -lean_dec(x_141); -lean_dec_ref(x_138); -lean_dec(x_136); -lean_dec(x_135); -lean_dec_ref(x_134); -lean_dec_ref(x_27); -lean_dec_ref(x_30); -lean_dec_ref(x_19); -lean_free_object(x_18); -lean_dec(x_33); -lean_free_object(x_17); -lean_free_object(x_16); -lean_free_object(x_15); -lean_free_object(x_8); +lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; uint8_t x_160; +lean_dec(x_32); +x_155 = lean_ctor_get(x_29, 0); +x_156 = lean_ctor_get(x_29, 1); +x_157 = lean_ctor_get(x_29, 2); +x_158 = lean_nat_add(x_74, x_55); +lean_inc_ref(x_73); +x_159 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_159, 0, x_73); +lean_ctor_set(x_159, 1, x_158); +lean_ctor_set(x_159, 2, x_75); +x_160 = lean_nat_dec_lt(x_156, x_157); +if (x_160 == 0) +{ +lean_object* x_161; +lean_dec(x_74); +lean_dec_ref(x_73); +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -15986,251 +17032,270 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_161 = lean_ctor_get(x_151, 0); -lean_inc(x_161); -if (lean_is_exclusive(x_151)) { - lean_ctor_release(x_151, 0); - x_162 = x_151; +lean_dec_ref(x_2); +lean_ctor_set(x_23, 0, x_159); +x_161 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_161, 0, x_8); +return x_161; +} +else +{ +lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; uint8_t x_166; +lean_inc(x_157); +lean_inc(x_156); +lean_inc_ref(x_155); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_162 = x_29; } else { - lean_dec_ref(x_151); + lean_dec_ref(x_29); x_162 = lean_box(0); } -if (lean_is_scalar(x_162)) { - x_163 = lean_alloc_ctor(1, 1, 0); -} else { - x_163 = x_162; -} -lean_ctor_set(x_163, 0, x_161); -return x_163; -} -} -} -} -} -else +x_163 = lean_array_fget(x_73, x_74); +lean_dec(x_74); +lean_dec_ref(x_73); +x_164 = lean_ctor_get(x_163, 1); +x_165 = lean_ctor_get_uint8(x_163, sizeof(void*)*2); +x_166 = lean_nat_dec_eq(x_164, x_1); +if (x_166 == 0) { -lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; -lean_dec(x_27); -x_164 = lean_ctor_get(x_24, 0); -x_165 = lean_ctor_get(x_24, 1); -x_166 = lean_ctor_get(x_24, 2); -x_167 = lean_nat_add(x_56, x_47); -lean_inc_ref(x_55); -x_168 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_168, 0, x_55); -lean_ctor_set(x_168, 1, x_167); -lean_ctor_set(x_168, 2, x_57); -x_169 = lean_nat_dec_lt(x_165, x_166); -if (x_169 == 0) -{ -lean_object* x_170; -lean_dec(x_56); -lean_dec_ref(x_55); -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); +lean_object* x_167; lean_object* x_168; +lean_dec_ref(x_163); +lean_dec(x_162); +lean_dec_ref(x_159); +lean_dec(x_157); +lean_dec(x_156); +lean_dec_ref(x_155); lean_dec_ref(x_35); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_16, 0, x_168); -x_170 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_170, 0, x_8); -return x_170; -} -else -{ -lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; uint8_t x_177; -lean_inc(x_166); -lean_inc(x_165); -lean_inc_ref(x_164); -if (lean_is_exclusive(x_24)) { - lean_ctor_release(x_24, 0); - lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_171 = x_24; -} else { - lean_dec_ref(x_24); - x_171 = lean_box(0); -} -x_172 = lean_ctor_get(x_21, 0); -x_173 = lean_ctor_get(x_21, 1); -x_174 = lean_ctor_get(x_21, 2); -x_175 = lean_nat_add(x_165, x_47); -lean_inc_ref(x_164); -if (lean_is_scalar(x_171)) { - x_176 = lean_alloc_ctor(0, 3, 0); -} else { - x_176 = x_171; -} -lean_ctor_set(x_176, 0, x_164); -lean_ctor_set(x_176, 1, x_175); -lean_ctor_set(x_176, 2, x_166); -x_177 = lean_nat_dec_lt(x_173, x_174); -if (x_177 == 0) -{ -lean_object* x_178; -lean_dec(x_165); -lean_dec_ref(x_164); -lean_dec(x_56); -lean_dec_ref(x_55); -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_16, 0, x_168); -lean_ctor_set(x_15, 0, x_176); -x_178 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_178, 0, x_8); -return x_178; -} -else -{ -lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; -lean_inc(x_174); -lean_inc(x_173); -lean_inc_ref(x_172); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_179 = x_21; -} else { - lean_dec_ref(x_21); - x_179 = lean_box(0); -} -x_180 = lean_array_fget(x_35, x_36); -lean_dec(x_36); -lean_dec_ref(x_35); -x_181 = lean_array_fget(x_44, x_45); -lean_dec(x_45); -lean_dec_ref(x_44); -x_182 = lean_array_fget(x_55, x_56); -lean_dec(x_56); -lean_dec_ref(x_55); -x_183 = lean_array_fget(x_164, x_165); -lean_dec(x_165); -lean_dec_ref(x_164); -x_184 = lean_array_fget_borrowed(x_172, x_173); -x_185 = lean_box(x_2); -x_186 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_184); -lean_inc(x_9); -lean_inc_ref(x_1); -x_187 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_187, 0, x_180); -lean_closure_set(x_187, 1, x_1); -lean_closure_set(x_187, 2, x_9); -lean_closure_set(x_187, 3, x_185); -lean_closure_set(x_187, 4, x_186); -lean_closure_set(x_187, 5, x_184); -lean_closure_set(x_187, 6, x_4); -lean_closure_set(x_187, 7, x_5); -lean_closure_set(x_187, 8, x_182); -lean_closure_set(x_187, 9, x_6); -lean_closure_set(x_187, 10, x_47); -x_188 = lean_nat_sub(x_183, x_5); -lean_dec(x_183); +lean_dec_ref(x_38); +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec_ref(x_27); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +x_167 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_189 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg(x_181, x_188, x_6, x_187, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_189) == 0) +x_168 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_167, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_168) == 0) { -lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; -x_190 = lean_ctor_get(x_189, 0); -lean_inc(x_190); -if (lean_is_exclusive(x_189)) { - lean_ctor_release(x_189, 0); - x_191 = x_189; +lean_object* x_169; lean_object* x_170; +x_169 = lean_ctor_get(x_168, 0); +lean_inc(x_169); +if (lean_is_exclusive(x_168)) { + lean_ctor_release(x_168, 0); + x_170 = x_168; } else { - lean_dec_ref(x_189); + lean_dec_ref(x_168); + x_170 = lean_box(0); +} +if (lean_obj_tag(x_169) == 0) +{ +lean_object* x_171; lean_object* x_172; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_171 = lean_ctor_get(x_169, 0); +lean_inc(x_171); +lean_dec_ref(x_169); +if (lean_is_scalar(x_170)) { + x_172 = lean_alloc_ctor(0, 1, 0); +} else { + x_172 = x_170; +} +lean_ctor_set(x_172, 0, x_171); +return x_172; +} +else +{ +lean_object* x_173; +lean_dec(x_170); +x_173 = lean_ctor_get(x_169, 0); +lean_inc(x_173); +lean_dec_ref(x_169); +x_15 = x_173; +x_16 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_174; lean_object* x_175; lean_object* x_176; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_174 = lean_ctor_get(x_168, 0); +lean_inc(x_174); +if (lean_is_exclusive(x_168)) { + lean_ctor_release(x_168, 0); + x_175 = x_168; +} else { + lean_dec_ref(x_168); + x_175 = lean_box(0); +} +if (lean_is_scalar(x_175)) { + x_176 = lean_alloc_ctor(1, 1, 0); +} else { + x_176 = x_175; +} +lean_ctor_set(x_176, 0, x_174); +return x_176; +} +} +else +{ +lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; +x_177 = lean_array_fget(x_43, x_44); +lean_dec(x_44); +lean_dec_ref(x_43); +x_178 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_179 = lean_array_fget(x_63, x_64); +lean_dec(x_64); +lean_dec_ref(x_63); +x_180 = lean_array_fget_borrowed(x_155, x_156); +x_181 = lean_box(x_3); +x_182 = lean_box(x_4); +x_183 = lean_box(x_165); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_180); +lean_inc(x_9); +lean_inc_ref(x_2); +x_184 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_184, 0, x_179); +lean_closure_set(x_184, 1, x_177); +lean_closure_set(x_184, 2, x_2); +lean_closure_set(x_184, 3, x_9); +lean_closure_set(x_184, 4, x_181); +lean_closure_set(x_184, 5, x_182); +lean_closure_set(x_184, 6, x_180); +lean_closure_set(x_184, 7, x_5); +lean_closure_set(x_184, 8, x_6); +lean_closure_set(x_184, 9, x_183); +lean_closure_set(x_184, 10, x_55); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_185 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_178, x_163, x_184, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_185) == 0) +{ +lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; +x_186 = lean_ctor_get(x_185, 0); +lean_inc(x_186); +lean_dec_ref(x_185); +x_187 = lean_nat_add(x_156, x_55); +lean_dec(x_156); +if (lean_is_scalar(x_162)) { + x_188 = lean_alloc_ctor(0, 3, 0); +} else { + x_188 = x_162; +} +lean_ctor_set(x_188, 0, x_155); +lean_ctor_set(x_188, 1, x_187); +lean_ctor_set(x_188, 2, x_157); +x_189 = lean_array_push(x_41, x_186); +lean_ctor_set(x_26, 1, x_189); +lean_ctor_set(x_23, 0, x_159); +lean_ctor_set(x_8, 0, x_188); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_190; lean_object* x_191; lean_object* x_192; +lean_dec(x_162); +lean_dec_ref(x_159); +lean_dec(x_157); +lean_dec(x_156); +lean_dec_ref(x_155); +lean_dec_ref(x_35); +lean_dec_ref(x_38); +lean_dec_ref(x_27); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_190 = lean_ctor_get(x_185, 0); +lean_inc(x_190); +if (lean_is_exclusive(x_185)) { + lean_ctor_release(x_185, 0); + x_191 = x_185; +} else { + lean_dec_ref(x_185); x_191 = lean_box(0); } -x_192 = lean_nat_add(x_173, x_47); -lean_dec(x_173); -if (lean_is_scalar(x_179)) { - x_193 = lean_alloc_ctor(0, 3, 0); -} else { - x_193 = x_179; -} -lean_ctor_set(x_193, 0, x_172); -lean_ctor_set(x_193, 1, x_192); -lean_ctor_set(x_193, 2, x_174); -x_194 = lean_array_push(x_33, x_190); -lean_ctor_set(x_18, 1, x_194); -lean_ctor_set(x_16, 0, x_168); -lean_ctor_set(x_15, 0, x_176); -lean_ctor_set(x_8, 0, x_193); -x_195 = lean_nat_add(x_9, x_47); -lean_dec(x_9); -x_196 = lean_nat_dec_lt(x_195, x_7); -if (x_196 == 0) -{ -lean_object* x_197; -lean_dec(x_195); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); if (lean_is_scalar(x_191)) { - x_197 = lean_alloc_ctor(0, 1, 0); + x_192 = lean_alloc_ctor(1, 1, 0); } else { - x_197 = x_191; + x_192 = x_191; +} +lean_ctor_set(x_192, 0, x_190); +return x_192; +} +} } -lean_ctor_set(x_197, 0, x_8); -return x_197; } -else -{ -lean_dec(x_191); -x_9 = x_195; -goto _start; } } else { -lean_object* x_199; lean_object* x_200; lean_object* x_201; -lean_dec(x_179); -lean_dec_ref(x_176); -lean_dec(x_174); -lean_dec(x_173); -lean_dec_ref(x_172); -lean_dec_ref(x_168); -lean_dec_ref(x_30); -lean_dec_ref(x_19); -lean_free_object(x_18); -lean_dec(x_33); -lean_free_object(x_17); -lean_free_object(x_16); -lean_free_object(x_15); -lean_free_object(x_8); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; +lean_dec(x_35); +x_193 = lean_ctor_get(x_32, 0); +x_194 = lean_ctor_get(x_32, 1); +x_195 = lean_ctor_get(x_32, 2); +x_196 = lean_nat_add(x_64, x_55); +lean_inc_ref(x_63); +x_197 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_197, 0, x_63); +lean_ctor_set(x_197, 1, x_196); +lean_ctor_set(x_197, 2, x_65); +x_198 = lean_nat_dec_lt(x_194, x_195); +if (x_198 == 0) +{ +lean_object* x_199; +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -16238,51 +17303,52 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_199 = lean_ctor_get(x_189, 0); -lean_inc(x_199); -if (lean_is_exclusive(x_189)) { - lean_ctor_release(x_189, 0); - x_200 = x_189; +lean_dec_ref(x_2); +lean_ctor_set(x_24, 0, x_197); +x_199 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_199, 0, x_8); +return x_199; +} +else +{ +lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; uint8_t x_206; +lean_inc(x_195); +lean_inc(x_194); +lean_inc_ref(x_193); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_200 = x_32; } else { - lean_dec_ref(x_189); + lean_dec_ref(x_32); x_200 = lean_box(0); } +x_201 = lean_ctor_get(x_29, 0); +x_202 = lean_ctor_get(x_29, 1); +x_203 = lean_ctor_get(x_29, 2); +x_204 = lean_nat_add(x_194, x_55); +lean_inc_ref(x_193); if (lean_is_scalar(x_200)) { - x_201 = lean_alloc_ctor(1, 1, 0); + x_205 = lean_alloc_ctor(0, 3, 0); } else { - x_201 = x_200; + x_205 = x_200; } -lean_ctor_set(x_201, 0, x_199); -return x_201; -} -} -} -} -} -} -else +lean_ctor_set(x_205, 0, x_193); +lean_ctor_set(x_205, 1, x_204); +lean_ctor_set(x_205, 2, x_195); +x_206 = lean_nat_dec_lt(x_202, x_203); +if (x_206 == 0) { -lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; uint8_t x_207; -lean_dec(x_30); -x_202 = lean_ctor_get(x_27, 0); -x_203 = lean_ctor_get(x_27, 1); -x_204 = lean_ctor_get(x_27, 2); -x_205 = lean_nat_add(x_45, x_47); -lean_inc_ref(x_44); -x_206 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_206, 0, x_44); -lean_ctor_set(x_206, 1, x_205); -lean_ctor_set(x_206, 2, x_46); -x_207 = lean_nat_dec_lt(x_203, x_204); -if (x_207 == 0) -{ -lean_object* x_208; -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_207; +lean_dec(x_194); +lean_dec_ref(x_193); +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -16290,253 +17356,271 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_17, 0, x_206); -x_208 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_208, 0, x_8); -return x_208; +lean_dec_ref(x_2); +lean_ctor_set(x_24, 0, x_197); +lean_ctor_set(x_23, 0, x_205); +x_207 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_207, 0, x_8); +return x_207; } else { -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; uint8_t x_215; -lean_inc(x_204); +lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; uint8_t x_212; lean_inc(x_203); -lean_inc_ref(x_202); -if (lean_is_exclusive(x_27)) { - lean_ctor_release(x_27, 0); - lean_ctor_release(x_27, 1); - lean_ctor_release(x_27, 2); - x_209 = x_27; +lean_inc(x_202); +lean_inc_ref(x_201); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_208 = x_29; } else { - lean_dec_ref(x_27); - x_209 = lean_box(0); + lean_dec_ref(x_29); + x_208 = lean_box(0); } -x_210 = lean_ctor_get(x_24, 0); -x_211 = lean_ctor_get(x_24, 1); -x_212 = lean_ctor_get(x_24, 2); -x_213 = lean_nat_add(x_203, x_47); -lean_inc_ref(x_202); -if (lean_is_scalar(x_209)) { - x_214 = lean_alloc_ctor(0, 3, 0); -} else { - x_214 = x_209; -} -lean_ctor_set(x_214, 0, x_202); -lean_ctor_set(x_214, 1, x_213); -lean_ctor_set(x_214, 2, x_204); -x_215 = lean_nat_dec_lt(x_211, x_212); -if (x_215 == 0) +x_209 = lean_array_fget(x_193, x_194); +lean_dec(x_194); +lean_dec_ref(x_193); +x_210 = lean_ctor_get(x_209, 1); +x_211 = lean_ctor_get_uint8(x_209, sizeof(void*)*2); +x_212 = lean_nat_dec_eq(x_210, x_1); +if (x_212 == 0) { -lean_object* x_216; +lean_object* x_213; lean_object* x_214; +lean_dec_ref(x_209); +lean_dec(x_208); +lean_dec_ref(x_205); lean_dec(x_203); -lean_dec_ref(x_202); -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_17, 0, x_206); -lean_ctor_set(x_16, 0, x_214); -x_216 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_216, 0, x_8); -return x_216; -} -else -{ -lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; uint8_t x_223; -lean_inc(x_212); -lean_inc(x_211); -lean_inc_ref(x_210); -if (lean_is_exclusive(x_24)) { - lean_ctor_release(x_24, 0); - lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_217 = x_24; -} else { - lean_dec_ref(x_24); - x_217 = lean_box(0); -} -x_218 = lean_ctor_get(x_21, 0); -x_219 = lean_ctor_get(x_21, 1); -x_220 = lean_ctor_get(x_21, 2); -x_221 = lean_nat_add(x_211, x_47); -lean_inc_ref(x_210); -if (lean_is_scalar(x_217)) { - x_222 = lean_alloc_ctor(0, 3, 0); -} else { - x_222 = x_217; -} -lean_ctor_set(x_222, 0, x_210); -lean_ctor_set(x_222, 1, x_221); -lean_ctor_set(x_222, 2, x_212); -x_223 = lean_nat_dec_lt(x_219, x_220); -if (x_223 == 0) -{ -lean_object* x_224; -lean_dec(x_211); -lean_dec_ref(x_210); -lean_dec(x_203); -lean_dec_ref(x_202); -lean_dec(x_45); -lean_dec_ref(x_44); -lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_17, 0, x_206); -lean_ctor_set(x_16, 0, x_214); -lean_ctor_set(x_15, 0, x_222); -x_224 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_224, 0, x_8); -return x_224; -} -else -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; -lean_inc(x_220); -lean_inc(x_219); -lean_inc_ref(x_218); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_225 = x_21; -} else { - lean_dec_ref(x_21); - x_225 = lean_box(0); -} -x_226 = lean_array_fget(x_35, x_36); -lean_dec(x_36); -lean_dec_ref(x_35); -x_227 = lean_array_fget(x_44, x_45); -lean_dec(x_45); -lean_dec_ref(x_44); -x_228 = lean_array_fget(x_202, x_203); -lean_dec(x_203); -lean_dec_ref(x_202); -x_229 = lean_array_fget(x_210, x_211); -lean_dec(x_211); -lean_dec_ref(x_210); -x_230 = lean_array_fget_borrowed(x_218, x_219); -x_231 = lean_box(x_2); -x_232 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_230); -lean_inc(x_9); -lean_inc_ref(x_1); -x_233 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_233, 0, x_226); -lean_closure_set(x_233, 1, x_1); -lean_closure_set(x_233, 2, x_9); -lean_closure_set(x_233, 3, x_231); -lean_closure_set(x_233, 4, x_232); -lean_closure_set(x_233, 5, x_230); -lean_closure_set(x_233, 6, x_4); -lean_closure_set(x_233, 7, x_5); -lean_closure_set(x_233, 8, x_228); -lean_closure_set(x_233, 9, x_6); -lean_closure_set(x_233, 10, x_47); -x_234 = lean_nat_sub(x_229, x_5); -lean_dec(x_229); +lean_dec(x_202); +lean_dec_ref(x_201); +lean_dec_ref(x_197); +lean_dec_ref(x_38); +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec_ref(x_27); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +x_213 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_235 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg(x_227, x_234, x_6, x_233, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_235) == 0) +x_214 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_213, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_214) == 0) { -lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; uint8_t x_242; -x_236 = lean_ctor_get(x_235, 0); -lean_inc(x_236); -if (lean_is_exclusive(x_235)) { - lean_ctor_release(x_235, 0); - x_237 = x_235; +lean_object* x_215; lean_object* x_216; +x_215 = lean_ctor_get(x_214, 0); +lean_inc(x_215); +if (lean_is_exclusive(x_214)) { + lean_ctor_release(x_214, 0); + x_216 = x_214; } else { - lean_dec_ref(x_235); + lean_dec_ref(x_214); + x_216 = lean_box(0); +} +if (lean_obj_tag(x_215) == 0) +{ +lean_object* x_217; lean_object* x_218; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_217 = lean_ctor_get(x_215, 0); +lean_inc(x_217); +lean_dec_ref(x_215); +if (lean_is_scalar(x_216)) { + x_218 = lean_alloc_ctor(0, 1, 0); +} else { + x_218 = x_216; +} +lean_ctor_set(x_218, 0, x_217); +return x_218; +} +else +{ +lean_object* x_219; +lean_dec(x_216); +x_219 = lean_ctor_get(x_215, 0); +lean_inc(x_219); +lean_dec_ref(x_215); +x_15 = x_219; +x_16 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_220 = lean_ctor_get(x_214, 0); +lean_inc(x_220); +if (lean_is_exclusive(x_214)) { + lean_ctor_release(x_214, 0); + x_221 = x_214; +} else { + lean_dec_ref(x_214); + x_221 = lean_box(0); +} +if (lean_is_scalar(x_221)) { + x_222 = lean_alloc_ctor(1, 1, 0); +} else { + x_222 = x_221; +} +lean_ctor_set(x_222, 0, x_220); +return x_222; +} +} +else +{ +lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_223 = lean_array_fget(x_43, x_44); +lean_dec(x_44); +lean_dec_ref(x_43); +x_224 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_225 = lean_array_fget(x_63, x_64); +lean_dec(x_64); +lean_dec_ref(x_63); +x_226 = lean_array_fget_borrowed(x_201, x_202); +x_227 = lean_box(x_3); +x_228 = lean_box(x_4); +x_229 = lean_box(x_211); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_226); +lean_inc(x_9); +lean_inc_ref(x_2); +x_230 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_230, 0, x_225); +lean_closure_set(x_230, 1, x_223); +lean_closure_set(x_230, 2, x_2); +lean_closure_set(x_230, 3, x_9); +lean_closure_set(x_230, 4, x_227); +lean_closure_set(x_230, 5, x_228); +lean_closure_set(x_230, 6, x_226); +lean_closure_set(x_230, 7, x_5); +lean_closure_set(x_230, 8, x_6); +lean_closure_set(x_230, 9, x_229); +lean_closure_set(x_230, 10, x_55); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_231 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_224, x_209, x_230, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_231) == 0) +{ +lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_232 = lean_ctor_get(x_231, 0); +lean_inc(x_232); +lean_dec_ref(x_231); +x_233 = lean_nat_add(x_202, x_55); +lean_dec(x_202); +if (lean_is_scalar(x_208)) { + x_234 = lean_alloc_ctor(0, 3, 0); +} else { + x_234 = x_208; +} +lean_ctor_set(x_234, 0, x_201); +lean_ctor_set(x_234, 1, x_233); +lean_ctor_set(x_234, 2, x_203); +x_235 = lean_array_push(x_41, x_232); +lean_ctor_set(x_26, 1, x_235); +lean_ctor_set(x_24, 0, x_197); +lean_ctor_set(x_23, 0, x_205); +lean_ctor_set(x_8, 0, x_234); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_236; lean_object* x_237; lean_object* x_238; +lean_dec(x_208); +lean_dec_ref(x_205); +lean_dec(x_203); +lean_dec(x_202); +lean_dec_ref(x_201); +lean_dec_ref(x_197); +lean_dec_ref(x_38); +lean_dec_ref(x_27); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_236 = lean_ctor_get(x_231, 0); +lean_inc(x_236); +if (lean_is_exclusive(x_231)) { + lean_ctor_release(x_231, 0); + x_237 = x_231; +} else { + lean_dec_ref(x_231); x_237 = lean_box(0); } -x_238 = lean_nat_add(x_219, x_47); -lean_dec(x_219); -if (lean_is_scalar(x_225)) { - x_239 = lean_alloc_ctor(0, 3, 0); -} else { - x_239 = x_225; -} -lean_ctor_set(x_239, 0, x_218); -lean_ctor_set(x_239, 1, x_238); -lean_ctor_set(x_239, 2, x_220); -x_240 = lean_array_push(x_33, x_236); -lean_ctor_set(x_18, 1, x_240); -lean_ctor_set(x_17, 0, x_206); -lean_ctor_set(x_16, 0, x_214); -lean_ctor_set(x_15, 0, x_222); -lean_ctor_set(x_8, 0, x_239); -x_241 = lean_nat_add(x_9, x_47); -lean_dec(x_9); -x_242 = lean_nat_dec_lt(x_241, x_7); -if (x_242 == 0) -{ -lean_object* x_243; -lean_dec(x_241); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); if (lean_is_scalar(x_237)) { - x_243 = lean_alloc_ctor(0, 1, 0); + x_238 = lean_alloc_ctor(1, 1, 0); } else { - x_243 = x_237; + x_238 = x_237; +} +lean_ctor_set(x_238, 0, x_236); +return x_238; +} +} +} } -lean_ctor_set(x_243, 0, x_8); -return x_243; } -else -{ -lean_dec(x_237); -x_9 = x_241; -goto _start; } } else { -lean_object* x_245; lean_object* x_246; lean_object* x_247; -lean_dec(x_225); -lean_dec_ref(x_222); -lean_dec(x_220); -lean_dec(x_219); -lean_dec_ref(x_218); -lean_dec_ref(x_214); -lean_dec_ref(x_206); -lean_dec_ref(x_19); -lean_free_object(x_18); -lean_dec(x_33); -lean_free_object(x_17); -lean_free_object(x_16); -lean_free_object(x_15); -lean_free_object(x_8); +lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; uint8_t x_244; +lean_dec(x_38); +x_239 = lean_ctor_get(x_35, 0); +x_240 = lean_ctor_get(x_35, 1); +x_241 = lean_ctor_get(x_35, 2); +x_242 = lean_nat_add(x_53, x_55); +lean_inc_ref(x_52); +x_243 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_243, 0, x_52); +lean_ctor_set(x_243, 1, x_242); +lean_ctor_set(x_243, 2, x_54); +x_244 = lean_nat_dec_lt(x_240, x_241); +if (x_244 == 0) +{ +lean_object* x_245; +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -16544,51 +17628,50 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_245 = lean_ctor_get(x_235, 0); -lean_inc(x_245); -if (lean_is_exclusive(x_235)) { - lean_ctor_release(x_235, 0); - x_246 = x_235; +lean_dec_ref(x_2); +lean_ctor_set(x_25, 0, x_243); +x_245 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_245, 0, x_8); +return x_245; +} +else +{ +lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; uint8_t x_252; +lean_inc(x_241); +lean_inc(x_240); +lean_inc_ref(x_239); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + lean_ctor_release(x_35, 2); + x_246 = x_35; } else { - lean_dec_ref(x_235); + lean_dec_ref(x_35); x_246 = lean_box(0); } +x_247 = lean_ctor_get(x_32, 0); +x_248 = lean_ctor_get(x_32, 1); +x_249 = lean_ctor_get(x_32, 2); +x_250 = lean_nat_add(x_240, x_55); +lean_inc_ref(x_239); if (lean_is_scalar(x_246)) { - x_247 = lean_alloc_ctor(1, 1, 0); + x_251 = lean_alloc_ctor(0, 3, 0); } else { - x_247 = x_246; + x_251 = x_246; } -lean_ctor_set(x_247, 0, x_245); -return x_247; -} -} -} -} -} -} -} -else +lean_ctor_set(x_251, 0, x_239); +lean_ctor_set(x_251, 1, x_250); +lean_ctor_set(x_251, 2, x_241); +x_252 = lean_nat_dec_lt(x_248, x_249); +if (x_252 == 0) { -lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint8_t x_254; -lean_dec(x_19); -x_248 = lean_ctor_get(x_30, 0); -x_249 = lean_ctor_get(x_30, 1); -x_250 = lean_ctor_get(x_30, 2); -x_251 = lean_unsigned_to_nat(1u); -x_252 = lean_nat_add(x_36, x_251); -lean_inc_ref(x_35); -x_253 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_253, 0, x_35); -lean_ctor_set(x_253, 1, x_252); -lean_ctor_set(x_253, 2, x_37); -x_254 = lean_nat_dec_lt(x_249, x_250); -if (x_254 == 0) -{ -lean_object* x_255; -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_253; +lean_dec(x_240); +lean_dec_ref(x_239); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -16596,49 +17679,53 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_18, 0, x_253); -x_255 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_255, 0, x_8); -return x_255; +lean_dec_ref(x_2); +lean_ctor_set(x_25, 0, x_243); +lean_ctor_set(x_24, 0, x_251); +x_253 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_253, 0, x_8); +return x_253; } else { -lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint8_t x_262; -lean_inc(x_250); +lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint8_t x_260; lean_inc(x_249); -lean_inc_ref(x_248); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - lean_ctor_release(x_30, 1); - lean_ctor_release(x_30, 2); - x_256 = x_30; +lean_inc(x_248); +lean_inc_ref(x_247); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_254 = x_32; } else { - lean_dec_ref(x_30); - x_256 = lean_box(0); + lean_dec_ref(x_32); + x_254 = lean_box(0); } -x_257 = lean_ctor_get(x_27, 0); -x_258 = lean_ctor_get(x_27, 1); -x_259 = lean_ctor_get(x_27, 2); -x_260 = lean_nat_add(x_249, x_251); -lean_inc_ref(x_248); -if (lean_is_scalar(x_256)) { - x_261 = lean_alloc_ctor(0, 3, 0); +x_255 = lean_ctor_get(x_29, 0); +x_256 = lean_ctor_get(x_29, 1); +x_257 = lean_ctor_get(x_29, 2); +x_258 = lean_nat_add(x_248, x_55); +lean_inc_ref(x_247); +if (lean_is_scalar(x_254)) { + x_259 = lean_alloc_ctor(0, 3, 0); } else { - x_261 = x_256; + x_259 = x_254; } -lean_ctor_set(x_261, 0, x_248); -lean_ctor_set(x_261, 1, x_260); -lean_ctor_set(x_261, 2, x_250); -x_262 = lean_nat_dec_lt(x_258, x_259); -if (x_262 == 0) +lean_ctor_set(x_259, 0, x_247); +lean_ctor_set(x_259, 1, x_258); +lean_ctor_set(x_259, 2, x_249); +x_260 = lean_nat_dec_lt(x_256, x_257); +if (x_260 == 0) { -lean_object* x_263; -lean_dec(x_249); -lean_dec_ref(x_248); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_object* x_261; +lean_dec(x_248); +lean_dec_ref(x_247); +lean_dec(x_240); +lean_dec_ref(x_239); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -16646,256 +17733,220 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_18, 0, x_253); -lean_ctor_set(x_17, 0, x_261); -x_263 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_263, 0, x_8); -return x_263; +lean_dec_ref(x_2); +lean_ctor_set(x_25, 0, x_243); +lean_ctor_set(x_24, 0, x_251); +lean_ctor_set(x_23, 0, x_259); +x_261 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_261, 0, x_8); +return x_261; } else { -lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; uint8_t x_270; -lean_inc(x_259); -lean_inc(x_258); -lean_inc_ref(x_257); -if (lean_is_exclusive(x_27)) { - lean_ctor_release(x_27, 0); - lean_ctor_release(x_27, 1); - lean_ctor_release(x_27, 2); - x_264 = x_27; +lean_object* x_262; lean_object* x_263; lean_object* x_264; uint8_t x_265; uint8_t x_266; +lean_inc(x_257); +lean_inc(x_256); +lean_inc_ref(x_255); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_262 = x_29; } else { - lean_dec_ref(x_27); - x_264 = lean_box(0); + lean_dec_ref(x_29); + x_262 = lean_box(0); } -x_265 = lean_ctor_get(x_24, 0); -x_266 = lean_ctor_get(x_24, 1); -x_267 = lean_ctor_get(x_24, 2); -x_268 = lean_nat_add(x_258, x_251); -lean_inc_ref(x_257); -if (lean_is_scalar(x_264)) { - x_269 = lean_alloc_ctor(0, 3, 0); -} else { - x_269 = x_264; -} -lean_ctor_set(x_269, 0, x_257); -lean_ctor_set(x_269, 1, x_268); -lean_ctor_set(x_269, 2, x_259); -x_270 = lean_nat_dec_lt(x_266, x_267); -if (x_270 == 0) +x_263 = lean_array_fget(x_247, x_248); +lean_dec(x_248); +lean_dec_ref(x_247); +x_264 = lean_ctor_get(x_263, 1); +x_265 = lean_ctor_get_uint8(x_263, sizeof(void*)*2); +x_266 = lean_nat_dec_eq(x_264, x_1); +if (x_266 == 0) { -lean_object* x_271; -lean_dec(x_258); -lean_dec_ref(x_257); -lean_dec(x_249); -lean_dec_ref(x_248); -lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_18, 0, x_253); -lean_ctor_set(x_17, 0, x_261); -lean_ctor_set(x_16, 0, x_269); -x_271 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_271, 0, x_8); -return x_271; -} -else -{ -lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; uint8_t x_278; -lean_inc(x_267); -lean_inc(x_266); -lean_inc_ref(x_265); -if (lean_is_exclusive(x_24)) { - lean_ctor_release(x_24, 0); - lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_272 = x_24; -} else { - lean_dec_ref(x_24); - x_272 = lean_box(0); -} -x_273 = lean_ctor_get(x_21, 0); -x_274 = lean_ctor_get(x_21, 1); -x_275 = lean_ctor_get(x_21, 2); -x_276 = lean_nat_add(x_266, x_251); -lean_inc_ref(x_265); -if (lean_is_scalar(x_272)) { - x_277 = lean_alloc_ctor(0, 3, 0); -} else { - x_277 = x_272; -} -lean_ctor_set(x_277, 0, x_265); -lean_ctor_set(x_277, 1, x_276); -lean_ctor_set(x_277, 2, x_267); -x_278 = lean_nat_dec_lt(x_274, x_275); -if (x_278 == 0) -{ -lean_object* x_279; -lean_dec(x_266); -lean_dec_ref(x_265); -lean_dec(x_258); -lean_dec_ref(x_257); -lean_dec(x_249); -lean_dec_ref(x_248); -lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -lean_ctor_set(x_18, 0, x_253); -lean_ctor_set(x_17, 0, x_261); -lean_ctor_set(x_16, 0, x_269); -lean_ctor_set(x_15, 0, x_277); -x_279 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_279, 0, x_8); -return x_279; -} -else -{ -lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; -lean_inc(x_275); -lean_inc(x_274); -lean_inc_ref(x_273); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_280 = x_21; -} else { - lean_dec_ref(x_21); - x_280 = lean_box(0); -} -x_281 = lean_array_fget(x_35, x_36); -lean_dec(x_36); -lean_dec_ref(x_35); -x_282 = lean_array_fget(x_248, x_249); -lean_dec(x_249); -lean_dec_ref(x_248); -x_283 = lean_array_fget(x_257, x_258); -lean_dec(x_258); -lean_dec_ref(x_257); -x_284 = lean_array_fget(x_265, x_266); -lean_dec(x_266); -lean_dec_ref(x_265); -x_285 = lean_array_fget_borrowed(x_273, x_274); -x_286 = lean_box(x_2); -x_287 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_285); -lean_inc(x_9); -lean_inc_ref(x_1); -x_288 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_288, 0, x_281); -lean_closure_set(x_288, 1, x_1); -lean_closure_set(x_288, 2, x_9); -lean_closure_set(x_288, 3, x_286); -lean_closure_set(x_288, 4, x_287); -lean_closure_set(x_288, 5, x_285); -lean_closure_set(x_288, 6, x_4); -lean_closure_set(x_288, 7, x_5); -lean_closure_set(x_288, 8, x_283); -lean_closure_set(x_288, 9, x_6); -lean_closure_set(x_288, 10, x_251); -x_289 = lean_nat_sub(x_284, x_5); -lean_dec(x_284); +lean_object* x_267; lean_object* x_268; +lean_dec_ref(x_263); +lean_dec(x_262); +lean_dec_ref(x_259); +lean_dec(x_257); +lean_dec(x_256); +lean_dec_ref(x_255); +lean_dec_ref(x_251); +lean_dec_ref(x_243); +lean_dec(x_240); +lean_dec_ref(x_239); +lean_dec_ref(x_27); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_44); +lean_dec_ref(x_43); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +x_267 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_290 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg(x_282, x_289, x_6, x_288, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_290) == 0) +x_268 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_267, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_268) == 0) { -lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; uint8_t x_297; -x_291 = lean_ctor_get(x_290, 0); -lean_inc(x_291); -if (lean_is_exclusive(x_290)) { - lean_ctor_release(x_290, 0); - x_292 = x_290; +lean_object* x_269; lean_object* x_270; +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + x_270 = x_268; } else { - lean_dec_ref(x_290); - x_292 = lean_box(0); + lean_dec_ref(x_268); + x_270 = lean_box(0); } -x_293 = lean_nat_add(x_274, x_251); -lean_dec(x_274); -if (lean_is_scalar(x_280)) { - x_294 = lean_alloc_ctor(0, 3, 0); -} else { - x_294 = x_280; -} -lean_ctor_set(x_294, 0, x_273); -lean_ctor_set(x_294, 1, x_293); -lean_ctor_set(x_294, 2, x_275); -x_295 = lean_array_push(x_33, x_291); -lean_ctor_set(x_18, 1, x_295); -lean_ctor_set(x_18, 0, x_253); -lean_ctor_set(x_17, 0, x_261); -lean_ctor_set(x_16, 0, x_269); -lean_ctor_set(x_15, 0, x_277); -lean_ctor_set(x_8, 0, x_294); -x_296 = lean_nat_add(x_9, x_251); -lean_dec(x_9); -x_297 = lean_nat_dec_lt(x_296, x_7); -if (x_297 == 0) +if (lean_obj_tag(x_269) == 0) { -lean_object* x_298; -lean_dec(x_296); +lean_object* x_271; lean_object* x_272; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_292)) { - x_298 = lean_alloc_ctor(0, 1, 0); -} else { - x_298 = x_292; -} -lean_ctor_set(x_298, 0, x_8); -return x_298; -} -else -{ -lean_dec(x_292); -x_9 = x_296; -goto _start; -} -} -else -{ -lean_object* x_300; lean_object* x_301; lean_object* x_302; -lean_dec(x_280); -lean_dec_ref(x_277); -lean_dec(x_275); -lean_dec(x_274); -lean_dec_ref(x_273); +lean_dec_ref(x_2); +x_271 = lean_ctor_get(x_269, 0); +lean_inc(x_271); lean_dec_ref(x_269); -lean_dec_ref(x_261); -lean_dec_ref(x_253); -lean_free_object(x_18); -lean_dec(x_33); -lean_free_object(x_17); -lean_free_object(x_16); -lean_free_object(x_15); +if (lean_is_scalar(x_270)) { + x_272 = lean_alloc_ctor(0, 1, 0); +} else { + x_272 = x_270; +} +lean_ctor_set(x_272, 0, x_271); +return x_272; +} +else +{ +lean_object* x_273; +lean_dec(x_270); +x_273 = lean_ctor_get(x_269, 0); +lean_inc(x_273); +lean_dec_ref(x_269); +x_15 = x_273; +x_16 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_274; lean_object* x_275; lean_object* x_276; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_274 = lean_ctor_get(x_268, 0); +lean_inc(x_274); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + x_275 = x_268; +} else { + lean_dec_ref(x_268); + x_275 = lean_box(0); +} +if (lean_is_scalar(x_275)) { + x_276 = lean_alloc_ctor(1, 1, 0); +} else { + x_276 = x_275; +} +lean_ctor_set(x_276, 0, x_274); +return x_276; +} +} +else +{ +lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; +x_277 = lean_array_fget(x_43, x_44); +lean_dec(x_44); +lean_dec_ref(x_43); +x_278 = lean_array_fget(x_52, x_53); +lean_dec(x_53); +lean_dec_ref(x_52); +x_279 = lean_array_fget(x_239, x_240); +lean_dec(x_240); +lean_dec_ref(x_239); +x_280 = lean_array_fget_borrowed(x_255, x_256); +x_281 = lean_box(x_3); +x_282 = lean_box(x_4); +x_283 = lean_box(x_265); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_280); +lean_inc(x_9); +lean_inc_ref(x_2); +x_284 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_284, 0, x_279); +lean_closure_set(x_284, 1, x_277); +lean_closure_set(x_284, 2, x_2); +lean_closure_set(x_284, 3, x_9); +lean_closure_set(x_284, 4, x_281); +lean_closure_set(x_284, 5, x_282); +lean_closure_set(x_284, 6, x_280); +lean_closure_set(x_284, 7, x_5); +lean_closure_set(x_284, 8, x_6); +lean_closure_set(x_284, 9, x_283); +lean_closure_set(x_284, 10, x_55); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_285 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_278, x_263, x_284, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_285) == 0) +{ +lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; +x_286 = lean_ctor_get(x_285, 0); +lean_inc(x_286); +lean_dec_ref(x_285); +x_287 = lean_nat_add(x_256, x_55); +lean_dec(x_256); +if (lean_is_scalar(x_262)) { + x_288 = lean_alloc_ctor(0, 3, 0); +} else { + x_288 = x_262; +} +lean_ctor_set(x_288, 0, x_255); +lean_ctor_set(x_288, 1, x_287); +lean_ctor_set(x_288, 2, x_257); +x_289 = lean_array_push(x_41, x_286); +lean_ctor_set(x_26, 1, x_289); +lean_ctor_set(x_25, 0, x_243); +lean_ctor_set(x_24, 0, x_251); +lean_ctor_set(x_23, 0, x_259); +lean_ctor_set(x_8, 0, x_288); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_290; lean_object* x_291; lean_object* x_292; +lean_dec(x_262); +lean_dec_ref(x_259); +lean_dec(x_257); +lean_dec(x_256); +lean_dec_ref(x_255); +lean_dec_ref(x_251); +lean_dec_ref(x_243); +lean_dec_ref(x_27); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); lean_free_object(x_8); lean_dec(x_13); lean_dec_ref(x_12); @@ -16904,45 +17955,100 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_300 = lean_ctor_get(x_290, 0); -lean_inc(x_300); -if (lean_is_exclusive(x_290)) { - lean_ctor_release(x_290, 0); - x_301 = x_290; +lean_dec_ref(x_2); +x_290 = lean_ctor_get(x_285, 0); +lean_inc(x_290); +if (lean_is_exclusive(x_285)) { + lean_ctor_release(x_285, 0); + x_291 = x_285; } else { - lean_dec_ref(x_290); + lean_dec_ref(x_285); + x_291 = lean_box(0); +} +if (lean_is_scalar(x_291)) { + x_292 = lean_alloc_ctor(1, 1, 0); +} else { + x_292 = x_291; +} +lean_ctor_set(x_292, 0, x_290); +return x_292; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; uint8_t x_299; +lean_dec(x_27); +x_293 = lean_ctor_get(x_38, 0); +x_294 = lean_ctor_get(x_38, 1); +x_295 = lean_ctor_get(x_38, 2); +x_296 = lean_unsigned_to_nat(1u); +x_297 = lean_nat_add(x_44, x_296); +lean_inc_ref(x_43); +x_298 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_298, 0, x_43); +lean_ctor_set(x_298, 1, x_297); +lean_ctor_set(x_298, 2, x_45); +x_299 = lean_nat_dec_lt(x_294, x_295); +if (x_299 == 0) +{ +lean_object* x_300; +lean_dec(x_44); +lean_dec_ref(x_43); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_298); +x_300 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_300, 0, x_8); +return x_300; +} +else +{ +lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; uint8_t x_307; +lean_inc(x_295); +lean_inc(x_294); +lean_inc_ref(x_293); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + lean_ctor_release(x_38, 2); + x_301 = x_38; +} else { + lean_dec_ref(x_38); x_301 = lean_box(0); } +x_302 = lean_ctor_get(x_35, 0); +x_303 = lean_ctor_get(x_35, 1); +x_304 = lean_ctor_get(x_35, 2); +x_305 = lean_nat_add(x_294, x_296); +lean_inc_ref(x_293); if (lean_is_scalar(x_301)) { - x_302 = lean_alloc_ctor(1, 1, 0); + x_306 = lean_alloc_ctor(0, 3, 0); } else { - x_302 = x_301; + x_306 = x_301; } -lean_ctor_set(x_302, 0, x_300); -return x_302; -} -} -} -} -} -} -} -} -else -{ -lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; uint8_t x_307; -x_303 = lean_ctor_get(x_18, 1); -lean_inc(x_303); -lean_dec(x_18); -x_304 = lean_ctor_get(x_19, 0); -x_305 = lean_ctor_get(x_19, 1); -x_306 = lean_ctor_get(x_19, 2); -x_307 = lean_nat_dec_lt(x_305, x_306); +lean_ctor_set(x_306, 0, x_293); +lean_ctor_set(x_306, 1, x_305); +lean_ctor_set(x_306, 2, x_295); +x_307 = lean_nat_dec_lt(x_303, x_304); if (x_307 == 0) { -lean_object* x_308; lean_object* x_309; +lean_object* x_308; +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -16950,51 +18056,51 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_308 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_308, 0, x_19); -lean_ctor_set(x_308, 1, x_303); -lean_ctor_set(x_17, 1, x_308); -x_309 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_309, 0, x_8); -return x_309; +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_298); +lean_ctor_set(x_25, 0, x_306); +x_308 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_308, 0, x_8); +return x_308; } else { -lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; uint8_t x_317; -lean_inc(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - lean_ctor_release(x_19, 2); - x_310 = x_19; +lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; uint8_t x_315; +lean_inc(x_304); +lean_inc(x_303); +lean_inc_ref(x_302); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + lean_ctor_release(x_35, 2); + x_309 = x_35; } else { - lean_dec_ref(x_19); - x_310 = lean_box(0); + lean_dec_ref(x_35); + x_309 = lean_box(0); } -x_311 = lean_ctor_get(x_30, 0); -x_312 = lean_ctor_get(x_30, 1); -x_313 = lean_ctor_get(x_30, 2); -x_314 = lean_unsigned_to_nat(1u); -x_315 = lean_nat_add(x_305, x_314); -lean_inc_ref(x_304); -if (lean_is_scalar(x_310)) { - x_316 = lean_alloc_ctor(0, 3, 0); +x_310 = lean_ctor_get(x_32, 0); +x_311 = lean_ctor_get(x_32, 1); +x_312 = lean_ctor_get(x_32, 2); +x_313 = lean_nat_add(x_303, x_296); +lean_inc_ref(x_302); +if (lean_is_scalar(x_309)) { + x_314 = lean_alloc_ctor(0, 3, 0); } else { - x_316 = x_310; + x_314 = x_309; } -lean_ctor_set(x_316, 0, x_304); -lean_ctor_set(x_316, 1, x_315); -lean_ctor_set(x_316, 2, x_306); -x_317 = lean_nat_dec_lt(x_312, x_313); -if (x_317 == 0) +lean_ctor_set(x_314, 0, x_302); +lean_ctor_set(x_314, 1, x_313); +lean_ctor_set(x_314, 2, x_304); +x_315 = lean_nat_dec_lt(x_311, x_312); +if (x_315 == 0) { -lean_object* x_318; lean_object* x_319; -lean_dec(x_305); -lean_dec_ref(x_304); +lean_object* x_316; +lean_dec(x_303); +lean_dec_ref(x_302); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -17002,52 +18108,54 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_318 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_318, 0, x_316); -lean_ctor_set(x_318, 1, x_303); -lean_ctor_set(x_17, 1, x_318); -x_319 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_319, 0, x_8); -return x_319; +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_298); +lean_ctor_set(x_25, 0, x_306); +lean_ctor_set(x_24, 0, x_314); +x_316 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_316, 0, x_8); +return x_316; } else { -lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; uint8_t x_326; -lean_inc(x_313); +lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_inc(x_312); -lean_inc_ref(x_311); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - lean_ctor_release(x_30, 1); - lean_ctor_release(x_30, 2); - x_320 = x_30; +lean_inc(x_311); +lean_inc_ref(x_310); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_317 = x_32; } else { - lean_dec_ref(x_30); - x_320 = lean_box(0); + lean_dec_ref(x_32); + x_317 = lean_box(0); } -x_321 = lean_ctor_get(x_27, 0); -x_322 = lean_ctor_get(x_27, 1); -x_323 = lean_ctor_get(x_27, 2); -x_324 = lean_nat_add(x_312, x_314); -lean_inc_ref(x_311); -if (lean_is_scalar(x_320)) { - x_325 = lean_alloc_ctor(0, 3, 0); +x_318 = lean_ctor_get(x_29, 0); +x_319 = lean_ctor_get(x_29, 1); +x_320 = lean_ctor_get(x_29, 2); +x_321 = lean_nat_add(x_311, x_296); +lean_inc_ref(x_310); +if (lean_is_scalar(x_317)) { + x_322 = lean_alloc_ctor(0, 3, 0); } else { - x_325 = x_320; + x_322 = x_317; } -lean_ctor_set(x_325, 0, x_311); -lean_ctor_set(x_325, 1, x_324); -lean_ctor_set(x_325, 2, x_313); -x_326 = lean_nat_dec_lt(x_322, x_323); -if (x_326 == 0) +lean_ctor_set(x_322, 0, x_310); +lean_ctor_set(x_322, 1, x_321); +lean_ctor_set(x_322, 2, x_312); +x_323 = lean_nat_dec_lt(x_319, x_320); +if (x_323 == 0) { -lean_object* x_327; lean_object* x_328; -lean_dec(x_312); -lean_dec_ref(x_311); -lean_dec(x_305); -lean_dec_ref(x_304); +lean_object* x_324; +lean_dec(x_311); +lean_dec_ref(x_310); +lean_dec(x_303); +lean_dec_ref(x_302); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -17055,266 +18163,222 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_327 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_327, 0, x_316); -lean_ctor_set(x_327, 1, x_303); -lean_ctor_set(x_17, 1, x_327); -lean_ctor_set(x_17, 0, x_325); -x_328 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_328, 0, x_8); -return x_328; +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_298); +lean_ctor_set(x_25, 0, x_306); +lean_ctor_set(x_24, 0, x_314); +lean_ctor_set(x_23, 0, x_322); +x_324 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_324, 0, x_8); +return x_324; } else { -lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; -lean_inc(x_323); -lean_inc(x_322); -lean_inc_ref(x_321); -if (lean_is_exclusive(x_27)) { - lean_ctor_release(x_27, 0); - lean_ctor_release(x_27, 1); - lean_ctor_release(x_27, 2); - x_329 = x_27; +lean_object* x_325; lean_object* x_326; lean_object* x_327; uint8_t x_328; uint8_t x_329; +lean_inc(x_320); +lean_inc(x_319); +lean_inc_ref(x_318); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_325 = x_29; } else { - lean_dec_ref(x_27); - x_329 = lean_box(0); + lean_dec_ref(x_29); + x_325 = lean_box(0); } -x_330 = lean_ctor_get(x_24, 0); -x_331 = lean_ctor_get(x_24, 1); -x_332 = lean_ctor_get(x_24, 2); -x_333 = lean_nat_add(x_322, x_314); -lean_inc_ref(x_321); -if (lean_is_scalar(x_329)) { - x_334 = lean_alloc_ctor(0, 3, 0); -} else { - x_334 = x_329; -} -lean_ctor_set(x_334, 0, x_321); -lean_ctor_set(x_334, 1, x_333); -lean_ctor_set(x_334, 2, x_323); -x_335 = lean_nat_dec_lt(x_331, x_332); -if (x_335 == 0) +x_326 = lean_array_fget(x_310, x_311); +lean_dec(x_311); +lean_dec_ref(x_310); +x_327 = lean_ctor_get(x_326, 1); +x_328 = lean_ctor_get_uint8(x_326, sizeof(void*)*2); +x_329 = lean_nat_dec_eq(x_327, x_1); +if (x_329 == 0) { -lean_object* x_336; lean_object* x_337; -lean_dec(x_322); -lean_dec_ref(x_321); -lean_dec(x_312); -lean_dec_ref(x_311); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_316); -lean_ctor_set(x_336, 1, x_303); -lean_ctor_set(x_17, 1, x_336); -lean_ctor_set(x_17, 0, x_325); -lean_ctor_set(x_16, 0, x_334); -x_337 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_337, 0, x_8); -return x_337; -} -else -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; uint8_t x_344; -lean_inc(x_332); -lean_inc(x_331); -lean_inc_ref(x_330); -if (lean_is_exclusive(x_24)) { - lean_ctor_release(x_24, 0); - lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_338 = x_24; -} else { - lean_dec_ref(x_24); - x_338 = lean_box(0); -} -x_339 = lean_ctor_get(x_21, 0); -x_340 = lean_ctor_get(x_21, 1); -x_341 = lean_ctor_get(x_21, 2); -x_342 = lean_nat_add(x_331, x_314); -lean_inc_ref(x_330); -if (lean_is_scalar(x_338)) { - x_343 = lean_alloc_ctor(0, 3, 0); -} else { - x_343 = x_338; -} -lean_ctor_set(x_343, 0, x_330); -lean_ctor_set(x_343, 1, x_342); -lean_ctor_set(x_343, 2, x_332); -x_344 = lean_nat_dec_lt(x_340, x_341); -if (x_344 == 0) -{ -lean_object* x_345; lean_object* x_346; -lean_dec(x_331); -lean_dec_ref(x_330); -lean_dec(x_322); -lean_dec_ref(x_321); -lean_dec(x_312); -lean_dec_ref(x_311); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_345 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_345, 0, x_316); -lean_ctor_set(x_345, 1, x_303); -lean_ctor_set(x_17, 1, x_345); -lean_ctor_set(x_17, 0, x_325); -lean_ctor_set(x_16, 0, x_334); -lean_ctor_set(x_15, 0, x_343); -x_346 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_346, 0, x_8); -return x_346; -} -else -{ -lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; -lean_inc(x_341); -lean_inc(x_340); -lean_inc_ref(x_339); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_347 = x_21; -} else { - lean_dec_ref(x_21); - x_347 = lean_box(0); -} -x_348 = lean_array_fget(x_304, x_305); -lean_dec(x_305); -lean_dec_ref(x_304); -x_349 = lean_array_fget(x_311, x_312); -lean_dec(x_312); -lean_dec_ref(x_311); -x_350 = lean_array_fget(x_321, x_322); -lean_dec(x_322); -lean_dec_ref(x_321); -x_351 = lean_array_fget(x_330, x_331); -lean_dec(x_331); -lean_dec_ref(x_330); -x_352 = lean_array_fget_borrowed(x_339, x_340); -x_353 = lean_box(x_2); -x_354 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_352); -lean_inc(x_9); -lean_inc_ref(x_1); -x_355 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_355, 0, x_348); -lean_closure_set(x_355, 1, x_1); -lean_closure_set(x_355, 2, x_9); -lean_closure_set(x_355, 3, x_353); -lean_closure_set(x_355, 4, x_354); -lean_closure_set(x_355, 5, x_352); -lean_closure_set(x_355, 6, x_4); -lean_closure_set(x_355, 7, x_5); -lean_closure_set(x_355, 8, x_350); -lean_closure_set(x_355, 9, x_6); -lean_closure_set(x_355, 10, x_314); -x_356 = lean_nat_sub(x_351, x_5); -lean_dec(x_351); +lean_object* x_330; lean_object* x_331; +lean_dec_ref(x_326); +lean_dec(x_325); +lean_dec_ref(x_322); +lean_dec(x_320); +lean_dec(x_319); +lean_dec_ref(x_318); +lean_dec_ref(x_314); +lean_dec_ref(x_306); +lean_dec(x_303); +lean_dec_ref(x_302); +lean_dec_ref(x_298); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec(x_44); +lean_dec_ref(x_43); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +x_330 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_357 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg(x_349, x_356, x_6, x_355, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_357) == 0) +x_331 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_330, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_331) == 0) { -lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; uint8_t x_365; -x_358 = lean_ctor_get(x_357, 0); -lean_inc(x_358); -if (lean_is_exclusive(x_357)) { - lean_ctor_release(x_357, 0); - x_359 = x_357; +lean_object* x_332; lean_object* x_333; +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + x_333 = x_331; } else { - lean_dec_ref(x_357); - x_359 = lean_box(0); + lean_dec_ref(x_331); + x_333 = lean_box(0); } -x_360 = lean_nat_add(x_340, x_314); -lean_dec(x_340); -if (lean_is_scalar(x_347)) { - x_361 = lean_alloc_ctor(0, 3, 0); -} else { - x_361 = x_347; -} -lean_ctor_set(x_361, 0, x_339); -lean_ctor_set(x_361, 1, x_360); -lean_ctor_set(x_361, 2, x_341); -x_362 = lean_array_push(x_303, x_358); -x_363 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_363, 0, x_316); -lean_ctor_set(x_363, 1, x_362); -lean_ctor_set(x_17, 1, x_363); -lean_ctor_set(x_17, 0, x_325); -lean_ctor_set(x_16, 0, x_334); -lean_ctor_set(x_15, 0, x_343); -lean_ctor_set(x_8, 0, x_361); -x_364 = lean_nat_add(x_9, x_314); -lean_dec(x_9); -x_365 = lean_nat_dec_lt(x_364, x_7); -if (x_365 == 0) +if (lean_obj_tag(x_332) == 0) { -lean_object* x_366; -lean_dec(x_364); +lean_object* x_334; lean_object* x_335; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_359)) { - x_366 = lean_alloc_ctor(0, 1, 0); +lean_dec_ref(x_2); +x_334 = lean_ctor_get(x_332, 0); +lean_inc(x_334); +lean_dec_ref(x_332); +if (lean_is_scalar(x_333)) { + x_335 = lean_alloc_ctor(0, 1, 0); } else { - x_366 = x_359; + x_335 = x_333; } -lean_ctor_set(x_366, 0, x_8); -return x_366; +lean_ctor_set(x_335, 0, x_334); +return x_335; } else { -lean_dec(x_359); -x_9 = x_364; -goto _start; +lean_object* x_336; +lean_dec(x_333); +x_336 = lean_ctor_get(x_332, 0); +lean_inc(x_336); +lean_dec_ref(x_332); +x_15 = x_336; +x_16 = lean_box(0); +goto block_22; } } else { -lean_object* x_368; lean_object* x_369; lean_object* x_370; -lean_dec(x_347); -lean_dec_ref(x_343); -lean_dec(x_341); -lean_dec(x_340); -lean_dec_ref(x_339); -lean_dec_ref(x_334); -lean_dec_ref(x_325); -lean_dec_ref(x_316); +lean_object* x_337; lean_object* x_338; lean_object* x_339; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_337 = lean_ctor_get(x_331, 0); +lean_inc(x_337); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + x_338 = x_331; +} else { + lean_dec_ref(x_331); + x_338 = lean_box(0); +} +if (lean_is_scalar(x_338)) { + x_339 = lean_alloc_ctor(1, 1, 0); +} else { + x_339 = x_338; +} +lean_ctor_set(x_339, 0, x_337); +return x_339; +} +} +else +{ +lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; +x_340 = lean_array_fget(x_43, x_44); +lean_dec(x_44); +lean_dec_ref(x_43); +x_341 = lean_array_fget(x_293, x_294); +lean_dec(x_294); +lean_dec_ref(x_293); +x_342 = lean_array_fget(x_302, x_303); lean_dec(x_303); -lean_free_object(x_17); -lean_free_object(x_16); -lean_free_object(x_15); +lean_dec_ref(x_302); +x_343 = lean_array_fget_borrowed(x_318, x_319); +x_344 = lean_box(x_3); +x_345 = lean_box(x_4); +x_346 = lean_box(x_328); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_343); +lean_inc(x_9); +lean_inc_ref(x_2); +x_347 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_347, 0, x_342); +lean_closure_set(x_347, 1, x_340); +lean_closure_set(x_347, 2, x_2); +lean_closure_set(x_347, 3, x_9); +lean_closure_set(x_347, 4, x_344); +lean_closure_set(x_347, 5, x_345); +lean_closure_set(x_347, 6, x_343); +lean_closure_set(x_347, 7, x_5); +lean_closure_set(x_347, 8, x_6); +lean_closure_set(x_347, 9, x_346); +lean_closure_set(x_347, 10, x_296); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_348 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_341, x_326, x_347, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_348) == 0) +{ +lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; +x_349 = lean_ctor_get(x_348, 0); +lean_inc(x_349); +lean_dec_ref(x_348); +x_350 = lean_nat_add(x_319, x_296); +lean_dec(x_319); +if (lean_is_scalar(x_325)) { + x_351 = lean_alloc_ctor(0, 3, 0); +} else { + x_351 = x_325; +} +lean_ctor_set(x_351, 0, x_318); +lean_ctor_set(x_351, 1, x_350); +lean_ctor_set(x_351, 2, x_320); +x_352 = lean_array_push(x_41, x_349); +lean_ctor_set(x_26, 1, x_352); +lean_ctor_set(x_26, 0, x_298); +lean_ctor_set(x_25, 0, x_306); +lean_ctor_set(x_24, 0, x_314); +lean_ctor_set(x_23, 0, x_322); +lean_ctor_set(x_8, 0, x_351); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_353; lean_object* x_354; lean_object* x_355; +lean_dec(x_325); +lean_dec_ref(x_322); +lean_dec(x_320); +lean_dec(x_319); +lean_dec_ref(x_318); +lean_dec_ref(x_314); +lean_dec_ref(x_306); +lean_dec_ref(x_298); +lean_free_object(x_26); +lean_dec(x_41); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); lean_free_object(x_8); lean_dec(x_13); lean_dec_ref(x_12); @@ -17323,24 +18387,24 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_368 = lean_ctor_get(x_357, 0); -lean_inc(x_368); -if (lean_is_exclusive(x_357)) { - lean_ctor_release(x_357, 0); - x_369 = x_357; +lean_dec_ref(x_2); +x_353 = lean_ctor_get(x_348, 0); +lean_inc(x_353); +if (lean_is_exclusive(x_348)) { + lean_ctor_release(x_348, 0); + x_354 = x_348; } else { - lean_dec_ref(x_357); - x_369 = lean_box(0); + lean_dec_ref(x_348); + x_354 = lean_box(0); } -if (lean_is_scalar(x_369)) { - x_370 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_354)) { + x_355 = lean_alloc_ctor(1, 1, 0); } else { - x_370 = x_369; + x_355 = x_354; +} +lean_ctor_set(x_355, 0, x_353); +return x_355; } -lean_ctor_set(x_370, 0, x_368); -return x_370; } } } @@ -17351,27 +18415,17 @@ return x_370; } else { -lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; uint8_t x_377; -x_371 = lean_ctor_get(x_17, 0); -lean_inc(x_371); -lean_dec(x_17); -x_372 = lean_ctor_get(x_18, 1); -lean_inc(x_372); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_373 = x_18; -} else { - lean_dec_ref(x_18); - x_373 = lean_box(0); -} -x_374 = lean_ctor_get(x_19, 0); -x_375 = lean_ctor_get(x_19, 1); -x_376 = lean_ctor_get(x_19, 2); -x_377 = lean_nat_dec_lt(x_375, x_376); -if (x_377 == 0) +lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; uint8_t x_360; +x_356 = lean_ctor_get(x_26, 1); +lean_inc(x_356); +lean_dec(x_26); +x_357 = lean_ctor_get(x_27, 0); +x_358 = lean_ctor_get(x_27, 1); +x_359 = lean_ctor_get(x_27, 2); +x_360 = lean_nat_dec_lt(x_358, x_359); +if (x_360 == 0) { -lean_object* x_378; lean_object* x_379; lean_object* x_380; +lean_object* x_361; lean_object* x_362; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -17379,58 +18433,157 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); +lean_dec_ref(x_2); +x_361 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_361, 0, x_27); +lean_ctor_set(x_361, 1, x_356); +lean_ctor_set(x_25, 1, x_361); +x_362 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_362, 0, x_8); +return x_362; +} +else +{ +lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; uint8_t x_370; +lean_inc(x_359); +lean_inc(x_358); +lean_inc_ref(x_357); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + lean_ctor_release(x_27, 2); + x_363 = x_27; +} else { + lean_dec_ref(x_27); + x_363 = lean_box(0); +} +x_364 = lean_ctor_get(x_38, 0); +x_365 = lean_ctor_get(x_38, 1); +x_366 = lean_ctor_get(x_38, 2); +x_367 = lean_unsigned_to_nat(1u); +x_368 = lean_nat_add(x_358, x_367); +lean_inc_ref(x_357); +if (lean_is_scalar(x_363)) { + x_369 = lean_alloc_ctor(0, 3, 0); +} else { + x_369 = x_363; +} +lean_ctor_set(x_369, 0, x_357); +lean_ctor_set(x_369, 1, x_368); +lean_ctor_set(x_369, 2, x_359); +x_370 = lean_nat_dec_lt(x_365, x_366); +if (x_370 == 0) +{ +lean_object* x_371; lean_object* x_372; +lean_dec(x_358); +lean_dec_ref(x_357); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_371 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_371, 0, x_369); +lean_ctor_set(x_371, 1, x_356); +lean_ctor_set(x_25, 1, x_371); +x_372 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_372, 0, x_8); +return x_372; +} +else +{ +lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; uint8_t x_379; +lean_inc(x_366); +lean_inc(x_365); +lean_inc_ref(x_364); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + lean_ctor_release(x_38, 2); + x_373 = x_38; +} else { + lean_dec_ref(x_38); + x_373 = lean_box(0); +} +x_374 = lean_ctor_get(x_35, 0); +x_375 = lean_ctor_get(x_35, 1); +x_376 = lean_ctor_get(x_35, 2); +x_377 = lean_nat_add(x_365, x_367); +lean_inc_ref(x_364); if (lean_is_scalar(x_373)) { - x_378 = lean_alloc_ctor(0, 2, 0); + x_378 = lean_alloc_ctor(0, 3, 0); } else { x_378 = x_373; } -lean_ctor_set(x_378, 0, x_19); -lean_ctor_set(x_378, 1, x_372); -x_379 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_379, 0, x_371); -lean_ctor_set(x_379, 1, x_378); -lean_ctor_set(x_16, 1, x_379); -x_380 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_380, 0, x_8); -return x_380; +lean_ctor_set(x_378, 0, x_364); +lean_ctor_set(x_378, 1, x_377); +lean_ctor_set(x_378, 2, x_366); +x_379 = lean_nat_dec_lt(x_375, x_376); +if (x_379 == 0) +{ +lean_object* x_380; lean_object* x_381; +lean_dec(x_365); +lean_dec_ref(x_364); +lean_dec(x_358); +lean_dec_ref(x_357); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_380 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_380, 0, x_369); +lean_ctor_set(x_380, 1, x_356); +lean_ctor_set(x_25, 1, x_380); +lean_ctor_set(x_25, 0, x_378); +x_381 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_381, 0, x_8); +return x_381; } else { -lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; uint8_t x_388; +lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; uint8_t x_388; lean_inc(x_376); lean_inc(x_375); lean_inc_ref(x_374); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - lean_ctor_release(x_19, 2); - x_381 = x_19; +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + lean_ctor_release(x_35, 2); + x_382 = x_35; } else { - lean_dec_ref(x_19); - x_381 = lean_box(0); + lean_dec_ref(x_35); + x_382 = lean_box(0); } -x_382 = lean_ctor_get(x_371, 0); -x_383 = lean_ctor_get(x_371, 1); -x_384 = lean_ctor_get(x_371, 2); -x_385 = lean_unsigned_to_nat(1u); -x_386 = lean_nat_add(x_375, x_385); +x_383 = lean_ctor_get(x_32, 0); +x_384 = lean_ctor_get(x_32, 1); +x_385 = lean_ctor_get(x_32, 2); +x_386 = lean_nat_add(x_375, x_367); lean_inc_ref(x_374); -if (lean_is_scalar(x_381)) { +if (lean_is_scalar(x_382)) { x_387 = lean_alloc_ctor(0, 3, 0); } else { - x_387 = x_381; + x_387 = x_382; } lean_ctor_set(x_387, 0, x_374); lean_ctor_set(x_387, 1, x_386); lean_ctor_set(x_387, 2, x_376); -x_388 = lean_nat_dec_lt(x_383, x_384); +x_388 = lean_nat_dec_lt(x_384, x_385); if (x_388 == 0) { -lean_object* x_389; lean_object* x_390; lean_object* x_391; +lean_object* x_389; lean_object* x_390; lean_dec(x_375); lean_dec_ref(x_374); +lean_dec(x_365); +lean_dec_ref(x_364); +lean_dec(x_358); +lean_dec_ref(x_357); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -17438,59 +18591,57 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_373)) { - x_389 = lean_alloc_ctor(0, 2, 0); -} else { - x_389 = x_373; -} -lean_ctor_set(x_389, 0, x_387); -lean_ctor_set(x_389, 1, x_372); -x_390 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_390, 0, x_371); -lean_ctor_set(x_390, 1, x_389); -lean_ctor_set(x_16, 1, x_390); -x_391 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_391, 0, x_8); -return x_391; +lean_dec_ref(x_2); +x_389 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_389, 0, x_369); +lean_ctor_set(x_389, 1, x_356); +lean_ctor_set(x_25, 1, x_389); +lean_ctor_set(x_25, 0, x_378); +lean_ctor_set(x_24, 0, x_387); +x_390 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_390, 0, x_8); +return x_390; } else { -lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; uint8_t x_398; +lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; uint8_t x_397; +lean_inc(x_385); lean_inc(x_384); -lean_inc(x_383); -lean_inc_ref(x_382); -if (lean_is_exclusive(x_371)) { - lean_ctor_release(x_371, 0); - lean_ctor_release(x_371, 1); - lean_ctor_release(x_371, 2); - x_392 = x_371; +lean_inc_ref(x_383); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_391 = x_32; } else { - lean_dec_ref(x_371); - x_392 = lean_box(0); + lean_dec_ref(x_32); + x_391 = lean_box(0); } -x_393 = lean_ctor_get(x_27, 0); -x_394 = lean_ctor_get(x_27, 1); -x_395 = lean_ctor_get(x_27, 2); -x_396 = lean_nat_add(x_383, x_385); -lean_inc_ref(x_382); -if (lean_is_scalar(x_392)) { - x_397 = lean_alloc_ctor(0, 3, 0); +x_392 = lean_ctor_get(x_29, 0); +x_393 = lean_ctor_get(x_29, 1); +x_394 = lean_ctor_get(x_29, 2); +x_395 = lean_nat_add(x_384, x_367); +lean_inc_ref(x_383); +if (lean_is_scalar(x_391)) { + x_396 = lean_alloc_ctor(0, 3, 0); } else { - x_397 = x_392; + x_396 = x_391; } -lean_ctor_set(x_397, 0, x_382); -lean_ctor_set(x_397, 1, x_396); -lean_ctor_set(x_397, 2, x_384); -x_398 = lean_nat_dec_lt(x_394, x_395); -if (x_398 == 0) +lean_ctor_set(x_396, 0, x_383); +lean_ctor_set(x_396, 1, x_395); +lean_ctor_set(x_396, 2, x_385); +x_397 = lean_nat_dec_lt(x_393, x_394); +if (x_397 == 0) { -lean_object* x_399; lean_object* x_400; lean_object* x_401; -lean_dec(x_383); -lean_dec_ref(x_382); +lean_object* x_398; lean_object* x_399; +lean_dec(x_384); +lean_dec_ref(x_383); lean_dec(x_375); lean_dec_ref(x_374); +lean_dec(x_365); +lean_dec_ref(x_364); +lean_dec(x_358); +lean_dec_ref(x_357); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -17498,290 +18649,225 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_373)) { - x_399 = lean_alloc_ctor(0, 2, 0); -} else { - x_399 = x_373; -} -lean_ctor_set(x_399, 0, x_387); -lean_ctor_set(x_399, 1, x_372); -x_400 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_400, 0, x_397); -lean_ctor_set(x_400, 1, x_399); -lean_ctor_set(x_16, 1, x_400); -x_401 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_401, 0, x_8); -return x_401; +lean_dec_ref(x_2); +x_398 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_398, 0, x_369); +lean_ctor_set(x_398, 1, x_356); +lean_ctor_set(x_25, 1, x_398); +lean_ctor_set(x_25, 0, x_378); +lean_ctor_set(x_24, 0, x_387); +lean_ctor_set(x_23, 0, x_396); +x_399 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_399, 0, x_8); +return x_399; } else { -lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; uint8_t x_408; -lean_inc(x_395); +lean_object* x_400; lean_object* x_401; lean_object* x_402; uint8_t x_403; uint8_t x_404; lean_inc(x_394); -lean_inc_ref(x_393); -if (lean_is_exclusive(x_27)) { - lean_ctor_release(x_27, 0); - lean_ctor_release(x_27, 1); - lean_ctor_release(x_27, 2); - x_402 = x_27; +lean_inc(x_393); +lean_inc_ref(x_392); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_400 = x_29; } else { - lean_dec_ref(x_27); - x_402 = lean_box(0); + lean_dec_ref(x_29); + x_400 = lean_box(0); } -x_403 = lean_ctor_get(x_24, 0); -x_404 = lean_ctor_get(x_24, 1); -x_405 = lean_ctor_get(x_24, 2); -x_406 = lean_nat_add(x_394, x_385); -lean_inc_ref(x_393); -if (lean_is_scalar(x_402)) { - x_407 = lean_alloc_ctor(0, 3, 0); -} else { - x_407 = x_402; -} -lean_ctor_set(x_407, 0, x_393); -lean_ctor_set(x_407, 1, x_406); -lean_ctor_set(x_407, 2, x_395); -x_408 = lean_nat_dec_lt(x_404, x_405); -if (x_408 == 0) +x_401 = lean_array_fget(x_383, x_384); +lean_dec(x_384); +lean_dec_ref(x_383); +x_402 = lean_ctor_get(x_401, 1); +x_403 = lean_ctor_get_uint8(x_401, sizeof(void*)*2); +x_404 = lean_nat_dec_eq(x_402, x_1); +if (x_404 == 0) { -lean_object* x_409; lean_object* x_410; lean_object* x_411; +lean_object* x_405; lean_object* x_406; +lean_dec_ref(x_401); +lean_dec(x_400); +lean_dec_ref(x_396); lean_dec(x_394); -lean_dec_ref(x_393); -lean_dec(x_383); -lean_dec_ref(x_382); +lean_dec(x_393); +lean_dec_ref(x_392); +lean_dec_ref(x_387); +lean_dec_ref(x_378); lean_dec(x_375); lean_dec_ref(x_374); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_373)) { - x_409 = lean_alloc_ctor(0, 2, 0); -} else { - x_409 = x_373; -} -lean_ctor_set(x_409, 0, x_387); -lean_ctor_set(x_409, 1, x_372); -x_410 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_410, 0, x_397); -lean_ctor_set(x_410, 1, x_409); -lean_ctor_set(x_16, 1, x_410); -lean_ctor_set(x_16, 0, x_407); -x_411 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_411, 0, x_8); -return x_411; -} -else -{ -lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; uint8_t x_418; -lean_inc(x_405); -lean_inc(x_404); -lean_inc_ref(x_403); -if (lean_is_exclusive(x_24)) { - lean_ctor_release(x_24, 0); - lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_412 = x_24; -} else { - lean_dec_ref(x_24); - x_412 = lean_box(0); -} -x_413 = lean_ctor_get(x_21, 0); -x_414 = lean_ctor_get(x_21, 1); -x_415 = lean_ctor_get(x_21, 2); -x_416 = lean_nat_add(x_404, x_385); -lean_inc_ref(x_403); -if (lean_is_scalar(x_412)) { - x_417 = lean_alloc_ctor(0, 3, 0); -} else { - x_417 = x_412; -} -lean_ctor_set(x_417, 0, x_403); -lean_ctor_set(x_417, 1, x_416); -lean_ctor_set(x_417, 2, x_405); -x_418 = lean_nat_dec_lt(x_414, x_415); -if (x_418 == 0) -{ -lean_object* x_419; lean_object* x_420; lean_object* x_421; -lean_dec(x_404); -lean_dec_ref(x_403); -lean_dec(x_394); -lean_dec_ref(x_393); -lean_dec(x_383); -lean_dec_ref(x_382); -lean_dec(x_375); -lean_dec_ref(x_374); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_373)) { - x_419 = lean_alloc_ctor(0, 2, 0); -} else { - x_419 = x_373; -} -lean_ctor_set(x_419, 0, x_387); -lean_ctor_set(x_419, 1, x_372); -x_420 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_420, 0, x_397); -lean_ctor_set(x_420, 1, x_419); -lean_ctor_set(x_16, 1, x_420); -lean_ctor_set(x_16, 0, x_407); -lean_ctor_set(x_15, 0, x_417); -x_421 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_421, 0, x_8); -return x_421; -} -else -{ -lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; -lean_inc(x_415); -lean_inc(x_414); -lean_inc_ref(x_413); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_422 = x_21; -} else { - lean_dec_ref(x_21); - x_422 = lean_box(0); -} -x_423 = lean_array_fget(x_374, x_375); -lean_dec(x_375); -lean_dec_ref(x_374); -x_424 = lean_array_fget(x_382, x_383); -lean_dec(x_383); -lean_dec_ref(x_382); -x_425 = lean_array_fget(x_393, x_394); -lean_dec(x_394); -lean_dec_ref(x_393); -x_426 = lean_array_fget(x_403, x_404); -lean_dec(x_404); -lean_dec_ref(x_403); -x_427 = lean_array_fget_borrowed(x_413, x_414); -x_428 = lean_box(x_2); -x_429 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_427); -lean_inc(x_9); -lean_inc_ref(x_1); -x_430 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_430, 0, x_423); -lean_closure_set(x_430, 1, x_1); -lean_closure_set(x_430, 2, x_9); -lean_closure_set(x_430, 3, x_428); -lean_closure_set(x_430, 4, x_429); -lean_closure_set(x_430, 5, x_427); -lean_closure_set(x_430, 6, x_4); -lean_closure_set(x_430, 7, x_5); -lean_closure_set(x_430, 8, x_425); -lean_closure_set(x_430, 9, x_6); -lean_closure_set(x_430, 10, x_385); -x_431 = lean_nat_sub(x_426, x_5); -lean_dec(x_426); +lean_dec_ref(x_369); +lean_dec(x_365); +lean_dec_ref(x_364); +lean_dec(x_358); +lean_dec_ref(x_357); +lean_dec(x_356); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +x_405 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_432 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg(x_424, x_431, x_6, x_430, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_432) == 0) +x_406 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_405, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_406) == 0) { -lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; uint8_t x_441; -x_433 = lean_ctor_get(x_432, 0); -lean_inc(x_433); -if (lean_is_exclusive(x_432)) { - lean_ctor_release(x_432, 0); - x_434 = x_432; +lean_object* x_407; lean_object* x_408; +x_407 = lean_ctor_get(x_406, 0); +lean_inc(x_407); +if (lean_is_exclusive(x_406)) { + lean_ctor_release(x_406, 0); + x_408 = x_406; } else { - lean_dec_ref(x_432); - x_434 = lean_box(0); + lean_dec_ref(x_406); + x_408 = lean_box(0); } -x_435 = lean_nat_add(x_414, x_385); -lean_dec(x_414); -if (lean_is_scalar(x_422)) { - x_436 = lean_alloc_ctor(0, 3, 0); -} else { - x_436 = x_422; -} -lean_ctor_set(x_436, 0, x_413); -lean_ctor_set(x_436, 1, x_435); -lean_ctor_set(x_436, 2, x_415); -x_437 = lean_array_push(x_372, x_433); -if (lean_is_scalar(x_373)) { - x_438 = lean_alloc_ctor(0, 2, 0); -} else { - x_438 = x_373; -} -lean_ctor_set(x_438, 0, x_387); -lean_ctor_set(x_438, 1, x_437); -x_439 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_439, 0, x_397); -lean_ctor_set(x_439, 1, x_438); -lean_ctor_set(x_16, 1, x_439); -lean_ctor_set(x_16, 0, x_407); -lean_ctor_set(x_15, 0, x_417); -lean_ctor_set(x_8, 0, x_436); -x_440 = lean_nat_add(x_9, x_385); -lean_dec(x_9); -x_441 = lean_nat_dec_lt(x_440, x_7); -if (x_441 == 0) +if (lean_obj_tag(x_407) == 0) { -lean_object* x_442; -lean_dec(x_440); +lean_object* x_409; lean_object* x_410; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_434)) { - x_442 = lean_alloc_ctor(0, 1, 0); -} else { - x_442 = x_434; -} -lean_ctor_set(x_442, 0, x_8); -return x_442; -} -else -{ -lean_dec(x_434); -x_9 = x_440; -goto _start; -} -} -else -{ -lean_object* x_444; lean_object* x_445; lean_object* x_446; -lean_dec(x_422); -lean_dec_ref(x_417); -lean_dec(x_415); -lean_dec(x_414); -lean_dec_ref(x_413); +lean_dec_ref(x_2); +x_409 = lean_ctor_get(x_407, 0); +lean_inc(x_409); lean_dec_ref(x_407); -lean_dec_ref(x_397); +if (lean_is_scalar(x_408)) { + x_410 = lean_alloc_ctor(0, 1, 0); +} else { + x_410 = x_408; +} +lean_ctor_set(x_410, 0, x_409); +return x_410; +} +else +{ +lean_object* x_411; +lean_dec(x_408); +x_411 = lean_ctor_get(x_407, 0); +lean_inc(x_411); +lean_dec_ref(x_407); +x_15 = x_411; +x_16 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_412; lean_object* x_413; lean_object* x_414; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_412 = lean_ctor_get(x_406, 0); +lean_inc(x_412); +if (lean_is_exclusive(x_406)) { + lean_ctor_release(x_406, 0); + x_413 = x_406; +} else { + lean_dec_ref(x_406); + x_413 = lean_box(0); +} +if (lean_is_scalar(x_413)) { + x_414 = lean_alloc_ctor(1, 1, 0); +} else { + x_414 = x_413; +} +lean_ctor_set(x_414, 0, x_412); +return x_414; +} +} +else +{ +lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; +x_415 = lean_array_fget(x_357, x_358); +lean_dec(x_358); +lean_dec_ref(x_357); +x_416 = lean_array_fget(x_364, x_365); +lean_dec(x_365); +lean_dec_ref(x_364); +x_417 = lean_array_fget(x_374, x_375); +lean_dec(x_375); +lean_dec_ref(x_374); +x_418 = lean_array_fget_borrowed(x_392, x_393); +x_419 = lean_box(x_3); +x_420 = lean_box(x_4); +x_421 = lean_box(x_403); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_418); +lean_inc(x_9); +lean_inc_ref(x_2); +x_422 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_422, 0, x_417); +lean_closure_set(x_422, 1, x_415); +lean_closure_set(x_422, 2, x_2); +lean_closure_set(x_422, 3, x_9); +lean_closure_set(x_422, 4, x_419); +lean_closure_set(x_422, 5, x_420); +lean_closure_set(x_422, 6, x_418); +lean_closure_set(x_422, 7, x_5); +lean_closure_set(x_422, 8, x_6); +lean_closure_set(x_422, 9, x_421); +lean_closure_set(x_422, 10, x_367); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_423 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_416, x_401, x_422, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_423) == 0) +{ +lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; +x_424 = lean_ctor_get(x_423, 0); +lean_inc(x_424); +lean_dec_ref(x_423); +x_425 = lean_nat_add(x_393, x_367); +lean_dec(x_393); +if (lean_is_scalar(x_400)) { + x_426 = lean_alloc_ctor(0, 3, 0); +} else { + x_426 = x_400; +} +lean_ctor_set(x_426, 0, x_392); +lean_ctor_set(x_426, 1, x_425); +lean_ctor_set(x_426, 2, x_394); +x_427 = lean_array_push(x_356, x_424); +x_428 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_428, 0, x_369); +lean_ctor_set(x_428, 1, x_427); +lean_ctor_set(x_25, 1, x_428); +lean_ctor_set(x_25, 0, x_378); +lean_ctor_set(x_24, 0, x_387); +lean_ctor_set(x_23, 0, x_396); +lean_ctor_set(x_8, 0, x_426); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_429; lean_object* x_430; lean_object* x_431; +lean_dec(x_400); +lean_dec_ref(x_396); +lean_dec(x_394); +lean_dec(x_393); +lean_dec_ref(x_392); lean_dec_ref(x_387); -lean_dec(x_373); -lean_dec(x_372); -lean_free_object(x_16); -lean_free_object(x_15); +lean_dec_ref(x_378); +lean_dec_ref(x_369); +lean_dec(x_356); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_23); lean_free_object(x_8); lean_dec(x_13); lean_dec_ref(x_12); @@ -17790,131 +18876,172 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_444 = lean_ctor_get(x_432, 0); +lean_dec_ref(x_2); +x_429 = lean_ctor_get(x_423, 0); +lean_inc(x_429); +if (lean_is_exclusive(x_423)) { + lean_ctor_release(x_423, 0); + x_430 = x_423; +} else { + lean_dec_ref(x_423); + x_430 = lean_box(0); +} +if (lean_is_scalar(x_430)) { + x_431 = lean_alloc_ctor(1, 1, 0); +} else { + x_431 = x_430; +} +lean_ctor_set(x_431, 0, x_429); +return x_431; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; uint8_t x_438; +x_432 = lean_ctor_get(x_25, 0); +lean_inc(x_432); +lean_dec(x_25); +x_433 = lean_ctor_get(x_26, 1); +lean_inc(x_433); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_434 = x_26; +} else { + lean_dec_ref(x_26); + x_434 = lean_box(0); +} +x_435 = lean_ctor_get(x_27, 0); +x_436 = lean_ctor_get(x_27, 1); +x_437 = lean_ctor_get(x_27, 2); +x_438 = lean_nat_dec_lt(x_436, x_437); +if (x_438 == 0) +{ +lean_object* x_439; lean_object* x_440; lean_object* x_441; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_434)) { + x_439 = lean_alloc_ctor(0, 2, 0); +} else { + x_439 = x_434; +} +lean_ctor_set(x_439, 0, x_27); +lean_ctor_set(x_439, 1, x_433); +x_440 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_440, 0, x_432); +lean_ctor_set(x_440, 1, x_439); +lean_ctor_set(x_24, 1, x_440); +x_441 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_441, 0, x_8); +return x_441; +} +else +{ +lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; uint8_t x_449; +lean_inc(x_437); +lean_inc(x_436); +lean_inc_ref(x_435); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + lean_ctor_release(x_27, 2); + x_442 = x_27; +} else { + lean_dec_ref(x_27); + x_442 = lean_box(0); +} +x_443 = lean_ctor_get(x_432, 0); +x_444 = lean_ctor_get(x_432, 1); +x_445 = lean_ctor_get(x_432, 2); +x_446 = lean_unsigned_to_nat(1u); +x_447 = lean_nat_add(x_436, x_446); +lean_inc_ref(x_435); +if (lean_is_scalar(x_442)) { + x_448 = lean_alloc_ctor(0, 3, 0); +} else { + x_448 = x_442; +} +lean_ctor_set(x_448, 0, x_435); +lean_ctor_set(x_448, 1, x_447); +lean_ctor_set(x_448, 2, x_437); +x_449 = lean_nat_dec_lt(x_444, x_445); +if (x_449 == 0) +{ +lean_object* x_450; lean_object* x_451; lean_object* x_452; +lean_dec(x_436); +lean_dec_ref(x_435); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_434)) { + x_450 = lean_alloc_ctor(0, 2, 0); +} else { + x_450 = x_434; +} +lean_ctor_set(x_450, 0, x_448); +lean_ctor_set(x_450, 1, x_433); +x_451 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_451, 0, x_432); +lean_ctor_set(x_451, 1, x_450); +lean_ctor_set(x_24, 1, x_451); +x_452 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_452, 0, x_8); +return x_452; +} +else +{ +lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; uint8_t x_459; +lean_inc(x_445); lean_inc(x_444); +lean_inc_ref(x_443); if (lean_is_exclusive(x_432)) { lean_ctor_release(x_432, 0); - x_445 = x_432; + lean_ctor_release(x_432, 1); + lean_ctor_release(x_432, 2); + x_453 = x_432; } else { lean_dec_ref(x_432); - x_445 = lean_box(0); + x_453 = lean_box(0); } -if (lean_is_scalar(x_445)) { - x_446 = lean_alloc_ctor(1, 1, 0); +x_454 = lean_ctor_get(x_35, 0); +x_455 = lean_ctor_get(x_35, 1); +x_456 = lean_ctor_get(x_35, 2); +x_457 = lean_nat_add(x_444, x_446); +lean_inc_ref(x_443); +if (lean_is_scalar(x_453)) { + x_458 = lean_alloc_ctor(0, 3, 0); } else { - x_446 = x_445; + x_458 = x_453; } -lean_ctor_set(x_446, 0, x_444); -return x_446; -} -} -} -} -} -} -} -} -else -{ -lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; uint8_t x_455; -x_447 = lean_ctor_get(x_16, 0); -lean_inc(x_447); -lean_dec(x_16); -x_448 = lean_ctor_get(x_17, 0); -lean_inc(x_448); -if (lean_is_exclusive(x_17)) { - lean_ctor_release(x_17, 0); - lean_ctor_release(x_17, 1); - x_449 = x_17; -} else { - lean_dec_ref(x_17); - x_449 = lean_box(0); -} -x_450 = lean_ctor_get(x_18, 1); -lean_inc(x_450); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_451 = x_18; -} else { - lean_dec_ref(x_18); - x_451 = lean_box(0); -} -x_452 = lean_ctor_get(x_19, 0); -x_453 = lean_ctor_get(x_19, 1); -x_454 = lean_ctor_get(x_19, 2); -x_455 = lean_nat_dec_lt(x_453, x_454); -if (x_455 == 0) -{ -lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_451)) { - x_456 = lean_alloc_ctor(0, 2, 0); -} else { - x_456 = x_451; -} -lean_ctor_set(x_456, 0, x_19); -lean_ctor_set(x_456, 1, x_450); -if (lean_is_scalar(x_449)) { - x_457 = lean_alloc_ctor(0, 2, 0); -} else { - x_457 = x_449; -} -lean_ctor_set(x_457, 0, x_448); -lean_ctor_set(x_457, 1, x_456); -x_458 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_458, 0, x_447); +lean_ctor_set(x_458, 0, x_443); lean_ctor_set(x_458, 1, x_457); -lean_ctor_set(x_15, 1, x_458); -x_459 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_459, 0, x_8); -return x_459; -} -else +lean_ctor_set(x_458, 2, x_445); +x_459 = lean_nat_dec_lt(x_455, x_456); +if (x_459 == 0) { -lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; uint8_t x_467; -lean_inc(x_454); -lean_inc(x_453); -lean_inc_ref(x_452); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - lean_ctor_release(x_19, 2); - x_460 = x_19; -} else { - lean_dec_ref(x_19); - x_460 = lean_box(0); -} -x_461 = lean_ctor_get(x_448, 0); -x_462 = lean_ctor_get(x_448, 1); -x_463 = lean_ctor_get(x_448, 2); -x_464 = lean_unsigned_to_nat(1u); -x_465 = lean_nat_add(x_453, x_464); -lean_inc_ref(x_452); -if (lean_is_scalar(x_460)) { - x_466 = lean_alloc_ctor(0, 3, 0); -} else { - x_466 = x_460; -} -lean_ctor_set(x_466, 0, x_452); -lean_ctor_set(x_466, 1, x_465); -lean_ctor_set(x_466, 2, x_454); -x_467 = lean_nat_dec_lt(x_462, x_463); -if (x_467 == 0) -{ -lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; -lean_dec(x_453); -lean_dec_ref(x_452); +lean_object* x_460; lean_object* x_461; lean_object* x_462; +lean_dec(x_444); +lean_dec_ref(x_443); +lean_dec(x_436); +lean_dec_ref(x_435); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -17922,66 +19049,60 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_451)) { - x_468 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_434)) { + x_460 = lean_alloc_ctor(0, 2, 0); } else { - x_468 = x_451; + x_460 = x_434; } -lean_ctor_set(x_468, 0, x_466); -lean_ctor_set(x_468, 1, x_450); -if (lean_is_scalar(x_449)) { - x_469 = lean_alloc_ctor(0, 2, 0); -} else { - x_469 = x_449; -} -lean_ctor_set(x_469, 0, x_448); -lean_ctor_set(x_469, 1, x_468); -x_470 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_470, 0, x_447); -lean_ctor_set(x_470, 1, x_469); -lean_ctor_set(x_15, 1, x_470); -x_471 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_471, 0, x_8); -return x_471; +lean_ctor_set(x_460, 0, x_448); +lean_ctor_set(x_460, 1, x_433); +x_461 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_461, 0, x_458); +lean_ctor_set(x_461, 1, x_460); +lean_ctor_set(x_24, 1, x_461); +x_462 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_462, 0, x_8); +return x_462; } else { -lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; uint8_t x_478; -lean_inc(x_463); -lean_inc(x_462); -lean_inc_ref(x_461); -if (lean_is_exclusive(x_448)) { - lean_ctor_release(x_448, 0); - lean_ctor_release(x_448, 1); - lean_ctor_release(x_448, 2); - x_472 = x_448; +lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; uint8_t x_469; +lean_inc(x_456); +lean_inc(x_455); +lean_inc_ref(x_454); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + lean_ctor_release(x_35, 2); + x_463 = x_35; } else { - lean_dec_ref(x_448); - x_472 = lean_box(0); + lean_dec_ref(x_35); + x_463 = lean_box(0); } -x_473 = lean_ctor_get(x_447, 0); -x_474 = lean_ctor_get(x_447, 1); -x_475 = lean_ctor_get(x_447, 2); -x_476 = lean_nat_add(x_462, x_464); -lean_inc_ref(x_461); -if (lean_is_scalar(x_472)) { - x_477 = lean_alloc_ctor(0, 3, 0); +x_464 = lean_ctor_get(x_32, 0); +x_465 = lean_ctor_get(x_32, 1); +x_466 = lean_ctor_get(x_32, 2); +x_467 = lean_nat_add(x_455, x_446); +lean_inc_ref(x_454); +if (lean_is_scalar(x_463)) { + x_468 = lean_alloc_ctor(0, 3, 0); } else { - x_477 = x_472; + x_468 = x_463; } -lean_ctor_set(x_477, 0, x_461); -lean_ctor_set(x_477, 1, x_476); -lean_ctor_set(x_477, 2, x_463); -x_478 = lean_nat_dec_lt(x_474, x_475); -if (x_478 == 0) +lean_ctor_set(x_468, 0, x_454); +lean_ctor_set(x_468, 1, x_467); +lean_ctor_set(x_468, 2, x_456); +x_469 = lean_nat_dec_lt(x_465, x_466); +if (x_469 == 0) { -lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; -lean_dec(x_462); -lean_dec_ref(x_461); -lean_dec(x_453); -lean_dec_ref(x_452); +lean_object* x_470; lean_object* x_471; lean_object* x_472; +lean_dec(x_455); +lean_dec_ref(x_454); +lean_dec(x_444); +lean_dec_ref(x_443); +lean_dec(x_436); +lean_dec_ref(x_435); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -17989,68 +19110,153 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_451)) { - x_479 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_434)) { + x_470 = lean_alloc_ctor(0, 2, 0); } else { - x_479 = x_451; + x_470 = x_434; } -lean_ctor_set(x_479, 0, x_466); -lean_ctor_set(x_479, 1, x_450); -if (lean_is_scalar(x_449)) { +lean_ctor_set(x_470, 0, x_448); +lean_ctor_set(x_470, 1, x_433); +x_471 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_471, 0, x_458); +lean_ctor_set(x_471, 1, x_470); +lean_ctor_set(x_24, 1, x_471); +lean_ctor_set(x_24, 0, x_468); +x_472 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_472, 0, x_8); +return x_472; +} +else +{ +lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; uint8_t x_479; +lean_inc(x_466); +lean_inc(x_465); +lean_inc_ref(x_464); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_473 = x_32; +} else { + lean_dec_ref(x_32); + x_473 = lean_box(0); +} +x_474 = lean_ctor_get(x_29, 0); +x_475 = lean_ctor_get(x_29, 1); +x_476 = lean_ctor_get(x_29, 2); +x_477 = lean_nat_add(x_465, x_446); +lean_inc_ref(x_464); +if (lean_is_scalar(x_473)) { + x_478 = lean_alloc_ctor(0, 3, 0); +} else { + x_478 = x_473; +} +lean_ctor_set(x_478, 0, x_464); +lean_ctor_set(x_478, 1, x_477); +lean_ctor_set(x_478, 2, x_466); +x_479 = lean_nat_dec_lt(x_475, x_476); +if (x_479 == 0) +{ +lean_object* x_480; lean_object* x_481; lean_object* x_482; +lean_dec(x_465); +lean_dec_ref(x_464); +lean_dec(x_455); +lean_dec_ref(x_454); +lean_dec(x_444); +lean_dec_ref(x_443); +lean_dec(x_436); +lean_dec_ref(x_435); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_434)) { x_480 = lean_alloc_ctor(0, 2, 0); } else { - x_480 = x_449; + x_480 = x_434; } -lean_ctor_set(x_480, 0, x_477); -lean_ctor_set(x_480, 1, x_479); +lean_ctor_set(x_480, 0, x_448); +lean_ctor_set(x_480, 1, x_433); x_481 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_481, 0, x_447); +lean_ctor_set(x_481, 0, x_458); lean_ctor_set(x_481, 1, x_480); -lean_ctor_set(x_15, 1, x_481); +lean_ctor_set(x_24, 1, x_481); +lean_ctor_set(x_24, 0, x_468); +lean_ctor_set(x_23, 0, x_478); x_482 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_482, 0, x_8); return x_482; } else { -lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; uint8_t x_489; +lean_object* x_483; lean_object* x_484; lean_object* x_485; uint8_t x_486; uint8_t x_487; +lean_inc(x_476); lean_inc(x_475); -lean_inc(x_474); -lean_inc_ref(x_473); -if (lean_is_exclusive(x_447)) { - lean_ctor_release(x_447, 0); - lean_ctor_release(x_447, 1); - lean_ctor_release(x_447, 2); - x_483 = x_447; +lean_inc_ref(x_474); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_483 = x_29; } else { - lean_dec_ref(x_447); + lean_dec_ref(x_29); x_483 = lean_box(0); } -x_484 = lean_ctor_get(x_24, 0); -x_485 = lean_ctor_get(x_24, 1); -x_486 = lean_ctor_get(x_24, 2); -x_487 = lean_nat_add(x_474, x_464); -lean_inc_ref(x_473); -if (lean_is_scalar(x_483)) { - x_488 = lean_alloc_ctor(0, 3, 0); -} else { - x_488 = x_483; -} -lean_ctor_set(x_488, 0, x_473); -lean_ctor_set(x_488, 1, x_487); -lean_ctor_set(x_488, 2, x_475); -x_489 = lean_nat_dec_lt(x_485, x_486); -if (x_489 == 0) +x_484 = lean_array_fget(x_464, x_465); +lean_dec(x_465); +lean_dec_ref(x_464); +x_485 = lean_ctor_get(x_484, 1); +x_486 = lean_ctor_get_uint8(x_484, sizeof(void*)*2); +x_487 = lean_nat_dec_eq(x_485, x_1); +if (x_487 == 0) { -lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; -lean_dec(x_474); -lean_dec_ref(x_473); -lean_dec(x_462); -lean_dec_ref(x_461); -lean_dec(x_453); -lean_dec_ref(x_452); +lean_object* x_488; lean_object* x_489; +lean_dec_ref(x_484); +lean_dec(x_483); +lean_dec_ref(x_478); +lean_dec(x_476); +lean_dec(x_475); +lean_dec_ref(x_474); +lean_dec_ref(x_468); +lean_dec_ref(x_458); +lean_dec(x_455); +lean_dec_ref(x_454); +lean_dec_ref(x_448); +lean_dec(x_444); +lean_dec_ref(x_443); +lean_dec(x_436); +lean_dec_ref(x_435); +lean_dec(x_434); +lean_dec(x_433); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +x_488 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_489 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_488, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_489) == 0) +{ +lean_object* x_490; lean_object* x_491; +x_490 = lean_ctor_get(x_489, 0); +lean_inc(x_490); +if (lean_is_exclusive(x_489)) { + lean_ctor_release(x_489, 0); + x_491 = x_489; +} else { + lean_dec_ref(x_489); + x_491 = lean_box(0); +} +if (lean_obj_tag(x_490) == 0) +{ +lean_object* x_492; lean_object* x_493; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -18058,70 +19264,810 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_451)) { - x_490 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +x_492 = lean_ctor_get(x_490, 0); +lean_inc(x_492); +lean_dec_ref(x_490); +if (lean_is_scalar(x_491)) { + x_493 = lean_alloc_ctor(0, 1, 0); } else { - x_490 = x_451; + x_493 = x_491; } -lean_ctor_set(x_490, 0, x_466); -lean_ctor_set(x_490, 1, x_450); -if (lean_is_scalar(x_449)) { - x_491 = lean_alloc_ctor(0, 2, 0); -} else { - x_491 = x_449; -} -lean_ctor_set(x_491, 0, x_477); -lean_ctor_set(x_491, 1, x_490); -x_492 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_492, 0, x_488); -lean_ctor_set(x_492, 1, x_491); -lean_ctor_set(x_15, 1, x_492); -x_493 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_493, 0, x_8); +lean_ctor_set(x_493, 0, x_492); return x_493; } else { -lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; uint8_t x_500; -lean_inc(x_486); -lean_inc(x_485); -lean_inc_ref(x_484); +lean_object* x_494; +lean_dec(x_491); +x_494 = lean_ctor_get(x_490, 0); +lean_inc(x_494); +lean_dec_ref(x_490); +x_15 = x_494; +x_16 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_495; lean_object* x_496; lean_object* x_497; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_495 = lean_ctor_get(x_489, 0); +lean_inc(x_495); +if (lean_is_exclusive(x_489)) { + lean_ctor_release(x_489, 0); + x_496 = x_489; +} else { + lean_dec_ref(x_489); + x_496 = lean_box(0); +} +if (lean_is_scalar(x_496)) { + x_497 = lean_alloc_ctor(1, 1, 0); +} else { + x_497 = x_496; +} +lean_ctor_set(x_497, 0, x_495); +return x_497; +} +} +else +{ +lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; +x_498 = lean_array_fget(x_435, x_436); +lean_dec(x_436); +lean_dec_ref(x_435); +x_499 = lean_array_fget(x_443, x_444); +lean_dec(x_444); +lean_dec_ref(x_443); +x_500 = lean_array_fget(x_454, x_455); +lean_dec(x_455); +lean_dec_ref(x_454); +x_501 = lean_array_fget_borrowed(x_474, x_475); +x_502 = lean_box(x_3); +x_503 = lean_box(x_4); +x_504 = lean_box(x_486); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_501); +lean_inc(x_9); +lean_inc_ref(x_2); +x_505 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_505, 0, x_500); +lean_closure_set(x_505, 1, x_498); +lean_closure_set(x_505, 2, x_2); +lean_closure_set(x_505, 3, x_9); +lean_closure_set(x_505, 4, x_502); +lean_closure_set(x_505, 5, x_503); +lean_closure_set(x_505, 6, x_501); +lean_closure_set(x_505, 7, x_5); +lean_closure_set(x_505, 8, x_6); +lean_closure_set(x_505, 9, x_504); +lean_closure_set(x_505, 10, x_446); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_506 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_499, x_484, x_505, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_506) == 0) +{ +lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; +x_507 = lean_ctor_get(x_506, 0); +lean_inc(x_507); +lean_dec_ref(x_506); +x_508 = lean_nat_add(x_475, x_446); +lean_dec(x_475); +if (lean_is_scalar(x_483)) { + x_509 = lean_alloc_ctor(0, 3, 0); +} else { + x_509 = x_483; +} +lean_ctor_set(x_509, 0, x_474); +lean_ctor_set(x_509, 1, x_508); +lean_ctor_set(x_509, 2, x_476); +x_510 = lean_array_push(x_433, x_507); +if (lean_is_scalar(x_434)) { + x_511 = lean_alloc_ctor(0, 2, 0); +} else { + x_511 = x_434; +} +lean_ctor_set(x_511, 0, x_448); +lean_ctor_set(x_511, 1, x_510); +x_512 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_512, 0, x_458); +lean_ctor_set(x_512, 1, x_511); +lean_ctor_set(x_24, 1, x_512); +lean_ctor_set(x_24, 0, x_468); +lean_ctor_set(x_23, 0, x_478); +lean_ctor_set(x_8, 0, x_509); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_513; lean_object* x_514; lean_object* x_515; +lean_dec(x_483); +lean_dec_ref(x_478); +lean_dec(x_476); +lean_dec(x_475); +lean_dec_ref(x_474); +lean_dec_ref(x_468); +lean_dec_ref(x_458); +lean_dec_ref(x_448); +lean_dec(x_434); +lean_dec(x_433); +lean_free_object(x_24); +lean_free_object(x_23); +lean_free_object(x_8); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_513 = lean_ctor_get(x_506, 0); +lean_inc(x_513); +if (lean_is_exclusive(x_506)) { + lean_ctor_release(x_506, 0); + x_514 = x_506; +} else { + lean_dec_ref(x_506); + x_514 = lean_box(0); +} +if (lean_is_scalar(x_514)) { + x_515 = lean_alloc_ctor(1, 1, 0); +} else { + x_515 = x_514; +} +lean_ctor_set(x_515, 0, x_513); +return x_515; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; uint8_t x_524; +x_516 = lean_ctor_get(x_24, 0); +lean_inc(x_516); +lean_dec(x_24); +x_517 = lean_ctor_get(x_25, 0); +lean_inc(x_517); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + x_518 = x_25; +} else { + lean_dec_ref(x_25); + x_518 = lean_box(0); +} +x_519 = lean_ctor_get(x_26, 1); +lean_inc(x_519); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_520 = x_26; +} else { + lean_dec_ref(x_26); + x_520 = lean_box(0); +} +x_521 = lean_ctor_get(x_27, 0); +x_522 = lean_ctor_get(x_27, 1); +x_523 = lean_ctor_get(x_27, 2); +x_524 = lean_nat_dec_lt(x_522, x_523); +if (x_524 == 0) +{ +lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_520)) { + x_525 = lean_alloc_ctor(0, 2, 0); +} else { + x_525 = x_520; +} +lean_ctor_set(x_525, 0, x_27); +lean_ctor_set(x_525, 1, x_519); +if (lean_is_scalar(x_518)) { + x_526 = lean_alloc_ctor(0, 2, 0); +} else { + x_526 = x_518; +} +lean_ctor_set(x_526, 0, x_517); +lean_ctor_set(x_526, 1, x_525); +x_527 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_527, 0, x_516); +lean_ctor_set(x_527, 1, x_526); +lean_ctor_set(x_23, 1, x_527); +x_528 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_528, 0, x_8); +return x_528; +} +else +{ +lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; uint8_t x_536; +lean_inc(x_523); +lean_inc(x_522); +lean_inc_ref(x_521); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + lean_ctor_release(x_27, 2); + x_529 = x_27; +} else { + lean_dec_ref(x_27); + x_529 = lean_box(0); +} +x_530 = lean_ctor_get(x_517, 0); +x_531 = lean_ctor_get(x_517, 1); +x_532 = lean_ctor_get(x_517, 2); +x_533 = lean_unsigned_to_nat(1u); +x_534 = lean_nat_add(x_522, x_533); +lean_inc_ref(x_521); +if (lean_is_scalar(x_529)) { + x_535 = lean_alloc_ctor(0, 3, 0); +} else { + x_535 = x_529; +} +lean_ctor_set(x_535, 0, x_521); +lean_ctor_set(x_535, 1, x_534); +lean_ctor_set(x_535, 2, x_523); +x_536 = lean_nat_dec_lt(x_531, x_532); +if (x_536 == 0) +{ +lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; +lean_dec(x_522); +lean_dec_ref(x_521); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_520)) { + x_537 = lean_alloc_ctor(0, 2, 0); +} else { + x_537 = x_520; +} +lean_ctor_set(x_537, 0, x_535); +lean_ctor_set(x_537, 1, x_519); +if (lean_is_scalar(x_518)) { + x_538 = lean_alloc_ctor(0, 2, 0); +} else { + x_538 = x_518; +} +lean_ctor_set(x_538, 0, x_517); +lean_ctor_set(x_538, 1, x_537); +x_539 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_539, 0, x_516); +lean_ctor_set(x_539, 1, x_538); +lean_ctor_set(x_23, 1, x_539); +x_540 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_540, 0, x_8); +return x_540; +} +else +{ +lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; uint8_t x_547; +lean_inc(x_532); +lean_inc(x_531); +lean_inc_ref(x_530); +if (lean_is_exclusive(x_517)) { + lean_ctor_release(x_517, 0); + lean_ctor_release(x_517, 1); + lean_ctor_release(x_517, 2); + x_541 = x_517; +} else { + lean_dec_ref(x_517); + x_541 = lean_box(0); +} +x_542 = lean_ctor_get(x_516, 0); +x_543 = lean_ctor_get(x_516, 1); +x_544 = lean_ctor_get(x_516, 2); +x_545 = lean_nat_add(x_531, x_533); +lean_inc_ref(x_530); +if (lean_is_scalar(x_541)) { + x_546 = lean_alloc_ctor(0, 3, 0); +} else { + x_546 = x_541; +} +lean_ctor_set(x_546, 0, x_530); +lean_ctor_set(x_546, 1, x_545); +lean_ctor_set(x_546, 2, x_532); +x_547 = lean_nat_dec_lt(x_543, x_544); +if (x_547 == 0) +{ +lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; +lean_dec(x_531); +lean_dec_ref(x_530); +lean_dec(x_522); +lean_dec_ref(x_521); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_520)) { + x_548 = lean_alloc_ctor(0, 2, 0); +} else { + x_548 = x_520; +} +lean_ctor_set(x_548, 0, x_535); +lean_ctor_set(x_548, 1, x_519); +if (lean_is_scalar(x_518)) { + x_549 = lean_alloc_ctor(0, 2, 0); +} else { + x_549 = x_518; +} +lean_ctor_set(x_549, 0, x_546); +lean_ctor_set(x_549, 1, x_548); +x_550 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_550, 0, x_516); +lean_ctor_set(x_550, 1, x_549); +lean_ctor_set(x_23, 1, x_550); +x_551 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_551, 0, x_8); +return x_551; +} +else +{ +lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; uint8_t x_558; +lean_inc(x_544); +lean_inc(x_543); +lean_inc_ref(x_542); +if (lean_is_exclusive(x_516)) { + lean_ctor_release(x_516, 0); + lean_ctor_release(x_516, 1); + lean_ctor_release(x_516, 2); + x_552 = x_516; +} else { + lean_dec_ref(x_516); + x_552 = lean_box(0); +} +x_553 = lean_ctor_get(x_32, 0); +x_554 = lean_ctor_get(x_32, 1); +x_555 = lean_ctor_get(x_32, 2); +x_556 = lean_nat_add(x_543, x_533); +lean_inc_ref(x_542); +if (lean_is_scalar(x_552)) { + x_557 = lean_alloc_ctor(0, 3, 0); +} else { + x_557 = x_552; +} +lean_ctor_set(x_557, 0, x_542); +lean_ctor_set(x_557, 1, x_556); +lean_ctor_set(x_557, 2, x_544); +x_558 = lean_nat_dec_lt(x_554, x_555); +if (x_558 == 0) +{ +lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; +lean_dec(x_543); +lean_dec_ref(x_542); +lean_dec(x_531); +lean_dec_ref(x_530); +lean_dec(x_522); +lean_dec_ref(x_521); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_520)) { + x_559 = lean_alloc_ctor(0, 2, 0); +} else { + x_559 = x_520; +} +lean_ctor_set(x_559, 0, x_535); +lean_ctor_set(x_559, 1, x_519); +if (lean_is_scalar(x_518)) { + x_560 = lean_alloc_ctor(0, 2, 0); +} else { + x_560 = x_518; +} +lean_ctor_set(x_560, 0, x_546); +lean_ctor_set(x_560, 1, x_559); +x_561 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_561, 0, x_557); +lean_ctor_set(x_561, 1, x_560); +lean_ctor_set(x_23, 1, x_561); +x_562 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_562, 0, x_8); +return x_562; +} +else +{ +lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; uint8_t x_569; +lean_inc(x_555); +lean_inc(x_554); +lean_inc_ref(x_553); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_563 = x_32; +} else { + lean_dec_ref(x_32); + x_563 = lean_box(0); +} +x_564 = lean_ctor_get(x_29, 0); +x_565 = lean_ctor_get(x_29, 1); +x_566 = lean_ctor_get(x_29, 2); +x_567 = lean_nat_add(x_554, x_533); +lean_inc_ref(x_553); +if (lean_is_scalar(x_563)) { + x_568 = lean_alloc_ctor(0, 3, 0); +} else { + x_568 = x_563; +} +lean_ctor_set(x_568, 0, x_553); +lean_ctor_set(x_568, 1, x_567); +lean_ctor_set(x_568, 2, x_555); +x_569 = lean_nat_dec_lt(x_565, x_566); +if (x_569 == 0) +{ +lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; +lean_dec(x_554); +lean_dec_ref(x_553); +lean_dec(x_543); +lean_dec_ref(x_542); +lean_dec(x_531); +lean_dec_ref(x_530); +lean_dec(x_522); +lean_dec_ref(x_521); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_520)) { + x_570 = lean_alloc_ctor(0, 2, 0); +} else { + x_570 = x_520; +} +lean_ctor_set(x_570, 0, x_535); +lean_ctor_set(x_570, 1, x_519); +if (lean_is_scalar(x_518)) { + x_571 = lean_alloc_ctor(0, 2, 0); +} else { + x_571 = x_518; +} +lean_ctor_set(x_571, 0, x_546); +lean_ctor_set(x_571, 1, x_570); +x_572 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_572, 0, x_557); +lean_ctor_set(x_572, 1, x_571); +lean_ctor_set(x_23, 1, x_572); +lean_ctor_set(x_23, 0, x_568); +x_573 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_573, 0, x_8); +return x_573; +} +else +{ +lean_object* x_574; lean_object* x_575; lean_object* x_576; uint8_t x_577; uint8_t x_578; +lean_inc(x_566); +lean_inc(x_565); +lean_inc_ref(x_564); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_574 = x_29; +} else { + lean_dec_ref(x_29); + x_574 = lean_box(0); +} +x_575 = lean_array_fget(x_553, x_554); +lean_dec(x_554); +lean_dec_ref(x_553); +x_576 = lean_ctor_get(x_575, 1); +x_577 = lean_ctor_get_uint8(x_575, sizeof(void*)*2); +x_578 = lean_nat_dec_eq(x_576, x_1); +if (x_578 == 0) +{ +lean_object* x_579; lean_object* x_580; +lean_dec_ref(x_575); +lean_dec(x_574); +lean_dec_ref(x_568); +lean_dec(x_566); +lean_dec(x_565); +lean_dec_ref(x_564); +lean_dec_ref(x_557); +lean_dec_ref(x_546); +lean_dec(x_543); +lean_dec_ref(x_542); +lean_dec_ref(x_535); +lean_dec(x_531); +lean_dec_ref(x_530); +lean_dec(x_522); +lean_dec_ref(x_521); +lean_dec(x_520); +lean_dec(x_519); +lean_dec(x_518); +lean_free_object(x_23); +lean_free_object(x_8); +x_579 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_580 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_579, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_580) == 0) +{ +lean_object* x_581; lean_object* x_582; +x_581 = lean_ctor_get(x_580, 0); +lean_inc(x_581); +if (lean_is_exclusive(x_580)) { + lean_ctor_release(x_580, 0); + x_582 = x_580; +} else { + lean_dec_ref(x_580); + x_582 = lean_box(0); +} +if (lean_obj_tag(x_581) == 0) +{ +lean_object* x_583; lean_object* x_584; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_583 = lean_ctor_get(x_581, 0); +lean_inc(x_583); +lean_dec_ref(x_581); +if (lean_is_scalar(x_582)) { + x_584 = lean_alloc_ctor(0, 1, 0); +} else { + x_584 = x_582; +} +lean_ctor_set(x_584, 0, x_583); +return x_584; +} +else +{ +lean_object* x_585; +lean_dec(x_582); +x_585 = lean_ctor_get(x_581, 0); +lean_inc(x_585); +lean_dec_ref(x_581); +x_15 = x_585; +x_16 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_586; lean_object* x_587; lean_object* x_588; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_586 = lean_ctor_get(x_580, 0); +lean_inc(x_586); +if (lean_is_exclusive(x_580)) { + lean_ctor_release(x_580, 0); + x_587 = x_580; +} else { + lean_dec_ref(x_580); + x_587 = lean_box(0); +} +if (lean_is_scalar(x_587)) { + x_588 = lean_alloc_ctor(1, 1, 0); +} else { + x_588 = x_587; +} +lean_ctor_set(x_588, 0, x_586); +return x_588; +} +} +else +{ +lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; +x_589 = lean_array_fget(x_521, x_522); +lean_dec(x_522); +lean_dec_ref(x_521); +x_590 = lean_array_fget(x_530, x_531); +lean_dec(x_531); +lean_dec_ref(x_530); +x_591 = lean_array_fget(x_542, x_543); +lean_dec(x_543); +lean_dec_ref(x_542); +x_592 = lean_array_fget_borrowed(x_564, x_565); +x_593 = lean_box(x_3); +x_594 = lean_box(x_4); +x_595 = lean_box(x_577); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_592); +lean_inc(x_9); +lean_inc_ref(x_2); +x_596 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_596, 0, x_591); +lean_closure_set(x_596, 1, x_589); +lean_closure_set(x_596, 2, x_2); +lean_closure_set(x_596, 3, x_9); +lean_closure_set(x_596, 4, x_593); +lean_closure_set(x_596, 5, x_594); +lean_closure_set(x_596, 6, x_592); +lean_closure_set(x_596, 7, x_5); +lean_closure_set(x_596, 8, x_6); +lean_closure_set(x_596, 9, x_595); +lean_closure_set(x_596, 10, x_533); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_597 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_590, x_575, x_596, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_597) == 0) +{ +lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; +x_598 = lean_ctor_get(x_597, 0); +lean_inc(x_598); +lean_dec_ref(x_597); +x_599 = lean_nat_add(x_565, x_533); +lean_dec(x_565); +if (lean_is_scalar(x_574)) { + x_600 = lean_alloc_ctor(0, 3, 0); +} else { + x_600 = x_574; +} +lean_ctor_set(x_600, 0, x_564); +lean_ctor_set(x_600, 1, x_599); +lean_ctor_set(x_600, 2, x_566); +x_601 = lean_array_push(x_519, x_598); +if (lean_is_scalar(x_520)) { + x_602 = lean_alloc_ctor(0, 2, 0); +} else { + x_602 = x_520; +} +lean_ctor_set(x_602, 0, x_535); +lean_ctor_set(x_602, 1, x_601); +if (lean_is_scalar(x_518)) { + x_603 = lean_alloc_ctor(0, 2, 0); +} else { + x_603 = x_518; +} +lean_ctor_set(x_603, 0, x_546); +lean_ctor_set(x_603, 1, x_602); +x_604 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_604, 0, x_557); +lean_ctor_set(x_604, 1, x_603); +lean_ctor_set(x_23, 1, x_604); +lean_ctor_set(x_23, 0, x_568); +lean_ctor_set(x_8, 0, x_600); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_605; lean_object* x_606; lean_object* x_607; +lean_dec(x_574); +lean_dec_ref(x_568); +lean_dec(x_566); +lean_dec(x_565); +lean_dec_ref(x_564); +lean_dec_ref(x_557); +lean_dec_ref(x_546); +lean_dec_ref(x_535); +lean_dec(x_520); +lean_dec(x_519); +lean_dec(x_518); +lean_free_object(x_23); +lean_free_object(x_8); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_605 = lean_ctor_get(x_597, 0); +lean_inc(x_605); +if (lean_is_exclusive(x_597)) { + lean_ctor_release(x_597, 0); + x_606 = x_597; +} else { + lean_dec_ref(x_597); + x_606 = lean_box(0); +} +if (lean_is_scalar(x_606)) { + x_607 = lean_alloc_ctor(1, 1, 0); +} else { + x_607 = x_606; +} +lean_ctor_set(x_607, 0, x_605); +return x_607; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; uint8_t x_618; +x_608 = lean_ctor_get(x_23, 0); +lean_inc(x_608); +lean_dec(x_23); +x_609 = lean_ctor_get(x_24, 0); +lean_inc(x_609); if (lean_is_exclusive(x_24)) { lean_ctor_release(x_24, 0); lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_494 = x_24; + x_610 = x_24; } else { lean_dec_ref(x_24); - x_494 = lean_box(0); + x_610 = lean_box(0); } -x_495 = lean_ctor_get(x_21, 0); -x_496 = lean_ctor_get(x_21, 1); -x_497 = lean_ctor_get(x_21, 2); -x_498 = lean_nat_add(x_485, x_464); -lean_inc_ref(x_484); -if (lean_is_scalar(x_494)) { - x_499 = lean_alloc_ctor(0, 3, 0); +x_611 = lean_ctor_get(x_25, 0); +lean_inc(x_611); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + x_612 = x_25; } else { - x_499 = x_494; + lean_dec_ref(x_25); + x_612 = lean_box(0); } -lean_ctor_set(x_499, 0, x_484); -lean_ctor_set(x_499, 1, x_498); -lean_ctor_set(x_499, 2, x_486); -x_500 = lean_nat_dec_lt(x_496, x_497); -if (x_500 == 0) +x_613 = lean_ctor_get(x_26, 1); +lean_inc(x_613); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_614 = x_26; +} else { + lean_dec_ref(x_26); + x_614 = lean_box(0); +} +x_615 = lean_ctor_get(x_27, 0); +x_616 = lean_ctor_get(x_27, 1); +x_617 = lean_ctor_get(x_27, 2); +x_618 = lean_nat_dec_lt(x_616, x_617); +if (x_618 == 0) { -lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; -lean_dec(x_485); -lean_dec_ref(x_484); -lean_dec(x_474); -lean_dec_ref(x_473); -lean_dec(x_462); -lean_dec_ref(x_461); -lean_dec(x_453); -lean_dec_ref(x_452); +lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -18129,741 +20075,558 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_451)) { - x_501 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_614)) { + x_619 = lean_alloc_ctor(0, 2, 0); } else { - x_501 = x_451; + x_619 = x_614; } -lean_ctor_set(x_501, 0, x_466); -lean_ctor_set(x_501, 1, x_450); -if (lean_is_scalar(x_449)) { - x_502 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_619, 0, x_27); +lean_ctor_set(x_619, 1, x_613); +if (lean_is_scalar(x_612)) { + x_620 = lean_alloc_ctor(0, 2, 0); } else { - x_502 = x_449; + x_620 = x_612; } -lean_ctor_set(x_502, 0, x_477); -lean_ctor_set(x_502, 1, x_501); -x_503 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_503, 0, x_488); -lean_ctor_set(x_503, 1, x_502); -lean_ctor_set(x_15, 1, x_503); -lean_ctor_set(x_15, 0, x_499); -x_504 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_504, 0, x_8); -return x_504; +lean_ctor_set(x_620, 0, x_611); +lean_ctor_set(x_620, 1, x_619); +if (lean_is_scalar(x_610)) { + x_621 = lean_alloc_ctor(0, 2, 0); +} else { + x_621 = x_610; +} +lean_ctor_set(x_621, 0, x_609); +lean_ctor_set(x_621, 1, x_620); +x_622 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_622, 0, x_608); +lean_ctor_set(x_622, 1, x_621); +lean_ctor_set(x_8, 1, x_622); +x_623 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_623, 0, x_8); +return x_623; } else { -lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; -lean_inc(x_497); -lean_inc(x_496); -lean_inc_ref(x_495); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_505 = x_21; +lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; uint8_t x_631; +lean_inc(x_617); +lean_inc(x_616); +lean_inc_ref(x_615); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + lean_ctor_release(x_27, 2); + x_624 = x_27; } else { - lean_dec_ref(x_21); - x_505 = lean_box(0); + lean_dec_ref(x_27); + x_624 = lean_box(0); } -x_506 = lean_array_fget(x_452, x_453); -lean_dec(x_453); -lean_dec_ref(x_452); -x_507 = lean_array_fget(x_461, x_462); -lean_dec(x_462); -lean_dec_ref(x_461); -x_508 = lean_array_fget(x_473, x_474); -lean_dec(x_474); -lean_dec_ref(x_473); -x_509 = lean_array_fget(x_484, x_485); -lean_dec(x_485); -lean_dec_ref(x_484); -x_510 = lean_array_fget_borrowed(x_495, x_496); -x_511 = lean_box(x_2); -x_512 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_510); -lean_inc(x_9); -lean_inc_ref(x_1); -x_513 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_513, 0, x_506); -lean_closure_set(x_513, 1, x_1); -lean_closure_set(x_513, 2, x_9); -lean_closure_set(x_513, 3, x_511); -lean_closure_set(x_513, 4, x_512); -lean_closure_set(x_513, 5, x_510); -lean_closure_set(x_513, 6, x_4); -lean_closure_set(x_513, 7, x_5); -lean_closure_set(x_513, 8, x_508); -lean_closure_set(x_513, 9, x_6); -lean_closure_set(x_513, 10, x_464); -x_514 = lean_nat_sub(x_509, x_5); -lean_dec(x_509); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_6); -x_515 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg(x_507, x_514, x_6, x_513, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_515) == 0) +x_625 = lean_ctor_get(x_611, 0); +x_626 = lean_ctor_get(x_611, 1); +x_627 = lean_ctor_get(x_611, 2); +x_628 = lean_unsigned_to_nat(1u); +x_629 = lean_nat_add(x_616, x_628); +lean_inc_ref(x_615); +if (lean_is_scalar(x_624)) { + x_630 = lean_alloc_ctor(0, 3, 0); +} else { + x_630 = x_624; +} +lean_ctor_set(x_630, 0, x_615); +lean_ctor_set(x_630, 1, x_629); +lean_ctor_set(x_630, 2, x_617); +x_631 = lean_nat_dec_lt(x_626, x_627); +if (x_631 == 0) { -lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; uint8_t x_525; -x_516 = lean_ctor_get(x_515, 0); -lean_inc(x_516); -if (lean_is_exclusive(x_515)) { - lean_ctor_release(x_515, 0); - x_517 = x_515; -} else { - lean_dec_ref(x_515); - x_517 = lean_box(0); -} -x_518 = lean_nat_add(x_496, x_464); -lean_dec(x_496); -if (lean_is_scalar(x_505)) { - x_519 = lean_alloc_ctor(0, 3, 0); -} else { - x_519 = x_505; -} -lean_ctor_set(x_519, 0, x_495); -lean_ctor_set(x_519, 1, x_518); -lean_ctor_set(x_519, 2, x_497); -x_520 = lean_array_push(x_450, x_516); -if (lean_is_scalar(x_451)) { - x_521 = lean_alloc_ctor(0, 2, 0); -} else { - x_521 = x_451; -} -lean_ctor_set(x_521, 0, x_466); -lean_ctor_set(x_521, 1, x_520); -if (lean_is_scalar(x_449)) { - x_522 = lean_alloc_ctor(0, 2, 0); -} else { - x_522 = x_449; -} -lean_ctor_set(x_522, 0, x_477); -lean_ctor_set(x_522, 1, x_521); -x_523 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_523, 0, x_488); -lean_ctor_set(x_523, 1, x_522); -lean_ctor_set(x_15, 1, x_523); -lean_ctor_set(x_15, 0, x_499); -lean_ctor_set(x_8, 0, x_519); -x_524 = lean_nat_add(x_9, x_464); -lean_dec(x_9); -x_525 = lean_nat_dec_lt(x_524, x_7); -if (x_525 == 0) -{ -lean_object* x_526; -lean_dec(x_524); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_517)) { - x_526 = lean_alloc_ctor(0, 1, 0); -} else { - x_526 = x_517; -} -lean_ctor_set(x_526, 0, x_8); -return x_526; -} -else -{ -lean_dec(x_517); -x_9 = x_524; -goto _start; -} -} -else -{ -lean_object* x_528; lean_object* x_529; lean_object* x_530; -lean_dec(x_505); -lean_dec_ref(x_499); -lean_dec(x_497); -lean_dec(x_496); -lean_dec_ref(x_495); -lean_dec_ref(x_488); -lean_dec_ref(x_477); -lean_dec_ref(x_466); -lean_dec(x_451); -lean_dec(x_450); -lean_dec(x_449); -lean_free_object(x_15); -lean_free_object(x_8); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_528 = lean_ctor_get(x_515, 0); -lean_inc(x_528); -if (lean_is_exclusive(x_515)) { - lean_ctor_release(x_515, 0); - x_529 = x_515; -} else { - lean_dec_ref(x_515); - x_529 = lean_box(0); -} -if (lean_is_scalar(x_529)) { - x_530 = lean_alloc_ctor(1, 1, 0); -} else { - x_530 = x_529; -} -lean_ctor_set(x_530, 0, x_528); -return x_530; -} -} -} -} -} -} -} -} -else -{ -lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; uint8_t x_541; -x_531 = lean_ctor_get(x_15, 0); -lean_inc(x_531); -lean_dec(x_15); -x_532 = lean_ctor_get(x_16, 0); -lean_inc(x_532); -if (lean_is_exclusive(x_16)) { - lean_ctor_release(x_16, 0); - lean_ctor_release(x_16, 1); - x_533 = x_16; -} else { - lean_dec_ref(x_16); - x_533 = lean_box(0); -} -x_534 = lean_ctor_get(x_17, 0); -lean_inc(x_534); -if (lean_is_exclusive(x_17)) { - lean_ctor_release(x_17, 0); - lean_ctor_release(x_17, 1); - x_535 = x_17; -} else { - lean_dec_ref(x_17); - x_535 = lean_box(0); -} -x_536 = lean_ctor_get(x_18, 1); -lean_inc(x_536); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_537 = x_18; -} else { - lean_dec_ref(x_18); - x_537 = lean_box(0); -} -x_538 = lean_ctor_get(x_19, 0); -x_539 = lean_ctor_get(x_19, 1); -x_540 = lean_ctor_get(x_19, 2); -x_541 = lean_nat_dec_lt(x_539, x_540); -if (x_541 == 0) -{ -lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_537)) { - x_542 = lean_alloc_ctor(0, 2, 0); -} else { - x_542 = x_537; -} -lean_ctor_set(x_542, 0, x_19); -lean_ctor_set(x_542, 1, x_536); -if (lean_is_scalar(x_535)) { - x_543 = lean_alloc_ctor(0, 2, 0); -} else { - x_543 = x_535; -} -lean_ctor_set(x_543, 0, x_534); -lean_ctor_set(x_543, 1, x_542); -if (lean_is_scalar(x_533)) { - x_544 = lean_alloc_ctor(0, 2, 0); -} else { - x_544 = x_533; -} -lean_ctor_set(x_544, 0, x_532); -lean_ctor_set(x_544, 1, x_543); -x_545 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_545, 0, x_531); -lean_ctor_set(x_545, 1, x_544); -lean_ctor_set(x_8, 1, x_545); -x_546 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_546, 0, x_8); -return x_546; -} -else -{ -lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; uint8_t x_554; -lean_inc(x_540); -lean_inc(x_539); -lean_inc_ref(x_538); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - lean_ctor_release(x_19, 2); - x_547 = x_19; -} else { - lean_dec_ref(x_19); - x_547 = lean_box(0); -} -x_548 = lean_ctor_get(x_534, 0); -x_549 = lean_ctor_get(x_534, 1); -x_550 = lean_ctor_get(x_534, 2); -x_551 = lean_unsigned_to_nat(1u); -x_552 = lean_nat_add(x_539, x_551); -lean_inc_ref(x_538); -if (lean_is_scalar(x_547)) { - x_553 = lean_alloc_ctor(0, 3, 0); -} else { - x_553 = x_547; -} -lean_ctor_set(x_553, 0, x_538); -lean_ctor_set(x_553, 1, x_552); -lean_ctor_set(x_553, 2, x_540); -x_554 = lean_nat_dec_lt(x_549, x_550); -if (x_554 == 0) -{ -lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; -lean_dec(x_539); -lean_dec_ref(x_538); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_537)) { - x_555 = lean_alloc_ctor(0, 2, 0); -} else { - x_555 = x_537; -} -lean_ctor_set(x_555, 0, x_553); -lean_ctor_set(x_555, 1, x_536); -if (lean_is_scalar(x_535)) { - x_556 = lean_alloc_ctor(0, 2, 0); -} else { - x_556 = x_535; -} -lean_ctor_set(x_556, 0, x_534); -lean_ctor_set(x_556, 1, x_555); -if (lean_is_scalar(x_533)) { - x_557 = lean_alloc_ctor(0, 2, 0); -} else { - x_557 = x_533; -} -lean_ctor_set(x_557, 0, x_532); -lean_ctor_set(x_557, 1, x_556); -x_558 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_558, 0, x_531); -lean_ctor_set(x_558, 1, x_557); -lean_ctor_set(x_8, 1, x_558); -x_559 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_559, 0, x_8); -return x_559; -} -else -{ -lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; uint8_t x_566; -lean_inc(x_550); -lean_inc(x_549); -lean_inc_ref(x_548); -if (lean_is_exclusive(x_534)) { - lean_ctor_release(x_534, 0); - lean_ctor_release(x_534, 1); - lean_ctor_release(x_534, 2); - x_560 = x_534; -} else { - lean_dec_ref(x_534); - x_560 = lean_box(0); -} -x_561 = lean_ctor_get(x_532, 0); -x_562 = lean_ctor_get(x_532, 1); -x_563 = lean_ctor_get(x_532, 2); -x_564 = lean_nat_add(x_549, x_551); -lean_inc_ref(x_548); -if (lean_is_scalar(x_560)) { - x_565 = lean_alloc_ctor(0, 3, 0); -} else { - x_565 = x_560; -} -lean_ctor_set(x_565, 0, x_548); -lean_ctor_set(x_565, 1, x_564); -lean_ctor_set(x_565, 2, x_550); -x_566 = lean_nat_dec_lt(x_562, x_563); -if (x_566 == 0) -{ -lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; -lean_dec(x_549); -lean_dec_ref(x_548); -lean_dec(x_539); -lean_dec_ref(x_538); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_537)) { - x_567 = lean_alloc_ctor(0, 2, 0); -} else { - x_567 = x_537; -} -lean_ctor_set(x_567, 0, x_553); -lean_ctor_set(x_567, 1, x_536); -if (lean_is_scalar(x_535)) { - x_568 = lean_alloc_ctor(0, 2, 0); -} else { - x_568 = x_535; -} -lean_ctor_set(x_568, 0, x_565); -lean_ctor_set(x_568, 1, x_567); -if (lean_is_scalar(x_533)) { - x_569 = lean_alloc_ctor(0, 2, 0); -} else { - x_569 = x_533; -} -lean_ctor_set(x_569, 0, x_532); -lean_ctor_set(x_569, 1, x_568); -x_570 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_570, 0, x_531); -lean_ctor_set(x_570, 1, x_569); -lean_ctor_set(x_8, 1, x_570); -x_571 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_571, 0, x_8); -return x_571; -} -else -{ -lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; uint8_t x_578; -lean_inc(x_563); -lean_inc(x_562); -lean_inc_ref(x_561); -if (lean_is_exclusive(x_532)) { - lean_ctor_release(x_532, 0); - lean_ctor_release(x_532, 1); - lean_ctor_release(x_532, 2); - x_572 = x_532; -} else { - lean_dec_ref(x_532); - x_572 = lean_box(0); -} -x_573 = lean_ctor_get(x_531, 0); -x_574 = lean_ctor_get(x_531, 1); -x_575 = lean_ctor_get(x_531, 2); -x_576 = lean_nat_add(x_562, x_551); -lean_inc_ref(x_561); -if (lean_is_scalar(x_572)) { - x_577 = lean_alloc_ctor(0, 3, 0); -} else { - x_577 = x_572; -} -lean_ctor_set(x_577, 0, x_561); -lean_ctor_set(x_577, 1, x_576); -lean_ctor_set(x_577, 2, x_563); -x_578 = lean_nat_dec_lt(x_574, x_575); -if (x_578 == 0) -{ -lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; -lean_dec(x_562); -lean_dec_ref(x_561); -lean_dec(x_549); -lean_dec_ref(x_548); -lean_dec(x_539); -lean_dec_ref(x_538); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_537)) { - x_579 = lean_alloc_ctor(0, 2, 0); -} else { - x_579 = x_537; -} -lean_ctor_set(x_579, 0, x_553); -lean_ctor_set(x_579, 1, x_536); -if (lean_is_scalar(x_535)) { - x_580 = lean_alloc_ctor(0, 2, 0); -} else { - x_580 = x_535; -} -lean_ctor_set(x_580, 0, x_565); -lean_ctor_set(x_580, 1, x_579); -if (lean_is_scalar(x_533)) { - x_581 = lean_alloc_ctor(0, 2, 0); -} else { - x_581 = x_533; -} -lean_ctor_set(x_581, 0, x_577); -lean_ctor_set(x_581, 1, x_580); -x_582 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_582, 0, x_531); -lean_ctor_set(x_582, 1, x_581); -lean_ctor_set(x_8, 1, x_582); -x_583 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_583, 0, x_8); -return x_583; -} -else -{ -lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; uint8_t x_590; -lean_inc(x_575); -lean_inc(x_574); -lean_inc_ref(x_573); -if (lean_is_exclusive(x_531)) { - lean_ctor_release(x_531, 0); - lean_ctor_release(x_531, 1); - lean_ctor_release(x_531, 2); - x_584 = x_531; -} else { - lean_dec_ref(x_531); - x_584 = lean_box(0); -} -x_585 = lean_ctor_get(x_21, 0); -x_586 = lean_ctor_get(x_21, 1); -x_587 = lean_ctor_get(x_21, 2); -x_588 = lean_nat_add(x_574, x_551); -lean_inc_ref(x_573); -if (lean_is_scalar(x_584)) { - x_589 = lean_alloc_ctor(0, 3, 0); -} else { - x_589 = x_584; -} -lean_ctor_set(x_589, 0, x_573); -lean_ctor_set(x_589, 1, x_588); -lean_ctor_set(x_589, 2, x_575); -x_590 = lean_nat_dec_lt(x_586, x_587); -if (x_590 == 0) -{ -lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; -lean_dec(x_574); -lean_dec_ref(x_573); -lean_dec(x_562); -lean_dec_ref(x_561); -lean_dec(x_549); -lean_dec_ref(x_548); -lean_dec(x_539); -lean_dec_ref(x_538); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_537)) { - x_591 = lean_alloc_ctor(0, 2, 0); -} else { - x_591 = x_537; -} -lean_ctor_set(x_591, 0, x_553); -lean_ctor_set(x_591, 1, x_536); -if (lean_is_scalar(x_535)) { - x_592 = lean_alloc_ctor(0, 2, 0); -} else { - x_592 = x_535; -} -lean_ctor_set(x_592, 0, x_565); -lean_ctor_set(x_592, 1, x_591); -if (lean_is_scalar(x_533)) { - x_593 = lean_alloc_ctor(0, 2, 0); -} else { - x_593 = x_533; -} -lean_ctor_set(x_593, 0, x_577); -lean_ctor_set(x_593, 1, x_592); -x_594 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_594, 0, x_589); -lean_ctor_set(x_594, 1, x_593); -lean_ctor_set(x_8, 1, x_594); -x_595 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_595, 0, x_8); -return x_595; -} -else -{ -lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; -lean_inc(x_587); -lean_inc(x_586); -lean_inc_ref(x_585); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_596 = x_21; -} else { - lean_dec_ref(x_21); - x_596 = lean_box(0); -} -x_597 = lean_array_fget(x_538, x_539); -lean_dec(x_539); -lean_dec_ref(x_538); -x_598 = lean_array_fget(x_548, x_549); -lean_dec(x_549); -lean_dec_ref(x_548); -x_599 = lean_array_fget(x_561, x_562); -lean_dec(x_562); -lean_dec_ref(x_561); -x_600 = lean_array_fget(x_573, x_574); -lean_dec(x_574); -lean_dec_ref(x_573); -x_601 = lean_array_fget_borrowed(x_585, x_586); -x_602 = lean_box(x_2); -x_603 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_601); -lean_inc(x_9); -lean_inc_ref(x_1); -x_604 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_604, 0, x_597); -lean_closure_set(x_604, 1, x_1); -lean_closure_set(x_604, 2, x_9); -lean_closure_set(x_604, 3, x_602); -lean_closure_set(x_604, 4, x_603); -lean_closure_set(x_604, 5, x_601); -lean_closure_set(x_604, 6, x_4); -lean_closure_set(x_604, 7, x_5); -lean_closure_set(x_604, 8, x_599); -lean_closure_set(x_604, 9, x_6); -lean_closure_set(x_604, 10, x_551); -x_605 = lean_nat_sub(x_600, x_5); -lean_dec(x_600); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_6); -x_606 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg(x_598, x_605, x_6, x_604, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_606) == 0) -{ -lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; uint8_t x_617; -x_607 = lean_ctor_get(x_606, 0); -lean_inc(x_607); -if (lean_is_exclusive(x_606)) { - lean_ctor_release(x_606, 0); - x_608 = x_606; -} else { - lean_dec_ref(x_606); - x_608 = lean_box(0); -} -x_609 = lean_nat_add(x_586, x_551); -lean_dec(x_586); -if (lean_is_scalar(x_596)) { - x_610 = lean_alloc_ctor(0, 3, 0); -} else { - x_610 = x_596; -} -lean_ctor_set(x_610, 0, x_585); -lean_ctor_set(x_610, 1, x_609); -lean_ctor_set(x_610, 2, x_587); -x_611 = lean_array_push(x_536, x_607); -if (lean_is_scalar(x_537)) { - x_612 = lean_alloc_ctor(0, 2, 0); -} else { - x_612 = x_537; -} -lean_ctor_set(x_612, 0, x_553); -lean_ctor_set(x_612, 1, x_611); -if (lean_is_scalar(x_535)) { - x_613 = lean_alloc_ctor(0, 2, 0); -} else { - x_613 = x_535; -} -lean_ctor_set(x_613, 0, x_565); -lean_ctor_set(x_613, 1, x_612); -if (lean_is_scalar(x_533)) { - x_614 = lean_alloc_ctor(0, 2, 0); -} else { - x_614 = x_533; -} -lean_ctor_set(x_614, 0, x_577); -lean_ctor_set(x_614, 1, x_613); -x_615 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_615, 0, x_589); -lean_ctor_set(x_615, 1, x_614); -lean_ctor_set(x_8, 1, x_615); -lean_ctor_set(x_8, 0, x_610); -x_616 = lean_nat_add(x_9, x_551); -lean_dec(x_9); -x_617 = lean_nat_dec_lt(x_616, x_7); -if (x_617 == 0) -{ -lean_object* x_618; +lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_dec(x_616); +lean_dec_ref(x_615); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_608)) { - x_618 = lean_alloc_ctor(0, 1, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_614)) { + x_632 = lean_alloc_ctor(0, 2, 0); } else { - x_618 = x_608; + x_632 = x_614; } -lean_ctor_set(x_618, 0, x_8); -return x_618; +lean_ctor_set(x_632, 0, x_630); +lean_ctor_set(x_632, 1, x_613); +if (lean_is_scalar(x_612)) { + x_633 = lean_alloc_ctor(0, 2, 0); +} else { + x_633 = x_612; +} +lean_ctor_set(x_633, 0, x_611); +lean_ctor_set(x_633, 1, x_632); +if (lean_is_scalar(x_610)) { + x_634 = lean_alloc_ctor(0, 2, 0); +} else { + x_634 = x_610; +} +lean_ctor_set(x_634, 0, x_609); +lean_ctor_set(x_634, 1, x_633); +x_635 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_635, 0, x_608); +lean_ctor_set(x_635, 1, x_634); +lean_ctor_set(x_8, 1, x_635); +x_636 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_636, 0, x_8); +return x_636; } else { -lean_dec(x_608); -x_9 = x_616; -goto _start; +lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; uint8_t x_643; +lean_inc(x_627); +lean_inc(x_626); +lean_inc_ref(x_625); +if (lean_is_exclusive(x_611)) { + lean_ctor_release(x_611, 0); + lean_ctor_release(x_611, 1); + lean_ctor_release(x_611, 2); + x_637 = x_611; +} else { + lean_dec_ref(x_611); + x_637 = lean_box(0); +} +x_638 = lean_ctor_get(x_609, 0); +x_639 = lean_ctor_get(x_609, 1); +x_640 = lean_ctor_get(x_609, 2); +x_641 = lean_nat_add(x_626, x_628); +lean_inc_ref(x_625); +if (lean_is_scalar(x_637)) { + x_642 = lean_alloc_ctor(0, 3, 0); +} else { + x_642 = x_637; +} +lean_ctor_set(x_642, 0, x_625); +lean_ctor_set(x_642, 1, x_641); +lean_ctor_set(x_642, 2, x_627); +x_643 = lean_nat_dec_lt(x_639, x_640); +if (x_643 == 0) +{ +lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; +lean_dec(x_626); +lean_dec_ref(x_625); +lean_dec(x_616); +lean_dec_ref(x_615); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_614)) { + x_644 = lean_alloc_ctor(0, 2, 0); +} else { + x_644 = x_614; +} +lean_ctor_set(x_644, 0, x_630); +lean_ctor_set(x_644, 1, x_613); +if (lean_is_scalar(x_612)) { + x_645 = lean_alloc_ctor(0, 2, 0); +} else { + x_645 = x_612; +} +lean_ctor_set(x_645, 0, x_642); +lean_ctor_set(x_645, 1, x_644); +if (lean_is_scalar(x_610)) { + x_646 = lean_alloc_ctor(0, 2, 0); +} else { + x_646 = x_610; +} +lean_ctor_set(x_646, 0, x_609); +lean_ctor_set(x_646, 1, x_645); +x_647 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_647, 0, x_608); +lean_ctor_set(x_647, 1, x_646); +lean_ctor_set(x_8, 1, x_647); +x_648 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_648, 0, x_8); +return x_648; +} +else +{ +lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; uint8_t x_655; +lean_inc(x_640); +lean_inc(x_639); +lean_inc_ref(x_638); +if (lean_is_exclusive(x_609)) { + lean_ctor_release(x_609, 0); + lean_ctor_release(x_609, 1); + lean_ctor_release(x_609, 2); + x_649 = x_609; +} else { + lean_dec_ref(x_609); + x_649 = lean_box(0); +} +x_650 = lean_ctor_get(x_608, 0); +x_651 = lean_ctor_get(x_608, 1); +x_652 = lean_ctor_get(x_608, 2); +x_653 = lean_nat_add(x_639, x_628); +lean_inc_ref(x_638); +if (lean_is_scalar(x_649)) { + x_654 = lean_alloc_ctor(0, 3, 0); +} else { + x_654 = x_649; +} +lean_ctor_set(x_654, 0, x_638); +lean_ctor_set(x_654, 1, x_653); +lean_ctor_set(x_654, 2, x_640); +x_655 = lean_nat_dec_lt(x_651, x_652); +if (x_655 == 0) +{ +lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; +lean_dec(x_639); +lean_dec_ref(x_638); +lean_dec(x_626); +lean_dec_ref(x_625); +lean_dec(x_616); +lean_dec_ref(x_615); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_614)) { + x_656 = lean_alloc_ctor(0, 2, 0); +} else { + x_656 = x_614; +} +lean_ctor_set(x_656, 0, x_630); +lean_ctor_set(x_656, 1, x_613); +if (lean_is_scalar(x_612)) { + x_657 = lean_alloc_ctor(0, 2, 0); +} else { + x_657 = x_612; +} +lean_ctor_set(x_657, 0, x_642); +lean_ctor_set(x_657, 1, x_656); +if (lean_is_scalar(x_610)) { + x_658 = lean_alloc_ctor(0, 2, 0); +} else { + x_658 = x_610; +} +lean_ctor_set(x_658, 0, x_654); +lean_ctor_set(x_658, 1, x_657); +x_659 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_659, 0, x_608); +lean_ctor_set(x_659, 1, x_658); +lean_ctor_set(x_8, 1, x_659); +x_660 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_660, 0, x_8); +return x_660; +} +else +{ +lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; uint8_t x_667; +lean_inc(x_652); +lean_inc(x_651); +lean_inc_ref(x_650); +if (lean_is_exclusive(x_608)) { + lean_ctor_release(x_608, 0); + lean_ctor_release(x_608, 1); + lean_ctor_release(x_608, 2); + x_661 = x_608; +} else { + lean_dec_ref(x_608); + x_661 = lean_box(0); +} +x_662 = lean_ctor_get(x_29, 0); +x_663 = lean_ctor_get(x_29, 1); +x_664 = lean_ctor_get(x_29, 2); +x_665 = lean_nat_add(x_651, x_628); +lean_inc_ref(x_650); +if (lean_is_scalar(x_661)) { + x_666 = lean_alloc_ctor(0, 3, 0); +} else { + x_666 = x_661; +} +lean_ctor_set(x_666, 0, x_650); +lean_ctor_set(x_666, 1, x_665); +lean_ctor_set(x_666, 2, x_652); +x_667 = lean_nat_dec_lt(x_663, x_664); +if (x_667 == 0) +{ +lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; +lean_dec(x_651); +lean_dec_ref(x_650); +lean_dec(x_639); +lean_dec_ref(x_638); +lean_dec(x_626); +lean_dec_ref(x_625); +lean_dec(x_616); +lean_dec_ref(x_615); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_614)) { + x_668 = lean_alloc_ctor(0, 2, 0); +} else { + x_668 = x_614; +} +lean_ctor_set(x_668, 0, x_630); +lean_ctor_set(x_668, 1, x_613); +if (lean_is_scalar(x_612)) { + x_669 = lean_alloc_ctor(0, 2, 0); +} else { + x_669 = x_612; +} +lean_ctor_set(x_669, 0, x_642); +lean_ctor_set(x_669, 1, x_668); +if (lean_is_scalar(x_610)) { + x_670 = lean_alloc_ctor(0, 2, 0); +} else { + x_670 = x_610; +} +lean_ctor_set(x_670, 0, x_654); +lean_ctor_set(x_670, 1, x_669); +x_671 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_671, 0, x_666); +lean_ctor_set(x_671, 1, x_670); +lean_ctor_set(x_8, 1, x_671); +x_672 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_672, 0, x_8); +return x_672; +} +else +{ +lean_object* x_673; lean_object* x_674; lean_object* x_675; uint8_t x_676; uint8_t x_677; +lean_inc(x_664); +lean_inc(x_663); +lean_inc_ref(x_662); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_673 = x_29; +} else { + lean_dec_ref(x_29); + x_673 = lean_box(0); +} +x_674 = lean_array_fget(x_650, x_651); +lean_dec(x_651); +lean_dec_ref(x_650); +x_675 = lean_ctor_get(x_674, 1); +x_676 = lean_ctor_get_uint8(x_674, sizeof(void*)*2); +x_677 = lean_nat_dec_eq(x_675, x_1); +if (x_677 == 0) +{ +lean_object* x_678; lean_object* x_679; +lean_dec_ref(x_674); +lean_dec(x_673); +lean_dec_ref(x_666); +lean_dec(x_664); +lean_dec(x_663); +lean_dec_ref(x_662); +lean_dec_ref(x_654); +lean_dec_ref(x_642); +lean_dec(x_639); +lean_dec_ref(x_638); +lean_dec_ref(x_630); +lean_dec(x_626); +lean_dec_ref(x_625); +lean_dec(x_616); +lean_dec_ref(x_615); +lean_dec(x_614); +lean_dec(x_613); +lean_dec(x_612); +lean_dec(x_610); +lean_free_object(x_8); +x_678 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_679 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_678, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_679) == 0) +{ +lean_object* x_680; lean_object* x_681; +x_680 = lean_ctor_get(x_679, 0); +lean_inc(x_680); +if (lean_is_exclusive(x_679)) { + lean_ctor_release(x_679, 0); + x_681 = x_679; +} else { + lean_dec_ref(x_679); + x_681 = lean_box(0); +} +if (lean_obj_tag(x_680) == 0) +{ +lean_object* x_682; lean_object* x_683; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_682 = lean_ctor_get(x_680, 0); +lean_inc(x_682); +lean_dec_ref(x_680); +if (lean_is_scalar(x_681)) { + x_683 = lean_alloc_ctor(0, 1, 0); +} else { + x_683 = x_681; +} +lean_ctor_set(x_683, 0, x_682); +return x_683; +} +else +{ +lean_object* x_684; +lean_dec(x_681); +x_684 = lean_ctor_get(x_680, 0); +lean_inc(x_684); +lean_dec_ref(x_680); +x_15 = x_684; +x_16 = lean_box(0); +goto block_22; } } else { -lean_object* x_620; lean_object* x_621; lean_object* x_622; -lean_dec(x_596); -lean_dec_ref(x_589); -lean_dec(x_587); -lean_dec(x_586); -lean_dec_ref(x_585); -lean_dec_ref(x_577); -lean_dec_ref(x_565); -lean_dec_ref(x_553); -lean_dec(x_537); -lean_dec(x_536); -lean_dec(x_535); -lean_dec(x_533); +lean_object* x_685; lean_object* x_686; lean_object* x_687; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_685 = lean_ctor_get(x_679, 0); +lean_inc(x_685); +if (lean_is_exclusive(x_679)) { + lean_ctor_release(x_679, 0); + x_686 = x_679; +} else { + lean_dec_ref(x_679); + x_686 = lean_box(0); +} +if (lean_is_scalar(x_686)) { + x_687 = lean_alloc_ctor(1, 1, 0); +} else { + x_687 = x_686; +} +lean_ctor_set(x_687, 0, x_685); +return x_687; +} +} +else +{ +lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; +x_688 = lean_array_fget(x_615, x_616); +lean_dec(x_616); +lean_dec_ref(x_615); +x_689 = lean_array_fget(x_625, x_626); +lean_dec(x_626); +lean_dec_ref(x_625); +x_690 = lean_array_fget(x_638, x_639); +lean_dec(x_639); +lean_dec_ref(x_638); +x_691 = lean_array_fget_borrowed(x_662, x_663); +x_692 = lean_box(x_3); +x_693 = lean_box(x_4); +x_694 = lean_box(x_676); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_691); +lean_inc(x_9); +lean_inc_ref(x_2); +x_695 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_695, 0, x_690); +lean_closure_set(x_695, 1, x_688); +lean_closure_set(x_695, 2, x_2); +lean_closure_set(x_695, 3, x_9); +lean_closure_set(x_695, 4, x_692); +lean_closure_set(x_695, 5, x_693); +lean_closure_set(x_695, 6, x_691); +lean_closure_set(x_695, 7, x_5); +lean_closure_set(x_695, 8, x_6); +lean_closure_set(x_695, 9, x_694); +lean_closure_set(x_695, 10, x_628); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_696 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_689, x_674, x_695, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_696) == 0) +{ +lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; +x_697 = lean_ctor_get(x_696, 0); +lean_inc(x_697); +lean_dec_ref(x_696); +x_698 = lean_nat_add(x_663, x_628); +lean_dec(x_663); +if (lean_is_scalar(x_673)) { + x_699 = lean_alloc_ctor(0, 3, 0); +} else { + x_699 = x_673; +} +lean_ctor_set(x_699, 0, x_662); +lean_ctor_set(x_699, 1, x_698); +lean_ctor_set(x_699, 2, x_664); +x_700 = lean_array_push(x_613, x_697); +if (lean_is_scalar(x_614)) { + x_701 = lean_alloc_ctor(0, 2, 0); +} else { + x_701 = x_614; +} +lean_ctor_set(x_701, 0, x_630); +lean_ctor_set(x_701, 1, x_700); +if (lean_is_scalar(x_612)) { + x_702 = lean_alloc_ctor(0, 2, 0); +} else { + x_702 = x_612; +} +lean_ctor_set(x_702, 0, x_642); +lean_ctor_set(x_702, 1, x_701); +if (lean_is_scalar(x_610)) { + x_703 = lean_alloc_ctor(0, 2, 0); +} else { + x_703 = x_610; +} +lean_ctor_set(x_703, 0, x_654); +lean_ctor_set(x_703, 1, x_702); +x_704 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_704, 0, x_666); +lean_ctor_set(x_704, 1, x_703); +lean_ctor_set(x_8, 1, x_704); +lean_ctor_set(x_8, 0, x_699); +x_15 = x_8; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_705; lean_object* x_706; lean_object* x_707; +lean_dec(x_673); +lean_dec_ref(x_666); +lean_dec(x_664); +lean_dec(x_663); +lean_dec_ref(x_662); +lean_dec_ref(x_654); +lean_dec_ref(x_642); +lean_dec_ref(x_630); +lean_dec(x_614); +lean_dec(x_613); +lean_dec(x_612); +lean_dec(x_610); lean_free_object(x_8); lean_dec(x_13); lean_dec_ref(x_12); @@ -18872,24 +20635,24 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_620 = lean_ctor_get(x_606, 0); -lean_inc(x_620); -if (lean_is_exclusive(x_606)) { - lean_ctor_release(x_606, 0); - x_621 = x_606; +lean_dec_ref(x_2); +x_705 = lean_ctor_get(x_696, 0); +lean_inc(x_705); +if (lean_is_exclusive(x_696)) { + lean_ctor_release(x_696, 0); + x_706 = x_696; } else { - lean_dec_ref(x_606); - x_621 = lean_box(0); + lean_dec_ref(x_696); + x_706 = lean_box(0); } -if (lean_is_scalar(x_621)) { - x_622 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_706)) { + x_707 = lean_alloc_ctor(1, 1, 0); } else { - x_622 = x_621; + x_707 = x_706; +} +lean_ctor_set(x_707, 0, x_705); +return x_707; } -lean_ctor_set(x_622, 0, x_620); -return x_622; } } } @@ -18900,57 +20663,57 @@ return x_622; } else { -lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; uint8_t x_635; -x_623 = lean_ctor_get(x_8, 0); -lean_inc(x_623); +lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; uint8_t x_720; +x_708 = lean_ctor_get(x_8, 0); +lean_inc(x_708); lean_dec(x_8); -x_624 = lean_ctor_get(x_15, 0); -lean_inc(x_624); -if (lean_is_exclusive(x_15)) { - lean_ctor_release(x_15, 0); - lean_ctor_release(x_15, 1); - x_625 = x_15; +x_709 = lean_ctor_get(x_23, 0); +lean_inc(x_709); +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + x_710 = x_23; } else { - lean_dec_ref(x_15); - x_625 = lean_box(0); + lean_dec_ref(x_23); + x_710 = lean_box(0); } -x_626 = lean_ctor_get(x_16, 0); -lean_inc(x_626); -if (lean_is_exclusive(x_16)) { - lean_ctor_release(x_16, 0); - lean_ctor_release(x_16, 1); - x_627 = x_16; +x_711 = lean_ctor_get(x_24, 0); +lean_inc(x_711); +if (lean_is_exclusive(x_24)) { + lean_ctor_release(x_24, 0); + lean_ctor_release(x_24, 1); + x_712 = x_24; } else { - lean_dec_ref(x_16); - x_627 = lean_box(0); + lean_dec_ref(x_24); + x_712 = lean_box(0); } -x_628 = lean_ctor_get(x_17, 0); -lean_inc(x_628); -if (lean_is_exclusive(x_17)) { - lean_ctor_release(x_17, 0); - lean_ctor_release(x_17, 1); - x_629 = x_17; +x_713 = lean_ctor_get(x_25, 0); +lean_inc(x_713); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + x_714 = x_25; } else { - lean_dec_ref(x_17); - x_629 = lean_box(0); + lean_dec_ref(x_25); + x_714 = lean_box(0); } -x_630 = lean_ctor_get(x_18, 1); -lean_inc(x_630); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_631 = x_18; +x_715 = lean_ctor_get(x_26, 1); +lean_inc(x_715); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_716 = x_26; } else { - lean_dec_ref(x_18); - x_631 = lean_box(0); + lean_dec_ref(x_26); + x_716 = lean_box(0); } -x_632 = lean_ctor_get(x_19, 0); -x_633 = lean_ctor_get(x_19, 1); -x_634 = lean_ctor_get(x_19, 2); -x_635 = lean_nat_dec_lt(x_633, x_634); -if (x_635 == 0) +x_717 = lean_ctor_get(x_27, 0); +x_718 = lean_ctor_get(x_27, 1); +x_719 = lean_ctor_get(x_27, 2); +x_720 = lean_nat_dec_lt(x_718, x_719); +if (x_720 == 0) { -lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; +lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -18958,78 +20721,77 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_631)) { - x_636 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_716)) { + x_721 = lean_alloc_ctor(0, 2, 0); } else { - x_636 = x_631; + x_721 = x_716; } -lean_ctor_set(x_636, 0, x_19); -lean_ctor_set(x_636, 1, x_630); -if (lean_is_scalar(x_629)) { - x_637 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_721, 0, x_27); +lean_ctor_set(x_721, 1, x_715); +if (lean_is_scalar(x_714)) { + x_722 = lean_alloc_ctor(0, 2, 0); } else { - x_637 = x_629; + x_722 = x_714; } -lean_ctor_set(x_637, 0, x_628); -lean_ctor_set(x_637, 1, x_636); -if (lean_is_scalar(x_627)) { - x_638 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_722, 0, x_713); +lean_ctor_set(x_722, 1, x_721); +if (lean_is_scalar(x_712)) { + x_723 = lean_alloc_ctor(0, 2, 0); } else { - x_638 = x_627; + x_723 = x_712; } -lean_ctor_set(x_638, 0, x_626); -lean_ctor_set(x_638, 1, x_637); -if (lean_is_scalar(x_625)) { - x_639 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_723, 0, x_711); +lean_ctor_set(x_723, 1, x_722); +if (lean_is_scalar(x_710)) { + x_724 = lean_alloc_ctor(0, 2, 0); } else { - x_639 = x_625; + x_724 = x_710; } -lean_ctor_set(x_639, 0, x_624); -lean_ctor_set(x_639, 1, x_638); -x_640 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_640, 0, x_623); -lean_ctor_set(x_640, 1, x_639); -x_641 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_641, 0, x_640); -return x_641; +lean_ctor_set(x_724, 0, x_709); +lean_ctor_set(x_724, 1, x_723); +x_725 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_725, 0, x_708); +lean_ctor_set(x_725, 1, x_724); +x_726 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_726, 0, x_725); +return x_726; } else { -lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; uint8_t x_649; -lean_inc(x_634); -lean_inc(x_633); -lean_inc_ref(x_632); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - lean_ctor_release(x_19, 2); - x_642 = x_19; +lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; uint8_t x_734; +lean_inc(x_719); +lean_inc(x_718); +lean_inc_ref(x_717); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + lean_ctor_release(x_27, 2); + x_727 = x_27; } else { - lean_dec_ref(x_19); - x_642 = lean_box(0); + lean_dec_ref(x_27); + x_727 = lean_box(0); } -x_643 = lean_ctor_get(x_628, 0); -x_644 = lean_ctor_get(x_628, 1); -x_645 = lean_ctor_get(x_628, 2); -x_646 = lean_unsigned_to_nat(1u); -x_647 = lean_nat_add(x_633, x_646); -lean_inc_ref(x_632); -if (lean_is_scalar(x_642)) { - x_648 = lean_alloc_ctor(0, 3, 0); +x_728 = lean_ctor_get(x_713, 0); +x_729 = lean_ctor_get(x_713, 1); +x_730 = lean_ctor_get(x_713, 2); +x_731 = lean_unsigned_to_nat(1u); +x_732 = lean_nat_add(x_718, x_731); +lean_inc_ref(x_717); +if (lean_is_scalar(x_727)) { + x_733 = lean_alloc_ctor(0, 3, 0); } else { - x_648 = x_642; + x_733 = x_727; } -lean_ctor_set(x_648, 0, x_632); -lean_ctor_set(x_648, 1, x_647); -lean_ctor_set(x_648, 2, x_634); -x_649 = lean_nat_dec_lt(x_644, x_645); -if (x_649 == 0) +lean_ctor_set(x_733, 0, x_717); +lean_ctor_set(x_733, 1, x_732); +lean_ctor_set(x_733, 2, x_719); +x_734 = lean_nat_dec_lt(x_729, x_730); +if (x_734 == 0) { -lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; -lean_dec(x_633); -lean_dec_ref(x_632); +lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; +lean_dec(x_718); +lean_dec_ref(x_717); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -19037,79 +20799,78 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_631)) { - x_650 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_716)) { + x_735 = lean_alloc_ctor(0, 2, 0); } else { - x_650 = x_631; + x_735 = x_716; } -lean_ctor_set(x_650, 0, x_648); -lean_ctor_set(x_650, 1, x_630); -if (lean_is_scalar(x_629)) { - x_651 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_735, 0, x_733); +lean_ctor_set(x_735, 1, x_715); +if (lean_is_scalar(x_714)) { + x_736 = lean_alloc_ctor(0, 2, 0); } else { - x_651 = x_629; + x_736 = x_714; } -lean_ctor_set(x_651, 0, x_628); -lean_ctor_set(x_651, 1, x_650); -if (lean_is_scalar(x_627)) { - x_652 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_736, 0, x_713); +lean_ctor_set(x_736, 1, x_735); +if (lean_is_scalar(x_712)) { + x_737 = lean_alloc_ctor(0, 2, 0); } else { - x_652 = x_627; + x_737 = x_712; } -lean_ctor_set(x_652, 0, x_626); -lean_ctor_set(x_652, 1, x_651); -if (lean_is_scalar(x_625)) { - x_653 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_737, 0, x_711); +lean_ctor_set(x_737, 1, x_736); +if (lean_is_scalar(x_710)) { + x_738 = lean_alloc_ctor(0, 2, 0); } else { - x_653 = x_625; + x_738 = x_710; } -lean_ctor_set(x_653, 0, x_624); -lean_ctor_set(x_653, 1, x_652); -x_654 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_654, 0, x_623); -lean_ctor_set(x_654, 1, x_653); -x_655 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_655, 0, x_654); -return x_655; +lean_ctor_set(x_738, 0, x_709); +lean_ctor_set(x_738, 1, x_737); +x_739 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_739, 0, x_708); +lean_ctor_set(x_739, 1, x_738); +x_740 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_740, 0, x_739); +return x_740; } else { -lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; uint8_t x_662; -lean_inc(x_645); -lean_inc(x_644); -lean_inc_ref(x_643); -if (lean_is_exclusive(x_628)) { - lean_ctor_release(x_628, 0); - lean_ctor_release(x_628, 1); - lean_ctor_release(x_628, 2); - x_656 = x_628; +lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; uint8_t x_747; +lean_inc(x_730); +lean_inc(x_729); +lean_inc_ref(x_728); +if (lean_is_exclusive(x_713)) { + lean_ctor_release(x_713, 0); + lean_ctor_release(x_713, 1); + lean_ctor_release(x_713, 2); + x_741 = x_713; } else { - lean_dec_ref(x_628); - x_656 = lean_box(0); + lean_dec_ref(x_713); + x_741 = lean_box(0); } -x_657 = lean_ctor_get(x_626, 0); -x_658 = lean_ctor_get(x_626, 1); -x_659 = lean_ctor_get(x_626, 2); -x_660 = lean_nat_add(x_644, x_646); -lean_inc_ref(x_643); -if (lean_is_scalar(x_656)) { - x_661 = lean_alloc_ctor(0, 3, 0); +x_742 = lean_ctor_get(x_711, 0); +x_743 = lean_ctor_get(x_711, 1); +x_744 = lean_ctor_get(x_711, 2); +x_745 = lean_nat_add(x_729, x_731); +lean_inc_ref(x_728); +if (lean_is_scalar(x_741)) { + x_746 = lean_alloc_ctor(0, 3, 0); } else { - x_661 = x_656; + x_746 = x_741; } -lean_ctor_set(x_661, 0, x_643); -lean_ctor_set(x_661, 1, x_660); -lean_ctor_set(x_661, 2, x_645); -x_662 = lean_nat_dec_lt(x_658, x_659); -if (x_662 == 0) +lean_ctor_set(x_746, 0, x_728); +lean_ctor_set(x_746, 1, x_745); +lean_ctor_set(x_746, 2, x_730); +x_747 = lean_nat_dec_lt(x_743, x_744); +if (x_747 == 0) { -lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; -lean_dec(x_644); -lean_dec_ref(x_643); -lean_dec(x_633); -lean_dec_ref(x_632); +lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; +lean_dec(x_729); +lean_dec_ref(x_728); +lean_dec(x_718); +lean_dec_ref(x_717); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -19117,81 +20878,80 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_631)) { - x_663 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_716)) { + x_748 = lean_alloc_ctor(0, 2, 0); } else { - x_663 = x_631; + x_748 = x_716; } -lean_ctor_set(x_663, 0, x_648); -lean_ctor_set(x_663, 1, x_630); -if (lean_is_scalar(x_629)) { - x_664 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_748, 0, x_733); +lean_ctor_set(x_748, 1, x_715); +if (lean_is_scalar(x_714)) { + x_749 = lean_alloc_ctor(0, 2, 0); } else { - x_664 = x_629; + x_749 = x_714; } -lean_ctor_set(x_664, 0, x_661); -lean_ctor_set(x_664, 1, x_663); -if (lean_is_scalar(x_627)) { - x_665 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_749, 0, x_746); +lean_ctor_set(x_749, 1, x_748); +if (lean_is_scalar(x_712)) { + x_750 = lean_alloc_ctor(0, 2, 0); } else { - x_665 = x_627; + x_750 = x_712; } -lean_ctor_set(x_665, 0, x_626); -lean_ctor_set(x_665, 1, x_664); -if (lean_is_scalar(x_625)) { - x_666 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_750, 0, x_711); +lean_ctor_set(x_750, 1, x_749); +if (lean_is_scalar(x_710)) { + x_751 = lean_alloc_ctor(0, 2, 0); } else { - x_666 = x_625; + x_751 = x_710; } -lean_ctor_set(x_666, 0, x_624); -lean_ctor_set(x_666, 1, x_665); -x_667 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_667, 0, x_623); -lean_ctor_set(x_667, 1, x_666); -x_668 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_668, 0, x_667); -return x_668; +lean_ctor_set(x_751, 0, x_709); +lean_ctor_set(x_751, 1, x_750); +x_752 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_752, 0, x_708); +lean_ctor_set(x_752, 1, x_751); +x_753 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_753, 0, x_752); +return x_753; } else { -lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; uint8_t x_675; -lean_inc(x_659); -lean_inc(x_658); -lean_inc_ref(x_657); -if (lean_is_exclusive(x_626)) { - lean_ctor_release(x_626, 0); - lean_ctor_release(x_626, 1); - lean_ctor_release(x_626, 2); - x_669 = x_626; +lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; uint8_t x_760; +lean_inc(x_744); +lean_inc(x_743); +lean_inc_ref(x_742); +if (lean_is_exclusive(x_711)) { + lean_ctor_release(x_711, 0); + lean_ctor_release(x_711, 1); + lean_ctor_release(x_711, 2); + x_754 = x_711; } else { - lean_dec_ref(x_626); - x_669 = lean_box(0); + lean_dec_ref(x_711); + x_754 = lean_box(0); } -x_670 = lean_ctor_get(x_624, 0); -x_671 = lean_ctor_get(x_624, 1); -x_672 = lean_ctor_get(x_624, 2); -x_673 = lean_nat_add(x_658, x_646); -lean_inc_ref(x_657); -if (lean_is_scalar(x_669)) { - x_674 = lean_alloc_ctor(0, 3, 0); +x_755 = lean_ctor_get(x_709, 0); +x_756 = lean_ctor_get(x_709, 1); +x_757 = lean_ctor_get(x_709, 2); +x_758 = lean_nat_add(x_743, x_731); +lean_inc_ref(x_742); +if (lean_is_scalar(x_754)) { + x_759 = lean_alloc_ctor(0, 3, 0); } else { - x_674 = x_669; + x_759 = x_754; } -lean_ctor_set(x_674, 0, x_657); -lean_ctor_set(x_674, 1, x_673); -lean_ctor_set(x_674, 2, x_659); -x_675 = lean_nat_dec_lt(x_671, x_672); -if (x_675 == 0) +lean_ctor_set(x_759, 0, x_742); +lean_ctor_set(x_759, 1, x_758); +lean_ctor_set(x_759, 2, x_744); +x_760 = lean_nat_dec_lt(x_756, x_757); +if (x_760 == 0) { -lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; -lean_dec(x_658); -lean_dec_ref(x_657); -lean_dec(x_644); -lean_dec_ref(x_643); -lean_dec(x_633); -lean_dec_ref(x_632); +lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; +lean_dec(x_743); +lean_dec_ref(x_742); +lean_dec(x_729); +lean_dec_ref(x_728); +lean_dec(x_718); +lean_dec_ref(x_717); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -19199,83 +20959,82 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_631)) { - x_676 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_716)) { + x_761 = lean_alloc_ctor(0, 2, 0); } else { - x_676 = x_631; + x_761 = x_716; } -lean_ctor_set(x_676, 0, x_648); -lean_ctor_set(x_676, 1, x_630); -if (lean_is_scalar(x_629)) { - x_677 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_761, 0, x_733); +lean_ctor_set(x_761, 1, x_715); +if (lean_is_scalar(x_714)) { + x_762 = lean_alloc_ctor(0, 2, 0); } else { - x_677 = x_629; + x_762 = x_714; } -lean_ctor_set(x_677, 0, x_661); -lean_ctor_set(x_677, 1, x_676); -if (lean_is_scalar(x_627)) { - x_678 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_762, 0, x_746); +lean_ctor_set(x_762, 1, x_761); +if (lean_is_scalar(x_712)) { + x_763 = lean_alloc_ctor(0, 2, 0); } else { - x_678 = x_627; + x_763 = x_712; } -lean_ctor_set(x_678, 0, x_674); -lean_ctor_set(x_678, 1, x_677); -if (lean_is_scalar(x_625)) { - x_679 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_763, 0, x_759); +lean_ctor_set(x_763, 1, x_762); +if (lean_is_scalar(x_710)) { + x_764 = lean_alloc_ctor(0, 2, 0); } else { - x_679 = x_625; + x_764 = x_710; } -lean_ctor_set(x_679, 0, x_624); -lean_ctor_set(x_679, 1, x_678); -x_680 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_680, 0, x_623); -lean_ctor_set(x_680, 1, x_679); -x_681 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_681, 0, x_680); -return x_681; +lean_ctor_set(x_764, 0, x_709); +lean_ctor_set(x_764, 1, x_763); +x_765 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_765, 0, x_708); +lean_ctor_set(x_765, 1, x_764); +x_766 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_766, 0, x_765); +return x_766; } else { -lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; uint8_t x_688; -lean_inc(x_672); -lean_inc(x_671); -lean_inc_ref(x_670); -if (lean_is_exclusive(x_624)) { - lean_ctor_release(x_624, 0); - lean_ctor_release(x_624, 1); - lean_ctor_release(x_624, 2); - x_682 = x_624; +lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; uint8_t x_773; +lean_inc(x_757); +lean_inc(x_756); +lean_inc_ref(x_755); +if (lean_is_exclusive(x_709)) { + lean_ctor_release(x_709, 0); + lean_ctor_release(x_709, 1); + lean_ctor_release(x_709, 2); + x_767 = x_709; } else { - lean_dec_ref(x_624); - x_682 = lean_box(0); + lean_dec_ref(x_709); + x_767 = lean_box(0); } -x_683 = lean_ctor_get(x_623, 0); -x_684 = lean_ctor_get(x_623, 1); -x_685 = lean_ctor_get(x_623, 2); -x_686 = lean_nat_add(x_671, x_646); -lean_inc_ref(x_670); -if (lean_is_scalar(x_682)) { - x_687 = lean_alloc_ctor(0, 3, 0); +x_768 = lean_ctor_get(x_708, 0); +x_769 = lean_ctor_get(x_708, 1); +x_770 = lean_ctor_get(x_708, 2); +x_771 = lean_nat_add(x_756, x_731); +lean_inc_ref(x_755); +if (lean_is_scalar(x_767)) { + x_772 = lean_alloc_ctor(0, 3, 0); } else { - x_687 = x_682; + x_772 = x_767; } -lean_ctor_set(x_687, 0, x_670); -lean_ctor_set(x_687, 1, x_686); -lean_ctor_set(x_687, 2, x_672); -x_688 = lean_nat_dec_lt(x_684, x_685); -if (x_688 == 0) +lean_ctor_set(x_772, 0, x_755); +lean_ctor_set(x_772, 1, x_771); +lean_ctor_set(x_772, 2, x_757); +x_773 = lean_nat_dec_lt(x_769, x_770); +if (x_773 == 0) { -lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; -lean_dec(x_671); -lean_dec_ref(x_670); -lean_dec(x_658); -lean_dec_ref(x_657); -lean_dec(x_644); -lean_dec_ref(x_643); -lean_dec(x_633); -lean_dec_ref(x_632); +lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; +lean_dec(x_756); +lean_dec_ref(x_755); +lean_dec(x_743); +lean_dec_ref(x_742); +lean_dec(x_729); +lean_dec_ref(x_728); +lean_dec(x_718); +lean_dec_ref(x_717); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -19283,243 +21042,5431 @@ lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_631)) { - x_689 = lean_alloc_ctor(0, 2, 0); +lean_dec_ref(x_2); +if (lean_is_scalar(x_716)) { + x_774 = lean_alloc_ctor(0, 2, 0); } else { - x_689 = x_631; + x_774 = x_716; } -lean_ctor_set(x_689, 0, x_648); -lean_ctor_set(x_689, 1, x_630); -if (lean_is_scalar(x_629)) { - x_690 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_774, 0, x_733); +lean_ctor_set(x_774, 1, x_715); +if (lean_is_scalar(x_714)) { + x_775 = lean_alloc_ctor(0, 2, 0); } else { - x_690 = x_629; + x_775 = x_714; } -lean_ctor_set(x_690, 0, x_661); -lean_ctor_set(x_690, 1, x_689); -if (lean_is_scalar(x_627)) { - x_691 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_775, 0, x_746); +lean_ctor_set(x_775, 1, x_774); +if (lean_is_scalar(x_712)) { + x_776 = lean_alloc_ctor(0, 2, 0); } else { - x_691 = x_627; + x_776 = x_712; } -lean_ctor_set(x_691, 0, x_674); -lean_ctor_set(x_691, 1, x_690); -if (lean_is_scalar(x_625)) { - x_692 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_776, 0, x_759); +lean_ctor_set(x_776, 1, x_775); +if (lean_is_scalar(x_710)) { + x_777 = lean_alloc_ctor(0, 2, 0); } else { - x_692 = x_625; + x_777 = x_710; } -lean_ctor_set(x_692, 0, x_687); -lean_ctor_set(x_692, 1, x_691); -x_693 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_693, 0, x_623); -lean_ctor_set(x_693, 1, x_692); -x_694 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_694, 0, x_693); -return x_694; +lean_ctor_set(x_777, 0, x_772); +lean_ctor_set(x_777, 1, x_776); +x_778 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_778, 0, x_708); +lean_ctor_set(x_778, 1, x_777); +x_779 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_779, 0, x_778); +return x_779; } else { -lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; -lean_inc(x_685); -lean_inc(x_684); -lean_inc_ref(x_683); -if (lean_is_exclusive(x_623)) { - lean_ctor_release(x_623, 0); - lean_ctor_release(x_623, 1); - lean_ctor_release(x_623, 2); - x_695 = x_623; +lean_object* x_780; lean_object* x_781; lean_object* x_782; uint8_t x_783; uint8_t x_784; +lean_inc(x_770); +lean_inc(x_769); +lean_inc_ref(x_768); +if (lean_is_exclusive(x_708)) { + lean_ctor_release(x_708, 0); + lean_ctor_release(x_708, 1); + lean_ctor_release(x_708, 2); + x_780 = x_708; } else { - lean_dec_ref(x_623); - x_695 = lean_box(0); + lean_dec_ref(x_708); + x_780 = lean_box(0); } -x_696 = lean_array_fget(x_632, x_633); -lean_dec(x_633); -lean_dec_ref(x_632); -x_697 = lean_array_fget(x_643, x_644); -lean_dec(x_644); -lean_dec_ref(x_643); -x_698 = lean_array_fget(x_657, x_658); -lean_dec(x_658); -lean_dec_ref(x_657); -x_699 = lean_array_fget(x_670, x_671); -lean_dec(x_671); -lean_dec_ref(x_670); -x_700 = lean_array_fget_borrowed(x_683, x_684); -x_701 = lean_box(x_2); -x_702 = lean_box(x_3); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc_ref(x_700); -lean_inc(x_9); -lean_inc_ref(x_1); -x_703 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg___lam__3___boxed), 18, 11); -lean_closure_set(x_703, 0, x_696); -lean_closure_set(x_703, 1, x_1); -lean_closure_set(x_703, 2, x_9); -lean_closure_set(x_703, 3, x_701); -lean_closure_set(x_703, 4, x_702); -lean_closure_set(x_703, 5, x_700); -lean_closure_set(x_703, 6, x_4); -lean_closure_set(x_703, 7, x_5); -lean_closure_set(x_703, 8, x_698); -lean_closure_set(x_703, 9, x_6); -lean_closure_set(x_703, 10, x_646); -x_704 = lean_nat_sub(x_699, x_5); -lean_dec(x_699); +x_781 = lean_array_fget(x_755, x_756); +lean_dec(x_756); +lean_dec_ref(x_755); +x_782 = lean_ctor_get(x_781, 1); +x_783 = lean_ctor_get_uint8(x_781, sizeof(void*)*2); +x_784 = lean_nat_dec_eq(x_782, x_1); +if (x_784 == 0) +{ +lean_object* x_785; lean_object* x_786; +lean_dec_ref(x_781); +lean_dec(x_780); +lean_dec_ref(x_772); +lean_dec(x_770); +lean_dec(x_769); +lean_dec_ref(x_768); +lean_dec_ref(x_759); +lean_dec_ref(x_746); +lean_dec(x_743); +lean_dec_ref(x_742); +lean_dec_ref(x_733); +lean_dec(x_729); +lean_dec_ref(x_728); +lean_dec(x_718); +lean_dec_ref(x_717); +lean_dec(x_716); +lean_dec(x_715); +lean_dec(x_714); +lean_dec(x_712); +lean_dec(x_710); +x_785 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -lean_inc(x_6); -x_705 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36___redArg(x_697, x_704, x_6, x_703, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_705) == 0) +x_786 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_785, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_786) == 0) { -lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; uint8_t x_717; -x_706 = lean_ctor_get(x_705, 0); -lean_inc(x_706); -if (lean_is_exclusive(x_705)) { - lean_ctor_release(x_705, 0); - x_707 = x_705; +lean_object* x_787; lean_object* x_788; +x_787 = lean_ctor_get(x_786, 0); +lean_inc(x_787); +if (lean_is_exclusive(x_786)) { + lean_ctor_release(x_786, 0); + x_788 = x_786; } else { - lean_dec_ref(x_705); - x_707 = lean_box(0); + lean_dec_ref(x_786); + x_788 = lean_box(0); } -x_708 = lean_nat_add(x_684, x_646); -lean_dec(x_684); -if (lean_is_scalar(x_695)) { - x_709 = lean_alloc_ctor(0, 3, 0); -} else { - x_709 = x_695; -} -lean_ctor_set(x_709, 0, x_683); -lean_ctor_set(x_709, 1, x_708); -lean_ctor_set(x_709, 2, x_685); -x_710 = lean_array_push(x_630, x_706); -if (lean_is_scalar(x_631)) { - x_711 = lean_alloc_ctor(0, 2, 0); -} else { - x_711 = x_631; -} -lean_ctor_set(x_711, 0, x_648); -lean_ctor_set(x_711, 1, x_710); -if (lean_is_scalar(x_629)) { - x_712 = lean_alloc_ctor(0, 2, 0); -} else { - x_712 = x_629; -} -lean_ctor_set(x_712, 0, x_661); -lean_ctor_set(x_712, 1, x_711); -if (lean_is_scalar(x_627)) { - x_713 = lean_alloc_ctor(0, 2, 0); -} else { - x_713 = x_627; -} -lean_ctor_set(x_713, 0, x_674); -lean_ctor_set(x_713, 1, x_712); -if (lean_is_scalar(x_625)) { - x_714 = lean_alloc_ctor(0, 2, 0); -} else { - x_714 = x_625; -} -lean_ctor_set(x_714, 0, x_687); -lean_ctor_set(x_714, 1, x_713); -x_715 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_715, 0, x_709); -lean_ctor_set(x_715, 1, x_714); -x_716 = lean_nat_add(x_9, x_646); +if (lean_obj_tag(x_787) == 0) +{ +lean_object* x_789; lean_object* x_790; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); lean_dec(x_9); -x_717 = lean_nat_dec_lt(x_716, x_7); -if (x_717 == 0) +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_789 = lean_ctor_get(x_787, 0); +lean_inc(x_789); +lean_dec_ref(x_787); +if (lean_is_scalar(x_788)) { + x_790 = lean_alloc_ctor(0, 1, 0); +} else { + x_790 = x_788; +} +lean_ctor_set(x_790, 0, x_789); +return x_790; +} +else { -lean_object* x_718; +lean_object* x_791; +lean_dec(x_788); +x_791 = lean_ctor_get(x_787, 0); +lean_inc(x_791); +lean_dec_ref(x_787); +x_15 = x_791; +x_16 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_792; lean_object* x_793; lean_object* x_794; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_792 = lean_ctor_get(x_786, 0); +lean_inc(x_792); +if (lean_is_exclusive(x_786)) { + lean_ctor_release(x_786, 0); + x_793 = x_786; +} else { + lean_dec_ref(x_786); + x_793 = lean_box(0); +} +if (lean_is_scalar(x_793)) { + x_794 = lean_alloc_ctor(1, 1, 0); +} else { + x_794 = x_793; +} +lean_ctor_set(x_794, 0, x_792); +return x_794; +} +} +else +{ +lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; +x_795 = lean_array_fget(x_717, x_718); +lean_dec(x_718); +lean_dec_ref(x_717); +x_796 = lean_array_fget(x_728, x_729); +lean_dec(x_729); +lean_dec_ref(x_728); +x_797 = lean_array_fget(x_742, x_743); +lean_dec(x_743); +lean_dec_ref(x_742); +x_798 = lean_array_fget_borrowed(x_768, x_769); +x_799 = lean_box(x_3); +x_800 = lean_box(x_4); +x_801 = lean_box(x_783); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_798); +lean_inc(x_9); +lean_inc_ref(x_2); +x_802 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_802, 0, x_797); +lean_closure_set(x_802, 1, x_795); +lean_closure_set(x_802, 2, x_2); +lean_closure_set(x_802, 3, x_9); +lean_closure_set(x_802, 4, x_799); +lean_closure_set(x_802, 5, x_800); +lean_closure_set(x_802, 6, x_798); +lean_closure_set(x_802, 7, x_5); +lean_closure_set(x_802, 8, x_6); +lean_closure_set(x_802, 9, x_801); +lean_closure_set(x_802, 10, x_731); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_803 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_796, x_781, x_802, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_803) == 0) +{ +lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; +x_804 = lean_ctor_get(x_803, 0); +lean_inc(x_804); +lean_dec_ref(x_803); +x_805 = lean_nat_add(x_769, x_731); +lean_dec(x_769); +if (lean_is_scalar(x_780)) { + x_806 = lean_alloc_ctor(0, 3, 0); +} else { + x_806 = x_780; +} +lean_ctor_set(x_806, 0, x_768); +lean_ctor_set(x_806, 1, x_805); +lean_ctor_set(x_806, 2, x_770); +x_807 = lean_array_push(x_715, x_804); +if (lean_is_scalar(x_716)) { + x_808 = lean_alloc_ctor(0, 2, 0); +} else { + x_808 = x_716; +} +lean_ctor_set(x_808, 0, x_733); +lean_ctor_set(x_808, 1, x_807); +if (lean_is_scalar(x_714)) { + x_809 = lean_alloc_ctor(0, 2, 0); +} else { + x_809 = x_714; +} +lean_ctor_set(x_809, 0, x_746); +lean_ctor_set(x_809, 1, x_808); +if (lean_is_scalar(x_712)) { + x_810 = lean_alloc_ctor(0, 2, 0); +} else { + x_810 = x_712; +} +lean_ctor_set(x_810, 0, x_759); +lean_ctor_set(x_810, 1, x_809); +if (lean_is_scalar(x_710)) { + x_811 = lean_alloc_ctor(0, 2, 0); +} else { + x_811 = x_710; +} +lean_ctor_set(x_811, 0, x_772); +lean_ctor_set(x_811, 1, x_810); +x_812 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_812, 0, x_806); +lean_ctor_set(x_812, 1, x_811); +x_15 = x_812; +x_16 = lean_box(0); +goto block_22; +} +else +{ +lean_object* x_813; lean_object* x_814; lean_object* x_815; +lean_dec(x_780); +lean_dec_ref(x_772); +lean_dec(x_770); +lean_dec(x_769); +lean_dec_ref(x_768); +lean_dec_ref(x_759); +lean_dec_ref(x_746); +lean_dec_ref(x_733); lean_dec(x_716); +lean_dec(x_715); +lean_dec(x_714); +lean_dec(x_712); +lean_dec(x_710); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_813 = lean_ctor_get(x_803, 0); +lean_inc(x_813); +if (lean_is_exclusive(x_803)) { + lean_ctor_release(x_803, 0); + x_814 = x_803; +} else { + lean_dec_ref(x_803); + x_814 = lean_box(0); +} +if (lean_is_scalar(x_814)) { + x_815 = lean_alloc_ctor(1, 1, 0); +} else { + x_815 = x_814; +} +lean_ctor_set(x_815, 0, x_813); +return x_815; +} +} +} +} +} +} +} +} +block_22: +{ +lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_17 = lean_unsigned_to_nat(1u); +x_18 = lean_nat_add(x_9, x_17); +lean_dec(x_9); +x_19 = lean_nat_dec_lt(x_18, x_7); +if (x_19 == 0) +{ +lean_object* x_20; +lean_dec(x_18); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -if (lean_is_scalar(x_707)) { - x_718 = lean_alloc_ctor(0, 1, 0); -} else { - x_718 = x_707; -} -lean_ctor_set(x_718, 0, x_715); -return x_718; +lean_dec_ref(x_2); +x_20 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_20, 0, x_15); +return x_20; } else { -lean_dec(x_707); -x_8 = x_715; -x_9 = x_716; +x_8 = x_15; +x_9 = x_18; goto _start; } } -else -{ -lean_object* x_720; lean_object* x_721; lean_object* x_722; -lean_dec(x_695); -lean_dec_ref(x_687); -lean_dec(x_685); -lean_dec(x_684); -lean_dec_ref(x_683); -lean_dec_ref(x_674); -lean_dec_ref(x_661); -lean_dec_ref(x_648); -lean_dec(x_631); -lean_dec(x_630); -lean_dec(x_629); -lean_dec(x_627); -lean_dec(x_625); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec_ref(x_1); -x_720 = lean_ctor_get(x_705, 0); -lean_inc(x_720); -if (lean_is_exclusive(x_705)) { - lean_ctor_release(x_705, 0); - x_721 = x_705; -} else { - lean_dec_ref(x_705); - x_721 = lean_box(0); -} -if (lean_is_scalar(x_721)) { - x_722 = lean_alloc_ctor(1, 1, 0); -} else { - x_722 = x_721; -} -lean_ctor_set(x_722, 0, x_720); -return x_722; } } -} -} -} -} -} -} -} -LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { _start: { lean_object* x_21; -x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_12, x_13, x_16, x_17, x_18, x_19); +x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_12, x_13, x_16, x_17, x_18, x_19); return x_21; } } -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_16; lean_object* x_17; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_24 = lean_ctor_get(x_9, 1); +lean_inc(x_24); +x_25 = lean_ctor_get(x_24, 1); +lean_inc(x_25); +x_26 = lean_ctor_get(x_25, 1); +lean_inc(x_26); +x_27 = lean_ctor_get(x_26, 1); +lean_inc(x_27); +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +x_29 = !lean_is_exclusive(x_9); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; uint8_t x_32; +x_30 = lean_ctor_get(x_9, 0); +x_31 = lean_ctor_get(x_9, 1); +lean_dec(x_31); +x_32 = !lean_is_exclusive(x_24); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; uint8_t x_35; +x_33 = lean_ctor_get(x_24, 0); +x_34 = lean_ctor_get(x_24, 1); +lean_dec(x_34); +x_35 = !lean_is_exclusive(x_25); +if (x_35 == 0) +{ +lean_object* x_36; lean_object* x_37; uint8_t x_38; +x_36 = lean_ctor_get(x_25, 0); +x_37 = lean_ctor_get(x_25, 1); +lean_dec(x_37); +x_38 = !lean_is_exclusive(x_26); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; uint8_t x_41; +x_39 = lean_ctor_get(x_26, 0); +x_40 = lean_ctor_get(x_26, 1); +lean_dec(x_40); +x_41 = !lean_is_exclusive(x_27); +if (x_41 == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; +x_42 = lean_ctor_get(x_27, 1); +x_43 = lean_ctor_get(x_27, 0); +lean_dec(x_43); +x_44 = lean_ctor_get(x_28, 0); +x_45 = lean_ctor_get(x_28, 1); +x_46 = lean_ctor_get(x_28, 2); +x_47 = lean_nat_dec_lt(x_45, x_46); +if (x_47 == 0) +{ +lean_object* x_48; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_48 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_48, 0, x_9); +return x_48; +} +else +{ +uint8_t x_49; +lean_inc(x_46); +lean_inc(x_45); +lean_inc_ref(x_44); +x_49 = !lean_is_exclusive(x_28); +if (x_49 == 0) +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; uint8_t x_58; +x_50 = lean_ctor_get(x_28, 2); +lean_dec(x_50); +x_51 = lean_ctor_get(x_28, 1); +lean_dec(x_51); +x_52 = lean_ctor_get(x_28, 0); +lean_dec(x_52); +x_53 = lean_ctor_get(x_39, 0); +x_54 = lean_ctor_get(x_39, 1); +x_55 = lean_ctor_get(x_39, 2); +x_56 = lean_unsigned_to_nat(1u); +x_57 = lean_nat_add(x_45, x_56); +lean_inc_ref(x_44); +lean_ctor_set(x_28, 1, x_57); +x_58 = lean_nat_dec_lt(x_54, x_55); +if (x_58 == 0) +{ +lean_object* x_59; +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_59 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_59, 0, x_9); +return x_59; +} +else +{ +uint8_t x_60; +lean_inc(x_55); +lean_inc(x_54); +lean_inc_ref(x_53); +x_60 = !lean_is_exclusive(x_39); +if (x_60 == 0) +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; +x_61 = lean_ctor_get(x_39, 2); +lean_dec(x_61); +x_62 = lean_ctor_get(x_39, 1); +lean_dec(x_62); +x_63 = lean_ctor_get(x_39, 0); +lean_dec(x_63); +x_64 = lean_ctor_get(x_36, 0); +x_65 = lean_ctor_get(x_36, 1); +x_66 = lean_ctor_get(x_36, 2); +x_67 = lean_nat_add(x_54, x_56); +lean_inc_ref(x_53); +lean_ctor_set(x_39, 1, x_67); +x_68 = lean_nat_dec_lt(x_65, x_66); +if (x_68 == 0) +{ +lean_object* x_69; +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_69 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_69, 0, x_9); +return x_69; +} +else +{ +uint8_t x_70; +lean_inc(x_66); +lean_inc(x_65); +lean_inc_ref(x_64); +x_70 = !lean_is_exclusive(x_36); +if (x_70 == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t x_78; +x_71 = lean_ctor_get(x_36, 2); +lean_dec(x_71); +x_72 = lean_ctor_get(x_36, 1); +lean_dec(x_72); +x_73 = lean_ctor_get(x_36, 0); +lean_dec(x_73); +x_74 = lean_ctor_get(x_33, 0); +x_75 = lean_ctor_get(x_33, 1); +x_76 = lean_ctor_get(x_33, 2); +x_77 = lean_nat_add(x_65, x_56); +lean_inc_ref(x_64); +lean_ctor_set(x_36, 1, x_77); +x_78 = lean_nat_dec_lt(x_75, x_76); +if (x_78 == 0) +{ +lean_object* x_79; +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_79 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_79, 0, x_9); +return x_79; +} +else +{ +uint8_t x_80; +lean_inc(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +x_80 = !lean_is_exclusive(x_33); +if (x_80 == 0) +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; uint8_t x_88; +x_81 = lean_ctor_get(x_33, 2); +lean_dec(x_81); +x_82 = lean_ctor_get(x_33, 1); +lean_dec(x_82); +x_83 = lean_ctor_get(x_33, 0); +lean_dec(x_83); +x_84 = lean_ctor_get(x_30, 0); +x_85 = lean_ctor_get(x_30, 1); +x_86 = lean_ctor_get(x_30, 2); +x_87 = lean_nat_add(x_75, x_56); +lean_inc_ref(x_74); +lean_ctor_set(x_33, 1, x_87); +x_88 = lean_nat_dec_lt(x_85, x_86); +if (x_88 == 0) +{ +lean_object* x_89; +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_89 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_89, 0, x_9); +return x_89; +} +else +{ +uint8_t x_90; +lean_inc(x_86); +lean_inc(x_85); +lean_inc_ref(x_84); +x_90 = !lean_is_exclusive(x_30); +if (x_90 == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; uint8_t x_96; uint8_t x_97; +x_91 = lean_ctor_get(x_30, 2); +lean_dec(x_91); +x_92 = lean_ctor_get(x_30, 1); +lean_dec(x_92); +x_93 = lean_ctor_get(x_30, 0); +lean_dec(x_93); +x_94 = lean_array_fget(x_74, x_75); +lean_dec(x_75); +lean_dec_ref(x_74); +x_95 = lean_ctor_get(x_94, 1); +x_96 = lean_ctor_get_uint8(x_94, sizeof(void*)*2); +x_97 = lean_nat_dec_eq(x_95, x_1); +if (x_97 == 0) +{ +lean_object* x_98; lean_object* x_99; +lean_dec_ref(x_94); +lean_free_object(x_30); +lean_dec_ref(x_33); +lean_dec(x_86); +lean_dec(x_85); +lean_dec_ref(x_84); +lean_dec_ref(x_36); +lean_dec_ref(x_39); +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_28); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_98 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_99 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_98, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_99) == 0) +{ +uint8_t x_100; +x_100 = !lean_is_exclusive(x_99); +if (x_100 == 0) +{ +lean_object* x_101; +x_101 = lean_ctor_get(x_99, 0); +if (lean_obj_tag(x_101) == 0) +{ +lean_object* x_102; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_102 = lean_ctor_get(x_101, 0); +lean_inc(x_102); +lean_dec_ref(x_101); +lean_ctor_set(x_99, 0, x_102); +return x_99; +} +else +{ +lean_object* x_103; +lean_free_object(x_99); +x_103 = lean_ctor_get(x_101, 0); +lean_inc(x_103); +lean_dec_ref(x_101); +x_16 = x_103; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_104; +x_104 = lean_ctor_get(x_99, 0); +lean_inc(x_104); +lean_dec(x_99); +if (lean_obj_tag(x_104) == 0) +{ +lean_object* x_105; lean_object* x_106; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_105 = lean_ctor_get(x_104, 0); +lean_inc(x_105); +lean_dec_ref(x_104); +x_106 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_106, 0, x_105); +return x_106; +} +else +{ +lean_object* x_107; +x_107 = lean_ctor_get(x_104, 0); +lean_inc(x_107); +lean_dec_ref(x_104); +x_16 = x_107; +x_17 = lean_box(0); +goto block_23; +} +} +} +else +{ +uint8_t x_108; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_108 = !lean_is_exclusive(x_99); +if (x_108 == 0) +{ +return x_99; +} +else +{ +lean_object* x_109; lean_object* x_110; +x_109 = lean_ctor_get(x_99, 0); +lean_inc(x_109); +lean_dec(x_99); +x_110 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_110, 0, x_109); +return x_110; +} +} +} +else +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_111 = lean_array_fget(x_44, x_45); +lean_dec(x_45); +lean_dec_ref(x_44); +x_112 = lean_array_fget(x_53, x_54); +lean_dec(x_54); +lean_dec_ref(x_53); +x_113 = lean_array_fget(x_64, x_65); +lean_dec(x_65); +lean_dec_ref(x_64); +x_114 = lean_array_fget_borrowed(x_84, x_85); +x_115 = lean_box(x_3); +x_116 = lean_box(x_4); +x_117 = lean_box(x_96); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_114); +lean_inc(x_10); +lean_inc_ref(x_2); +x_118 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_118, 0, x_113); +lean_closure_set(x_118, 1, x_111); +lean_closure_set(x_118, 2, x_2); +lean_closure_set(x_118, 3, x_10); +lean_closure_set(x_118, 4, x_115); +lean_closure_set(x_118, 5, x_116); +lean_closure_set(x_118, 6, x_114); +lean_closure_set(x_118, 7, x_5); +lean_closure_set(x_118, 8, x_6); +lean_closure_set(x_118, 9, x_117); +lean_closure_set(x_118, 10, x_56); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_119 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_112, x_94, x_118, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_119) == 0) +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_120 = lean_ctor_get(x_119, 0); +lean_inc(x_120); +lean_dec_ref(x_119); +x_121 = lean_nat_add(x_85, x_56); +lean_dec(x_85); +lean_ctor_set(x_30, 1, x_121); +x_122 = lean_array_push(x_42, x_120); +lean_ctor_set(x_27, 1, x_122); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +uint8_t x_123; +lean_free_object(x_30); +lean_dec_ref(x_33); +lean_dec(x_86); +lean_dec(x_85); +lean_dec_ref(x_84); +lean_dec_ref(x_36); +lean_dec_ref(x_39); +lean_dec_ref(x_28); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_123 = !lean_is_exclusive(x_119); +if (x_123 == 0) +{ +return x_119; +} +else +{ +lean_object* x_124; lean_object* x_125; +x_124 = lean_ctor_get(x_119, 0); +lean_inc(x_124); +lean_dec(x_119); +x_125 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_125, 0, x_124); +return x_125; +} +} +} +} +else +{ +lean_object* x_126; lean_object* x_127; uint8_t x_128; uint8_t x_129; +lean_dec(x_30); +x_126 = lean_array_fget(x_74, x_75); +lean_dec(x_75); +lean_dec_ref(x_74); +x_127 = lean_ctor_get(x_126, 1); +x_128 = lean_ctor_get_uint8(x_126, sizeof(void*)*2); +x_129 = lean_nat_dec_eq(x_127, x_1); +if (x_129 == 0) +{ +lean_object* x_130; lean_object* x_131; +lean_dec_ref(x_126); +lean_dec_ref(x_33); +lean_dec(x_86); +lean_dec(x_85); +lean_dec_ref(x_84); +lean_dec_ref(x_36); +lean_dec_ref(x_39); +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_28); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_130 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_131 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_130, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_131) == 0) +{ +lean_object* x_132; lean_object* x_133; +x_132 = lean_ctor_get(x_131, 0); +lean_inc(x_132); +if (lean_is_exclusive(x_131)) { + lean_ctor_release(x_131, 0); + x_133 = x_131; +} else { + lean_dec_ref(x_131); + x_133 = lean_box(0); +} +if (lean_obj_tag(x_132) == 0) +{ +lean_object* x_134; lean_object* x_135; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_134 = lean_ctor_get(x_132, 0); +lean_inc(x_134); +lean_dec_ref(x_132); +if (lean_is_scalar(x_133)) { + x_135 = lean_alloc_ctor(0, 1, 0); +} else { + x_135 = x_133; +} +lean_ctor_set(x_135, 0, x_134); +return x_135; +} +else +{ +lean_object* x_136; +lean_dec(x_133); +x_136 = lean_ctor_get(x_132, 0); +lean_inc(x_136); +lean_dec_ref(x_132); +x_16 = x_136; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_137; lean_object* x_138; lean_object* x_139; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_137 = lean_ctor_get(x_131, 0); +lean_inc(x_137); +if (lean_is_exclusive(x_131)) { + lean_ctor_release(x_131, 0); + x_138 = x_131; +} else { + lean_dec_ref(x_131); + x_138 = lean_box(0); +} +if (lean_is_scalar(x_138)) { + x_139 = lean_alloc_ctor(1, 1, 0); +} else { + x_139 = x_138; +} +lean_ctor_set(x_139, 0, x_137); +return x_139; +} +} +else +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; +x_140 = lean_array_fget(x_44, x_45); +lean_dec(x_45); +lean_dec_ref(x_44); +x_141 = lean_array_fget(x_53, x_54); +lean_dec(x_54); +lean_dec_ref(x_53); +x_142 = lean_array_fget(x_64, x_65); +lean_dec(x_65); +lean_dec_ref(x_64); +x_143 = lean_array_fget_borrowed(x_84, x_85); +x_144 = lean_box(x_3); +x_145 = lean_box(x_4); +x_146 = lean_box(x_128); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_143); +lean_inc(x_10); +lean_inc_ref(x_2); +x_147 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_147, 0, x_142); +lean_closure_set(x_147, 1, x_140); +lean_closure_set(x_147, 2, x_2); +lean_closure_set(x_147, 3, x_10); +lean_closure_set(x_147, 4, x_144); +lean_closure_set(x_147, 5, x_145); +lean_closure_set(x_147, 6, x_143); +lean_closure_set(x_147, 7, x_5); +lean_closure_set(x_147, 8, x_6); +lean_closure_set(x_147, 9, x_146); +lean_closure_set(x_147, 10, x_56); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_148 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_141, x_126, x_147, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_148) == 0) +{ +lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; +x_149 = lean_ctor_get(x_148, 0); +lean_inc(x_149); +lean_dec_ref(x_148); +x_150 = lean_nat_add(x_85, x_56); +lean_dec(x_85); +x_151 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_151, 0, x_84); +lean_ctor_set(x_151, 1, x_150); +lean_ctor_set(x_151, 2, x_86); +x_152 = lean_array_push(x_42, x_149); +lean_ctor_set(x_27, 1, x_152); +lean_ctor_set(x_9, 0, x_151); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; +lean_dec_ref(x_33); +lean_dec(x_86); +lean_dec(x_85); +lean_dec_ref(x_84); +lean_dec_ref(x_36); +lean_dec_ref(x_39); +lean_dec_ref(x_28); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_153 = lean_ctor_get(x_148, 0); +lean_inc(x_153); +if (lean_is_exclusive(x_148)) { + lean_ctor_release(x_148, 0); + x_154 = x_148; +} else { + lean_dec_ref(x_148); + x_154 = lean_box(0); +} +if (lean_is_scalar(x_154)) { + x_155 = lean_alloc_ctor(1, 1, 0); +} else { + x_155 = x_154; +} +lean_ctor_set(x_155, 0, x_153); +return x_155; +} +} +} +} +} +else +{ +lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; uint8_t x_161; +lean_dec(x_33); +x_156 = lean_ctor_get(x_30, 0); +x_157 = lean_ctor_get(x_30, 1); +x_158 = lean_ctor_get(x_30, 2); +x_159 = lean_nat_add(x_75, x_56); +lean_inc_ref(x_74); +x_160 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_160, 0, x_74); +lean_ctor_set(x_160, 1, x_159); +lean_ctor_set(x_160, 2, x_76); +x_161 = lean_nat_dec_lt(x_157, x_158); +if (x_161 == 0) +{ +lean_object* x_162; +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_24, 0, x_160); +x_162 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_162, 0, x_9); +return x_162; +} +else +{ +lean_object* x_163; lean_object* x_164; lean_object* x_165; uint8_t x_166; uint8_t x_167; +lean_inc(x_158); +lean_inc(x_157); +lean_inc_ref(x_156); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_163 = x_30; +} else { + lean_dec_ref(x_30); + x_163 = lean_box(0); +} +x_164 = lean_array_fget(x_74, x_75); +lean_dec(x_75); +lean_dec_ref(x_74); +x_165 = lean_ctor_get(x_164, 1); +x_166 = lean_ctor_get_uint8(x_164, sizeof(void*)*2); +x_167 = lean_nat_dec_eq(x_165, x_1); +if (x_167 == 0) +{ +lean_object* x_168; lean_object* x_169; +lean_dec_ref(x_164); +lean_dec(x_163); +lean_dec_ref(x_160); +lean_dec(x_158); +lean_dec(x_157); +lean_dec_ref(x_156); +lean_dec_ref(x_36); +lean_dec_ref(x_39); +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_28); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_168 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_169 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_168, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_169) == 0) +{ +lean_object* x_170; lean_object* x_171; +x_170 = lean_ctor_get(x_169, 0); +lean_inc(x_170); +if (lean_is_exclusive(x_169)) { + lean_ctor_release(x_169, 0); + x_171 = x_169; +} else { + lean_dec_ref(x_169); + x_171 = lean_box(0); +} +if (lean_obj_tag(x_170) == 0) +{ +lean_object* x_172; lean_object* x_173; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_172 = lean_ctor_get(x_170, 0); +lean_inc(x_172); +lean_dec_ref(x_170); +if (lean_is_scalar(x_171)) { + x_173 = lean_alloc_ctor(0, 1, 0); +} else { + x_173 = x_171; +} +lean_ctor_set(x_173, 0, x_172); +return x_173; +} +else +{ +lean_object* x_174; +lean_dec(x_171); +x_174 = lean_ctor_get(x_170, 0); +lean_inc(x_174); +lean_dec_ref(x_170); +x_16 = x_174; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_175; lean_object* x_176; lean_object* x_177; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_175 = lean_ctor_get(x_169, 0); +lean_inc(x_175); +if (lean_is_exclusive(x_169)) { + lean_ctor_release(x_169, 0); + x_176 = x_169; +} else { + lean_dec_ref(x_169); + x_176 = lean_box(0); +} +if (lean_is_scalar(x_176)) { + x_177 = lean_alloc_ctor(1, 1, 0); +} else { + x_177 = x_176; +} +lean_ctor_set(x_177, 0, x_175); +return x_177; +} +} +else +{ +lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; +x_178 = lean_array_fget(x_44, x_45); +lean_dec(x_45); +lean_dec_ref(x_44); +x_179 = lean_array_fget(x_53, x_54); +lean_dec(x_54); +lean_dec_ref(x_53); +x_180 = lean_array_fget(x_64, x_65); +lean_dec(x_65); +lean_dec_ref(x_64); +x_181 = lean_array_fget_borrowed(x_156, x_157); +x_182 = lean_box(x_3); +x_183 = lean_box(x_4); +x_184 = lean_box(x_166); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_181); +lean_inc(x_10); +lean_inc_ref(x_2); +x_185 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_185, 0, x_180); +lean_closure_set(x_185, 1, x_178); +lean_closure_set(x_185, 2, x_2); +lean_closure_set(x_185, 3, x_10); +lean_closure_set(x_185, 4, x_182); +lean_closure_set(x_185, 5, x_183); +lean_closure_set(x_185, 6, x_181); +lean_closure_set(x_185, 7, x_5); +lean_closure_set(x_185, 8, x_6); +lean_closure_set(x_185, 9, x_184); +lean_closure_set(x_185, 10, x_56); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_186 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_179, x_164, x_185, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_186) == 0) +{ +lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_187 = lean_ctor_get(x_186, 0); +lean_inc(x_187); +lean_dec_ref(x_186); +x_188 = lean_nat_add(x_157, x_56); +lean_dec(x_157); +if (lean_is_scalar(x_163)) { + x_189 = lean_alloc_ctor(0, 3, 0); +} else { + x_189 = x_163; +} +lean_ctor_set(x_189, 0, x_156); +lean_ctor_set(x_189, 1, x_188); +lean_ctor_set(x_189, 2, x_158); +x_190 = lean_array_push(x_42, x_187); +lean_ctor_set(x_27, 1, x_190); +lean_ctor_set(x_24, 0, x_160); +lean_ctor_set(x_9, 0, x_189); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_191; lean_object* x_192; lean_object* x_193; +lean_dec(x_163); +lean_dec_ref(x_160); +lean_dec(x_158); +lean_dec(x_157); +lean_dec_ref(x_156); +lean_dec_ref(x_36); +lean_dec_ref(x_39); +lean_dec_ref(x_28); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_191 = lean_ctor_get(x_186, 0); +lean_inc(x_191); +if (lean_is_exclusive(x_186)) { + lean_ctor_release(x_186, 0); + x_192 = x_186; +} else { + lean_dec_ref(x_186); + x_192 = lean_box(0); +} +if (lean_is_scalar(x_192)) { + x_193 = lean_alloc_ctor(1, 1, 0); +} else { + x_193 = x_192; +} +lean_ctor_set(x_193, 0, x_191); +return x_193; +} +} +} +} +} +} +else +{ +lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; uint8_t x_199; +lean_dec(x_36); +x_194 = lean_ctor_get(x_33, 0); +x_195 = lean_ctor_get(x_33, 1); +x_196 = lean_ctor_get(x_33, 2); +x_197 = lean_nat_add(x_65, x_56); +lean_inc_ref(x_64); +x_198 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_198, 0, x_64); +lean_ctor_set(x_198, 1, x_197); +lean_ctor_set(x_198, 2, x_66); +x_199 = lean_nat_dec_lt(x_195, x_196); +if (x_199 == 0) +{ +lean_object* x_200; +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_25, 0, x_198); +x_200 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_200, 0, x_9); +return x_200; +} +else +{ +lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; uint8_t x_207; +lean_inc(x_196); +lean_inc(x_195); +lean_inc_ref(x_194); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_201 = x_33; +} else { + lean_dec_ref(x_33); + x_201 = lean_box(0); +} +x_202 = lean_ctor_get(x_30, 0); +x_203 = lean_ctor_get(x_30, 1); +x_204 = lean_ctor_get(x_30, 2); +x_205 = lean_nat_add(x_195, x_56); +lean_inc_ref(x_194); +if (lean_is_scalar(x_201)) { + x_206 = lean_alloc_ctor(0, 3, 0); +} else { + x_206 = x_201; +} +lean_ctor_set(x_206, 0, x_194); +lean_ctor_set(x_206, 1, x_205); +lean_ctor_set(x_206, 2, x_196); +x_207 = lean_nat_dec_lt(x_203, x_204); +if (x_207 == 0) +{ +lean_object* x_208; +lean_dec(x_195); +lean_dec_ref(x_194); +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_25, 0, x_198); +lean_ctor_set(x_24, 0, x_206); +x_208 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_208, 0, x_9); +return x_208; +} +else +{ +lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; uint8_t x_213; +lean_inc(x_204); +lean_inc(x_203); +lean_inc_ref(x_202); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_209 = x_30; +} else { + lean_dec_ref(x_30); + x_209 = lean_box(0); +} +x_210 = lean_array_fget(x_194, x_195); +lean_dec(x_195); +lean_dec_ref(x_194); +x_211 = lean_ctor_get(x_210, 1); +x_212 = lean_ctor_get_uint8(x_210, sizeof(void*)*2); +x_213 = lean_nat_dec_eq(x_211, x_1); +if (x_213 == 0) +{ +lean_object* x_214; lean_object* x_215; +lean_dec_ref(x_210); +lean_dec(x_209); +lean_dec_ref(x_206); +lean_dec(x_204); +lean_dec(x_203); +lean_dec_ref(x_202); +lean_dec_ref(x_198); +lean_dec_ref(x_39); +lean_dec(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_28); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_214 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_215 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_214, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_215) == 0) +{ +lean_object* x_216; lean_object* x_217; +x_216 = lean_ctor_get(x_215, 0); +lean_inc(x_216); +if (lean_is_exclusive(x_215)) { + lean_ctor_release(x_215, 0); + x_217 = x_215; +} else { + lean_dec_ref(x_215); + x_217 = lean_box(0); +} +if (lean_obj_tag(x_216) == 0) +{ +lean_object* x_218; lean_object* x_219; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_218 = lean_ctor_get(x_216, 0); +lean_inc(x_218); +lean_dec_ref(x_216); +if (lean_is_scalar(x_217)) { + x_219 = lean_alloc_ctor(0, 1, 0); +} else { + x_219 = x_217; +} +lean_ctor_set(x_219, 0, x_218); +return x_219; +} +else +{ +lean_object* x_220; +lean_dec(x_217); +x_220 = lean_ctor_get(x_216, 0); +lean_inc(x_220); +lean_dec_ref(x_216); +x_16 = x_220; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_221; lean_object* x_222; lean_object* x_223; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_221 = lean_ctor_get(x_215, 0); +lean_inc(x_221); +if (lean_is_exclusive(x_215)) { + lean_ctor_release(x_215, 0); + x_222 = x_215; +} else { + lean_dec_ref(x_215); + x_222 = lean_box(0); +} +if (lean_is_scalar(x_222)) { + x_223 = lean_alloc_ctor(1, 1, 0); +} else { + x_223 = x_222; +} +lean_ctor_set(x_223, 0, x_221); +return x_223; +} +} +else +{ +lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; +x_224 = lean_array_fget(x_44, x_45); +lean_dec(x_45); +lean_dec_ref(x_44); +x_225 = lean_array_fget(x_53, x_54); +lean_dec(x_54); +lean_dec_ref(x_53); +x_226 = lean_array_fget(x_64, x_65); +lean_dec(x_65); +lean_dec_ref(x_64); +x_227 = lean_array_fget_borrowed(x_202, x_203); +x_228 = lean_box(x_3); +x_229 = lean_box(x_4); +x_230 = lean_box(x_212); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_227); +lean_inc(x_10); +lean_inc_ref(x_2); +x_231 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_231, 0, x_226); +lean_closure_set(x_231, 1, x_224); +lean_closure_set(x_231, 2, x_2); +lean_closure_set(x_231, 3, x_10); +lean_closure_set(x_231, 4, x_228); +lean_closure_set(x_231, 5, x_229); +lean_closure_set(x_231, 6, x_227); +lean_closure_set(x_231, 7, x_5); +lean_closure_set(x_231, 8, x_6); +lean_closure_set(x_231, 9, x_230); +lean_closure_set(x_231, 10, x_56); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_232 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_225, x_210, x_231, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_232) == 0) +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; +x_233 = lean_ctor_get(x_232, 0); +lean_inc(x_233); +lean_dec_ref(x_232); +x_234 = lean_nat_add(x_203, x_56); +lean_dec(x_203); +if (lean_is_scalar(x_209)) { + x_235 = lean_alloc_ctor(0, 3, 0); +} else { + x_235 = x_209; +} +lean_ctor_set(x_235, 0, x_202); +lean_ctor_set(x_235, 1, x_234); +lean_ctor_set(x_235, 2, x_204); +x_236 = lean_array_push(x_42, x_233); +lean_ctor_set(x_27, 1, x_236); +lean_ctor_set(x_25, 0, x_198); +lean_ctor_set(x_24, 0, x_206); +lean_ctor_set(x_9, 0, x_235); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +lean_dec(x_209); +lean_dec_ref(x_206); +lean_dec(x_204); +lean_dec(x_203); +lean_dec_ref(x_202); +lean_dec_ref(x_198); +lean_dec_ref(x_39); +lean_dec_ref(x_28); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_237 = lean_ctor_get(x_232, 0); +lean_inc(x_237); +if (lean_is_exclusive(x_232)) { + lean_ctor_release(x_232, 0); + x_238 = x_232; +} else { + lean_dec_ref(x_232); + x_238 = lean_box(0); +} +if (lean_is_scalar(x_238)) { + x_239 = lean_alloc_ctor(1, 1, 0); +} else { + x_239 = x_238; +} +lean_ctor_set(x_239, 0, x_237); +return x_239; +} +} +} +} +} +} +} +else +{ +lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; uint8_t x_245; +lean_dec(x_39); +x_240 = lean_ctor_get(x_36, 0); +x_241 = lean_ctor_get(x_36, 1); +x_242 = lean_ctor_get(x_36, 2); +x_243 = lean_nat_add(x_54, x_56); +lean_inc_ref(x_53); +x_244 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_244, 0, x_53); +lean_ctor_set(x_244, 1, x_243); +lean_ctor_set(x_244, 2, x_55); +x_245 = lean_nat_dec_lt(x_241, x_242); +if (x_245 == 0) +{ +lean_object* x_246; +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_244); +x_246 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_246, 0, x_9); +return x_246; +} +else +{ +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; uint8_t x_253; +lean_inc(x_242); +lean_inc(x_241); +lean_inc_ref(x_240); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + lean_ctor_release(x_36, 1); + lean_ctor_release(x_36, 2); + x_247 = x_36; +} else { + lean_dec_ref(x_36); + x_247 = lean_box(0); +} +x_248 = lean_ctor_get(x_33, 0); +x_249 = lean_ctor_get(x_33, 1); +x_250 = lean_ctor_get(x_33, 2); +x_251 = lean_nat_add(x_241, x_56); +lean_inc_ref(x_240); +if (lean_is_scalar(x_247)) { + x_252 = lean_alloc_ctor(0, 3, 0); +} else { + x_252 = x_247; +} +lean_ctor_set(x_252, 0, x_240); +lean_ctor_set(x_252, 1, x_251); +lean_ctor_set(x_252, 2, x_242); +x_253 = lean_nat_dec_lt(x_249, x_250); +if (x_253 == 0) +{ +lean_object* x_254; +lean_dec(x_241); +lean_dec_ref(x_240); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_244); +lean_ctor_set(x_25, 0, x_252); +x_254 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_254, 0, x_9); +return x_254; +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; uint8_t x_261; +lean_inc(x_250); +lean_inc(x_249); +lean_inc_ref(x_248); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_255 = x_33; +} else { + lean_dec_ref(x_33); + x_255 = lean_box(0); +} +x_256 = lean_ctor_get(x_30, 0); +x_257 = lean_ctor_get(x_30, 1); +x_258 = lean_ctor_get(x_30, 2); +x_259 = lean_nat_add(x_249, x_56); +lean_inc_ref(x_248); +if (lean_is_scalar(x_255)) { + x_260 = lean_alloc_ctor(0, 3, 0); +} else { + x_260 = x_255; +} +lean_ctor_set(x_260, 0, x_248); +lean_ctor_set(x_260, 1, x_259); +lean_ctor_set(x_260, 2, x_250); +x_261 = lean_nat_dec_lt(x_257, x_258); +if (x_261 == 0) +{ +lean_object* x_262; +lean_dec(x_249); +lean_dec_ref(x_248); +lean_dec(x_241); +lean_dec_ref(x_240); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_26, 0, x_244); +lean_ctor_set(x_25, 0, x_252); +lean_ctor_set(x_24, 0, x_260); +x_262 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_262, 0, x_9); +return x_262; +} +else +{ +lean_object* x_263; lean_object* x_264; lean_object* x_265; uint8_t x_266; uint8_t x_267; +lean_inc(x_258); +lean_inc(x_257); +lean_inc_ref(x_256); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_263 = x_30; +} else { + lean_dec_ref(x_30); + x_263 = lean_box(0); +} +x_264 = lean_array_fget(x_248, x_249); +lean_dec(x_249); +lean_dec_ref(x_248); +x_265 = lean_ctor_get(x_264, 1); +x_266 = lean_ctor_get_uint8(x_264, sizeof(void*)*2); +x_267 = lean_nat_dec_eq(x_265, x_1); +if (x_267 == 0) +{ +lean_object* x_268; lean_object* x_269; +lean_dec_ref(x_264); +lean_dec(x_263); +lean_dec_ref(x_260); +lean_dec(x_258); +lean_dec(x_257); +lean_dec_ref(x_256); +lean_dec_ref(x_252); +lean_dec_ref(x_244); +lean_dec(x_241); +lean_dec_ref(x_240); +lean_dec_ref(x_28); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_268 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_269 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_268, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_269) == 0) +{ +lean_object* x_270; lean_object* x_271; +x_270 = lean_ctor_get(x_269, 0); +lean_inc(x_270); +if (lean_is_exclusive(x_269)) { + lean_ctor_release(x_269, 0); + x_271 = x_269; +} else { + lean_dec_ref(x_269); + x_271 = lean_box(0); +} +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_272; lean_object* x_273; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_272 = lean_ctor_get(x_270, 0); +lean_inc(x_272); +lean_dec_ref(x_270); +if (lean_is_scalar(x_271)) { + x_273 = lean_alloc_ctor(0, 1, 0); +} else { + x_273 = x_271; +} +lean_ctor_set(x_273, 0, x_272); +return x_273; +} +else +{ +lean_object* x_274; +lean_dec(x_271); +x_274 = lean_ctor_get(x_270, 0); +lean_inc(x_274); +lean_dec_ref(x_270); +x_16 = x_274; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_275 = lean_ctor_get(x_269, 0); +lean_inc(x_275); +if (lean_is_exclusive(x_269)) { + lean_ctor_release(x_269, 0); + x_276 = x_269; +} else { + lean_dec_ref(x_269); + x_276 = lean_box(0); +} +if (lean_is_scalar(x_276)) { + x_277 = lean_alloc_ctor(1, 1, 0); +} else { + x_277 = x_276; +} +lean_ctor_set(x_277, 0, x_275); +return x_277; +} +} +else +{ +lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; +x_278 = lean_array_fget(x_44, x_45); +lean_dec(x_45); +lean_dec_ref(x_44); +x_279 = lean_array_fget(x_53, x_54); +lean_dec(x_54); +lean_dec_ref(x_53); +x_280 = lean_array_fget(x_240, x_241); +lean_dec(x_241); +lean_dec_ref(x_240); +x_281 = lean_array_fget_borrowed(x_256, x_257); +x_282 = lean_box(x_3); +x_283 = lean_box(x_4); +x_284 = lean_box(x_266); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_281); +lean_inc(x_10); +lean_inc_ref(x_2); +x_285 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_285, 0, x_280); +lean_closure_set(x_285, 1, x_278); +lean_closure_set(x_285, 2, x_2); +lean_closure_set(x_285, 3, x_10); +lean_closure_set(x_285, 4, x_282); +lean_closure_set(x_285, 5, x_283); +lean_closure_set(x_285, 6, x_281); +lean_closure_set(x_285, 7, x_5); +lean_closure_set(x_285, 8, x_6); +lean_closure_set(x_285, 9, x_284); +lean_closure_set(x_285, 10, x_56); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_286 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_279, x_264, x_285, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_286) == 0) +{ +lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; +x_287 = lean_ctor_get(x_286, 0); +lean_inc(x_287); +lean_dec_ref(x_286); +x_288 = lean_nat_add(x_257, x_56); +lean_dec(x_257); +if (lean_is_scalar(x_263)) { + x_289 = lean_alloc_ctor(0, 3, 0); +} else { + x_289 = x_263; +} +lean_ctor_set(x_289, 0, x_256); +lean_ctor_set(x_289, 1, x_288); +lean_ctor_set(x_289, 2, x_258); +x_290 = lean_array_push(x_42, x_287); +lean_ctor_set(x_27, 1, x_290); +lean_ctor_set(x_26, 0, x_244); +lean_ctor_set(x_25, 0, x_252); +lean_ctor_set(x_24, 0, x_260); +lean_ctor_set(x_9, 0, x_289); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_291; lean_object* x_292; lean_object* x_293; +lean_dec(x_263); +lean_dec_ref(x_260); +lean_dec(x_258); +lean_dec(x_257); +lean_dec_ref(x_256); +lean_dec_ref(x_252); +lean_dec_ref(x_244); +lean_dec_ref(x_28); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_291 = lean_ctor_get(x_286, 0); +lean_inc(x_291); +if (lean_is_exclusive(x_286)) { + lean_ctor_release(x_286, 0); + x_292 = x_286; +} else { + lean_dec_ref(x_286); + x_292 = lean_box(0); +} +if (lean_is_scalar(x_292)) { + x_293 = lean_alloc_ctor(1, 1, 0); +} else { + x_293 = x_292; +} +lean_ctor_set(x_293, 0, x_291); +return x_293; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; uint8_t x_300; +lean_dec(x_28); +x_294 = lean_ctor_get(x_39, 0); +x_295 = lean_ctor_get(x_39, 1); +x_296 = lean_ctor_get(x_39, 2); +x_297 = lean_unsigned_to_nat(1u); +x_298 = lean_nat_add(x_45, x_297); +lean_inc_ref(x_44); +x_299 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_299, 0, x_44); +lean_ctor_set(x_299, 1, x_298); +lean_ctor_set(x_299, 2, x_46); +x_300 = lean_nat_dec_lt(x_295, x_296); +if (x_300 == 0) +{ +lean_object* x_301; +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_27, 0, x_299); +x_301 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_301, 0, x_9); +return x_301; +} +else +{ +lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; uint8_t x_308; +lean_inc(x_296); +lean_inc(x_295); +lean_inc_ref(x_294); +if (lean_is_exclusive(x_39)) { + lean_ctor_release(x_39, 0); + lean_ctor_release(x_39, 1); + lean_ctor_release(x_39, 2); + x_302 = x_39; +} else { + lean_dec_ref(x_39); + x_302 = lean_box(0); +} +x_303 = lean_ctor_get(x_36, 0); +x_304 = lean_ctor_get(x_36, 1); +x_305 = lean_ctor_get(x_36, 2); +x_306 = lean_nat_add(x_295, x_297); +lean_inc_ref(x_294); +if (lean_is_scalar(x_302)) { + x_307 = lean_alloc_ctor(0, 3, 0); +} else { + x_307 = x_302; +} +lean_ctor_set(x_307, 0, x_294); +lean_ctor_set(x_307, 1, x_306); +lean_ctor_set(x_307, 2, x_296); +x_308 = lean_nat_dec_lt(x_304, x_305); +if (x_308 == 0) +{ +lean_object* x_309; +lean_dec(x_295); +lean_dec_ref(x_294); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_27, 0, x_299); +lean_ctor_set(x_26, 0, x_307); +x_309 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_309, 0, x_9); +return x_309; +} +else +{ +lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; uint8_t x_316; +lean_inc(x_305); +lean_inc(x_304); +lean_inc_ref(x_303); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + lean_ctor_release(x_36, 1); + lean_ctor_release(x_36, 2); + x_310 = x_36; +} else { + lean_dec_ref(x_36); + x_310 = lean_box(0); +} +x_311 = lean_ctor_get(x_33, 0); +x_312 = lean_ctor_get(x_33, 1); +x_313 = lean_ctor_get(x_33, 2); +x_314 = lean_nat_add(x_304, x_297); +lean_inc_ref(x_303); +if (lean_is_scalar(x_310)) { + x_315 = lean_alloc_ctor(0, 3, 0); +} else { + x_315 = x_310; +} +lean_ctor_set(x_315, 0, x_303); +lean_ctor_set(x_315, 1, x_314); +lean_ctor_set(x_315, 2, x_305); +x_316 = lean_nat_dec_lt(x_312, x_313); +if (x_316 == 0) +{ +lean_object* x_317; +lean_dec(x_304); +lean_dec_ref(x_303); +lean_dec(x_295); +lean_dec_ref(x_294); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_27, 0, x_299); +lean_ctor_set(x_26, 0, x_307); +lean_ctor_set(x_25, 0, x_315); +x_317 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_317, 0, x_9); +return x_317; +} +else +{ +lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; uint8_t x_324; +lean_inc(x_313); +lean_inc(x_312); +lean_inc_ref(x_311); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_318 = x_33; +} else { + lean_dec_ref(x_33); + x_318 = lean_box(0); +} +x_319 = lean_ctor_get(x_30, 0); +x_320 = lean_ctor_get(x_30, 1); +x_321 = lean_ctor_get(x_30, 2); +x_322 = lean_nat_add(x_312, x_297); +lean_inc_ref(x_311); +if (lean_is_scalar(x_318)) { + x_323 = lean_alloc_ctor(0, 3, 0); +} else { + x_323 = x_318; +} +lean_ctor_set(x_323, 0, x_311); +lean_ctor_set(x_323, 1, x_322); +lean_ctor_set(x_323, 2, x_313); +x_324 = lean_nat_dec_lt(x_320, x_321); +if (x_324 == 0) +{ +lean_object* x_325; +lean_dec(x_312); +lean_dec_ref(x_311); +lean_dec(x_304); +lean_dec_ref(x_303); +lean_dec(x_295); +lean_dec_ref(x_294); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_ctor_set(x_27, 0, x_299); +lean_ctor_set(x_26, 0, x_307); +lean_ctor_set(x_25, 0, x_315); +lean_ctor_set(x_24, 0, x_323); +x_325 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_325, 0, x_9); +return x_325; +} +else +{ +lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; uint8_t x_330; +lean_inc(x_321); +lean_inc(x_320); +lean_inc_ref(x_319); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_326 = x_30; +} else { + lean_dec_ref(x_30); + x_326 = lean_box(0); +} +x_327 = lean_array_fget(x_311, x_312); +lean_dec(x_312); +lean_dec_ref(x_311); +x_328 = lean_ctor_get(x_327, 1); +x_329 = lean_ctor_get_uint8(x_327, sizeof(void*)*2); +x_330 = lean_nat_dec_eq(x_328, x_1); +if (x_330 == 0) +{ +lean_object* x_331; lean_object* x_332; +lean_dec_ref(x_327); +lean_dec(x_326); +lean_dec_ref(x_323); +lean_dec(x_321); +lean_dec(x_320); +lean_dec_ref(x_319); +lean_dec_ref(x_315); +lean_dec_ref(x_307); +lean_dec(x_304); +lean_dec_ref(x_303); +lean_dec_ref(x_299); +lean_dec(x_295); +lean_dec_ref(x_294); +lean_dec(x_45); +lean_dec_ref(x_44); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_331 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_332 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_331, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_332) == 0) +{ +lean_object* x_333; lean_object* x_334; +x_333 = lean_ctor_get(x_332, 0); +lean_inc(x_333); +if (lean_is_exclusive(x_332)) { + lean_ctor_release(x_332, 0); + x_334 = x_332; +} else { + lean_dec_ref(x_332); + x_334 = lean_box(0); +} +if (lean_obj_tag(x_333) == 0) +{ +lean_object* x_335; lean_object* x_336; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_335 = lean_ctor_get(x_333, 0); +lean_inc(x_335); +lean_dec_ref(x_333); +if (lean_is_scalar(x_334)) { + x_336 = lean_alloc_ctor(0, 1, 0); +} else { + x_336 = x_334; +} +lean_ctor_set(x_336, 0, x_335); +return x_336; +} +else +{ +lean_object* x_337; +lean_dec(x_334); +x_337 = lean_ctor_get(x_333, 0); +lean_inc(x_337); +lean_dec_ref(x_333); +x_16 = x_337; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_338; lean_object* x_339; lean_object* x_340; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_338 = lean_ctor_get(x_332, 0); +lean_inc(x_338); +if (lean_is_exclusive(x_332)) { + lean_ctor_release(x_332, 0); + x_339 = x_332; +} else { + lean_dec_ref(x_332); + x_339 = lean_box(0); +} +if (lean_is_scalar(x_339)) { + x_340 = lean_alloc_ctor(1, 1, 0); +} else { + x_340 = x_339; +} +lean_ctor_set(x_340, 0, x_338); +return x_340; +} +} +else +{ +lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; +x_341 = lean_array_fget(x_44, x_45); +lean_dec(x_45); +lean_dec_ref(x_44); +x_342 = lean_array_fget(x_294, x_295); +lean_dec(x_295); +lean_dec_ref(x_294); +x_343 = lean_array_fget(x_303, x_304); +lean_dec(x_304); +lean_dec_ref(x_303); +x_344 = lean_array_fget_borrowed(x_319, x_320); +x_345 = lean_box(x_3); +x_346 = lean_box(x_4); +x_347 = lean_box(x_329); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_344); +lean_inc(x_10); +lean_inc_ref(x_2); +x_348 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_348, 0, x_343); +lean_closure_set(x_348, 1, x_341); +lean_closure_set(x_348, 2, x_2); +lean_closure_set(x_348, 3, x_10); +lean_closure_set(x_348, 4, x_345); +lean_closure_set(x_348, 5, x_346); +lean_closure_set(x_348, 6, x_344); +lean_closure_set(x_348, 7, x_5); +lean_closure_set(x_348, 8, x_6); +lean_closure_set(x_348, 9, x_347); +lean_closure_set(x_348, 10, x_297); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_349 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_342, x_327, x_348, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_349) == 0) +{ +lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; +x_350 = lean_ctor_get(x_349, 0); +lean_inc(x_350); +lean_dec_ref(x_349); +x_351 = lean_nat_add(x_320, x_297); +lean_dec(x_320); +if (lean_is_scalar(x_326)) { + x_352 = lean_alloc_ctor(0, 3, 0); +} else { + x_352 = x_326; +} +lean_ctor_set(x_352, 0, x_319); +lean_ctor_set(x_352, 1, x_351); +lean_ctor_set(x_352, 2, x_321); +x_353 = lean_array_push(x_42, x_350); +lean_ctor_set(x_27, 1, x_353); +lean_ctor_set(x_27, 0, x_299); +lean_ctor_set(x_26, 0, x_307); +lean_ctor_set(x_25, 0, x_315); +lean_ctor_set(x_24, 0, x_323); +lean_ctor_set(x_9, 0, x_352); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_354; lean_object* x_355; lean_object* x_356; +lean_dec(x_326); +lean_dec_ref(x_323); +lean_dec(x_321); +lean_dec(x_320); +lean_dec_ref(x_319); +lean_dec_ref(x_315); +lean_dec_ref(x_307); +lean_dec_ref(x_299); +lean_free_object(x_27); +lean_dec(x_42); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_354 = lean_ctor_get(x_349, 0); +lean_inc(x_354); +if (lean_is_exclusive(x_349)) { + lean_ctor_release(x_349, 0); + x_355 = x_349; +} else { + lean_dec_ref(x_349); + x_355 = lean_box(0); +} +if (lean_is_scalar(x_355)) { + x_356 = lean_alloc_ctor(1, 1, 0); +} else { + x_356 = x_355; +} +lean_ctor_set(x_356, 0, x_354); +return x_356; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; uint8_t x_361; +x_357 = lean_ctor_get(x_27, 1); +lean_inc(x_357); +lean_dec(x_27); +x_358 = lean_ctor_get(x_28, 0); +x_359 = lean_ctor_get(x_28, 1); +x_360 = lean_ctor_get(x_28, 2); +x_361 = lean_nat_dec_lt(x_359, x_360); +if (x_361 == 0) +{ +lean_object* x_362; lean_object* x_363; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_362 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_362, 0, x_28); +lean_ctor_set(x_362, 1, x_357); +lean_ctor_set(x_26, 1, x_362); +x_363 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_363, 0, x_9); +return x_363; +} +else +{ +lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; uint8_t x_371; +lean_inc(x_360); +lean_inc(x_359); +lean_inc_ref(x_358); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + lean_ctor_release(x_28, 2); + x_364 = x_28; +} else { + lean_dec_ref(x_28); + x_364 = lean_box(0); +} +x_365 = lean_ctor_get(x_39, 0); +x_366 = lean_ctor_get(x_39, 1); +x_367 = lean_ctor_get(x_39, 2); +x_368 = lean_unsigned_to_nat(1u); +x_369 = lean_nat_add(x_359, x_368); +lean_inc_ref(x_358); +if (lean_is_scalar(x_364)) { + x_370 = lean_alloc_ctor(0, 3, 0); +} else { + x_370 = x_364; +} +lean_ctor_set(x_370, 0, x_358); +lean_ctor_set(x_370, 1, x_369); +lean_ctor_set(x_370, 2, x_360); +x_371 = lean_nat_dec_lt(x_366, x_367); +if (x_371 == 0) +{ +lean_object* x_372; lean_object* x_373; +lean_dec(x_359); +lean_dec_ref(x_358); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_372 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_372, 0, x_370); +lean_ctor_set(x_372, 1, x_357); +lean_ctor_set(x_26, 1, x_372); +x_373 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_373, 0, x_9); +return x_373; +} +else +{ +lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; uint8_t x_380; +lean_inc(x_367); +lean_inc(x_366); +lean_inc_ref(x_365); +if (lean_is_exclusive(x_39)) { + lean_ctor_release(x_39, 0); + lean_ctor_release(x_39, 1); + lean_ctor_release(x_39, 2); + x_374 = x_39; +} else { + lean_dec_ref(x_39); + x_374 = lean_box(0); +} +x_375 = lean_ctor_get(x_36, 0); +x_376 = lean_ctor_get(x_36, 1); +x_377 = lean_ctor_get(x_36, 2); +x_378 = lean_nat_add(x_366, x_368); +lean_inc_ref(x_365); +if (lean_is_scalar(x_374)) { + x_379 = lean_alloc_ctor(0, 3, 0); +} else { + x_379 = x_374; +} +lean_ctor_set(x_379, 0, x_365); +lean_ctor_set(x_379, 1, x_378); +lean_ctor_set(x_379, 2, x_367); +x_380 = lean_nat_dec_lt(x_376, x_377); +if (x_380 == 0) +{ +lean_object* x_381; lean_object* x_382; +lean_dec(x_366); +lean_dec_ref(x_365); +lean_dec(x_359); +lean_dec_ref(x_358); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_381 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_381, 0, x_370); +lean_ctor_set(x_381, 1, x_357); +lean_ctor_set(x_26, 1, x_381); +lean_ctor_set(x_26, 0, x_379); +x_382 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_382, 0, x_9); +return x_382; +} +else +{ +lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; uint8_t x_389; +lean_inc(x_377); +lean_inc(x_376); +lean_inc_ref(x_375); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + lean_ctor_release(x_36, 1); + lean_ctor_release(x_36, 2); + x_383 = x_36; +} else { + lean_dec_ref(x_36); + x_383 = lean_box(0); +} +x_384 = lean_ctor_get(x_33, 0); +x_385 = lean_ctor_get(x_33, 1); +x_386 = lean_ctor_get(x_33, 2); +x_387 = lean_nat_add(x_376, x_368); +lean_inc_ref(x_375); +if (lean_is_scalar(x_383)) { + x_388 = lean_alloc_ctor(0, 3, 0); +} else { + x_388 = x_383; +} +lean_ctor_set(x_388, 0, x_375); +lean_ctor_set(x_388, 1, x_387); +lean_ctor_set(x_388, 2, x_377); +x_389 = lean_nat_dec_lt(x_385, x_386); +if (x_389 == 0) +{ +lean_object* x_390; lean_object* x_391; +lean_dec(x_376); +lean_dec_ref(x_375); +lean_dec(x_366); +lean_dec_ref(x_365); +lean_dec(x_359); +lean_dec_ref(x_358); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_390 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_390, 0, x_370); +lean_ctor_set(x_390, 1, x_357); +lean_ctor_set(x_26, 1, x_390); +lean_ctor_set(x_26, 0, x_379); +lean_ctor_set(x_25, 0, x_388); +x_391 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_391, 0, x_9); +return x_391; +} +else +{ +lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; uint8_t x_398; +lean_inc(x_386); +lean_inc(x_385); +lean_inc_ref(x_384); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_392 = x_33; +} else { + lean_dec_ref(x_33); + x_392 = lean_box(0); +} +x_393 = lean_ctor_get(x_30, 0); +x_394 = lean_ctor_get(x_30, 1); +x_395 = lean_ctor_get(x_30, 2); +x_396 = lean_nat_add(x_385, x_368); +lean_inc_ref(x_384); +if (lean_is_scalar(x_392)) { + x_397 = lean_alloc_ctor(0, 3, 0); +} else { + x_397 = x_392; +} +lean_ctor_set(x_397, 0, x_384); +lean_ctor_set(x_397, 1, x_396); +lean_ctor_set(x_397, 2, x_386); +x_398 = lean_nat_dec_lt(x_394, x_395); +if (x_398 == 0) +{ +lean_object* x_399; lean_object* x_400; +lean_dec(x_385); +lean_dec_ref(x_384); +lean_dec(x_376); +lean_dec_ref(x_375); +lean_dec(x_366); +lean_dec_ref(x_365); +lean_dec(x_359); +lean_dec_ref(x_358); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_399 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_399, 0, x_370); +lean_ctor_set(x_399, 1, x_357); +lean_ctor_set(x_26, 1, x_399); +lean_ctor_set(x_26, 0, x_379); +lean_ctor_set(x_25, 0, x_388); +lean_ctor_set(x_24, 0, x_397); +x_400 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_400, 0, x_9); +return x_400; +} +else +{ +lean_object* x_401; lean_object* x_402; lean_object* x_403; uint8_t x_404; uint8_t x_405; +lean_inc(x_395); +lean_inc(x_394); +lean_inc_ref(x_393); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_401 = x_30; +} else { + lean_dec_ref(x_30); + x_401 = lean_box(0); +} +x_402 = lean_array_fget(x_384, x_385); +lean_dec(x_385); +lean_dec_ref(x_384); +x_403 = lean_ctor_get(x_402, 1); +x_404 = lean_ctor_get_uint8(x_402, sizeof(void*)*2); +x_405 = lean_nat_dec_eq(x_403, x_1); +if (x_405 == 0) +{ +lean_object* x_406; lean_object* x_407; +lean_dec_ref(x_402); +lean_dec(x_401); +lean_dec_ref(x_397); +lean_dec(x_395); +lean_dec(x_394); +lean_dec_ref(x_393); +lean_dec_ref(x_388); +lean_dec_ref(x_379); +lean_dec(x_376); +lean_dec_ref(x_375); +lean_dec_ref(x_370); +lean_dec(x_366); +lean_dec_ref(x_365); +lean_dec(x_359); +lean_dec_ref(x_358); +lean_dec(x_357); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_406 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_407 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_406, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_407) == 0) +{ +lean_object* x_408; lean_object* x_409; +x_408 = lean_ctor_get(x_407, 0); +lean_inc(x_408); +if (lean_is_exclusive(x_407)) { + lean_ctor_release(x_407, 0); + x_409 = x_407; +} else { + lean_dec_ref(x_407); + x_409 = lean_box(0); +} +if (lean_obj_tag(x_408) == 0) +{ +lean_object* x_410; lean_object* x_411; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_410 = lean_ctor_get(x_408, 0); +lean_inc(x_410); +lean_dec_ref(x_408); +if (lean_is_scalar(x_409)) { + x_411 = lean_alloc_ctor(0, 1, 0); +} else { + x_411 = x_409; +} +lean_ctor_set(x_411, 0, x_410); +return x_411; +} +else +{ +lean_object* x_412; +lean_dec(x_409); +x_412 = lean_ctor_get(x_408, 0); +lean_inc(x_412); +lean_dec_ref(x_408); +x_16 = x_412; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_413; lean_object* x_414; lean_object* x_415; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_413 = lean_ctor_get(x_407, 0); +lean_inc(x_413); +if (lean_is_exclusive(x_407)) { + lean_ctor_release(x_407, 0); + x_414 = x_407; +} else { + lean_dec_ref(x_407); + x_414 = lean_box(0); +} +if (lean_is_scalar(x_414)) { + x_415 = lean_alloc_ctor(1, 1, 0); +} else { + x_415 = x_414; +} +lean_ctor_set(x_415, 0, x_413); +return x_415; +} +} +else +{ +lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; +x_416 = lean_array_fget(x_358, x_359); +lean_dec(x_359); +lean_dec_ref(x_358); +x_417 = lean_array_fget(x_365, x_366); +lean_dec(x_366); +lean_dec_ref(x_365); +x_418 = lean_array_fget(x_375, x_376); +lean_dec(x_376); +lean_dec_ref(x_375); +x_419 = lean_array_fget_borrowed(x_393, x_394); +x_420 = lean_box(x_3); +x_421 = lean_box(x_4); +x_422 = lean_box(x_404); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_419); +lean_inc(x_10); +lean_inc_ref(x_2); +x_423 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_423, 0, x_418); +lean_closure_set(x_423, 1, x_416); +lean_closure_set(x_423, 2, x_2); +lean_closure_set(x_423, 3, x_10); +lean_closure_set(x_423, 4, x_420); +lean_closure_set(x_423, 5, x_421); +lean_closure_set(x_423, 6, x_419); +lean_closure_set(x_423, 7, x_5); +lean_closure_set(x_423, 8, x_6); +lean_closure_set(x_423, 9, x_422); +lean_closure_set(x_423, 10, x_368); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_424 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_417, x_402, x_423, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_424) == 0) +{ +lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; +x_425 = lean_ctor_get(x_424, 0); +lean_inc(x_425); +lean_dec_ref(x_424); +x_426 = lean_nat_add(x_394, x_368); +lean_dec(x_394); +if (lean_is_scalar(x_401)) { + x_427 = lean_alloc_ctor(0, 3, 0); +} else { + x_427 = x_401; +} +lean_ctor_set(x_427, 0, x_393); +lean_ctor_set(x_427, 1, x_426); +lean_ctor_set(x_427, 2, x_395); +x_428 = lean_array_push(x_357, x_425); +x_429 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_429, 0, x_370); +lean_ctor_set(x_429, 1, x_428); +lean_ctor_set(x_26, 1, x_429); +lean_ctor_set(x_26, 0, x_379); +lean_ctor_set(x_25, 0, x_388); +lean_ctor_set(x_24, 0, x_397); +lean_ctor_set(x_9, 0, x_427); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_430; lean_object* x_431; lean_object* x_432; +lean_dec(x_401); +lean_dec_ref(x_397); +lean_dec(x_395); +lean_dec(x_394); +lean_dec_ref(x_393); +lean_dec_ref(x_388); +lean_dec_ref(x_379); +lean_dec_ref(x_370); +lean_dec(x_357); +lean_free_object(x_26); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_430 = lean_ctor_get(x_424, 0); +lean_inc(x_430); +if (lean_is_exclusive(x_424)) { + lean_ctor_release(x_424, 0); + x_431 = x_424; +} else { + lean_dec_ref(x_424); + x_431 = lean_box(0); +} +if (lean_is_scalar(x_431)) { + x_432 = lean_alloc_ctor(1, 1, 0); +} else { + x_432 = x_431; +} +lean_ctor_set(x_432, 0, x_430); +return x_432; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; uint8_t x_439; +x_433 = lean_ctor_get(x_26, 0); +lean_inc(x_433); +lean_dec(x_26); +x_434 = lean_ctor_get(x_27, 1); +lean_inc(x_434); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_435 = x_27; +} else { + lean_dec_ref(x_27); + x_435 = lean_box(0); +} +x_436 = lean_ctor_get(x_28, 0); +x_437 = lean_ctor_get(x_28, 1); +x_438 = lean_ctor_get(x_28, 2); +x_439 = lean_nat_dec_lt(x_437, x_438); +if (x_439 == 0) +{ +lean_object* x_440; lean_object* x_441; lean_object* x_442; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_435)) { + x_440 = lean_alloc_ctor(0, 2, 0); +} else { + x_440 = x_435; +} +lean_ctor_set(x_440, 0, x_28); +lean_ctor_set(x_440, 1, x_434); +x_441 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_441, 0, x_433); +lean_ctor_set(x_441, 1, x_440); +lean_ctor_set(x_25, 1, x_441); +x_442 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_442, 0, x_9); +return x_442; +} +else +{ +lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; uint8_t x_450; +lean_inc(x_438); +lean_inc(x_437); +lean_inc_ref(x_436); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + lean_ctor_release(x_28, 2); + x_443 = x_28; +} else { + lean_dec_ref(x_28); + x_443 = lean_box(0); +} +x_444 = lean_ctor_get(x_433, 0); +x_445 = lean_ctor_get(x_433, 1); +x_446 = lean_ctor_get(x_433, 2); +x_447 = lean_unsigned_to_nat(1u); +x_448 = lean_nat_add(x_437, x_447); +lean_inc_ref(x_436); +if (lean_is_scalar(x_443)) { + x_449 = lean_alloc_ctor(0, 3, 0); +} else { + x_449 = x_443; +} +lean_ctor_set(x_449, 0, x_436); +lean_ctor_set(x_449, 1, x_448); +lean_ctor_set(x_449, 2, x_438); +x_450 = lean_nat_dec_lt(x_445, x_446); +if (x_450 == 0) +{ +lean_object* x_451; lean_object* x_452; lean_object* x_453; +lean_dec(x_437); +lean_dec_ref(x_436); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_435)) { + x_451 = lean_alloc_ctor(0, 2, 0); +} else { + x_451 = x_435; +} +lean_ctor_set(x_451, 0, x_449); +lean_ctor_set(x_451, 1, x_434); +x_452 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_452, 0, x_433); +lean_ctor_set(x_452, 1, x_451); +lean_ctor_set(x_25, 1, x_452); +x_453 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_453, 0, x_9); +return x_453; +} +else +{ +lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; uint8_t x_460; +lean_inc(x_446); +lean_inc(x_445); +lean_inc_ref(x_444); +if (lean_is_exclusive(x_433)) { + lean_ctor_release(x_433, 0); + lean_ctor_release(x_433, 1); + lean_ctor_release(x_433, 2); + x_454 = x_433; +} else { + lean_dec_ref(x_433); + x_454 = lean_box(0); +} +x_455 = lean_ctor_get(x_36, 0); +x_456 = lean_ctor_get(x_36, 1); +x_457 = lean_ctor_get(x_36, 2); +x_458 = lean_nat_add(x_445, x_447); +lean_inc_ref(x_444); +if (lean_is_scalar(x_454)) { + x_459 = lean_alloc_ctor(0, 3, 0); +} else { + x_459 = x_454; +} +lean_ctor_set(x_459, 0, x_444); +lean_ctor_set(x_459, 1, x_458); +lean_ctor_set(x_459, 2, x_446); +x_460 = lean_nat_dec_lt(x_456, x_457); +if (x_460 == 0) +{ +lean_object* x_461; lean_object* x_462; lean_object* x_463; +lean_dec(x_445); +lean_dec_ref(x_444); +lean_dec(x_437); +lean_dec_ref(x_436); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_435)) { + x_461 = lean_alloc_ctor(0, 2, 0); +} else { + x_461 = x_435; +} +lean_ctor_set(x_461, 0, x_449); +lean_ctor_set(x_461, 1, x_434); +x_462 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_462, 0, x_459); +lean_ctor_set(x_462, 1, x_461); +lean_ctor_set(x_25, 1, x_462); +x_463 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_463, 0, x_9); +return x_463; +} +else +{ +lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; uint8_t x_470; +lean_inc(x_457); +lean_inc(x_456); +lean_inc_ref(x_455); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + lean_ctor_release(x_36, 1); + lean_ctor_release(x_36, 2); + x_464 = x_36; +} else { + lean_dec_ref(x_36); + x_464 = lean_box(0); +} +x_465 = lean_ctor_get(x_33, 0); +x_466 = lean_ctor_get(x_33, 1); +x_467 = lean_ctor_get(x_33, 2); +x_468 = lean_nat_add(x_456, x_447); +lean_inc_ref(x_455); +if (lean_is_scalar(x_464)) { + x_469 = lean_alloc_ctor(0, 3, 0); +} else { + x_469 = x_464; +} +lean_ctor_set(x_469, 0, x_455); +lean_ctor_set(x_469, 1, x_468); +lean_ctor_set(x_469, 2, x_457); +x_470 = lean_nat_dec_lt(x_466, x_467); +if (x_470 == 0) +{ +lean_object* x_471; lean_object* x_472; lean_object* x_473; +lean_dec(x_456); +lean_dec_ref(x_455); +lean_dec(x_445); +lean_dec_ref(x_444); +lean_dec(x_437); +lean_dec_ref(x_436); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_435)) { + x_471 = lean_alloc_ctor(0, 2, 0); +} else { + x_471 = x_435; +} +lean_ctor_set(x_471, 0, x_449); +lean_ctor_set(x_471, 1, x_434); +x_472 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_472, 0, x_459); +lean_ctor_set(x_472, 1, x_471); +lean_ctor_set(x_25, 1, x_472); +lean_ctor_set(x_25, 0, x_469); +x_473 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_473, 0, x_9); +return x_473; +} +else +{ +lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; uint8_t x_480; +lean_inc(x_467); +lean_inc(x_466); +lean_inc_ref(x_465); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_474 = x_33; +} else { + lean_dec_ref(x_33); + x_474 = lean_box(0); +} +x_475 = lean_ctor_get(x_30, 0); +x_476 = lean_ctor_get(x_30, 1); +x_477 = lean_ctor_get(x_30, 2); +x_478 = lean_nat_add(x_466, x_447); +lean_inc_ref(x_465); +if (lean_is_scalar(x_474)) { + x_479 = lean_alloc_ctor(0, 3, 0); +} else { + x_479 = x_474; +} +lean_ctor_set(x_479, 0, x_465); +lean_ctor_set(x_479, 1, x_478); +lean_ctor_set(x_479, 2, x_467); +x_480 = lean_nat_dec_lt(x_476, x_477); +if (x_480 == 0) +{ +lean_object* x_481; lean_object* x_482; lean_object* x_483; +lean_dec(x_466); +lean_dec_ref(x_465); +lean_dec(x_456); +lean_dec_ref(x_455); +lean_dec(x_445); +lean_dec_ref(x_444); +lean_dec(x_437); +lean_dec_ref(x_436); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_435)) { + x_481 = lean_alloc_ctor(0, 2, 0); +} else { + x_481 = x_435; +} +lean_ctor_set(x_481, 0, x_449); +lean_ctor_set(x_481, 1, x_434); +x_482 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_482, 0, x_459); +lean_ctor_set(x_482, 1, x_481); +lean_ctor_set(x_25, 1, x_482); +lean_ctor_set(x_25, 0, x_469); +lean_ctor_set(x_24, 0, x_479); +x_483 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_483, 0, x_9); +return x_483; +} +else +{ +lean_object* x_484; lean_object* x_485; lean_object* x_486; uint8_t x_487; uint8_t x_488; +lean_inc(x_477); +lean_inc(x_476); +lean_inc_ref(x_475); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_484 = x_30; +} else { + lean_dec_ref(x_30); + x_484 = lean_box(0); +} +x_485 = lean_array_fget(x_465, x_466); +lean_dec(x_466); +lean_dec_ref(x_465); +x_486 = lean_ctor_get(x_485, 1); +x_487 = lean_ctor_get_uint8(x_485, sizeof(void*)*2); +x_488 = lean_nat_dec_eq(x_486, x_1); +if (x_488 == 0) +{ +lean_object* x_489; lean_object* x_490; +lean_dec_ref(x_485); +lean_dec(x_484); +lean_dec_ref(x_479); +lean_dec(x_477); +lean_dec(x_476); +lean_dec_ref(x_475); +lean_dec_ref(x_469); +lean_dec_ref(x_459); +lean_dec(x_456); +lean_dec_ref(x_455); +lean_dec_ref(x_449); +lean_dec(x_445); +lean_dec_ref(x_444); +lean_dec(x_437); +lean_dec_ref(x_436); +lean_dec(x_435); +lean_dec(x_434); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +x_489 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_490 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_489, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_490) == 0) +{ +lean_object* x_491; lean_object* x_492; +x_491 = lean_ctor_get(x_490, 0); +lean_inc(x_491); +if (lean_is_exclusive(x_490)) { + lean_ctor_release(x_490, 0); + x_492 = x_490; +} else { + lean_dec_ref(x_490); + x_492 = lean_box(0); +} +if (lean_obj_tag(x_491) == 0) +{ +lean_object* x_493; lean_object* x_494; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_493 = lean_ctor_get(x_491, 0); +lean_inc(x_493); +lean_dec_ref(x_491); +if (lean_is_scalar(x_492)) { + x_494 = lean_alloc_ctor(0, 1, 0); +} else { + x_494 = x_492; +} +lean_ctor_set(x_494, 0, x_493); +return x_494; +} +else +{ +lean_object* x_495; +lean_dec(x_492); +x_495 = lean_ctor_get(x_491, 0); +lean_inc(x_495); +lean_dec_ref(x_491); +x_16 = x_495; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_496; lean_object* x_497; lean_object* x_498; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_496 = lean_ctor_get(x_490, 0); +lean_inc(x_496); +if (lean_is_exclusive(x_490)) { + lean_ctor_release(x_490, 0); + x_497 = x_490; +} else { + lean_dec_ref(x_490); + x_497 = lean_box(0); +} +if (lean_is_scalar(x_497)) { + x_498 = lean_alloc_ctor(1, 1, 0); +} else { + x_498 = x_497; +} +lean_ctor_set(x_498, 0, x_496); +return x_498; +} +} +else +{ +lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; +x_499 = lean_array_fget(x_436, x_437); +lean_dec(x_437); +lean_dec_ref(x_436); +x_500 = lean_array_fget(x_444, x_445); +lean_dec(x_445); +lean_dec_ref(x_444); +x_501 = lean_array_fget(x_455, x_456); +lean_dec(x_456); +lean_dec_ref(x_455); +x_502 = lean_array_fget_borrowed(x_475, x_476); +x_503 = lean_box(x_3); +x_504 = lean_box(x_4); +x_505 = lean_box(x_487); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_502); +lean_inc(x_10); +lean_inc_ref(x_2); +x_506 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_506, 0, x_501); +lean_closure_set(x_506, 1, x_499); +lean_closure_set(x_506, 2, x_2); +lean_closure_set(x_506, 3, x_10); +lean_closure_set(x_506, 4, x_503); +lean_closure_set(x_506, 5, x_504); +lean_closure_set(x_506, 6, x_502); +lean_closure_set(x_506, 7, x_5); +lean_closure_set(x_506, 8, x_6); +lean_closure_set(x_506, 9, x_505); +lean_closure_set(x_506, 10, x_447); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_507 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_500, x_485, x_506, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_507) == 0) +{ +lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; +x_508 = lean_ctor_get(x_507, 0); +lean_inc(x_508); +lean_dec_ref(x_507); +x_509 = lean_nat_add(x_476, x_447); +lean_dec(x_476); +if (lean_is_scalar(x_484)) { + x_510 = lean_alloc_ctor(0, 3, 0); +} else { + x_510 = x_484; +} +lean_ctor_set(x_510, 0, x_475); +lean_ctor_set(x_510, 1, x_509); +lean_ctor_set(x_510, 2, x_477); +x_511 = lean_array_push(x_434, x_508); +if (lean_is_scalar(x_435)) { + x_512 = lean_alloc_ctor(0, 2, 0); +} else { + x_512 = x_435; +} +lean_ctor_set(x_512, 0, x_449); +lean_ctor_set(x_512, 1, x_511); +x_513 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_513, 0, x_459); +lean_ctor_set(x_513, 1, x_512); +lean_ctor_set(x_25, 1, x_513); +lean_ctor_set(x_25, 0, x_469); +lean_ctor_set(x_24, 0, x_479); +lean_ctor_set(x_9, 0, x_510); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_514; lean_object* x_515; lean_object* x_516; +lean_dec(x_484); +lean_dec_ref(x_479); +lean_dec(x_477); +lean_dec(x_476); +lean_dec_ref(x_475); +lean_dec_ref(x_469); +lean_dec_ref(x_459); +lean_dec_ref(x_449); +lean_dec(x_435); +lean_dec(x_434); +lean_free_object(x_25); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_514 = lean_ctor_get(x_507, 0); +lean_inc(x_514); +if (lean_is_exclusive(x_507)) { + lean_ctor_release(x_507, 0); + x_515 = x_507; +} else { + lean_dec_ref(x_507); + x_515 = lean_box(0); +} +if (lean_is_scalar(x_515)) { + x_516 = lean_alloc_ctor(1, 1, 0); +} else { + x_516 = x_515; +} +lean_ctor_set(x_516, 0, x_514); +return x_516; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; uint8_t x_525; +x_517 = lean_ctor_get(x_25, 0); +lean_inc(x_517); +lean_dec(x_25); +x_518 = lean_ctor_get(x_26, 0); +lean_inc(x_518); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_519 = x_26; +} else { + lean_dec_ref(x_26); + x_519 = lean_box(0); +} +x_520 = lean_ctor_get(x_27, 1); +lean_inc(x_520); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_521 = x_27; +} else { + lean_dec_ref(x_27); + x_521 = lean_box(0); +} +x_522 = lean_ctor_get(x_28, 0); +x_523 = lean_ctor_get(x_28, 1); +x_524 = lean_ctor_get(x_28, 2); +x_525 = lean_nat_dec_lt(x_523, x_524); +if (x_525 == 0) +{ +lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_521)) { + x_526 = lean_alloc_ctor(0, 2, 0); +} else { + x_526 = x_521; +} +lean_ctor_set(x_526, 0, x_28); +lean_ctor_set(x_526, 1, x_520); +if (lean_is_scalar(x_519)) { + x_527 = lean_alloc_ctor(0, 2, 0); +} else { + x_527 = x_519; +} +lean_ctor_set(x_527, 0, x_518); +lean_ctor_set(x_527, 1, x_526); +x_528 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_528, 0, x_517); +lean_ctor_set(x_528, 1, x_527); +lean_ctor_set(x_24, 1, x_528); +x_529 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_529, 0, x_9); +return x_529; +} +else +{ +lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; uint8_t x_537; +lean_inc(x_524); +lean_inc(x_523); +lean_inc_ref(x_522); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + lean_ctor_release(x_28, 2); + x_530 = x_28; +} else { + lean_dec_ref(x_28); + x_530 = lean_box(0); +} +x_531 = lean_ctor_get(x_518, 0); +x_532 = lean_ctor_get(x_518, 1); +x_533 = lean_ctor_get(x_518, 2); +x_534 = lean_unsigned_to_nat(1u); +x_535 = lean_nat_add(x_523, x_534); +lean_inc_ref(x_522); +if (lean_is_scalar(x_530)) { + x_536 = lean_alloc_ctor(0, 3, 0); +} else { + x_536 = x_530; +} +lean_ctor_set(x_536, 0, x_522); +lean_ctor_set(x_536, 1, x_535); +lean_ctor_set(x_536, 2, x_524); +x_537 = lean_nat_dec_lt(x_532, x_533); +if (x_537 == 0) +{ +lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; +lean_dec(x_523); +lean_dec_ref(x_522); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_521)) { + x_538 = lean_alloc_ctor(0, 2, 0); +} else { + x_538 = x_521; +} +lean_ctor_set(x_538, 0, x_536); +lean_ctor_set(x_538, 1, x_520); +if (lean_is_scalar(x_519)) { + x_539 = lean_alloc_ctor(0, 2, 0); +} else { + x_539 = x_519; +} +lean_ctor_set(x_539, 0, x_518); +lean_ctor_set(x_539, 1, x_538); +x_540 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_540, 0, x_517); +lean_ctor_set(x_540, 1, x_539); +lean_ctor_set(x_24, 1, x_540); +x_541 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_541, 0, x_9); +return x_541; +} +else +{ +lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; uint8_t x_548; +lean_inc(x_533); +lean_inc(x_532); +lean_inc_ref(x_531); +if (lean_is_exclusive(x_518)) { + lean_ctor_release(x_518, 0); + lean_ctor_release(x_518, 1); + lean_ctor_release(x_518, 2); + x_542 = x_518; +} else { + lean_dec_ref(x_518); + x_542 = lean_box(0); +} +x_543 = lean_ctor_get(x_517, 0); +x_544 = lean_ctor_get(x_517, 1); +x_545 = lean_ctor_get(x_517, 2); +x_546 = lean_nat_add(x_532, x_534); +lean_inc_ref(x_531); +if (lean_is_scalar(x_542)) { + x_547 = lean_alloc_ctor(0, 3, 0); +} else { + x_547 = x_542; +} +lean_ctor_set(x_547, 0, x_531); +lean_ctor_set(x_547, 1, x_546); +lean_ctor_set(x_547, 2, x_533); +x_548 = lean_nat_dec_lt(x_544, x_545); +if (x_548 == 0) +{ +lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; +lean_dec(x_532); +lean_dec_ref(x_531); +lean_dec(x_523); +lean_dec_ref(x_522); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_521)) { + x_549 = lean_alloc_ctor(0, 2, 0); +} else { + x_549 = x_521; +} +lean_ctor_set(x_549, 0, x_536); +lean_ctor_set(x_549, 1, x_520); +if (lean_is_scalar(x_519)) { + x_550 = lean_alloc_ctor(0, 2, 0); +} else { + x_550 = x_519; +} +lean_ctor_set(x_550, 0, x_547); +lean_ctor_set(x_550, 1, x_549); +x_551 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_551, 0, x_517); +lean_ctor_set(x_551, 1, x_550); +lean_ctor_set(x_24, 1, x_551); +x_552 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_552, 0, x_9); +return x_552; +} +else +{ +lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; uint8_t x_559; +lean_inc(x_545); +lean_inc(x_544); +lean_inc_ref(x_543); +if (lean_is_exclusive(x_517)) { + lean_ctor_release(x_517, 0); + lean_ctor_release(x_517, 1); + lean_ctor_release(x_517, 2); + x_553 = x_517; +} else { + lean_dec_ref(x_517); + x_553 = lean_box(0); +} +x_554 = lean_ctor_get(x_33, 0); +x_555 = lean_ctor_get(x_33, 1); +x_556 = lean_ctor_get(x_33, 2); +x_557 = lean_nat_add(x_544, x_534); +lean_inc_ref(x_543); +if (lean_is_scalar(x_553)) { + x_558 = lean_alloc_ctor(0, 3, 0); +} else { + x_558 = x_553; +} +lean_ctor_set(x_558, 0, x_543); +lean_ctor_set(x_558, 1, x_557); +lean_ctor_set(x_558, 2, x_545); +x_559 = lean_nat_dec_lt(x_555, x_556); +if (x_559 == 0) +{ +lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; +lean_dec(x_544); +lean_dec_ref(x_543); +lean_dec(x_532); +lean_dec_ref(x_531); +lean_dec(x_523); +lean_dec_ref(x_522); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_521)) { + x_560 = lean_alloc_ctor(0, 2, 0); +} else { + x_560 = x_521; +} +lean_ctor_set(x_560, 0, x_536); +lean_ctor_set(x_560, 1, x_520); +if (lean_is_scalar(x_519)) { + x_561 = lean_alloc_ctor(0, 2, 0); +} else { + x_561 = x_519; +} +lean_ctor_set(x_561, 0, x_547); +lean_ctor_set(x_561, 1, x_560); +x_562 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_562, 0, x_558); +lean_ctor_set(x_562, 1, x_561); +lean_ctor_set(x_24, 1, x_562); +x_563 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_563, 0, x_9); +return x_563; +} +else +{ +lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; uint8_t x_570; +lean_inc(x_556); +lean_inc(x_555); +lean_inc_ref(x_554); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_564 = x_33; +} else { + lean_dec_ref(x_33); + x_564 = lean_box(0); +} +x_565 = lean_ctor_get(x_30, 0); +x_566 = lean_ctor_get(x_30, 1); +x_567 = lean_ctor_get(x_30, 2); +x_568 = lean_nat_add(x_555, x_534); +lean_inc_ref(x_554); +if (lean_is_scalar(x_564)) { + x_569 = lean_alloc_ctor(0, 3, 0); +} else { + x_569 = x_564; +} +lean_ctor_set(x_569, 0, x_554); +lean_ctor_set(x_569, 1, x_568); +lean_ctor_set(x_569, 2, x_556); +x_570 = lean_nat_dec_lt(x_566, x_567); +if (x_570 == 0) +{ +lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; +lean_dec(x_555); +lean_dec_ref(x_554); +lean_dec(x_544); +lean_dec_ref(x_543); +lean_dec(x_532); +lean_dec_ref(x_531); +lean_dec(x_523); +lean_dec_ref(x_522); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_521)) { + x_571 = lean_alloc_ctor(0, 2, 0); +} else { + x_571 = x_521; +} +lean_ctor_set(x_571, 0, x_536); +lean_ctor_set(x_571, 1, x_520); +if (lean_is_scalar(x_519)) { + x_572 = lean_alloc_ctor(0, 2, 0); +} else { + x_572 = x_519; +} +lean_ctor_set(x_572, 0, x_547); +lean_ctor_set(x_572, 1, x_571); +x_573 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_573, 0, x_558); +lean_ctor_set(x_573, 1, x_572); +lean_ctor_set(x_24, 1, x_573); +lean_ctor_set(x_24, 0, x_569); +x_574 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_574, 0, x_9); +return x_574; +} +else +{ +lean_object* x_575; lean_object* x_576; lean_object* x_577; uint8_t x_578; uint8_t x_579; +lean_inc(x_567); +lean_inc(x_566); +lean_inc_ref(x_565); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_575 = x_30; +} else { + lean_dec_ref(x_30); + x_575 = lean_box(0); +} +x_576 = lean_array_fget(x_554, x_555); +lean_dec(x_555); +lean_dec_ref(x_554); +x_577 = lean_ctor_get(x_576, 1); +x_578 = lean_ctor_get_uint8(x_576, sizeof(void*)*2); +x_579 = lean_nat_dec_eq(x_577, x_1); +if (x_579 == 0) +{ +lean_object* x_580; lean_object* x_581; +lean_dec_ref(x_576); +lean_dec(x_575); +lean_dec_ref(x_569); +lean_dec(x_567); +lean_dec(x_566); +lean_dec_ref(x_565); +lean_dec_ref(x_558); +lean_dec_ref(x_547); +lean_dec(x_544); +lean_dec_ref(x_543); +lean_dec_ref(x_536); +lean_dec(x_532); +lean_dec_ref(x_531); +lean_dec(x_523); +lean_dec_ref(x_522); +lean_dec(x_521); +lean_dec(x_520); +lean_dec(x_519); +lean_free_object(x_24); +lean_free_object(x_9); +x_580 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_581 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_580, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_581) == 0) +{ +lean_object* x_582; lean_object* x_583; +x_582 = lean_ctor_get(x_581, 0); +lean_inc(x_582); +if (lean_is_exclusive(x_581)) { + lean_ctor_release(x_581, 0); + x_583 = x_581; +} else { + lean_dec_ref(x_581); + x_583 = lean_box(0); +} +if (lean_obj_tag(x_582) == 0) +{ +lean_object* x_584; lean_object* x_585; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_584 = lean_ctor_get(x_582, 0); +lean_inc(x_584); +lean_dec_ref(x_582); +if (lean_is_scalar(x_583)) { + x_585 = lean_alloc_ctor(0, 1, 0); +} else { + x_585 = x_583; +} +lean_ctor_set(x_585, 0, x_584); +return x_585; +} +else +{ +lean_object* x_586; +lean_dec(x_583); +x_586 = lean_ctor_get(x_582, 0); +lean_inc(x_586); +lean_dec_ref(x_582); +x_16 = x_586; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_587; lean_object* x_588; lean_object* x_589; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_587 = lean_ctor_get(x_581, 0); +lean_inc(x_587); +if (lean_is_exclusive(x_581)) { + lean_ctor_release(x_581, 0); + x_588 = x_581; +} else { + lean_dec_ref(x_581); + x_588 = lean_box(0); +} +if (lean_is_scalar(x_588)) { + x_589 = lean_alloc_ctor(1, 1, 0); +} else { + x_589 = x_588; +} +lean_ctor_set(x_589, 0, x_587); +return x_589; +} +} +else +{ +lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; +x_590 = lean_array_fget(x_522, x_523); +lean_dec(x_523); +lean_dec_ref(x_522); +x_591 = lean_array_fget(x_531, x_532); +lean_dec(x_532); +lean_dec_ref(x_531); +x_592 = lean_array_fget(x_543, x_544); +lean_dec(x_544); +lean_dec_ref(x_543); +x_593 = lean_array_fget_borrowed(x_565, x_566); +x_594 = lean_box(x_3); +x_595 = lean_box(x_4); +x_596 = lean_box(x_578); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_593); +lean_inc(x_10); +lean_inc_ref(x_2); +x_597 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_597, 0, x_592); +lean_closure_set(x_597, 1, x_590); +lean_closure_set(x_597, 2, x_2); +lean_closure_set(x_597, 3, x_10); +lean_closure_set(x_597, 4, x_594); +lean_closure_set(x_597, 5, x_595); +lean_closure_set(x_597, 6, x_593); +lean_closure_set(x_597, 7, x_5); +lean_closure_set(x_597, 8, x_6); +lean_closure_set(x_597, 9, x_596); +lean_closure_set(x_597, 10, x_534); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_598 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_591, x_576, x_597, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_598) == 0) +{ +lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; +x_599 = lean_ctor_get(x_598, 0); +lean_inc(x_599); +lean_dec_ref(x_598); +x_600 = lean_nat_add(x_566, x_534); +lean_dec(x_566); +if (lean_is_scalar(x_575)) { + x_601 = lean_alloc_ctor(0, 3, 0); +} else { + x_601 = x_575; +} +lean_ctor_set(x_601, 0, x_565); +lean_ctor_set(x_601, 1, x_600); +lean_ctor_set(x_601, 2, x_567); +x_602 = lean_array_push(x_520, x_599); +if (lean_is_scalar(x_521)) { + x_603 = lean_alloc_ctor(0, 2, 0); +} else { + x_603 = x_521; +} +lean_ctor_set(x_603, 0, x_536); +lean_ctor_set(x_603, 1, x_602); +if (lean_is_scalar(x_519)) { + x_604 = lean_alloc_ctor(0, 2, 0); +} else { + x_604 = x_519; +} +lean_ctor_set(x_604, 0, x_547); +lean_ctor_set(x_604, 1, x_603); +x_605 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_605, 0, x_558); +lean_ctor_set(x_605, 1, x_604); +lean_ctor_set(x_24, 1, x_605); +lean_ctor_set(x_24, 0, x_569); +lean_ctor_set(x_9, 0, x_601); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_606; lean_object* x_607; lean_object* x_608; +lean_dec(x_575); +lean_dec_ref(x_569); +lean_dec(x_567); +lean_dec(x_566); +lean_dec_ref(x_565); +lean_dec_ref(x_558); +lean_dec_ref(x_547); +lean_dec_ref(x_536); +lean_dec(x_521); +lean_dec(x_520); +lean_dec(x_519); +lean_free_object(x_24); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_606 = lean_ctor_get(x_598, 0); +lean_inc(x_606); +if (lean_is_exclusive(x_598)) { + lean_ctor_release(x_598, 0); + x_607 = x_598; +} else { + lean_dec_ref(x_598); + x_607 = lean_box(0); +} +if (lean_is_scalar(x_607)) { + x_608 = lean_alloc_ctor(1, 1, 0); +} else { + x_608 = x_607; +} +lean_ctor_set(x_608, 0, x_606); +return x_608; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; uint8_t x_619; +x_609 = lean_ctor_get(x_24, 0); +lean_inc(x_609); +lean_dec(x_24); +x_610 = lean_ctor_get(x_25, 0); +lean_inc(x_610); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + x_611 = x_25; +} else { + lean_dec_ref(x_25); + x_611 = lean_box(0); +} +x_612 = lean_ctor_get(x_26, 0); +lean_inc(x_612); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_613 = x_26; +} else { + lean_dec_ref(x_26); + x_613 = lean_box(0); +} +x_614 = lean_ctor_get(x_27, 1); +lean_inc(x_614); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_615 = x_27; +} else { + lean_dec_ref(x_27); + x_615 = lean_box(0); +} +x_616 = lean_ctor_get(x_28, 0); +x_617 = lean_ctor_get(x_28, 1); +x_618 = lean_ctor_get(x_28, 2); +x_619 = lean_nat_dec_lt(x_617, x_618); +if (x_619 == 0) +{ +lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_615)) { + x_620 = lean_alloc_ctor(0, 2, 0); +} else { + x_620 = x_615; +} +lean_ctor_set(x_620, 0, x_28); +lean_ctor_set(x_620, 1, x_614); +if (lean_is_scalar(x_613)) { + x_621 = lean_alloc_ctor(0, 2, 0); +} else { + x_621 = x_613; +} +lean_ctor_set(x_621, 0, x_612); +lean_ctor_set(x_621, 1, x_620); +if (lean_is_scalar(x_611)) { + x_622 = lean_alloc_ctor(0, 2, 0); +} else { + x_622 = x_611; +} +lean_ctor_set(x_622, 0, x_610); +lean_ctor_set(x_622, 1, x_621); +x_623 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_623, 0, x_609); +lean_ctor_set(x_623, 1, x_622); +lean_ctor_set(x_9, 1, x_623); +x_624 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_624, 0, x_9); +return x_624; +} +else +{ +lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; uint8_t x_632; +lean_inc(x_618); +lean_inc(x_617); +lean_inc_ref(x_616); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + lean_ctor_release(x_28, 2); + x_625 = x_28; +} else { + lean_dec_ref(x_28); + x_625 = lean_box(0); +} +x_626 = lean_ctor_get(x_612, 0); +x_627 = lean_ctor_get(x_612, 1); +x_628 = lean_ctor_get(x_612, 2); +x_629 = lean_unsigned_to_nat(1u); +x_630 = lean_nat_add(x_617, x_629); +lean_inc_ref(x_616); +if (lean_is_scalar(x_625)) { + x_631 = lean_alloc_ctor(0, 3, 0); +} else { + x_631 = x_625; +} +lean_ctor_set(x_631, 0, x_616); +lean_ctor_set(x_631, 1, x_630); +lean_ctor_set(x_631, 2, x_618); +x_632 = lean_nat_dec_lt(x_627, x_628); +if (x_632 == 0) +{ +lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; +lean_dec(x_617); +lean_dec_ref(x_616); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_615)) { + x_633 = lean_alloc_ctor(0, 2, 0); +} else { + x_633 = x_615; +} +lean_ctor_set(x_633, 0, x_631); +lean_ctor_set(x_633, 1, x_614); +if (lean_is_scalar(x_613)) { + x_634 = lean_alloc_ctor(0, 2, 0); +} else { + x_634 = x_613; +} +lean_ctor_set(x_634, 0, x_612); +lean_ctor_set(x_634, 1, x_633); +if (lean_is_scalar(x_611)) { + x_635 = lean_alloc_ctor(0, 2, 0); +} else { + x_635 = x_611; +} +lean_ctor_set(x_635, 0, x_610); +lean_ctor_set(x_635, 1, x_634); +x_636 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_636, 0, x_609); +lean_ctor_set(x_636, 1, x_635); +lean_ctor_set(x_9, 1, x_636); +x_637 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_637, 0, x_9); +return x_637; +} +else +{ +lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; uint8_t x_644; +lean_inc(x_628); +lean_inc(x_627); +lean_inc_ref(x_626); +if (lean_is_exclusive(x_612)) { + lean_ctor_release(x_612, 0); + lean_ctor_release(x_612, 1); + lean_ctor_release(x_612, 2); + x_638 = x_612; +} else { + lean_dec_ref(x_612); + x_638 = lean_box(0); +} +x_639 = lean_ctor_get(x_610, 0); +x_640 = lean_ctor_get(x_610, 1); +x_641 = lean_ctor_get(x_610, 2); +x_642 = lean_nat_add(x_627, x_629); +lean_inc_ref(x_626); +if (lean_is_scalar(x_638)) { + x_643 = lean_alloc_ctor(0, 3, 0); +} else { + x_643 = x_638; +} +lean_ctor_set(x_643, 0, x_626); +lean_ctor_set(x_643, 1, x_642); +lean_ctor_set(x_643, 2, x_628); +x_644 = lean_nat_dec_lt(x_640, x_641); +if (x_644 == 0) +{ +lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; +lean_dec(x_627); +lean_dec_ref(x_626); +lean_dec(x_617); +lean_dec_ref(x_616); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_615)) { + x_645 = lean_alloc_ctor(0, 2, 0); +} else { + x_645 = x_615; +} +lean_ctor_set(x_645, 0, x_631); +lean_ctor_set(x_645, 1, x_614); +if (lean_is_scalar(x_613)) { + x_646 = lean_alloc_ctor(0, 2, 0); +} else { + x_646 = x_613; +} +lean_ctor_set(x_646, 0, x_643); +lean_ctor_set(x_646, 1, x_645); +if (lean_is_scalar(x_611)) { + x_647 = lean_alloc_ctor(0, 2, 0); +} else { + x_647 = x_611; +} +lean_ctor_set(x_647, 0, x_610); +lean_ctor_set(x_647, 1, x_646); +x_648 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_648, 0, x_609); +lean_ctor_set(x_648, 1, x_647); +lean_ctor_set(x_9, 1, x_648); +x_649 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_649, 0, x_9); +return x_649; +} +else +{ +lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; uint8_t x_656; +lean_inc(x_641); +lean_inc(x_640); +lean_inc_ref(x_639); +if (lean_is_exclusive(x_610)) { + lean_ctor_release(x_610, 0); + lean_ctor_release(x_610, 1); + lean_ctor_release(x_610, 2); + x_650 = x_610; +} else { + lean_dec_ref(x_610); + x_650 = lean_box(0); +} +x_651 = lean_ctor_get(x_609, 0); +x_652 = lean_ctor_get(x_609, 1); +x_653 = lean_ctor_get(x_609, 2); +x_654 = lean_nat_add(x_640, x_629); +lean_inc_ref(x_639); +if (lean_is_scalar(x_650)) { + x_655 = lean_alloc_ctor(0, 3, 0); +} else { + x_655 = x_650; +} +lean_ctor_set(x_655, 0, x_639); +lean_ctor_set(x_655, 1, x_654); +lean_ctor_set(x_655, 2, x_641); +x_656 = lean_nat_dec_lt(x_652, x_653); +if (x_656 == 0) +{ +lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; +lean_dec(x_640); +lean_dec_ref(x_639); +lean_dec(x_627); +lean_dec_ref(x_626); +lean_dec(x_617); +lean_dec_ref(x_616); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_615)) { + x_657 = lean_alloc_ctor(0, 2, 0); +} else { + x_657 = x_615; +} +lean_ctor_set(x_657, 0, x_631); +lean_ctor_set(x_657, 1, x_614); +if (lean_is_scalar(x_613)) { + x_658 = lean_alloc_ctor(0, 2, 0); +} else { + x_658 = x_613; +} +lean_ctor_set(x_658, 0, x_643); +lean_ctor_set(x_658, 1, x_657); +if (lean_is_scalar(x_611)) { + x_659 = lean_alloc_ctor(0, 2, 0); +} else { + x_659 = x_611; +} +lean_ctor_set(x_659, 0, x_655); +lean_ctor_set(x_659, 1, x_658); +x_660 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_660, 0, x_609); +lean_ctor_set(x_660, 1, x_659); +lean_ctor_set(x_9, 1, x_660); +x_661 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_661, 0, x_9); +return x_661; +} +else +{ +lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; uint8_t x_668; +lean_inc(x_653); +lean_inc(x_652); +lean_inc_ref(x_651); +if (lean_is_exclusive(x_609)) { + lean_ctor_release(x_609, 0); + lean_ctor_release(x_609, 1); + lean_ctor_release(x_609, 2); + x_662 = x_609; +} else { + lean_dec_ref(x_609); + x_662 = lean_box(0); +} +x_663 = lean_ctor_get(x_30, 0); +x_664 = lean_ctor_get(x_30, 1); +x_665 = lean_ctor_get(x_30, 2); +x_666 = lean_nat_add(x_652, x_629); +lean_inc_ref(x_651); +if (lean_is_scalar(x_662)) { + x_667 = lean_alloc_ctor(0, 3, 0); +} else { + x_667 = x_662; +} +lean_ctor_set(x_667, 0, x_651); +lean_ctor_set(x_667, 1, x_666); +lean_ctor_set(x_667, 2, x_653); +x_668 = lean_nat_dec_lt(x_664, x_665); +if (x_668 == 0) +{ +lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; +lean_dec(x_652); +lean_dec_ref(x_651); +lean_dec(x_640); +lean_dec_ref(x_639); +lean_dec(x_627); +lean_dec_ref(x_626); +lean_dec(x_617); +lean_dec_ref(x_616); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_615)) { + x_669 = lean_alloc_ctor(0, 2, 0); +} else { + x_669 = x_615; +} +lean_ctor_set(x_669, 0, x_631); +lean_ctor_set(x_669, 1, x_614); +if (lean_is_scalar(x_613)) { + x_670 = lean_alloc_ctor(0, 2, 0); +} else { + x_670 = x_613; +} +lean_ctor_set(x_670, 0, x_643); +lean_ctor_set(x_670, 1, x_669); +if (lean_is_scalar(x_611)) { + x_671 = lean_alloc_ctor(0, 2, 0); +} else { + x_671 = x_611; +} +lean_ctor_set(x_671, 0, x_655); +lean_ctor_set(x_671, 1, x_670); +x_672 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_672, 0, x_667); +lean_ctor_set(x_672, 1, x_671); +lean_ctor_set(x_9, 1, x_672); +x_673 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_673, 0, x_9); +return x_673; +} +else +{ +lean_object* x_674; lean_object* x_675; lean_object* x_676; uint8_t x_677; uint8_t x_678; +lean_inc(x_665); +lean_inc(x_664); +lean_inc_ref(x_663); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + x_674 = x_30; +} else { + lean_dec_ref(x_30); + x_674 = lean_box(0); +} +x_675 = lean_array_fget(x_651, x_652); +lean_dec(x_652); +lean_dec_ref(x_651); +x_676 = lean_ctor_get(x_675, 1); +x_677 = lean_ctor_get_uint8(x_675, sizeof(void*)*2); +x_678 = lean_nat_dec_eq(x_676, x_1); +if (x_678 == 0) +{ +lean_object* x_679; lean_object* x_680; +lean_dec_ref(x_675); +lean_dec(x_674); +lean_dec_ref(x_667); +lean_dec(x_665); +lean_dec(x_664); +lean_dec_ref(x_663); +lean_dec_ref(x_655); +lean_dec_ref(x_643); +lean_dec(x_640); +lean_dec_ref(x_639); +lean_dec_ref(x_631); +lean_dec(x_627); +lean_dec_ref(x_626); +lean_dec(x_617); +lean_dec_ref(x_616); +lean_dec(x_615); +lean_dec(x_614); +lean_dec(x_613); +lean_dec(x_611); +lean_free_object(x_9); +x_679 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_680 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_679, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_680) == 0) +{ +lean_object* x_681; lean_object* x_682; +x_681 = lean_ctor_get(x_680, 0); +lean_inc(x_681); +if (lean_is_exclusive(x_680)) { + lean_ctor_release(x_680, 0); + x_682 = x_680; +} else { + lean_dec_ref(x_680); + x_682 = lean_box(0); +} +if (lean_obj_tag(x_681) == 0) +{ +lean_object* x_683; lean_object* x_684; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_683 = lean_ctor_get(x_681, 0); +lean_inc(x_683); +lean_dec_ref(x_681); +if (lean_is_scalar(x_682)) { + x_684 = lean_alloc_ctor(0, 1, 0); +} else { + x_684 = x_682; +} +lean_ctor_set(x_684, 0, x_683); +return x_684; +} +else +{ +lean_object* x_685; +lean_dec(x_682); +x_685 = lean_ctor_get(x_681, 0); +lean_inc(x_685); +lean_dec_ref(x_681); +x_16 = x_685; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_686; lean_object* x_687; lean_object* x_688; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_686 = lean_ctor_get(x_680, 0); +lean_inc(x_686); +if (lean_is_exclusive(x_680)) { + lean_ctor_release(x_680, 0); + x_687 = x_680; +} else { + lean_dec_ref(x_680); + x_687 = lean_box(0); +} +if (lean_is_scalar(x_687)) { + x_688 = lean_alloc_ctor(1, 1, 0); +} else { + x_688 = x_687; +} +lean_ctor_set(x_688, 0, x_686); +return x_688; +} +} +else +{ +lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; +x_689 = lean_array_fget(x_616, x_617); +lean_dec(x_617); +lean_dec_ref(x_616); +x_690 = lean_array_fget(x_626, x_627); +lean_dec(x_627); +lean_dec_ref(x_626); +x_691 = lean_array_fget(x_639, x_640); +lean_dec(x_640); +lean_dec_ref(x_639); +x_692 = lean_array_fget_borrowed(x_663, x_664); +x_693 = lean_box(x_3); +x_694 = lean_box(x_4); +x_695 = lean_box(x_677); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_692); +lean_inc(x_10); +lean_inc_ref(x_2); +x_696 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_696, 0, x_691); +lean_closure_set(x_696, 1, x_689); +lean_closure_set(x_696, 2, x_2); +lean_closure_set(x_696, 3, x_10); +lean_closure_set(x_696, 4, x_693); +lean_closure_set(x_696, 5, x_694); +lean_closure_set(x_696, 6, x_692); +lean_closure_set(x_696, 7, x_5); +lean_closure_set(x_696, 8, x_6); +lean_closure_set(x_696, 9, x_695); +lean_closure_set(x_696, 10, x_629); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_697 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_690, x_675, x_696, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_697) == 0) +{ +lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; +x_698 = lean_ctor_get(x_697, 0); +lean_inc(x_698); +lean_dec_ref(x_697); +x_699 = lean_nat_add(x_664, x_629); +lean_dec(x_664); +if (lean_is_scalar(x_674)) { + x_700 = lean_alloc_ctor(0, 3, 0); +} else { + x_700 = x_674; +} +lean_ctor_set(x_700, 0, x_663); +lean_ctor_set(x_700, 1, x_699); +lean_ctor_set(x_700, 2, x_665); +x_701 = lean_array_push(x_614, x_698); +if (lean_is_scalar(x_615)) { + x_702 = lean_alloc_ctor(0, 2, 0); +} else { + x_702 = x_615; +} +lean_ctor_set(x_702, 0, x_631); +lean_ctor_set(x_702, 1, x_701); +if (lean_is_scalar(x_613)) { + x_703 = lean_alloc_ctor(0, 2, 0); +} else { + x_703 = x_613; +} +lean_ctor_set(x_703, 0, x_643); +lean_ctor_set(x_703, 1, x_702); +if (lean_is_scalar(x_611)) { + x_704 = lean_alloc_ctor(0, 2, 0); +} else { + x_704 = x_611; +} +lean_ctor_set(x_704, 0, x_655); +lean_ctor_set(x_704, 1, x_703); +x_705 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_705, 0, x_667); +lean_ctor_set(x_705, 1, x_704); +lean_ctor_set(x_9, 1, x_705); +lean_ctor_set(x_9, 0, x_700); +x_16 = x_9; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_706; lean_object* x_707; lean_object* x_708; +lean_dec(x_674); +lean_dec_ref(x_667); +lean_dec(x_665); +lean_dec(x_664); +lean_dec_ref(x_663); +lean_dec_ref(x_655); +lean_dec_ref(x_643); +lean_dec_ref(x_631); +lean_dec(x_615); +lean_dec(x_614); +lean_dec(x_613); +lean_dec(x_611); +lean_free_object(x_9); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_706 = lean_ctor_get(x_697, 0); +lean_inc(x_706); +if (lean_is_exclusive(x_697)) { + lean_ctor_release(x_697, 0); + x_707 = x_697; +} else { + lean_dec_ref(x_697); + x_707 = lean_box(0); +} +if (lean_is_scalar(x_707)) { + x_708 = lean_alloc_ctor(1, 1, 0); +} else { + x_708 = x_707; +} +lean_ctor_set(x_708, 0, x_706); +return x_708; +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; uint8_t x_721; +x_709 = lean_ctor_get(x_9, 0); +lean_inc(x_709); +lean_dec(x_9); +x_710 = lean_ctor_get(x_24, 0); +lean_inc(x_710); +if (lean_is_exclusive(x_24)) { + lean_ctor_release(x_24, 0); + lean_ctor_release(x_24, 1); + x_711 = x_24; +} else { + lean_dec_ref(x_24); + x_711 = lean_box(0); +} +x_712 = lean_ctor_get(x_25, 0); +lean_inc(x_712); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + x_713 = x_25; +} else { + lean_dec_ref(x_25); + x_713 = lean_box(0); +} +x_714 = lean_ctor_get(x_26, 0); +lean_inc(x_714); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_715 = x_26; +} else { + lean_dec_ref(x_26); + x_715 = lean_box(0); +} +x_716 = lean_ctor_get(x_27, 1); +lean_inc(x_716); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_717 = x_27; +} else { + lean_dec_ref(x_27); + x_717 = lean_box(0); +} +x_718 = lean_ctor_get(x_28, 0); +x_719 = lean_ctor_get(x_28, 1); +x_720 = lean_ctor_get(x_28, 2); +x_721 = lean_nat_dec_lt(x_719, x_720); +if (x_721 == 0) +{ +lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_717)) { + x_722 = lean_alloc_ctor(0, 2, 0); +} else { + x_722 = x_717; +} +lean_ctor_set(x_722, 0, x_28); +lean_ctor_set(x_722, 1, x_716); +if (lean_is_scalar(x_715)) { + x_723 = lean_alloc_ctor(0, 2, 0); +} else { + x_723 = x_715; +} +lean_ctor_set(x_723, 0, x_714); +lean_ctor_set(x_723, 1, x_722); +if (lean_is_scalar(x_713)) { + x_724 = lean_alloc_ctor(0, 2, 0); +} else { + x_724 = x_713; +} +lean_ctor_set(x_724, 0, x_712); +lean_ctor_set(x_724, 1, x_723); +if (lean_is_scalar(x_711)) { + x_725 = lean_alloc_ctor(0, 2, 0); +} else { + x_725 = x_711; +} +lean_ctor_set(x_725, 0, x_710); +lean_ctor_set(x_725, 1, x_724); +x_726 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_726, 0, x_709); +lean_ctor_set(x_726, 1, x_725); +x_727 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_727, 0, x_726); +return x_727; +} +else +{ +lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; uint8_t x_735; +lean_inc(x_720); +lean_inc(x_719); +lean_inc_ref(x_718); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + lean_ctor_release(x_28, 2); + x_728 = x_28; +} else { + lean_dec_ref(x_28); + x_728 = lean_box(0); +} +x_729 = lean_ctor_get(x_714, 0); +x_730 = lean_ctor_get(x_714, 1); +x_731 = lean_ctor_get(x_714, 2); +x_732 = lean_unsigned_to_nat(1u); +x_733 = lean_nat_add(x_719, x_732); +lean_inc_ref(x_718); +if (lean_is_scalar(x_728)) { + x_734 = lean_alloc_ctor(0, 3, 0); +} else { + x_734 = x_728; +} +lean_ctor_set(x_734, 0, x_718); +lean_ctor_set(x_734, 1, x_733); +lean_ctor_set(x_734, 2, x_720); +x_735 = lean_nat_dec_lt(x_730, x_731); +if (x_735 == 0) +{ +lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; +lean_dec(x_719); +lean_dec_ref(x_718); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_717)) { + x_736 = lean_alloc_ctor(0, 2, 0); +} else { + x_736 = x_717; +} +lean_ctor_set(x_736, 0, x_734); +lean_ctor_set(x_736, 1, x_716); +if (lean_is_scalar(x_715)) { + x_737 = lean_alloc_ctor(0, 2, 0); +} else { + x_737 = x_715; +} +lean_ctor_set(x_737, 0, x_714); +lean_ctor_set(x_737, 1, x_736); +if (lean_is_scalar(x_713)) { + x_738 = lean_alloc_ctor(0, 2, 0); +} else { + x_738 = x_713; +} +lean_ctor_set(x_738, 0, x_712); +lean_ctor_set(x_738, 1, x_737); +if (lean_is_scalar(x_711)) { + x_739 = lean_alloc_ctor(0, 2, 0); +} else { + x_739 = x_711; +} +lean_ctor_set(x_739, 0, x_710); +lean_ctor_set(x_739, 1, x_738); +x_740 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_740, 0, x_709); +lean_ctor_set(x_740, 1, x_739); +x_741 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_741, 0, x_740); +return x_741; +} +else +{ +lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; uint8_t x_748; +lean_inc(x_731); +lean_inc(x_730); +lean_inc_ref(x_729); +if (lean_is_exclusive(x_714)) { + lean_ctor_release(x_714, 0); + lean_ctor_release(x_714, 1); + lean_ctor_release(x_714, 2); + x_742 = x_714; +} else { + lean_dec_ref(x_714); + x_742 = lean_box(0); +} +x_743 = lean_ctor_get(x_712, 0); +x_744 = lean_ctor_get(x_712, 1); +x_745 = lean_ctor_get(x_712, 2); +x_746 = lean_nat_add(x_730, x_732); +lean_inc_ref(x_729); +if (lean_is_scalar(x_742)) { + x_747 = lean_alloc_ctor(0, 3, 0); +} else { + x_747 = x_742; +} +lean_ctor_set(x_747, 0, x_729); +lean_ctor_set(x_747, 1, x_746); +lean_ctor_set(x_747, 2, x_731); +x_748 = lean_nat_dec_lt(x_744, x_745); +if (x_748 == 0) +{ +lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; +lean_dec(x_730); +lean_dec_ref(x_729); +lean_dec(x_719); +lean_dec_ref(x_718); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_717)) { + x_749 = lean_alloc_ctor(0, 2, 0); +} else { + x_749 = x_717; +} +lean_ctor_set(x_749, 0, x_734); +lean_ctor_set(x_749, 1, x_716); +if (lean_is_scalar(x_715)) { + x_750 = lean_alloc_ctor(0, 2, 0); +} else { + x_750 = x_715; +} +lean_ctor_set(x_750, 0, x_747); +lean_ctor_set(x_750, 1, x_749); +if (lean_is_scalar(x_713)) { + x_751 = lean_alloc_ctor(0, 2, 0); +} else { + x_751 = x_713; +} +lean_ctor_set(x_751, 0, x_712); +lean_ctor_set(x_751, 1, x_750); +if (lean_is_scalar(x_711)) { + x_752 = lean_alloc_ctor(0, 2, 0); +} else { + x_752 = x_711; +} +lean_ctor_set(x_752, 0, x_710); +lean_ctor_set(x_752, 1, x_751); +x_753 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_753, 0, x_709); +lean_ctor_set(x_753, 1, x_752); +x_754 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_754, 0, x_753); +return x_754; +} +else +{ +lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; uint8_t x_761; +lean_inc(x_745); +lean_inc(x_744); +lean_inc_ref(x_743); +if (lean_is_exclusive(x_712)) { + lean_ctor_release(x_712, 0); + lean_ctor_release(x_712, 1); + lean_ctor_release(x_712, 2); + x_755 = x_712; +} else { + lean_dec_ref(x_712); + x_755 = lean_box(0); +} +x_756 = lean_ctor_get(x_710, 0); +x_757 = lean_ctor_get(x_710, 1); +x_758 = lean_ctor_get(x_710, 2); +x_759 = lean_nat_add(x_744, x_732); +lean_inc_ref(x_743); +if (lean_is_scalar(x_755)) { + x_760 = lean_alloc_ctor(0, 3, 0); +} else { + x_760 = x_755; +} +lean_ctor_set(x_760, 0, x_743); +lean_ctor_set(x_760, 1, x_759); +lean_ctor_set(x_760, 2, x_745); +x_761 = lean_nat_dec_lt(x_757, x_758); +if (x_761 == 0) +{ +lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; +lean_dec(x_744); +lean_dec_ref(x_743); +lean_dec(x_730); +lean_dec_ref(x_729); +lean_dec(x_719); +lean_dec_ref(x_718); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_717)) { + x_762 = lean_alloc_ctor(0, 2, 0); +} else { + x_762 = x_717; +} +lean_ctor_set(x_762, 0, x_734); +lean_ctor_set(x_762, 1, x_716); +if (lean_is_scalar(x_715)) { + x_763 = lean_alloc_ctor(0, 2, 0); +} else { + x_763 = x_715; +} +lean_ctor_set(x_763, 0, x_747); +lean_ctor_set(x_763, 1, x_762); +if (lean_is_scalar(x_713)) { + x_764 = lean_alloc_ctor(0, 2, 0); +} else { + x_764 = x_713; +} +lean_ctor_set(x_764, 0, x_760); +lean_ctor_set(x_764, 1, x_763); +if (lean_is_scalar(x_711)) { + x_765 = lean_alloc_ctor(0, 2, 0); +} else { + x_765 = x_711; +} +lean_ctor_set(x_765, 0, x_710); +lean_ctor_set(x_765, 1, x_764); +x_766 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_766, 0, x_709); +lean_ctor_set(x_766, 1, x_765); +x_767 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_767, 0, x_766); +return x_767; +} +else +{ +lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; uint8_t x_774; +lean_inc(x_758); +lean_inc(x_757); +lean_inc_ref(x_756); +if (lean_is_exclusive(x_710)) { + lean_ctor_release(x_710, 0); + lean_ctor_release(x_710, 1); + lean_ctor_release(x_710, 2); + x_768 = x_710; +} else { + lean_dec_ref(x_710); + x_768 = lean_box(0); +} +x_769 = lean_ctor_get(x_709, 0); +x_770 = lean_ctor_get(x_709, 1); +x_771 = lean_ctor_get(x_709, 2); +x_772 = lean_nat_add(x_757, x_732); +lean_inc_ref(x_756); +if (lean_is_scalar(x_768)) { + x_773 = lean_alloc_ctor(0, 3, 0); +} else { + x_773 = x_768; +} +lean_ctor_set(x_773, 0, x_756); +lean_ctor_set(x_773, 1, x_772); +lean_ctor_set(x_773, 2, x_758); +x_774 = lean_nat_dec_lt(x_770, x_771); +if (x_774 == 0) +{ +lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; +lean_dec(x_757); +lean_dec_ref(x_756); +lean_dec(x_744); +lean_dec_ref(x_743); +lean_dec(x_730); +lean_dec_ref(x_729); +lean_dec(x_719); +lean_dec_ref(x_718); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_scalar(x_717)) { + x_775 = lean_alloc_ctor(0, 2, 0); +} else { + x_775 = x_717; +} +lean_ctor_set(x_775, 0, x_734); +lean_ctor_set(x_775, 1, x_716); +if (lean_is_scalar(x_715)) { + x_776 = lean_alloc_ctor(0, 2, 0); +} else { + x_776 = x_715; +} +lean_ctor_set(x_776, 0, x_747); +lean_ctor_set(x_776, 1, x_775); +if (lean_is_scalar(x_713)) { + x_777 = lean_alloc_ctor(0, 2, 0); +} else { + x_777 = x_713; +} +lean_ctor_set(x_777, 0, x_760); +lean_ctor_set(x_777, 1, x_776); +if (lean_is_scalar(x_711)) { + x_778 = lean_alloc_ctor(0, 2, 0); +} else { + x_778 = x_711; +} +lean_ctor_set(x_778, 0, x_773); +lean_ctor_set(x_778, 1, x_777); +x_779 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_779, 0, x_709); +lean_ctor_set(x_779, 1, x_778); +x_780 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_780, 0, x_779); +return x_780; +} +else +{ +lean_object* x_781; lean_object* x_782; lean_object* x_783; uint8_t x_784; uint8_t x_785; +lean_inc(x_771); +lean_inc(x_770); +lean_inc_ref(x_769); +if (lean_is_exclusive(x_709)) { + lean_ctor_release(x_709, 0); + lean_ctor_release(x_709, 1); + lean_ctor_release(x_709, 2); + x_781 = x_709; +} else { + lean_dec_ref(x_709); + x_781 = lean_box(0); +} +x_782 = lean_array_fget(x_756, x_757); +lean_dec(x_757); +lean_dec_ref(x_756); +x_783 = lean_ctor_get(x_782, 1); +x_784 = lean_ctor_get_uint8(x_782, sizeof(void*)*2); +x_785 = lean_nat_dec_eq(x_783, x_1); +if (x_785 == 0) +{ +lean_object* x_786; lean_object* x_787; +lean_dec_ref(x_782); +lean_dec(x_781); +lean_dec_ref(x_773); +lean_dec(x_771); +lean_dec(x_770); +lean_dec_ref(x_769); +lean_dec_ref(x_760); +lean_dec_ref(x_747); +lean_dec(x_744); +lean_dec_ref(x_743); +lean_dec_ref(x_734); +lean_dec(x_730); +lean_dec_ref(x_729); +lean_dec(x_719); +lean_dec_ref(x_718); +lean_dec(x_717); +lean_dec(x_716); +lean_dec(x_715); +lean_dec(x_713); +lean_dec(x_711); +x_786 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___closed__1; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_787 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__36(x_786, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_787) == 0) +{ +lean_object* x_788; lean_object* x_789; +x_788 = lean_ctor_get(x_787, 0); +lean_inc(x_788); +if (lean_is_exclusive(x_787)) { + lean_ctor_release(x_787, 0); + x_789 = x_787; +} else { + lean_dec_ref(x_787); + x_789 = lean_box(0); +} +if (lean_obj_tag(x_788) == 0) +{ +lean_object* x_790; lean_object* x_791; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_790 = lean_ctor_get(x_788, 0); +lean_inc(x_790); +lean_dec_ref(x_788); +if (lean_is_scalar(x_789)) { + x_791 = lean_alloc_ctor(0, 1, 0); +} else { + x_791 = x_789; +} +lean_ctor_set(x_791, 0, x_790); +return x_791; +} +else +{ +lean_object* x_792; +lean_dec(x_789); +x_792 = lean_ctor_get(x_788, 0); +lean_inc(x_792); +lean_dec_ref(x_788); +x_16 = x_792; +x_17 = lean_box(0); +goto block_23; +} +} +else +{ +lean_object* x_793; lean_object* x_794; lean_object* x_795; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_793 = lean_ctor_get(x_787, 0); +lean_inc(x_793); +if (lean_is_exclusive(x_787)) { + lean_ctor_release(x_787, 0); + x_794 = x_787; +} else { + lean_dec_ref(x_787); + x_794 = lean_box(0); +} +if (lean_is_scalar(x_794)) { + x_795 = lean_alloc_ctor(1, 1, 0); +} else { + x_795 = x_794; +} +lean_ctor_set(x_795, 0, x_793); +return x_795; +} +} +else +{ +lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; +x_796 = lean_array_fget(x_718, x_719); +lean_dec(x_719); +lean_dec_ref(x_718); +x_797 = lean_array_fget(x_729, x_730); +lean_dec(x_730); +lean_dec_ref(x_729); +x_798 = lean_array_fget(x_743, x_744); +lean_dec(x_744); +lean_dec_ref(x_743); +x_799 = lean_array_fget_borrowed(x_769, x_770); +x_800 = lean_box(x_3); +x_801 = lean_box(x_4); +x_802 = lean_box(x_784); +lean_inc(x_6); +lean_inc(x_5); +lean_inc_ref(x_799); +lean_inc(x_10); +lean_inc_ref(x_2); +x_803 = lean_alloc_closure((void*)(l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg___lam__3___boxed), 18, 11); +lean_closure_set(x_803, 0, x_798); +lean_closure_set(x_803, 1, x_796); +lean_closure_set(x_803, 2, x_2); +lean_closure_set(x_803, 3, x_10); +lean_closure_set(x_803, 4, x_800); +lean_closure_set(x_803, 5, x_801); +lean_closure_set(x_803, 6, x_799); +lean_closure_set(x_803, 7, x_5); +lean_closure_set(x_803, 8, x_6); +lean_closure_set(x_803, 9, x_802); +lean_closure_set(x_803, 10, x_732); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_804 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_797, x_782, x_803, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_804) == 0) +{ +lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; +x_805 = lean_ctor_get(x_804, 0); +lean_inc(x_805); +lean_dec_ref(x_804); +x_806 = lean_nat_add(x_770, x_732); +lean_dec(x_770); +if (lean_is_scalar(x_781)) { + x_807 = lean_alloc_ctor(0, 3, 0); +} else { + x_807 = x_781; +} +lean_ctor_set(x_807, 0, x_769); +lean_ctor_set(x_807, 1, x_806); +lean_ctor_set(x_807, 2, x_771); +x_808 = lean_array_push(x_716, x_805); +if (lean_is_scalar(x_717)) { + x_809 = lean_alloc_ctor(0, 2, 0); +} else { + x_809 = x_717; +} +lean_ctor_set(x_809, 0, x_734); +lean_ctor_set(x_809, 1, x_808); +if (lean_is_scalar(x_715)) { + x_810 = lean_alloc_ctor(0, 2, 0); +} else { + x_810 = x_715; +} +lean_ctor_set(x_810, 0, x_747); +lean_ctor_set(x_810, 1, x_809); +if (lean_is_scalar(x_713)) { + x_811 = lean_alloc_ctor(0, 2, 0); +} else { + x_811 = x_713; +} +lean_ctor_set(x_811, 0, x_760); +lean_ctor_set(x_811, 1, x_810); +if (lean_is_scalar(x_711)) { + x_812 = lean_alloc_ctor(0, 2, 0); +} else { + x_812 = x_711; +} +lean_ctor_set(x_812, 0, x_773); +lean_ctor_set(x_812, 1, x_811); +x_813 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_813, 0, x_807); +lean_ctor_set(x_813, 1, x_812); +x_16 = x_813; +x_17 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_814; lean_object* x_815; lean_object* x_816; +lean_dec(x_781); +lean_dec_ref(x_773); +lean_dec(x_771); +lean_dec(x_770); +lean_dec_ref(x_769); +lean_dec_ref(x_760); +lean_dec_ref(x_747); +lean_dec_ref(x_734); +lean_dec(x_717); +lean_dec(x_716); +lean_dec(x_715); +lean_dec(x_713); +lean_dec(x_711); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_814 = lean_ctor_get(x_804, 0); +lean_inc(x_814); +if (lean_is_exclusive(x_804)) { + lean_ctor_release(x_804, 0); + x_815 = x_804; +} else { + lean_dec_ref(x_804); + x_815 = lean_box(0); +} +if (lean_is_scalar(x_815)) { + x_816 = lean_alloc_ctor(1, 1, 0); +} else { + x_816 = x_815; +} +lean_ctor_set(x_816, 0, x_814); +return x_816; +} +} +} +} +} +} +} +} +block_23: +{ +lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_add(x_10, x_18); +lean_dec(x_10); +x_20 = lean_nat_dec_lt(x_19, x_7); +if (x_20 == 0) +{ +lean_object* x_21; +lean_dec(x_19); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +x_21 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_21, 0, x_16); +return x_21; +} +else +{ +lean_object* x_22; +x_22 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39_spec__39___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_16, x_19, x_11, x_12, x_13, x_14); +return x_22; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +_start: +{ +lean_object* x_21; +x_21 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_11, x_12, x_13, x_16, x_17, x_18, x_19); +return x_21; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__41___redArg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; @@ -19533,11 +26480,11 @@ lean_ctor_set(x_7, 0, x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__41(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_7; -x_7 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_1, x_5); +x_7 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__41___redArg(x_1, x_5); return x_7; } } @@ -20354,7 +27301,7 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_66; lean_object* x_67; uint8_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_108; uint8_t x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_188; lean_object* x_189; uint8_t x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_241; lean_object* x_242; uint8_t x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; uint8_t x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; uint8_t x_298; lean_object* x_299; size_t x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; uint8_t x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; uint8_t x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; uint8_t x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_235; lean_object* x_236; lean_object* x_237; uint8_t x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; uint8_t x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; size_t x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; x_13 = lean_st_ref_get(x_11); x_14 = lean_ctor_get(x_13, 0); lean_inc_ref(x_14); @@ -20362,6 +27309,7 @@ lean_dec_ref(x_13); x_15 = lean_ctor_get(x_1, 0); lean_inc_ref(x_15); x_16 = lean_ctor_get(x_1, 1); +lean_inc(x_16); x_17 = lean_ctor_get(x_1, 2); x_18 = lean_ctor_get(x_1, 3); x_19 = lean_ctor_get(x_1, 4); @@ -20370,171 +27318,265 @@ x_21 = lean_ctor_get(x_1, 6); x_22 = lean_ctor_get(x_1, 7); lean_inc_ref(x_22); lean_inc(x_16); -x_294 = l_Lean_isCasesOnRecursor(x_14, x_16); -if (x_294 == 0) +x_288 = l_Lean_isCasesOnRecursor(x_14, x_16); +if (x_288 == 0) { -lean_object* x_448; lean_object* x_449; +lean_object* x_442; lean_object* x_443; lean_inc(x_16); -x_448 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__38___redArg(x_16, x_11); -x_449 = lean_ctor_get(x_448, 0); -lean_inc(x_449); -lean_dec_ref(x_448); -if (lean_obj_tag(x_449) == 0) +x_442 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__41___redArg(x_16, x_11); +x_443 = lean_ctor_get(x_442, 0); +lean_inc(x_443); +lean_dec_ref(x_442); +if (lean_obj_tag(x_443) == 0) { -lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; uint8_t x_456; +lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; uint8_t x_450; lean_dec_ref(x_22); -lean_inc(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_450 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__10; -x_451 = l_Lean_MessageData_ofName(x_16); -x_452 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_452, 0, x_450); -lean_ctor_set(x_452, 1, x_451); -x_453 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__12; -x_454 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_454, 0, x_452); -lean_ctor_set(x_454, 1, x_453); -x_455 = l_Lean_throwError___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__21___redArg(x_454, x_8, x_9, x_10, x_11); +x_444 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__10; +x_445 = l_Lean_MessageData_ofName(x_16); +x_446 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_446, 0, x_444); +lean_ctor_set(x_446, 1, x_445); +x_447 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__12; +x_448 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_448, 0, x_446); +lean_ctor_set(x_448, 1, x_447); +x_449 = l_Lean_throwError___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__21___redArg(x_448, x_8, x_9, x_10, x_11); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); lean_dec_ref(x_8); -x_456 = !lean_is_exclusive(x_455); -if (x_456 == 0) +x_450 = !lean_is_exclusive(x_449); +if (x_450 == 0) { -return x_455; +return x_449; } else { -lean_object* x_457; lean_object* x_458; -x_457 = lean_ctor_get(x_455, 0); -lean_inc(x_457); -lean_dec(x_455); -x_458 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_458, 0, x_457); -return x_458; +lean_object* x_451; lean_object* x_452; +x_451 = lean_ctor_get(x_449, 0); +lean_inc(x_451); +lean_dec(x_449); +x_452 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_452, 0, x_451); +return x_452; } } else { -lean_object* x_459; lean_object* x_460; -x_459 = lean_ctor_get(x_449, 0); -lean_inc(x_459); -lean_dec_ref(x_449); -x_460 = l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs(x_459); -lean_dec(x_459); -x_407 = x_460; -x_408 = x_8; -x_409 = x_9; -x_410 = x_10; -x_411 = x_11; -x_412 = lean_box(0); -goto block_447; +lean_object* x_453; lean_object* x_454; +x_453 = lean_ctor_get(x_443, 0); +lean_inc(x_453); +lean_dec_ref(x_443); +x_454 = l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs(x_453); +lean_dec(x_453); +x_401 = x_454; +x_402 = x_8; +x_403 = x_9; +x_404 = x_10; +x_405 = x_11; +x_406 = lean_box(0); +goto block_441; } } else { -lean_object* x_461; -x_461 = lean_unsigned_to_nat(0u); -x_407 = x_461; -x_408 = x_8; -x_409 = x_9; -x_410 = x_10; -x_411 = x_11; -x_412 = lean_box(0); -goto block_447; +lean_object* x_455; +x_455 = lean_unsigned_to_nat(0u); +x_401 = x_455; +x_402 = x_8; +x_403 = x_9; +x_404 = x_10; +x_405 = x_11; +x_406 = lean_box(0); +goto block_441; } -block_65: +block_55: { -lean_object* x_35; -x_35 = lean_apply_6(x_7, x_22, x_30, x_31, x_32, x_33, lean_box(0)); -if (lean_obj_tag(x_35) == 0) +lean_object* x_41; +x_41 = lean_apply_6(x_7, x_22, x_36, x_37, x_38, x_39, lean_box(0)); +if (lean_obj_tag(x_41) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_41); +if (x_42 == 0) { -uint8_t x_37; -x_37 = !lean_is_exclusive(x_15); -if (x_37 == 0) -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_38 = lean_ctor_get(x_35, 0); -x_39 = lean_ctor_get(x_15, 4); -lean_dec(x_39); -x_40 = l_Array_append___redArg(x_28, x_38); -lean_dec(x_38); -lean_ctor_set(x_15, 4, x_24); -x_41 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_41, 0, x_15); -lean_ctor_set(x_41, 1, x_16); -lean_ctor_set(x_41, 2, x_26); -lean_ctor_set(x_41, 3, x_25); -lean_ctor_set(x_41, 4, x_23); -lean_ctor_set(x_41, 5, x_27); -lean_ctor_set(x_41, 6, x_29); -lean_ctor_set(x_41, 7, x_40); -lean_ctor_set(x_35, 0, x_41); -return x_35; +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_43 = lean_ctor_get(x_41, 0); +x_44 = l_Array_append___redArg(x_27, x_43); +lean_dec(x_43); +x_45 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_45, 0, x_31); +lean_ctor_set(x_45, 1, x_32); +lean_ctor_set(x_45, 2, x_24); +lean_ctor_set(x_45, 3, x_30); +lean_ctor_set(x_45, 4, x_34); +lean_ctor_set(x_45, 5, x_29); +x_46 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_26); +lean_ctor_set(x_46, 2, x_23); +lean_ctor_set(x_46, 3, x_33); +lean_ctor_set(x_46, 4, x_25); +lean_ctor_set(x_46, 5, x_28); +lean_ctor_set(x_46, 6, x_35); +lean_ctor_set(x_46, 7, x_44); +lean_ctor_set(x_41, 0, x_46); +return x_41; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_42 = lean_ctor_get(x_35, 0); -x_43 = lean_ctor_get(x_15, 0); -x_44 = lean_ctor_get(x_15, 1); -x_45 = lean_ctor_get(x_15, 2); -x_46 = lean_ctor_get(x_15, 3); -x_47 = lean_ctor_get(x_15, 5); +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_47 = lean_ctor_get(x_41, 0); lean_inc(x_47); -lean_inc(x_46); -lean_inc(x_45); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_15); -x_48 = l_Array_append___redArg(x_28, x_42); -lean_dec(x_42); +lean_dec(x_41); +x_48 = l_Array_append___redArg(x_27, x_47); +lean_dec(x_47); x_49 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_49, 0, x_43); -lean_ctor_set(x_49, 1, x_44); -lean_ctor_set(x_49, 2, x_45); -lean_ctor_set(x_49, 3, x_46); -lean_ctor_set(x_49, 4, x_24); -lean_ctor_set(x_49, 5, x_47); +lean_ctor_set(x_49, 0, x_31); +lean_ctor_set(x_49, 1, x_32); +lean_ctor_set(x_49, 2, x_24); +lean_ctor_set(x_49, 3, x_30); +lean_ctor_set(x_49, 4, x_34); +lean_ctor_set(x_49, 5, x_29); x_50 = lean_alloc_ctor(0, 8, 0); lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_16); -lean_ctor_set(x_50, 2, x_26); -lean_ctor_set(x_50, 3, x_25); -lean_ctor_set(x_50, 4, x_23); -lean_ctor_set(x_50, 5, x_27); -lean_ctor_set(x_50, 6, x_29); +lean_ctor_set(x_50, 1, x_26); +lean_ctor_set(x_50, 2, x_23); +lean_ctor_set(x_50, 3, x_33); +lean_ctor_set(x_50, 4, x_25); +lean_ctor_set(x_50, 5, x_28); +lean_ctor_set(x_50, 6, x_35); lean_ctor_set(x_50, 7, x_48); -lean_ctor_set(x_35, 0, x_50); -return x_35; +x_51 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_51, 0, x_50); +return x_51; } } else { -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_51 = lean_ctor_get(x_35, 0); -lean_inc(x_51); -lean_dec(x_35); -x_52 = lean_ctor_get(x_15, 0); -lean_inc(x_52); -x_53 = lean_ctor_get(x_15, 1); +uint8_t x_52; +lean_dec_ref(x_35); +lean_dec_ref(x_34); +lean_dec_ref(x_33); +lean_dec(x_32); +lean_dec(x_31); +lean_dec(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_28); +lean_dec_ref(x_27); +lean_dec(x_26); +lean_dec_ref(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_23); +x_52 = !lean_is_exclusive(x_41); +if (x_52 == 0) +{ +return x_41; +} +else +{ +lean_object* x_53; lean_object* x_54; +x_53 = lean_ctor_get(x_41, 0); lean_inc(x_53); -x_54 = lean_ctor_get(x_15, 2); -lean_inc_ref(x_54); -x_55 = lean_ctor_get(x_15, 3); -lean_inc(x_55); -x_56 = lean_ctor_get(x_15, 5); -lean_inc_ref(x_56); +lean_dec(x_41); +x_54 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_54, 0, x_53); +return x_54; +} +} +} +block_98: +{ +lean_object* x_68; +x_68 = lean_apply_6(x_7, x_22, x_63, x_64, x_65, x_66, lean_box(0)); +if (lean_obj_tag(x_68) == 0) +{ +uint8_t x_69; +x_69 = !lean_is_exclusive(x_68); +if (x_69 == 0) +{ +uint8_t x_70; +x_70 = !lean_is_exclusive(x_15); +if (x_70 == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_71 = lean_ctor_get(x_68, 0); +x_72 = lean_ctor_get(x_15, 4); +lean_dec(x_72); +x_73 = l_Array_append___redArg(x_59, x_71); +lean_dec(x_71); +lean_ctor_set(x_15, 4, x_61); +x_74 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_74, 0, x_15); +lean_ctor_set(x_74, 1, x_16); +lean_ctor_set(x_74, 2, x_56); +lean_ctor_set(x_74, 3, x_60); +lean_ctor_set(x_74, 4, x_57); +lean_ctor_set(x_74, 5, x_58); +lean_ctor_set(x_74, 6, x_62); +lean_ctor_set(x_74, 7, x_73); +lean_ctor_set(x_68, 0, x_74); +return x_68; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_75 = lean_ctor_get(x_68, 0); +x_76 = lean_ctor_get(x_15, 0); +x_77 = lean_ctor_get(x_15, 1); +x_78 = lean_ctor_get(x_15, 2); +x_79 = lean_ctor_get(x_15, 3); +x_80 = lean_ctor_get(x_15, 5); +lean_inc(x_80); +lean_inc(x_79); +lean_inc(x_78); +lean_inc(x_77); +lean_inc(x_76); +lean_dec(x_15); +x_81 = l_Array_append___redArg(x_59, x_75); +lean_dec(x_75); +x_82 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_82, 0, x_76); +lean_ctor_set(x_82, 1, x_77); +lean_ctor_set(x_82, 2, x_78); +lean_ctor_set(x_82, 3, x_79); +lean_ctor_set(x_82, 4, x_61); +lean_ctor_set(x_82, 5, x_80); +x_83 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_83, 0, x_82); +lean_ctor_set(x_83, 1, x_16); +lean_ctor_set(x_83, 2, x_56); +lean_ctor_set(x_83, 3, x_60); +lean_ctor_set(x_83, 4, x_57); +lean_ctor_set(x_83, 5, x_58); +lean_ctor_set(x_83, 6, x_62); +lean_ctor_set(x_83, 7, x_81); +lean_ctor_set(x_68, 0, x_83); +return x_68; +} +} +else +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_84 = lean_ctor_get(x_68, 0); +lean_inc(x_84); +lean_dec(x_68); +x_85 = lean_ctor_get(x_15, 0); +lean_inc(x_85); +x_86 = lean_ctor_get(x_15, 1); +lean_inc(x_86); +x_87 = lean_ctor_get(x_15, 2); +lean_inc_ref(x_87); +x_88 = lean_ctor_get(x_15, 3); +lean_inc(x_88); +x_89 = lean_ctor_get(x_15, 5); +lean_inc_ref(x_89); if (lean_is_exclusive(x_15)) { lean_ctor_release(x_15, 0); lean_ctor_release(x_15, 1); @@ -20542,899 +27584,884 @@ if (lean_is_exclusive(x_15)) { lean_ctor_release(x_15, 3); lean_ctor_release(x_15, 4); lean_ctor_release(x_15, 5); - x_57 = x_15; + x_90 = x_15; } else { lean_dec_ref(x_15); - x_57 = lean_box(0); + x_90 = lean_box(0); } -x_58 = l_Array_append___redArg(x_28, x_51); -lean_dec(x_51); -if (lean_is_scalar(x_57)) { - x_59 = lean_alloc_ctor(0, 6, 0); -} else { - x_59 = x_57; -} -lean_ctor_set(x_59, 0, x_52); -lean_ctor_set(x_59, 1, x_53); -lean_ctor_set(x_59, 2, x_54); -lean_ctor_set(x_59, 3, x_55); -lean_ctor_set(x_59, 4, x_24); -lean_ctor_set(x_59, 5, x_56); -x_60 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_60, 0, x_59); -lean_ctor_set(x_60, 1, x_16); -lean_ctor_set(x_60, 2, x_26); -lean_ctor_set(x_60, 3, x_25); -lean_ctor_set(x_60, 4, x_23); -lean_ctor_set(x_60, 5, x_27); -lean_ctor_set(x_60, 6, x_29); -lean_ctor_set(x_60, 7, x_58); -x_61 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_61, 0, x_60); -return x_61; -} -} -else -{ -uint8_t x_62; -lean_dec_ref(x_29); -lean_dec_ref(x_28); -lean_dec_ref(x_27); -lean_dec_ref(x_26); -lean_dec_ref(x_25); -lean_dec_ref(x_24); -lean_dec_ref(x_23); -lean_dec(x_16); -lean_dec_ref(x_15); -x_62 = !lean_is_exclusive(x_35); -if (x_62 == 0) -{ -return x_35; -} -else -{ -lean_object* x_63; lean_object* x_64; -x_63 = lean_ctor_get(x_35, 0); -lean_inc(x_63); -lean_dec(x_35); -x_64 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_64, 0, x_63); -return x_64; -} -} -} -block_107: -{ -lean_object* x_83; lean_object* x_84; -x_83 = lean_array_get_size(x_21); -lean_inc(x_81); -lean_inc_ref(x_80); -lean_inc(x_79); -lean_inc_ref(x_78); -lean_inc(x_83); -x_84 = l_Lean_Meta_inferArgumentTypesN(x_83, x_71, x_78, x_79, x_80, x_81); -if (lean_obj_tag(x_84) == 0) -{ -lean_object* x_85; uint8_t x_86; -x_85 = lean_ctor_get(x_84, 0); -lean_inc(x_85); -lean_dec_ref(x_84); -x_86 = lean_nat_dec_lt(x_76, x_83); -if (x_86 == 0) -{ -lean_dec(x_85); -lean_dec(x_83); -lean_dec(x_76); -lean_dec(x_73); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_23 = x_67; -x_24 = x_66; -x_25 = x_69; -x_26 = x_72; -x_27 = x_75; -x_28 = x_77; -x_29 = x_70; -x_30 = x_78; -x_31 = x_79; -x_32 = x_80; -x_33 = x_81; -x_34 = lean_box(0); -goto block_65; -} -else -{ -lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; -lean_inc(x_83); -lean_inc(x_76); -lean_inc_ref(x_21); -x_87 = l_Array_toSubarray___redArg(x_21, x_76, x_83); -x_88 = l_Lean_Meta_MatcherApp_altNumParams(x_1); -x_89 = lean_array_get_size(x_88); -lean_inc(x_76); -x_90 = l_Array_toSubarray___redArg(x_88, x_76, x_89); -x_91 = lean_array_get_size(x_85); -lean_inc(x_76); -x_92 = l_Array_toSubarray___redArg(x_85, x_76, x_91); -x_93 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_93, 0, x_92); -lean_ctor_set(x_93, 1, x_70); -x_94 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_94, 0, x_90); -lean_ctor_set(x_94, 1, x_93); -x_95 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_95, 0, x_87); -lean_ctor_set(x_95, 1, x_94); -lean_inc(x_81); -lean_inc_ref(x_80); -lean_inc(x_79); -lean_inc_ref(x_78); -x_96 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__31___redArg(x_68, x_6, x_74, x_73, x_83, x_95, x_76, x_78, x_79, x_80, x_81); -lean_dec(x_83); -if (lean_obj_tag(x_96) == 0) -{ -lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; -x_97 = lean_ctor_get(x_96, 0); -lean_inc(x_97); -lean_dec_ref(x_96); -x_98 = lean_ctor_get(x_97, 1); -lean_inc(x_98); -lean_dec(x_97); -x_99 = lean_ctor_get(x_98, 1); -lean_inc(x_99); -lean_dec(x_98); -x_100 = lean_ctor_get(x_99, 1); -lean_inc(x_100); -lean_dec(x_99); -x_23 = x_67; -x_24 = x_66; -x_25 = x_69; -x_26 = x_72; -x_27 = x_75; -x_28 = x_77; -x_29 = x_100; -x_30 = x_78; -x_31 = x_79; -x_32 = x_80; -x_33 = x_81; -x_34 = lean_box(0); -goto block_65; -} -else -{ -uint8_t x_101; -lean_dec(x_81); -lean_dec_ref(x_80); -lean_dec(x_79); -lean_dec_ref(x_78); -lean_dec_ref(x_77); -lean_dec_ref(x_75); -lean_dec_ref(x_72); -lean_dec_ref(x_69); -lean_dec_ref(x_67); -lean_dec_ref(x_66); -lean_dec_ref(x_22); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -x_101 = !lean_is_exclusive(x_96); -if (x_101 == 0) -{ -return x_96; -} -else -{ -lean_object* x_102; lean_object* x_103; -x_102 = lean_ctor_get(x_96, 0); -lean_inc(x_102); -lean_dec(x_96); -x_103 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_103, 0, x_102); -return x_103; -} -} -} -} -else -{ -uint8_t x_104; -lean_dec(x_83); -lean_dec(x_81); -lean_dec_ref(x_80); -lean_dec(x_79); -lean_dec_ref(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_73); -lean_dec_ref(x_72); -lean_dec_ref(x_70); -lean_dec_ref(x_69); -lean_dec_ref(x_67); -lean_dec_ref(x_66); -lean_dec_ref(x_22); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_104 = !lean_is_exclusive(x_84); -if (x_104 == 0) -{ -return x_84; -} -else -{ -lean_object* x_105; lean_object* x_106; -x_105 = lean_ctor_get(x_84, 0); -lean_inc(x_105); +x_91 = l_Array_append___redArg(x_59, x_84); lean_dec(x_84); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_105); -return x_106; +if (lean_is_scalar(x_90)) { + x_92 = lean_alloc_ctor(0, 6, 0); +} else { + x_92 = x_90; +} +lean_ctor_set(x_92, 0, x_85); +lean_ctor_set(x_92, 1, x_86); +lean_ctor_set(x_92, 2, x_87); +lean_ctor_set(x_92, 3, x_88); +lean_ctor_set(x_92, 4, x_61); +lean_ctor_set(x_92, 5, x_89); +x_93 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_16); +lean_ctor_set(x_93, 2, x_56); +lean_ctor_set(x_93, 3, x_60); +lean_ctor_set(x_93, 4, x_57); +lean_ctor_set(x_93, 5, x_58); +lean_ctor_set(x_93, 6, x_62); +lean_ctor_set(x_93, 7, x_91); +x_94 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_94, 0, x_93); +return x_94; } } -} -block_143: +else { -lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; +uint8_t x_95; +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_60); +lean_dec_ref(x_59); +lean_dec_ref(x_58); +lean_dec_ref(x_57); +lean_dec_ref(x_56); +lean_dec(x_16); +lean_dec_ref(x_15); +x_95 = !lean_is_exclusive(x_68); +if (x_95 == 0) +{ +return x_68; +} +else +{ +lean_object* x_96; lean_object* x_97; +x_96 = lean_ctor_get(x_68, 0); +lean_inc(x_96); +lean_dec(x_68); +x_97 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_97, 0, x_96); +return x_97; +} +} +} +block_140: +{ +lean_object* x_116; lean_object* x_117; +x_116 = lean_array_get_size(x_21); +lean_inc(x_114); +lean_inc_ref(x_113); +lean_inc(x_112); lean_inc_ref(x_111); -x_123 = lean_array_to_list(x_111); -lean_inc(x_16); -x_124 = l_Lean_mkConst(x_16, x_123); -x_125 = l_Lean_mkAppN(x_124, x_110); -lean_inc_ref(x_108); -x_126 = l_Lean_Expr_app___override(x_125, x_108); -x_127 = l_Lean_mkAppN(x_126, x_118); -lean_inc(x_120); -lean_inc_ref(x_115); -lean_inc(x_122); -lean_inc_ref(x_114); -lean_inc_ref(x_127); -x_128 = l_Lean_Meta_isTypeCorrect(x_127, x_114, x_122, x_115, x_120); -if (lean_obj_tag(x_128) == 0) +lean_inc(x_116); +x_117 = l_Lean_Meta_inferArgumentTypesN(x_116, x_99, x_111, x_112, x_113, x_114); +if (lean_obj_tag(x_117) == 0) { -lean_object* x_129; uint8_t x_130; uint8_t x_131; -x_129 = lean_ctor_get(x_128, 0); -lean_inc(x_129); -lean_dec_ref(x_128); -x_130 = 1; -x_131 = lean_unbox(x_129); +lean_object* x_118; uint8_t x_119; +x_118 = lean_ctor_get(x_117, 0); +lean_inc(x_118); +lean_dec_ref(x_117); +x_119 = lean_nat_dec_lt(x_106, x_116); +if (x_119 == 0) +{ +lean_dec(x_118); +lean_dec(x_116); +lean_dec(x_106); +lean_dec(x_101); +lean_dec_ref(x_6); +lean_dec_ref(x_1); +x_56 = x_100; +x_57 = x_103; +x_58 = x_105; +x_59 = x_110; +x_60 = x_107; +x_61 = x_109; +x_62 = x_104; +x_63 = x_111; +x_64 = x_112; +x_65 = x_113; +x_66 = x_114; +x_67 = lean_box(0); +goto block_98; +} +else +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; +lean_inc(x_116); +lean_inc(x_106); +lean_inc_ref(x_21); +x_120 = l_Array_toSubarray___redArg(x_21, x_106, x_116); +x_121 = l_Lean_Meta_MatcherApp_altNumParams(x_1); +x_122 = lean_array_get_size(x_121); +lean_inc(x_106); +x_123 = l_Array_toSubarray___redArg(x_121, x_106, x_122); +x_124 = lean_array_get_size(x_118); +lean_inc(x_106); +x_125 = l_Array_toSubarray___redArg(x_118, x_106, x_124); +x_126 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_126, 0, x_125); +lean_ctor_set(x_126, 1, x_104); +x_127 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_127, 0, x_123); +lean_ctor_set(x_127, 1, x_126); +x_128 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_128, 0, x_120); +lean_ctor_set(x_128, 1, x_127); +lean_inc(x_114); +lean_inc_ref(x_113); +lean_inc(x_112); +lean_inc_ref(x_111); +x_129 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__31___redArg(x_102, x_6, x_108, x_101, x_116, x_128, x_106, x_111, x_112, x_113, x_114); +lean_dec(x_116); +if (lean_obj_tag(x_129) == 0) +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +x_130 = lean_ctor_get(x_129, 0); +lean_inc(x_130); +lean_dec_ref(x_129); +x_131 = lean_ctor_get(x_130, 1); +lean_inc(x_131); +lean_dec(x_130); +x_132 = lean_ctor_get(x_131, 1); +lean_inc(x_132); +lean_dec(x_131); +x_133 = lean_ctor_get(x_132, 1); +lean_inc(x_133); +lean_dec(x_132); +x_56 = x_100; +x_57 = x_103; +x_58 = x_105; +x_59 = x_110; +x_60 = x_107; +x_61 = x_109; +x_62 = x_133; +x_63 = x_111; +x_64 = x_112; +x_65 = x_113; +x_66 = x_114; +x_67 = lean_box(0); +goto block_98; +} +else +{ +uint8_t x_134; +lean_dec(x_114); +lean_dec_ref(x_113); +lean_dec(x_112); +lean_dec_ref(x_111); +lean_dec_ref(x_110); +lean_dec_ref(x_109); +lean_dec_ref(x_107); +lean_dec_ref(x_105); +lean_dec_ref(x_103); +lean_dec_ref(x_100); +lean_dec_ref(x_22); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +x_134 = !lean_is_exclusive(x_129); +if (x_134 == 0) +{ +return x_129; +} +else +{ +lean_object* x_135; lean_object* x_136; +x_135 = lean_ctor_get(x_129, 0); +lean_inc(x_135); lean_dec(x_129); -if (x_131 == 0) -{ -lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; -x_132 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__1; -lean_inc_ref(x_127); -x_133 = l_Lean_indentExpr(x_127); -x_134 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_134, 0, x_132); -lean_ctor_set(x_134, 1, x_133); -lean_inc_ref(x_115); -x_135 = l_Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32(x_134, x_114, x_122, x_115, x_120); -lean_dec_ref(x_135); -lean_inc(x_120); -lean_inc_ref(x_115); -lean_inc(x_122); -lean_inc_ref(x_114); -lean_inc_ref(x_127); -x_136 = l_Lean_Meta_check(x_127, x_114, x_122, x_115, x_120); -if (lean_obj_tag(x_136) == 0) -{ -lean_dec_ref(x_136); -x_66 = x_117; -x_67 = x_108; -x_68 = x_109; -x_69 = x_110; -x_70 = x_112; -x_71 = x_127; -x_72 = x_111; -x_73 = x_119; -x_74 = x_130; -x_75 = x_118; -x_76 = x_113; -x_77 = x_116; -x_78 = x_114; -x_79 = x_122; -x_80 = x_115; -x_81 = x_120; -x_82 = lean_box(0); -goto block_107; +x_136 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_136, 0, x_135); +return x_136; +} +} +} } else { uint8_t x_137; -lean_dec_ref(x_127); -lean_dec(x_122); -lean_dec(x_120); -lean_dec(x_119); -lean_dec_ref(x_118); -lean_dec_ref(x_117); -lean_dec_ref(x_116); -lean_dec_ref(x_115); -lean_dec_ref(x_114); -lean_dec(x_113); -lean_dec_ref(x_112); +lean_dec(x_116); +lean_dec(x_114); +lean_dec_ref(x_113); +lean_dec(x_112); lean_dec_ref(x_111); lean_dec_ref(x_110); -lean_dec_ref(x_108); +lean_dec_ref(x_109); +lean_dec_ref(x_107); +lean_dec(x_106); +lean_dec_ref(x_105); +lean_dec_ref(x_104); +lean_dec_ref(x_103); +lean_dec(x_101); +lean_dec_ref(x_100); lean_dec_ref(x_22); lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_1); -x_137 = !lean_is_exclusive(x_136); +x_137 = !lean_is_exclusive(x_117); if (x_137 == 0) { -return x_136; +return x_117; } else { lean_object* x_138; lean_object* x_139; -x_138 = lean_ctor_get(x_136, 0); +x_138 = lean_ctor_get(x_117, 0); lean_inc(x_138); -lean_dec(x_136); +lean_dec(x_117); x_139 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_139, 0, x_138); return x_139; } } } -else +block_176: { -x_66 = x_117; -x_67 = x_108; -x_68 = x_109; -x_69 = x_110; -x_70 = x_112; -x_71 = x_127; -x_72 = x_111; -x_73 = x_119; -x_74 = x_130; -x_75 = x_118; -x_76 = x_113; -x_77 = x_116; -x_78 = x_114; -x_79 = x_122; -x_80 = x_115; -x_81 = x_120; -x_82 = lean_box(0); -goto block_107; -} +lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +lean_inc_ref(x_142); +x_156 = lean_array_to_list(x_142); +lean_inc(x_16); +x_157 = l_Lean_mkConst(x_16, x_156); +x_158 = l_Lean_mkAppN(x_157, x_153); +lean_inc_ref(x_149); +x_159 = l_Lean_Expr_app___override(x_158, x_149); +x_160 = l_Lean_mkAppN(x_159, x_147); +lean_inc(x_148); +lean_inc_ref(x_151); +lean_inc(x_141); +lean_inc_ref(x_146); +lean_inc_ref(x_160); +x_161 = l_Lean_Meta_isTypeCorrect(x_160, x_146, x_141, x_151, x_148); +if (lean_obj_tag(x_161) == 0) +{ +lean_object* x_162; uint8_t x_163; uint8_t x_164; +x_162 = lean_ctor_get(x_161, 0); +lean_inc(x_162); +lean_dec_ref(x_161); +x_163 = 1; +x_164 = lean_unbox(x_162); +lean_dec(x_162); +if (x_164 == 0) +{ +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; +x_165 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__1; +lean_inc_ref(x_160); +x_166 = l_Lean_indentExpr(x_160); +x_167 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_167, 0, x_165); +lean_ctor_set(x_167, 1, x_166); +lean_inc_ref(x_151); +x_168 = l_Lean_logError___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__32(x_167, x_146, x_141, x_151, x_148); +lean_dec_ref(x_168); +lean_inc(x_148); +lean_inc_ref(x_151); +lean_inc(x_141); +lean_inc_ref(x_146); +lean_inc_ref(x_160); +x_169 = l_Lean_Meta_check(x_160, x_146, x_141, x_151, x_148); +if (lean_obj_tag(x_169) == 0) +{ +lean_dec_ref(x_169); +x_99 = x_160; +x_100 = x_142; +x_101 = x_143; +x_102 = x_150; +x_103 = x_149; +x_104 = x_145; +x_105 = x_147; +x_106 = x_154; +x_107 = x_153; +x_108 = x_163; +x_109 = x_155; +x_110 = x_152; +x_111 = x_146; +x_112 = x_141; +x_113 = x_151; +x_114 = x_148; +x_115 = lean_box(0); +goto block_140; } else { -uint8_t x_140; -lean_dec_ref(x_127); -lean_dec(x_122); -lean_dec(x_120); -lean_dec(x_119); -lean_dec_ref(x_118); -lean_dec_ref(x_117); -lean_dec_ref(x_116); -lean_dec_ref(x_115); -lean_dec_ref(x_114); -lean_dec(x_113); -lean_dec_ref(x_112); -lean_dec_ref(x_111); -lean_dec_ref(x_110); -lean_dec_ref(x_108); +uint8_t x_170; +lean_dec_ref(x_160); +lean_dec_ref(x_155); +lean_dec(x_154); +lean_dec_ref(x_153); +lean_dec_ref(x_152); +lean_dec_ref(x_151); +lean_dec_ref(x_149); +lean_dec(x_148); +lean_dec_ref(x_147); +lean_dec_ref(x_146); +lean_dec_ref(x_145); +lean_dec(x_143); +lean_dec_ref(x_142); +lean_dec(x_141); lean_dec_ref(x_22); lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_1); -x_140 = !lean_is_exclusive(x_128); -if (x_140 == 0) +x_170 = !lean_is_exclusive(x_169); +if (x_170 == 0) { -return x_128; +return x_169; } else { -lean_object* x_141; lean_object* x_142; -x_141 = lean_ctor_get(x_128, 0); -lean_inc(x_141); -lean_dec(x_128); -x_142 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_142, 0, x_141); -return x_142; -} -} -} -block_187: -{ -lean_object* x_157; -x_157 = lean_apply_6(x_7, x_22, x_152, x_153, x_154, x_155, lean_box(0)); -if (lean_obj_tag(x_157) == 0) -{ -uint8_t x_158; -x_158 = !lean_is_exclusive(x_157); -if (x_158 == 0) -{ -uint8_t x_159; -x_159 = !lean_is_exclusive(x_15); -if (x_159 == 0) -{ -lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; -x_160 = lean_ctor_get(x_157, 0); -x_161 = lean_ctor_get(x_15, 4); -lean_dec(x_161); -x_162 = l_Array_append___redArg(x_149, x_160); -lean_dec(x_160); -lean_ctor_set(x_15, 4, x_145); -x_163 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_163, 0, x_15); -lean_ctor_set(x_163, 1, x_150); -lean_ctor_set(x_163, 2, x_147); -lean_ctor_set(x_163, 3, x_146); -lean_ctor_set(x_163, 4, x_144); -lean_ctor_set(x_163, 5, x_148); -lean_ctor_set(x_163, 6, x_151); -lean_ctor_set(x_163, 7, x_162); -lean_ctor_set(x_157, 0, x_163); -return x_157; -} -else -{ -lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; -x_164 = lean_ctor_get(x_157, 0); -x_165 = lean_ctor_get(x_15, 0); -x_166 = lean_ctor_get(x_15, 1); -x_167 = lean_ctor_get(x_15, 2); -x_168 = lean_ctor_get(x_15, 3); -x_169 = lean_ctor_get(x_15, 5); -lean_inc(x_169); -lean_inc(x_168); -lean_inc(x_167); -lean_inc(x_166); -lean_inc(x_165); -lean_dec(x_15); -x_170 = l_Array_append___redArg(x_149, x_164); -lean_dec(x_164); -x_171 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_171, 0, x_165); -lean_ctor_set(x_171, 1, x_166); -lean_ctor_set(x_171, 2, x_167); -lean_ctor_set(x_171, 3, x_168); -lean_ctor_set(x_171, 4, x_145); -lean_ctor_set(x_171, 5, x_169); -x_172 = lean_alloc_ctor(0, 8, 0); +lean_object* x_171; lean_object* x_172; +x_171 = lean_ctor_get(x_169, 0); +lean_inc(x_171); +lean_dec(x_169); +x_172 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_172, 1, x_150); -lean_ctor_set(x_172, 2, x_147); -lean_ctor_set(x_172, 3, x_146); -lean_ctor_set(x_172, 4, x_144); -lean_ctor_set(x_172, 5, x_148); -lean_ctor_set(x_172, 6, x_151); -lean_ctor_set(x_172, 7, x_170); -lean_ctor_set(x_157, 0, x_172); -return x_157; +return x_172; +} } } else { -lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; -x_173 = lean_ctor_get(x_157, 0); -lean_inc(x_173); -lean_dec(x_157); -x_174 = lean_ctor_get(x_15, 0); -lean_inc(x_174); -x_175 = lean_ctor_get(x_15, 1); -lean_inc(x_175); -x_176 = lean_ctor_get(x_15, 2); -lean_inc_ref(x_176); -x_177 = lean_ctor_get(x_15, 3); -lean_inc(x_177); -x_178 = lean_ctor_get(x_15, 5); -lean_inc_ref(x_178); -if (lean_is_exclusive(x_15)) { - lean_ctor_release(x_15, 0); - lean_ctor_release(x_15, 1); - lean_ctor_release(x_15, 2); - lean_ctor_release(x_15, 3); - lean_ctor_release(x_15, 4); - lean_ctor_release(x_15, 5); - x_179 = x_15; -} else { - lean_dec_ref(x_15); - x_179 = lean_box(0); -} -x_180 = l_Array_append___redArg(x_149, x_173); -lean_dec(x_173); -if (lean_is_scalar(x_179)) { - x_181 = lean_alloc_ctor(0, 6, 0); -} else { - x_181 = x_179; -} -lean_ctor_set(x_181, 0, x_174); -lean_ctor_set(x_181, 1, x_175); -lean_ctor_set(x_181, 2, x_176); -lean_ctor_set(x_181, 3, x_177); -lean_ctor_set(x_181, 4, x_145); -lean_ctor_set(x_181, 5, x_178); -x_182 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_182, 0, x_181); -lean_ctor_set(x_182, 1, x_150); -lean_ctor_set(x_182, 2, x_147); -lean_ctor_set(x_182, 3, x_146); -lean_ctor_set(x_182, 4, x_144); -lean_ctor_set(x_182, 5, x_148); -lean_ctor_set(x_182, 6, x_151); -lean_ctor_set(x_182, 7, x_180); -x_183 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_183, 0, x_182); -return x_183; +x_99 = x_160; +x_100 = x_142; +x_101 = x_143; +x_102 = x_150; +x_103 = x_149; +x_104 = x_145; +x_105 = x_147; +x_106 = x_154; +x_107 = x_153; +x_108 = x_163; +x_109 = x_155; +x_110 = x_152; +x_111 = x_146; +x_112 = x_141; +x_113 = x_151; +x_114 = x_148; +x_115 = lean_box(0); +goto block_140; } } else { -uint8_t x_184; +uint8_t x_173; +lean_dec_ref(x_160); +lean_dec_ref(x_155); +lean_dec(x_154); +lean_dec_ref(x_153); +lean_dec_ref(x_152); lean_dec_ref(x_151); -lean_dec(x_150); lean_dec_ref(x_149); -lean_dec_ref(x_148); +lean_dec(x_148); lean_dec_ref(x_147); lean_dec_ref(x_146); lean_dec_ref(x_145); -lean_dec_ref(x_144); +lean_dec(x_143); +lean_dec_ref(x_142); +lean_dec(x_141); +lean_dec_ref(x_22); +lean_dec(x_16); lean_dec_ref(x_15); -x_184 = !lean_is_exclusive(x_157); -if (x_184 == 0) -{ -return x_157; -} -else -{ -lean_object* x_185; lean_object* x_186; -x_185 = lean_ctor_get(x_157, 0); -lean_inc(x_185); -lean_dec(x_157); -x_186 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_186, 0, x_185); -return x_186; -} -} -} -block_240: -{ -lean_object* x_209; -lean_inc(x_207); -lean_inc_ref(x_206); -lean_inc(x_205); -lean_inc_ref(x_204); -lean_inc(x_188); -x_209 = l_Lean_Meta_inferArgumentTypesN(x_188, x_192, x_204, x_205, x_206, x_207); -if (lean_obj_tag(x_209) == 0) -{ -lean_object* x_210; uint8_t x_211; -x_210 = lean_ctor_get(x_209, 0); -lean_inc(x_210); -lean_dec_ref(x_209); -x_211 = lean_nat_dec_lt(x_196, x_188); -if (x_211 == 0) -{ -lean_dec(x_210); -lean_dec(x_202); -lean_dec_ref(x_201); -lean_dec(x_199); -lean_dec(x_196); -lean_dec_ref(x_195); -lean_dec(x_188); +lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_1); -x_144 = x_189; -x_145 = x_198; -x_146 = x_191; -x_147 = x_193; -x_148 = x_200; -x_149 = x_203; -x_150 = x_197; -x_151 = x_194; -x_152 = x_204; -x_153 = x_205; -x_154 = x_206; -x_155 = x_207; -x_156 = lean_box(0); -goto block_187; +x_173 = !lean_is_exclusive(x_161); +if (x_173 == 0) +{ +return x_161; } else { -lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; -lean_inc(x_188); -lean_inc(x_196); -lean_inc_ref(x_21); -x_212 = l_Array_toSubarray___redArg(x_21, x_196, x_188); -x_213 = l_Lean_Meta_MatcherApp_altNumParams(x_1); -x_214 = lean_array_get_size(x_213); -lean_inc(x_196); -x_215 = l_Array_toSubarray___redArg(x_213, x_196, x_214); -x_216 = lean_array_get_size(x_201); -lean_inc(x_196); -x_217 = l_Array_toSubarray___redArg(x_201, x_196, x_216); -x_218 = lean_array_get_size(x_195); -lean_inc(x_196); -x_219 = l_Array_toSubarray___redArg(x_195, x_196, x_218); -x_220 = lean_array_get_size(x_210); -lean_inc(x_196); -x_221 = l_Array_toSubarray___redArg(x_210, x_196, x_220); -x_222 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_222, 0, x_221); -lean_ctor_set(x_222, 1, x_194); -x_223 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_223, 0, x_219); -lean_ctor_set(x_223, 1, x_222); -x_224 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_224, 0, x_217); -lean_ctor_set(x_224, 1, x_223); -x_225 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_225, 0, x_215); -lean_ctor_set(x_225, 1, x_224); -x_226 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_226, 0, x_212); -lean_ctor_set(x_226, 1, x_225); -lean_inc(x_207); -lean_inc_ref(x_206); -lean_inc(x_205); -lean_inc_ref(x_204); -lean_inc(x_196); -x_227 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__37___redArg(x_6, x_190, x_2, x_199, x_202, x_196, x_188, x_226, x_196, x_204, x_205, x_206, x_207); -lean_dec(x_188); -if (lean_obj_tag(x_227) == 0) +lean_object* x_174; lean_object* x_175; +x_174 = lean_ctor_get(x_161, 0); +lean_inc(x_174); +lean_dec(x_161); +x_175 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_175, 0, x_174); +return x_175; +} +} +} +block_234: { -lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_228 = lean_ctor_get(x_227, 0); -lean_inc(x_228); -lean_dec_ref(x_227); -x_229 = lean_ctor_get(x_228, 1); +lean_object* x_198; +lean_inc(x_196); +lean_inc_ref(x_195); +lean_inc(x_194); +lean_inc_ref(x_193); +lean_inc(x_182); +x_198 = l_Lean_Meta_inferArgumentTypesN(x_182, x_187, x_193, x_194, x_195, x_196); +if (lean_obj_tag(x_198) == 0) +{ +lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; uint8_t x_206; +x_199 = lean_ctor_get(x_198, 0); +lean_inc(x_199); +lean_dec_ref(x_198); +x_200 = lean_ctor_get(x_15, 0); +lean_inc(x_200); +x_201 = lean_ctor_get(x_15, 1); +lean_inc(x_201); +x_202 = lean_ctor_get(x_15, 2); +lean_inc_ref(x_202); +x_203 = lean_ctor_get(x_15, 3); +lean_inc(x_203); +x_204 = lean_ctor_get(x_15, 5); +lean_inc_ref(x_204); +lean_dec_ref(x_15); +x_205 = lean_ctor_get(x_188, 2); +lean_inc_ref(x_205); +lean_dec_ref(x_188); +x_206 = lean_nat_dec_lt(x_189, x_182); +if (x_206 == 0) +{ +lean_dec_ref(x_205); +lean_dec(x_199); +lean_dec(x_189); +lean_dec_ref(x_186); +lean_dec(x_182); +lean_dec(x_181); +lean_dec(x_178); +lean_dec_ref(x_21); +lean_dec_ref(x_6); +x_23 = x_177; +x_24 = x_202; +x_25 = x_183; +x_26 = x_184; +x_27 = x_192; +x_28 = x_180; +x_29 = x_204; +x_30 = x_203; +x_31 = x_200; +x_32 = x_201; +x_33 = x_190; +x_34 = x_191; +x_35 = x_179; +x_36 = x_193; +x_37 = x_194; +x_38 = x_195; +x_39 = x_196; +x_40 = lean_box(0); +goto block_55; +} +else +{ +lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; +lean_inc(x_182); +lean_inc(x_189); +x_207 = l_Array_toSubarray___redArg(x_21, x_189, x_182); +x_208 = lean_array_get_size(x_202); +lean_inc(x_189); +lean_inc_ref(x_202); +x_209 = l_Array_toSubarray___redArg(x_202, x_189, x_208); +x_210 = lean_array_get_size(x_205); +lean_inc(x_189); +x_211 = l_Array_toSubarray___redArg(x_205, x_189, x_210); +x_212 = lean_array_get_size(x_186); +lean_inc(x_189); +x_213 = l_Array_toSubarray___redArg(x_186, x_189, x_212); +x_214 = lean_array_get_size(x_199); +lean_inc(x_189); +x_215 = l_Array_toSubarray___redArg(x_199, x_189, x_214); +x_216 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_216, 0, x_215); +lean_ctor_set(x_216, 1, x_179); +x_217 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_217, 0, x_213); +lean_ctor_set(x_217, 1, x_216); +x_218 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_218, 0, x_211); +lean_ctor_set(x_218, 1, x_217); +x_219 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_219, 0, x_209); +lean_ctor_set(x_219, 1, x_218); +x_220 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_220, 0, x_207); +lean_ctor_set(x_220, 1, x_219); +lean_inc(x_196); +lean_inc_ref(x_195); +lean_inc(x_194); +lean_inc_ref(x_193); +lean_inc(x_189); +x_221 = l_Std_Rxo_Iterator_instIteratorLoop_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__39___redArg(x_189, x_6, x_185, x_2, x_178, x_181, x_182, x_189, x_220, x_189, x_193, x_194, x_195, x_196); +lean_dec(x_182); +lean_dec(x_189); +if (lean_obj_tag(x_221) == 0) +{ +lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; +x_222 = lean_ctor_get(x_221, 0); +lean_inc(x_222); +lean_dec_ref(x_221); +x_223 = lean_ctor_get(x_222, 1); +lean_inc(x_223); +lean_dec(x_222); +x_224 = lean_ctor_get(x_223, 1); +lean_inc(x_224); +lean_dec(x_223); +x_225 = lean_ctor_get(x_224, 1); +lean_inc(x_225); +lean_dec(x_224); +x_226 = lean_ctor_get(x_225, 1); +lean_inc(x_226); +lean_dec(x_225); +x_227 = lean_ctor_get(x_226, 1); +lean_inc(x_227); +lean_dec(x_226); +x_23 = x_177; +x_24 = x_202; +x_25 = x_183; +x_26 = x_184; +x_27 = x_192; +x_28 = x_180; +x_29 = x_204; +x_30 = x_203; +x_31 = x_200; +x_32 = x_201; +x_33 = x_190; +x_34 = x_191; +x_35 = x_227; +x_36 = x_193; +x_37 = x_194; +x_38 = x_195; +x_39 = x_196; +x_40 = lean_box(0); +goto block_55; +} +else +{ +uint8_t x_228; +lean_dec_ref(x_204); +lean_dec(x_203); +lean_dec_ref(x_202); +lean_dec(x_201); +lean_dec(x_200); +lean_dec(x_196); +lean_dec_ref(x_195); +lean_dec(x_194); +lean_dec_ref(x_193); +lean_dec_ref(x_192); +lean_dec_ref(x_191); +lean_dec_ref(x_190); +lean_dec(x_184); +lean_dec_ref(x_183); +lean_dec_ref(x_180); +lean_dec_ref(x_177); +lean_dec_ref(x_22); +lean_dec_ref(x_7); +x_228 = !lean_is_exclusive(x_221); +if (x_228 == 0) +{ +return x_221; +} +else +{ +lean_object* x_229; lean_object* x_230; +x_229 = lean_ctor_get(x_221, 0); lean_inc(x_229); -lean_dec(x_228); -x_230 = lean_ctor_get(x_229, 1); -lean_inc(x_230); -lean_dec(x_229); -x_231 = lean_ctor_get(x_230, 1); -lean_inc(x_231); -lean_dec(x_230); -x_232 = lean_ctor_get(x_231, 1); -lean_inc(x_232); -lean_dec(x_231); -x_233 = lean_ctor_get(x_232, 1); -lean_inc(x_233); -lean_dec(x_232); -x_144 = x_189; -x_145 = x_198; -x_146 = x_191; -x_147 = x_193; -x_148 = x_200; -x_149 = x_203; -x_150 = x_197; -x_151 = x_233; -x_152 = x_204; -x_153 = x_205; -x_154 = x_206; -x_155 = x_207; -x_156 = lean_box(0); -goto block_187; -} -else -{ -uint8_t x_234; -lean_dec(x_207); -lean_dec_ref(x_206); -lean_dec(x_205); -lean_dec_ref(x_204); -lean_dec_ref(x_203); -lean_dec_ref(x_200); -lean_dec_ref(x_198); -lean_dec(x_197); -lean_dec_ref(x_193); -lean_dec_ref(x_191); -lean_dec_ref(x_189); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -x_234 = !lean_is_exclusive(x_227); -if (x_234 == 0) -{ -return x_227; -} -else -{ -lean_object* x_235; lean_object* x_236; -x_235 = lean_ctor_get(x_227, 0); -lean_inc(x_235); -lean_dec(x_227); -x_236 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_236, 0, x_235); -return x_236; +lean_dec(x_221); +x_230 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_230, 0, x_229); +return x_230; } } } } else { -uint8_t x_237; -lean_dec(x_207); -lean_dec_ref(x_206); -lean_dec(x_205); -lean_dec_ref(x_204); -lean_dec_ref(x_203); -lean_dec(x_202); -lean_dec_ref(x_201); -lean_dec_ref(x_200); -lean_dec(x_199); -lean_dec_ref(x_198); -lean_dec(x_197); +uint8_t x_231; lean_dec(x_196); lean_dec_ref(x_195); -lean_dec_ref(x_194); +lean_dec(x_194); lean_dec_ref(x_193); +lean_dec_ref(x_192); lean_dec_ref(x_191); -lean_dec_ref(x_189); -lean_dec(x_188); +lean_dec_ref(x_190); +lean_dec(x_189); +lean_dec_ref(x_188); +lean_dec_ref(x_186); +lean_dec(x_184); +lean_dec_ref(x_183); +lean_dec(x_182); +lean_dec(x_181); +lean_dec_ref(x_180); +lean_dec_ref(x_179); +lean_dec(x_178); +lean_dec_ref(x_177); lean_dec_ref(x_22); +lean_dec_ref(x_21); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_237 = !lean_is_exclusive(x_209); -if (x_237 == 0) +x_231 = !lean_is_exclusive(x_198); +if (x_231 == 0) { -return x_209; +return x_198; } else { -lean_object* x_238; lean_object* x_239; -x_238 = lean_ctor_get(x_209, 0); -lean_inc(x_238); -lean_dec(x_209); -x_239 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_239, 0, x_238); -return x_239; +lean_object* x_232; lean_object* x_233; +x_232 = lean_ctor_get(x_198, 0); +lean_inc(x_232); +lean_dec(x_198); +x_233 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_233, 0, x_232); +return x_233; } } } -block_293: +block_287: { -lean_object* x_259; lean_object* x_260; -x_259 = lean_array_get_size(x_21); -lean_inc(x_257); -lean_inc_ref(x_256); +lean_object* x_253; lean_object* x_254; +x_253 = lean_array_get_size(x_21); +lean_inc(x_251); +lean_inc_ref(x_250); +lean_inc(x_249); +lean_inc_ref(x_248); +lean_inc(x_253); +x_254 = l_Lean_Meta_inferArgumentTypesN(x_253, x_245, x_248, x_249, x_250, x_251); +if (lean_obj_tag(x_254) == 0) +{ +lean_object* x_255; lean_object* x_256; +x_255 = lean_ctor_get(x_254, 0); lean_inc(x_255); -lean_inc_ref(x_254); -lean_inc(x_259); -x_260 = l_Lean_Meta_inferArgumentTypesN(x_259, x_251, x_254, x_255, x_256, x_257); -if (lean_obj_tag(x_260) == 0) +lean_dec_ref(x_254); +lean_inc(x_251); +lean_inc_ref(x_250); +lean_inc(x_249); +lean_inc_ref(x_248); +x_256 = lean_get_match_equations_for(x_16, x_248, x_249, x_250, x_251); +if (lean_obj_tag(x_256) == 0) { -lean_object* x_261; lean_object* x_262; -x_261 = lean_ctor_get(x_260, 0); -lean_inc(x_261); -lean_dec_ref(x_260); +lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; +x_257 = lean_ctor_get(x_256, 0); lean_inc(x_257); -lean_inc_ref(x_256); -lean_inc(x_255); -lean_inc_ref(x_254); -lean_inc(x_16); -x_262 = lean_get_match_equations_for(x_16, x_254, x_255, x_256, x_257); -if (lean_obj_tag(x_262) == 0) +lean_dec_ref(x_256); +x_258 = lean_ctor_get(x_257, 1); +lean_inc(x_258); +x_259 = lean_ctor_get(x_257, 2); +lean_inc_ref(x_259); +lean_dec(x_257); +lean_inc(x_258); +x_260 = l_Lean_mkConst(x_258, x_244); +x_261 = l_Lean_mkAppN(x_260, x_243); +lean_inc_ref(x_239); +x_262 = l_Lean_Expr_app___override(x_261, x_239); +x_263 = l_Lean_mkAppN(x_262, x_241); +lean_inc(x_251); +lean_inc_ref(x_250); +lean_inc(x_249); +lean_inc_ref(x_248); +lean_inc_ref(x_263); +x_264 = l_Lean_Meta_isTypeCorrect(x_263, x_248, x_249, x_250, x_251); +if (lean_obj_tag(x_264) == 0) { -lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; -x_263 = lean_ctor_get(x_262, 0); -lean_inc(x_263); -lean_dec_ref(x_262); -x_264 = lean_ctor_get(x_263, 1); -lean_inc(x_264); -x_265 = lean_ctor_get(x_263, 2); -lean_inc_ref(x_265); -lean_dec(x_263); -lean_inc(x_264); -x_266 = l_Lean_mkConst(x_264, x_252); -x_267 = l_Lean_mkAppN(x_266, x_244); -lean_inc_ref(x_242); -x_268 = l_Lean_Expr_app___override(x_267, x_242); -x_269 = l_Lean_mkAppN(x_268, x_248); -lean_inc(x_257); -lean_inc_ref(x_256); -lean_inc(x_255); -lean_inc_ref(x_254); -lean_inc_ref(x_269); -x_270 = l_Lean_Meta_isTypeCorrect(x_269, x_254, x_255, x_256, x_257); -if (lean_obj_tag(x_270) == 0) +lean_object* x_265; uint8_t x_266; +x_265 = lean_ctor_get(x_264, 0); +lean_inc(x_265); +lean_dec_ref(x_264); +x_266 = lean_unbox(x_265); +lean_dec(x_265); +if (x_266 == 0) { -lean_object* x_271; uint8_t x_272; -x_271 = lean_ctor_get(x_270, 0); -lean_inc(x_271); -lean_dec_ref(x_270); -x_272 = lean_unbox(x_271); -lean_dec(x_271); -if (x_272 == 0) +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_267 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__3; +lean_inc_ref(x_263); +x_268 = l_Lean_indentExpr(x_263); +x_269 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_269, 0, x_267); +lean_ctor_set(x_269, 1, x_268); +x_270 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__5; +x_271 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_271, 0, x_269); +lean_ctor_set(x_271, 1, x_270); +x_272 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___lam__0), 2, 1); +lean_closure_set(x_272, 0, x_271); +lean_inc_ref(x_263); +x_273 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); +lean_closure_set(x_273, 0, x_263); +lean_inc(x_251); +lean_inc_ref(x_250); +lean_inc(x_249); +lean_inc_ref(x_248); +x_274 = l_Lean_Meta_mapErrorImp___redArg(x_273, x_272, x_248, x_249, x_250, x_251); +if (lean_obj_tag(x_274) == 0) { -lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; -x_273 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__3; -lean_inc_ref(x_269); -x_274 = l_Lean_indentExpr(x_269); -x_275 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_275, 0, x_273); -lean_ctor_set(x_275, 1, x_274); -x_276 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__5; -x_277 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_277, 0, x_275); -lean_ctor_set(x_277, 1, x_276); -x_278 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___lam__0), 2, 1); -lean_closure_set(x_278, 0, x_277); -lean_inc_ref(x_269); -x_279 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); -lean_closure_set(x_279, 0, x_269); -lean_inc(x_257); -lean_inc_ref(x_256); -lean_inc(x_255); -lean_inc_ref(x_254); -x_280 = l_Lean_Meta_mapErrorImp___redArg(x_279, x_278, x_254, x_255, x_256, x_257); -if (lean_obj_tag(x_280) == 0) -{ -lean_dec_ref(x_280); +lean_dec_ref(x_274); +x_177 = x_236; +x_178 = x_237; +x_179 = x_240; +x_180 = x_241; +x_181 = x_235; +x_182 = x_253; +x_183 = x_239; +x_184 = x_258; +x_185 = x_238; +x_186 = x_255; +x_187 = x_263; x_188 = x_259; x_189 = x_242; x_190 = x_243; -x_191 = x_244; -x_192 = x_269; -x_193 = x_246; -x_194 = x_245; -x_195 = x_261; -x_196 = x_250; -x_197 = x_264; -x_198 = x_241; -x_199 = x_247; -x_200 = x_248; -x_201 = x_265; -x_202 = x_249; -x_203 = x_253; -x_204 = x_254; -x_205 = x_255; -x_206 = x_256; -x_207 = x_257; -x_208 = lean_box(0); -goto block_240; +x_191 = x_246; +x_192 = x_247; +x_193 = x_248; +x_194 = x_249; +x_195 = x_250; +x_196 = x_251; +x_197 = lean_box(0); +goto block_234; +} +else +{ +uint8_t x_275; +lean_dec_ref(x_263); +lean_dec_ref(x_259); +lean_dec(x_258); +lean_dec(x_255); +lean_dec(x_253); +lean_dec(x_251); +lean_dec_ref(x_250); +lean_dec(x_249); +lean_dec_ref(x_248); +lean_dec_ref(x_247); +lean_dec_ref(x_246); +lean_dec_ref(x_243); +lean_dec(x_242); +lean_dec_ref(x_241); +lean_dec_ref(x_240); +lean_dec_ref(x_239); +lean_dec(x_237); +lean_dec_ref(x_236); +lean_dec(x_235); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_275 = !lean_is_exclusive(x_274); +if (x_275 == 0) +{ +return x_274; +} +else +{ +lean_object* x_276; lean_object* x_277; +x_276 = lean_ctor_get(x_274, 0); +lean_inc(x_276); +lean_dec(x_274); +x_277 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_277, 0, x_276); +return x_277; +} +} +} +else +{ +x_177 = x_236; +x_178 = x_237; +x_179 = x_240; +x_180 = x_241; +x_181 = x_235; +x_182 = x_253; +x_183 = x_239; +x_184 = x_258; +x_185 = x_238; +x_186 = x_255; +x_187 = x_263; +x_188 = x_259; +x_189 = x_242; +x_190 = x_243; +x_191 = x_246; +x_192 = x_247; +x_193 = x_248; +x_194 = x_249; +x_195 = x_250; +x_196 = x_251; +x_197 = lean_box(0); +goto block_234; +} +} +else +{ +uint8_t x_278; +lean_dec_ref(x_263); +lean_dec_ref(x_259); +lean_dec(x_258); +lean_dec(x_255); +lean_dec(x_253); +lean_dec(x_251); +lean_dec_ref(x_250); +lean_dec(x_249); +lean_dec_ref(x_248); +lean_dec_ref(x_247); +lean_dec_ref(x_246); +lean_dec_ref(x_243); +lean_dec(x_242); +lean_dec_ref(x_241); +lean_dec_ref(x_240); +lean_dec_ref(x_239); +lean_dec(x_237); +lean_dec_ref(x_236); +lean_dec(x_235); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_278 = !lean_is_exclusive(x_264); +if (x_278 == 0) +{ +return x_264; +} +else +{ +lean_object* x_279; lean_object* x_280; +x_279 = lean_ctor_get(x_264, 0); +lean_inc(x_279); +lean_dec(x_264); +x_280 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_280, 0, x_279); +return x_280; +} +} } else { uint8_t x_281; -lean_dec_ref(x_269); -lean_dec_ref(x_265); -lean_dec(x_264); -lean_dec(x_261); -lean_dec(x_259); -lean_dec(x_257); -lean_dec_ref(x_256); lean_dec(x_255); -lean_dec_ref(x_254); -lean_dec_ref(x_253); -lean_dec(x_250); +lean_dec(x_253); +lean_dec(x_251); +lean_dec_ref(x_250); lean_dec(x_249); lean_dec_ref(x_248); -lean_dec(x_247); +lean_dec_ref(x_247); lean_dec_ref(x_246); -lean_dec_ref(x_245); -lean_dec_ref(x_244); -lean_dec_ref(x_242); +lean_dec(x_244); +lean_dec_ref(x_243); +lean_dec(x_242); lean_dec_ref(x_241); +lean_dec_ref(x_240); +lean_dec_ref(x_239); +lean_dec(x_237); +lean_dec_ref(x_236); +lean_dec(x_235); lean_dec_ref(x_22); +lean_dec_ref(x_21); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_281 = !lean_is_exclusive(x_280); +x_281 = !lean_is_exclusive(x_256); if (x_281 == 0) { -return x_280; +return x_256; } else { lean_object* x_282; lean_object* x_283; -x_282 = lean_ctor_get(x_280, 0); +x_282 = lean_ctor_get(x_256, 0); lean_inc(x_282); -lean_dec(x_280); +lean_dec(x_256); x_283 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_283, 0, x_282); return x_283; @@ -21443,1133 +28470,1032 @@ return x_283; } else { -x_188 = x_259; -x_189 = x_242; -x_190 = x_243; -x_191 = x_244; -x_192 = x_269; -x_193 = x_246; -x_194 = x_245; -x_195 = x_261; -x_196 = x_250; -x_197 = x_264; -x_198 = x_241; -x_199 = x_247; -x_200 = x_248; -x_201 = x_265; -x_202 = x_249; -x_203 = x_253; -x_204 = x_254; -x_205 = x_255; -x_206 = x_256; -x_207 = x_257; -x_208 = lean_box(0); -goto block_240; -} -} -else -{ uint8_t x_284; -lean_dec_ref(x_269); -lean_dec_ref(x_265); -lean_dec(x_264); -lean_dec(x_261); -lean_dec(x_259); -lean_dec(x_257); -lean_dec_ref(x_256); -lean_dec(x_255); -lean_dec_ref(x_254); -lean_dec_ref(x_253); -lean_dec(x_250); +lean_dec(x_253); +lean_dec(x_251); +lean_dec_ref(x_250); lean_dec(x_249); lean_dec_ref(x_248); -lean_dec(x_247); +lean_dec_ref(x_247); lean_dec_ref(x_246); -lean_dec_ref(x_245); -lean_dec_ref(x_244); -lean_dec_ref(x_242); +lean_dec(x_244); +lean_dec_ref(x_243); +lean_dec(x_242); lean_dec_ref(x_241); +lean_dec_ref(x_240); +lean_dec_ref(x_239); +lean_dec(x_237); +lean_dec_ref(x_236); +lean_dec(x_235); lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_284 = !lean_is_exclusive(x_270); +x_284 = !lean_is_exclusive(x_254); if (x_284 == 0) { -return x_270; +return x_254; } else { lean_object* x_285; lean_object* x_286; -x_285 = lean_ctor_get(x_270, 0); +x_285 = lean_ctor_get(x_254, 0); lean_inc(x_285); -lean_dec(x_270); +lean_dec(x_254); x_286 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_286, 0, x_285); return x_286; } } } -else +block_400: { -uint8_t x_287; -lean_dec(x_261); -lean_dec(x_259); -lean_dec(x_257); -lean_dec_ref(x_256); -lean_dec(x_255); -lean_dec_ref(x_254); -lean_dec_ref(x_253); -lean_dec(x_252); -lean_dec(x_250); -lean_dec(x_249); -lean_dec_ref(x_248); -lean_dec(x_247); -lean_dec_ref(x_246); -lean_dec_ref(x_245); -lean_dec_ref(x_244); -lean_dec_ref(x_242); -lean_dec_ref(x_241); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_287 = !lean_is_exclusive(x_262); -if (x_287 == 0) +lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; size_t x_311; lean_object* x_312; +x_303 = lean_unsigned_to_nat(0u); +x_304 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_run___redArg___closed__0; +x_305 = l_Array_reverse___redArg(x_292); +x_306 = lean_array_get_size(x_305); +x_307 = l_Array_toSubarray___redArg(x_305, x_303, x_306); +lean_inc_ref(x_293); +x_308 = l_Array_reverse___redArg(x_293); +x_309 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__6; +x_310 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_310, 0, x_307); +lean_ctor_set(x_310, 1, x_309); +x_311 = lean_array_size(x_308); +lean_inc(x_301); +lean_inc_ref(x_300); +lean_inc(x_299); +lean_inc_ref(x_298); +x_312 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__29(x_308, x_311, x_294, x_310, x_298, x_299, x_300, x_301); +lean_dec_ref(x_308); +if (lean_obj_tag(x_312) == 0) { -return x_262; -} -else +lean_object* x_313; uint8_t x_314; +x_313 = lean_ctor_get(x_312, 0); +lean_inc(x_313); +lean_dec_ref(x_312); +x_314 = !lean_is_exclusive(x_313); +if (x_314 == 0) { -lean_object* x_288; lean_object* x_289; -x_288 = lean_ctor_get(x_262, 0); -lean_inc(x_288); -lean_dec(x_262); -x_289 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_289, 0, x_288); -return x_289; -} -} -} -else -{ -uint8_t x_290; -lean_dec(x_259); -lean_dec(x_257); -lean_dec_ref(x_256); -lean_dec(x_255); -lean_dec_ref(x_254); -lean_dec_ref(x_253); -lean_dec(x_252); -lean_dec(x_250); -lean_dec(x_249); -lean_dec_ref(x_248); -lean_dec(x_247); -lean_dec_ref(x_246); -lean_dec_ref(x_245); -lean_dec_ref(x_244); -lean_dec_ref(x_242); -lean_dec_ref(x_241); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_290 = !lean_is_exclusive(x_260); -if (x_290 == 0) -{ -return x_260; -} -else -{ -lean_object* x_291; lean_object* x_292; -x_291 = lean_ctor_get(x_260, 0); -lean_inc(x_291); -lean_dec(x_260); -x_292 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_292, 0, x_291); -return x_292; -} -} -} -block_406: -{ -lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; size_t x_317; lean_object* x_318; -x_309 = lean_unsigned_to_nat(0u); -x_310 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_run___redArg___closed__0; -x_311 = l_Array_reverse___redArg(x_297); -x_312 = lean_array_get_size(x_311); -x_313 = l_Array_toSubarray___redArg(x_311, x_309, x_312); -lean_inc_ref(x_301); -x_314 = l_Array_reverse___redArg(x_301); -x_315 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__6; -x_316 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_316, 0, x_313); -lean_ctor_set(x_316, 1, x_315); -x_317 = lean_array_size(x_314); -lean_inc(x_307); -lean_inc_ref(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -x_318 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__29(x_314, x_317, x_300, x_316, x_304, x_305, x_306, x_307); -lean_dec_ref(x_314); -if (lean_obj_tag(x_318) == 0) -{ -lean_object* x_319; uint8_t x_320; -x_319 = lean_ctor_get(x_318, 0); -lean_inc(x_319); -lean_dec_ref(x_318); -x_320 = !lean_is_exclusive(x_319); -if (x_320 == 0) -{ -lean_object* x_321; lean_object* x_322; -x_321 = lean_ctor_get(x_319, 1); -x_322 = lean_ctor_get(x_319, 0); -lean_dec(x_322); +lean_object* x_315; lean_object* x_316; +x_315 = lean_ctor_get(x_313, 1); +x_316 = lean_ctor_get(x_313, 0); +lean_dec(x_316); if (x_2 == 0) { -lean_object* x_323; lean_object* x_324; -lean_free_object(x_319); -lean_dec(x_302); -lean_inc(x_16); -x_323 = lean_ctor_get(x_321, 0); -lean_inc(x_323); -x_324 = lean_ctor_get(x_321, 1); -lean_inc(x_324); -lean_dec(x_321); -x_108 = x_296; -x_109 = x_298; -x_110 = x_299; -x_111 = x_303; -x_112 = x_310; -x_113 = x_309; -x_114 = x_304; -x_115 = x_306; -x_116 = x_324; -x_117 = x_295; -x_118 = x_301; -x_119 = x_323; -x_120 = x_307; -x_121 = lean_box(0); -x_122 = x_305; -goto block_143; +lean_object* x_317; lean_object* x_318; +lean_free_object(x_313); +lean_dec(x_289); +x_317 = lean_ctor_get(x_315, 0); +lean_inc(x_317); +x_318 = lean_ctor_get(x_315, 1); +lean_inc(x_318); +lean_dec(x_315); +x_141 = x_299; +x_142 = x_297; +x_143 = x_317; +x_144 = lean_box(0); +x_145 = x_304; +x_146 = x_298; +x_147 = x_293; +x_148 = x_301; +x_149 = x_291; +x_150 = x_290; +x_151 = x_300; +x_152 = x_318; +x_153 = x_295; +x_154 = x_303; +x_155 = x_296; +goto block_176; } else { -if (x_294 == 0) +if (x_288 == 0) { -uint8_t x_325; -x_325 = !lean_is_exclusive(x_321); -if (x_325 == 0) +uint8_t x_319; +lean_inc_ref(x_21); +lean_dec_ref(x_1); +x_319 = !lean_is_exclusive(x_315); +if (x_319 == 0) { -lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; -x_326 = lean_ctor_get(x_321, 0); -x_327 = lean_ctor_get(x_321, 1); -lean_inc_ref(x_303); -x_328 = lean_array_to_list(x_303); +lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; +x_320 = lean_ctor_get(x_315, 0); +x_321 = lean_ctor_get(x_315, 1); +lean_inc_ref(x_297); +x_322 = lean_array_to_list(x_297); +lean_inc(x_322); +lean_inc(x_16); +x_323 = l_Lean_mkConst(x_16, x_322); +x_324 = l_Lean_mkAppN(x_323, x_295); +lean_inc_ref(x_291); +x_325 = l_Lean_Expr_app___override(x_324, x_291); +x_326 = l_Lean_mkAppN(x_325, x_293); +lean_inc(x_301); +lean_inc_ref(x_300); +lean_inc(x_299); +lean_inc_ref(x_298); +lean_inc_ref(x_326); +x_327 = l_Lean_Meta_isTypeCorrect(x_326, x_298, x_299, x_300, x_301); +if (lean_obj_tag(x_327) == 0) +{ +lean_object* x_328; uint8_t x_329; +x_328 = lean_ctor_get(x_327, 0); lean_inc(x_328); -lean_inc(x_16); -x_329 = l_Lean_mkConst(x_16, x_328); -x_330 = l_Lean_mkAppN(x_329, x_299); -lean_inc_ref(x_296); -x_331 = l_Lean_Expr_app___override(x_330, x_296); -x_332 = l_Lean_mkAppN(x_331, x_301); -lean_inc(x_307); -lean_inc_ref(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -lean_inc_ref(x_332); -x_333 = l_Lean_Meta_isTypeCorrect(x_332, x_304, x_305, x_306, x_307); -if (lean_obj_tag(x_333) == 0) +lean_dec_ref(x_327); +x_329 = lean_unbox(x_328); +lean_dec(x_328); +if (x_329 == 0) { -lean_object* x_334; uint8_t x_335; -x_334 = lean_ctor_get(x_333, 0); -lean_inc(x_334); -lean_dec_ref(x_333); -x_335 = lean_unbox(x_334); -lean_dec(x_334); -if (x_335 == 0) +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; +x_330 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__8; +lean_inc_ref(x_326); +x_331 = l_Lean_indentExpr(x_326); +lean_ctor_set_tag(x_315, 7); +lean_ctor_set(x_315, 1, x_331); +lean_ctor_set(x_315, 0, x_330); +x_332 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__5; +lean_ctor_set_tag(x_313, 7); +lean_ctor_set(x_313, 1, x_332); +lean_ctor_set(x_313, 0, x_315); +x_333 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___lam__0), 2, 1); +lean_closure_set(x_333, 0, x_313); +lean_inc_ref(x_326); +x_334 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); +lean_closure_set(x_334, 0, x_326); +lean_inc(x_301); +lean_inc_ref(x_300); +lean_inc(x_299); +lean_inc_ref(x_298); +x_335 = l_Lean_Meta_mapErrorImp___redArg(x_334, x_333, x_298, x_299, x_300, x_301); +if (lean_obj_tag(x_335) == 0) { -lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; -x_336 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__8; -lean_inc_ref(x_332); -x_337 = l_Lean_indentExpr(x_332); -lean_ctor_set_tag(x_321, 7); -lean_ctor_set(x_321, 1, x_337); -lean_ctor_set(x_321, 0, x_336); -x_338 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__5; -lean_ctor_set_tag(x_319, 7); -lean_ctor_set(x_319, 1, x_338); -lean_ctor_set(x_319, 0, x_321); -x_339 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___lam__0), 2, 1); -lean_closure_set(x_339, 0, x_319); -lean_inc_ref(x_332); -x_340 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); -lean_closure_set(x_340, 0, x_332); -lean_inc(x_307); -lean_inc_ref(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -x_341 = l_Lean_Meta_mapErrorImp___redArg(x_340, x_339, x_304, x_305, x_306, x_307); -if (lean_obj_tag(x_341) == 0) -{ -lean_dec_ref(x_341); -x_241 = x_295; -x_242 = x_296; -x_243 = x_298; -x_244 = x_299; -x_245 = x_310; -x_246 = x_303; -x_247 = x_326; -x_248 = x_301; -x_249 = x_302; -x_250 = x_309; -x_251 = x_332; -x_252 = x_328; -x_253 = x_327; -x_254 = x_304; -x_255 = x_305; -x_256 = x_306; -x_257 = x_307; -x_258 = lean_box(0); -goto block_293; +lean_dec_ref(x_335); +x_235 = x_289; +x_236 = x_297; +x_237 = x_320; +x_238 = x_290; +x_239 = x_291; +x_240 = x_304; +x_241 = x_293; +x_242 = x_303; +x_243 = x_295; +x_244 = x_322; +x_245 = x_326; +x_246 = x_296; +x_247 = x_321; +x_248 = x_298; +x_249 = x_299; +x_250 = x_300; +x_251 = x_301; +x_252 = lean_box(0); +goto block_287; } else { -uint8_t x_342; -lean_dec_ref(x_332); -lean_dec(x_328); -lean_dec(x_327); -lean_dec(x_326); -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec_ref(x_303); -lean_dec(x_302); -lean_dec_ref(x_301); -lean_dec_ref(x_299); +uint8_t x_336; +lean_dec_ref(x_326); +lean_dec(x_322); +lean_dec(x_321); +lean_dec(x_320); +lean_dec(x_301); +lean_dec_ref(x_300); +lean_dec(x_299); +lean_dec_ref(x_298); +lean_dec_ref(x_297); lean_dec_ref(x_296); lean_dec_ref(x_295); +lean_dec_ref(x_293); +lean_dec_ref(x_291); +lean_dec(x_289); lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) +x_336 = !lean_is_exclusive(x_335); +if (x_336 == 0) { +return x_335; +} +else +{ +lean_object* x_337; lean_object* x_338; +x_337 = lean_ctor_get(x_335, 0); +lean_inc(x_337); +lean_dec(x_335); +x_338 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_338, 0, x_337); +return x_338; +} +} +} +else +{ +lean_free_object(x_315); +lean_free_object(x_313); +x_235 = x_289; +x_236 = x_297; +x_237 = x_320; +x_238 = x_290; +x_239 = x_291; +x_240 = x_304; +x_241 = x_293; +x_242 = x_303; +x_243 = x_295; +x_244 = x_322; +x_245 = x_326; +x_246 = x_296; +x_247 = x_321; +x_248 = x_298; +x_249 = x_299; +x_250 = x_300; +x_251 = x_301; +x_252 = lean_box(0); +goto block_287; +} +} +else +{ +uint8_t x_339; +lean_dec_ref(x_326); +lean_dec(x_322); +lean_free_object(x_315); +lean_dec(x_321); +lean_dec(x_320); +lean_free_object(x_313); +lean_dec(x_301); +lean_dec_ref(x_300); +lean_dec(x_299); +lean_dec_ref(x_298); +lean_dec_ref(x_297); +lean_dec_ref(x_296); +lean_dec_ref(x_295); +lean_dec_ref(x_293); +lean_dec_ref(x_291); +lean_dec(x_289); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_339 = !lean_is_exclusive(x_327); +if (x_339 == 0) +{ +return x_327; +} +else +{ +lean_object* x_340; lean_object* x_341; +x_340 = lean_ctor_get(x_327, 0); +lean_inc(x_340); +lean_dec(x_327); +x_341 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_341, 0, x_340); return x_341; } +} +} else { -lean_object* x_343; lean_object* x_344; -x_343 = lean_ctor_get(x_341, 0); +lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; +x_342 = lean_ctor_get(x_315, 0); +x_343 = lean_ctor_get(x_315, 1); lean_inc(x_343); -lean_dec(x_341); -x_344 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_344, 0, x_343); -return x_344; -} -} -} -else +lean_inc(x_342); +lean_dec(x_315); +lean_inc_ref(x_297); +x_344 = lean_array_to_list(x_297); +lean_inc(x_344); +lean_inc(x_16); +x_345 = l_Lean_mkConst(x_16, x_344); +x_346 = l_Lean_mkAppN(x_345, x_295); +lean_inc_ref(x_291); +x_347 = l_Lean_Expr_app___override(x_346, x_291); +x_348 = l_Lean_mkAppN(x_347, x_293); +lean_inc(x_301); +lean_inc_ref(x_300); +lean_inc(x_299); +lean_inc_ref(x_298); +lean_inc_ref(x_348); +x_349 = l_Lean_Meta_isTypeCorrect(x_348, x_298, x_299, x_300, x_301); +if (lean_obj_tag(x_349) == 0) { -lean_free_object(x_321); -lean_free_object(x_319); -x_241 = x_295; -x_242 = x_296; -x_243 = x_298; -x_244 = x_299; -x_245 = x_310; -x_246 = x_303; -x_247 = x_326; -x_248 = x_301; -x_249 = x_302; -x_250 = x_309; -x_251 = x_332; -x_252 = x_328; -x_253 = x_327; -x_254 = x_304; -x_255 = x_305; -x_256 = x_306; -x_257 = x_307; -x_258 = lean_box(0); -goto block_293; -} -} -else -{ -uint8_t x_345; -lean_dec_ref(x_332); -lean_dec(x_328); -lean_free_object(x_321); -lean_dec(x_327); -lean_dec(x_326); -lean_free_object(x_319); -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec_ref(x_303); -lean_dec(x_302); -lean_dec_ref(x_301); -lean_dec_ref(x_299); -lean_dec_ref(x_296); -lean_dec_ref(x_295); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_345 = !lean_is_exclusive(x_333); -if (x_345 == 0) -{ -return x_333; -} -else -{ -lean_object* x_346; lean_object* x_347; -x_346 = lean_ctor_get(x_333, 0); -lean_inc(x_346); -lean_dec(x_333); -x_347 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_347, 0, x_346); -return x_347; -} -} -} -else -{ -lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; -x_348 = lean_ctor_get(x_321, 0); -x_349 = lean_ctor_get(x_321, 1); -lean_inc(x_349); -lean_inc(x_348); -lean_dec(x_321); -lean_inc_ref(x_303); -x_350 = lean_array_to_list(x_303); +lean_object* x_350; uint8_t x_351; +x_350 = lean_ctor_get(x_349, 0); lean_inc(x_350); -lean_inc(x_16); -x_351 = l_Lean_mkConst(x_16, x_350); -x_352 = l_Lean_mkAppN(x_351, x_299); -lean_inc_ref(x_296); -x_353 = l_Lean_Expr_app___override(x_352, x_296); -x_354 = l_Lean_mkAppN(x_353, x_301); -lean_inc(x_307); -lean_inc_ref(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -lean_inc_ref(x_354); -x_355 = l_Lean_Meta_isTypeCorrect(x_354, x_304, x_305, x_306, x_307); -if (lean_obj_tag(x_355) == 0) +lean_dec_ref(x_349); +x_351 = lean_unbox(x_350); +lean_dec(x_350); +if (x_351 == 0) { -lean_object* x_356; uint8_t x_357; -x_356 = lean_ctor_get(x_355, 0); -lean_inc(x_356); -lean_dec_ref(x_355); -x_357 = lean_unbox(x_356); -lean_dec(x_356); -if (x_357 == 0) +lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; +x_352 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__8; +lean_inc_ref(x_348); +x_353 = l_Lean_indentExpr(x_348); +x_354 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_354, 0, x_352); +lean_ctor_set(x_354, 1, x_353); +x_355 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__5; +lean_ctor_set_tag(x_313, 7); +lean_ctor_set(x_313, 1, x_355); +lean_ctor_set(x_313, 0, x_354); +x_356 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___lam__0), 2, 1); +lean_closure_set(x_356, 0, x_313); +lean_inc_ref(x_348); +x_357 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); +lean_closure_set(x_357, 0, x_348); +lean_inc(x_301); +lean_inc_ref(x_300); +lean_inc(x_299); +lean_inc_ref(x_298); +x_358 = l_Lean_Meta_mapErrorImp___redArg(x_357, x_356, x_298, x_299, x_300, x_301); +if (lean_obj_tag(x_358) == 0) { -lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; -x_358 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__8; -lean_inc_ref(x_354); -x_359 = l_Lean_indentExpr(x_354); -x_360 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_360, 0, x_358); -lean_ctor_set(x_360, 1, x_359); -x_361 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__5; -lean_ctor_set_tag(x_319, 7); -lean_ctor_set(x_319, 1, x_361); -lean_ctor_set(x_319, 0, x_360); -x_362 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___lam__0), 2, 1); -lean_closure_set(x_362, 0, x_319); -lean_inc_ref(x_354); -x_363 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); -lean_closure_set(x_363, 0, x_354); -lean_inc(x_307); -lean_inc_ref(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -x_364 = l_Lean_Meta_mapErrorImp___redArg(x_363, x_362, x_304, x_305, x_306, x_307); -if (lean_obj_tag(x_364) == 0) -{ -lean_dec_ref(x_364); -x_241 = x_295; -x_242 = x_296; -x_243 = x_298; -x_244 = x_299; -x_245 = x_310; -x_246 = x_303; -x_247 = x_348; -x_248 = x_301; -x_249 = x_302; -x_250 = x_309; -x_251 = x_354; -x_252 = x_350; -x_253 = x_349; -x_254 = x_304; -x_255 = x_305; -x_256 = x_306; -x_257 = x_307; -x_258 = lean_box(0); -goto block_293; +lean_dec_ref(x_358); +x_235 = x_289; +x_236 = x_297; +x_237 = x_342; +x_238 = x_290; +x_239 = x_291; +x_240 = x_304; +x_241 = x_293; +x_242 = x_303; +x_243 = x_295; +x_244 = x_344; +x_245 = x_348; +x_246 = x_296; +x_247 = x_343; +x_248 = x_298; +x_249 = x_299; +x_250 = x_300; +x_251 = x_301; +x_252 = lean_box(0); +goto block_287; } else { -lean_object* x_365; lean_object* x_366; lean_object* x_367; -lean_dec_ref(x_354); -lean_dec(x_350); -lean_dec(x_349); -lean_dec(x_348); -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec_ref(x_303); -lean_dec(x_302); -lean_dec_ref(x_301); -lean_dec_ref(x_299); +lean_object* x_359; lean_object* x_360; lean_object* x_361; +lean_dec_ref(x_348); +lean_dec(x_344); +lean_dec(x_343); +lean_dec(x_342); +lean_dec(x_301); +lean_dec_ref(x_300); +lean_dec(x_299); +lean_dec_ref(x_298); +lean_dec_ref(x_297); lean_dec_ref(x_296); lean_dec_ref(x_295); +lean_dec_ref(x_293); +lean_dec_ref(x_291); +lean_dec(x_289); lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_365 = lean_ctor_get(x_364, 0); +x_359 = lean_ctor_get(x_358, 0); +lean_inc(x_359); +if (lean_is_exclusive(x_358)) { + lean_ctor_release(x_358, 0); + x_360 = x_358; +} else { + lean_dec_ref(x_358); + x_360 = lean_box(0); +} +if (lean_is_scalar(x_360)) { + x_361 = lean_alloc_ctor(1, 1, 0); +} else { + x_361 = x_360; +} +lean_ctor_set(x_361, 0, x_359); +return x_361; +} +} +else +{ +lean_free_object(x_313); +x_235 = x_289; +x_236 = x_297; +x_237 = x_342; +x_238 = x_290; +x_239 = x_291; +x_240 = x_304; +x_241 = x_293; +x_242 = x_303; +x_243 = x_295; +x_244 = x_344; +x_245 = x_348; +x_246 = x_296; +x_247 = x_343; +x_248 = x_298; +x_249 = x_299; +x_250 = x_300; +x_251 = x_301; +x_252 = lean_box(0); +goto block_287; +} +} +else +{ +lean_object* x_362; lean_object* x_363; lean_object* x_364; +lean_dec_ref(x_348); +lean_dec(x_344); +lean_dec(x_343); +lean_dec(x_342); +lean_free_object(x_313); +lean_dec(x_301); +lean_dec_ref(x_300); +lean_dec(x_299); +lean_dec_ref(x_298); +lean_dec_ref(x_297); +lean_dec_ref(x_296); +lean_dec_ref(x_295); +lean_dec_ref(x_293); +lean_dec_ref(x_291); +lean_dec(x_289); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_362 = lean_ctor_get(x_349, 0); +lean_inc(x_362); +if (lean_is_exclusive(x_349)) { + lean_ctor_release(x_349, 0); + x_363 = x_349; +} else { + lean_dec_ref(x_349); + x_363 = lean_box(0); +} +if (lean_is_scalar(x_363)) { + x_364 = lean_alloc_ctor(1, 1, 0); +} else { + x_364 = x_363; +} +lean_ctor_set(x_364, 0, x_362); +return x_364; +} +} +} +else +{ +lean_object* x_365; lean_object* x_366; +lean_free_object(x_313); +lean_dec(x_289); +x_365 = lean_ctor_get(x_315, 0); lean_inc(x_365); -if (lean_is_exclusive(x_364)) { - lean_ctor_release(x_364, 0); - x_366 = x_364; -} else { - lean_dec_ref(x_364); - x_366 = lean_box(0); -} -if (lean_is_scalar(x_366)) { - x_367 = lean_alloc_ctor(1, 1, 0); -} else { - x_367 = x_366; -} -lean_ctor_set(x_367, 0, x_365); -return x_367; -} -} -else -{ -lean_free_object(x_319); -x_241 = x_295; -x_242 = x_296; -x_243 = x_298; -x_244 = x_299; -x_245 = x_310; -x_246 = x_303; -x_247 = x_348; -x_248 = x_301; -x_249 = x_302; -x_250 = x_309; -x_251 = x_354; -x_252 = x_350; -x_253 = x_349; -x_254 = x_304; -x_255 = x_305; -x_256 = x_306; -x_257 = x_307; -x_258 = lean_box(0); -goto block_293; -} -} -else -{ -lean_object* x_368; lean_object* x_369; lean_object* x_370; -lean_dec_ref(x_354); -lean_dec(x_350); -lean_dec(x_349); -lean_dec(x_348); -lean_free_object(x_319); -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec_ref(x_303); -lean_dec(x_302); -lean_dec_ref(x_301); -lean_dec_ref(x_299); -lean_dec_ref(x_296); -lean_dec_ref(x_295); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_368 = lean_ctor_get(x_355, 0); -lean_inc(x_368); -if (lean_is_exclusive(x_355)) { - lean_ctor_release(x_355, 0); - x_369 = x_355; -} else { - lean_dec_ref(x_355); - x_369 = lean_box(0); -} -if (lean_is_scalar(x_369)) { - x_370 = lean_alloc_ctor(1, 1, 0); -} else { - x_370 = x_369; -} -lean_ctor_set(x_370, 0, x_368); -return x_370; +x_366 = lean_ctor_get(x_315, 1); +lean_inc(x_366); +lean_dec(x_315); +x_141 = x_299; +x_142 = x_297; +x_143 = x_365; +x_144 = lean_box(0); +x_145 = x_304; +x_146 = x_298; +x_147 = x_293; +x_148 = x_301; +x_149 = x_291; +x_150 = x_290; +x_151 = x_300; +x_152 = x_366; +x_153 = x_295; +x_154 = x_303; +x_155 = x_296; +goto block_176; } } } else { -lean_object* x_371; lean_object* x_372; -lean_free_object(x_319); -lean_dec(x_302); -lean_inc(x_16); -x_371 = lean_ctor_get(x_321, 0); -lean_inc(x_371); -x_372 = lean_ctor_get(x_321, 1); -lean_inc(x_372); -lean_dec(x_321); -x_108 = x_296; -x_109 = x_298; -x_110 = x_299; -x_111 = x_303; -x_112 = x_310; -x_113 = x_309; -x_114 = x_304; -x_115 = x_306; -x_116 = x_372; -x_117 = x_295; -x_118 = x_301; -x_119 = x_371; -x_120 = x_307; -x_121 = lean_box(0); -x_122 = x_305; -goto block_143; -} -} -} -else -{ -lean_object* x_373; -x_373 = lean_ctor_get(x_319, 1); -lean_inc(x_373); -lean_dec(x_319); +lean_object* x_367; +x_367 = lean_ctor_get(x_313, 1); +lean_inc(x_367); +lean_dec(x_313); if (x_2 == 0) { -lean_object* x_374; lean_object* x_375; -lean_dec(x_302); -lean_inc(x_16); -x_374 = lean_ctor_get(x_373, 0); -lean_inc(x_374); -x_375 = lean_ctor_get(x_373, 1); -lean_inc(x_375); -lean_dec(x_373); -x_108 = x_296; -x_109 = x_298; -x_110 = x_299; -x_111 = x_303; -x_112 = x_310; -x_113 = x_309; -x_114 = x_304; -x_115 = x_306; -x_116 = x_375; -x_117 = x_295; -x_118 = x_301; -x_119 = x_374; -x_120 = x_307; -x_121 = lean_box(0); -x_122 = x_305; -goto block_143; +lean_object* x_368; lean_object* x_369; +lean_dec(x_289); +x_368 = lean_ctor_get(x_367, 0); +lean_inc(x_368); +x_369 = lean_ctor_get(x_367, 1); +lean_inc(x_369); +lean_dec(x_367); +x_141 = x_299; +x_142 = x_297; +x_143 = x_368; +x_144 = lean_box(0); +x_145 = x_304; +x_146 = x_298; +x_147 = x_293; +x_148 = x_301; +x_149 = x_291; +x_150 = x_290; +x_151 = x_300; +x_152 = x_369; +x_153 = x_295; +x_154 = x_303; +x_155 = x_296; +goto block_176; } else { -if (x_294 == 0) +if (x_288 == 0) { -lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; -x_376 = lean_ctor_get(x_373, 0); -lean_inc(x_376); -x_377 = lean_ctor_get(x_373, 1); -lean_inc(x_377); -if (lean_is_exclusive(x_373)) { - lean_ctor_release(x_373, 0); - lean_ctor_release(x_373, 1); - x_378 = x_373; +lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; +lean_inc_ref(x_21); +lean_dec_ref(x_1); +x_370 = lean_ctor_get(x_367, 0); +lean_inc(x_370); +x_371 = lean_ctor_get(x_367, 1); +lean_inc(x_371); +if (lean_is_exclusive(x_367)) { + lean_ctor_release(x_367, 0); + lean_ctor_release(x_367, 1); + x_372 = x_367; } else { - lean_dec_ref(x_373); - x_378 = lean_box(0); + lean_dec_ref(x_367); + x_372 = lean_box(0); } -lean_inc_ref(x_303); -x_379 = lean_array_to_list(x_303); +lean_inc_ref(x_297); +x_373 = lean_array_to_list(x_297); +lean_inc(x_373); +lean_inc(x_16); +x_374 = l_Lean_mkConst(x_16, x_373); +x_375 = l_Lean_mkAppN(x_374, x_295); +lean_inc_ref(x_291); +x_376 = l_Lean_Expr_app___override(x_375, x_291); +x_377 = l_Lean_mkAppN(x_376, x_293); +lean_inc(x_301); +lean_inc_ref(x_300); +lean_inc(x_299); +lean_inc_ref(x_298); +lean_inc_ref(x_377); +x_378 = l_Lean_Meta_isTypeCorrect(x_377, x_298, x_299, x_300, x_301); +if (lean_obj_tag(x_378) == 0) +{ +lean_object* x_379; uint8_t x_380; +x_379 = lean_ctor_get(x_378, 0); lean_inc(x_379); -lean_inc(x_16); -x_380 = l_Lean_mkConst(x_16, x_379); -x_381 = l_Lean_mkAppN(x_380, x_299); -lean_inc_ref(x_296); -x_382 = l_Lean_Expr_app___override(x_381, x_296); -x_383 = l_Lean_mkAppN(x_382, x_301); -lean_inc(x_307); -lean_inc_ref(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -lean_inc_ref(x_383); -x_384 = l_Lean_Meta_isTypeCorrect(x_383, x_304, x_305, x_306, x_307); -if (lean_obj_tag(x_384) == 0) -{ -lean_object* x_385; uint8_t x_386; -x_385 = lean_ctor_get(x_384, 0); -lean_inc(x_385); -lean_dec_ref(x_384); -x_386 = lean_unbox(x_385); -lean_dec(x_385); -if (x_386 == 0) -{ -lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; -x_387 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__8; -lean_inc_ref(x_383); -x_388 = l_Lean_indentExpr(x_383); -if (lean_is_scalar(x_378)) { - x_389 = lean_alloc_ctor(7, 2, 0); -} else { - x_389 = x_378; - lean_ctor_set_tag(x_389, 7); -} -lean_ctor_set(x_389, 0, x_387); -lean_ctor_set(x_389, 1, x_388); -x_390 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__5; -x_391 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_391, 0, x_389); -lean_ctor_set(x_391, 1, x_390); -x_392 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___lam__0), 2, 1); -lean_closure_set(x_392, 0, x_391); -lean_inc_ref(x_383); -x_393 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); -lean_closure_set(x_393, 0, x_383); -lean_inc(x_307); -lean_inc_ref(x_306); -lean_inc(x_305); -lean_inc_ref(x_304); -x_394 = l_Lean_Meta_mapErrorImp___redArg(x_393, x_392, x_304, x_305, x_306, x_307); -if (lean_obj_tag(x_394) == 0) -{ -lean_dec_ref(x_394); -x_241 = x_295; -x_242 = x_296; -x_243 = x_298; -x_244 = x_299; -x_245 = x_310; -x_246 = x_303; -x_247 = x_376; -x_248 = x_301; -x_249 = x_302; -x_250 = x_309; -x_251 = x_383; -x_252 = x_379; -x_253 = x_377; -x_254 = x_304; -x_255 = x_305; -x_256 = x_306; -x_257 = x_307; -x_258 = lean_box(0); -goto block_293; -} -else -{ -lean_object* x_395; lean_object* x_396; lean_object* x_397; -lean_dec_ref(x_383); +lean_dec_ref(x_378); +x_380 = lean_unbox(x_379); lean_dec(x_379); -lean_dec(x_377); -lean_dec(x_376); -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec_ref(x_303); -lean_dec(x_302); -lean_dec_ref(x_301); -lean_dec_ref(x_299); -lean_dec_ref(x_296); -lean_dec_ref(x_295); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_395 = lean_ctor_get(x_394, 0); -lean_inc(x_395); -if (lean_is_exclusive(x_394)) { - lean_ctor_release(x_394, 0); - x_396 = x_394; +if (x_380 == 0) +{ +lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; +x_381 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__8; +lean_inc_ref(x_377); +x_382 = l_Lean_indentExpr(x_377); +if (lean_is_scalar(x_372)) { + x_383 = lean_alloc_ctor(7, 2, 0); } else { - lean_dec_ref(x_394); - x_396 = lean_box(0); -} -if (lean_is_scalar(x_396)) { - x_397 = lean_alloc_ctor(1, 1, 0); -} else { - x_397 = x_396; -} -lean_ctor_set(x_397, 0, x_395); -return x_397; + x_383 = x_372; + lean_ctor_set_tag(x_383, 7); } +lean_ctor_set(x_383, 0, x_381); +lean_ctor_set(x_383, 1, x_382); +x_384 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___closed__5; +x_385 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_385, 0, x_383); +lean_ctor_set(x_385, 1, x_384); +x_386 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___lam__0), 2, 1); +lean_closure_set(x_386, 0, x_385); +lean_inc_ref(x_377); +x_387 = lean_alloc_closure((void*)(l_Lean_Meta_check___boxed), 6, 1); +lean_closure_set(x_387, 0, x_377); +lean_inc(x_301); +lean_inc_ref(x_300); +lean_inc(x_299); +lean_inc_ref(x_298); +x_388 = l_Lean_Meta_mapErrorImp___redArg(x_387, x_386, x_298, x_299, x_300, x_301); +if (lean_obj_tag(x_388) == 0) +{ +lean_dec_ref(x_388); +x_235 = x_289; +x_236 = x_297; +x_237 = x_370; +x_238 = x_290; +x_239 = x_291; +x_240 = x_304; +x_241 = x_293; +x_242 = x_303; +x_243 = x_295; +x_244 = x_373; +x_245 = x_377; +x_246 = x_296; +x_247 = x_371; +x_248 = x_298; +x_249 = x_299; +x_250 = x_300; +x_251 = x_301; +x_252 = lean_box(0); +goto block_287; } else { -lean_dec(x_378); -x_241 = x_295; -x_242 = x_296; -x_243 = x_298; -x_244 = x_299; -x_245 = x_310; -x_246 = x_303; -x_247 = x_376; -x_248 = x_301; -x_249 = x_302; -x_250 = x_309; -x_251 = x_383; -x_252 = x_379; -x_253 = x_377; -x_254 = x_304; -x_255 = x_305; -x_256 = x_306; -x_257 = x_307; -x_258 = lean_box(0); -goto block_293; -} -} -else -{ -lean_object* x_398; lean_object* x_399; lean_object* x_400; -lean_dec_ref(x_383); -lean_dec(x_379); -lean_dec(x_378); -lean_dec(x_377); -lean_dec(x_376); -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec_ref(x_303); -lean_dec(x_302); -lean_dec_ref(x_301); -lean_dec_ref(x_299); -lean_dec_ref(x_296); -lean_dec_ref(x_295); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_398 = lean_ctor_get(x_384, 0); -lean_inc(x_398); -if (lean_is_exclusive(x_384)) { - lean_ctor_release(x_384, 0); - x_399 = x_384; -} else { - lean_dec_ref(x_384); - x_399 = lean_box(0); -} -if (lean_is_scalar(x_399)) { - x_400 = lean_alloc_ctor(1, 1, 0); -} else { - x_400 = x_399; -} -lean_ctor_set(x_400, 0, x_398); -return x_400; -} -} -else -{ -lean_object* x_401; lean_object* x_402; -lean_dec(x_302); -lean_inc(x_16); -x_401 = lean_ctor_get(x_373, 0); -lean_inc(x_401); -x_402 = lean_ctor_get(x_373, 1); -lean_inc(x_402); +lean_object* x_389; lean_object* x_390; lean_object* x_391; +lean_dec_ref(x_377); lean_dec(x_373); -x_108 = x_296; -x_109 = x_298; -x_110 = x_299; -x_111 = x_303; -x_112 = x_310; -x_113 = x_309; -x_114 = x_304; -x_115 = x_306; -x_116 = x_402; -x_117 = x_295; -x_118 = x_301; -x_119 = x_401; -x_120 = x_307; -x_121 = lean_box(0); -x_122 = x_305; -goto block_143; +lean_dec(x_371); +lean_dec(x_370); +lean_dec(x_301); +lean_dec_ref(x_300); +lean_dec(x_299); +lean_dec_ref(x_298); +lean_dec_ref(x_297); +lean_dec_ref(x_296); +lean_dec_ref(x_295); +lean_dec_ref(x_293); +lean_dec_ref(x_291); +lean_dec(x_289); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_389 = lean_ctor_get(x_388, 0); +lean_inc(x_389); +if (lean_is_exclusive(x_388)) { + lean_ctor_release(x_388, 0); + x_390 = x_388; +} else { + lean_dec_ref(x_388); + x_390 = lean_box(0); +} +if (lean_is_scalar(x_390)) { + x_391 = lean_alloc_ctor(1, 1, 0); +} else { + x_391 = x_390; +} +lean_ctor_set(x_391, 0, x_389); +return x_391; +} +} +else +{ +lean_dec(x_372); +x_235 = x_289; +x_236 = x_297; +x_237 = x_370; +x_238 = x_290; +x_239 = x_291; +x_240 = x_304; +x_241 = x_293; +x_242 = x_303; +x_243 = x_295; +x_244 = x_373; +x_245 = x_377; +x_246 = x_296; +x_247 = x_371; +x_248 = x_298; +x_249 = x_299; +x_250 = x_300; +x_251 = x_301; +x_252 = lean_box(0); +goto block_287; +} +} +else +{ +lean_object* x_392; lean_object* x_393; lean_object* x_394; +lean_dec_ref(x_377); +lean_dec(x_373); +lean_dec(x_372); +lean_dec(x_371); +lean_dec(x_370); +lean_dec(x_301); +lean_dec_ref(x_300); +lean_dec(x_299); +lean_dec_ref(x_298); +lean_dec_ref(x_297); +lean_dec_ref(x_296); +lean_dec_ref(x_295); +lean_dec_ref(x_293); +lean_dec_ref(x_291); +lean_dec(x_289); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_392 = lean_ctor_get(x_378, 0); +lean_inc(x_392); +if (lean_is_exclusive(x_378)) { + lean_ctor_release(x_378, 0); + x_393 = x_378; +} else { + lean_dec_ref(x_378); + x_393 = lean_box(0); +} +if (lean_is_scalar(x_393)) { + x_394 = lean_alloc_ctor(1, 1, 0); +} else { + x_394 = x_393; +} +lean_ctor_set(x_394, 0, x_392); +return x_394; +} +} +else +{ +lean_object* x_395; lean_object* x_396; +lean_dec(x_289); +x_395 = lean_ctor_get(x_367, 0); +lean_inc(x_395); +x_396 = lean_ctor_get(x_367, 1); +lean_inc(x_396); +lean_dec(x_367); +x_141 = x_299; +x_142 = x_297; +x_143 = x_395; +x_144 = lean_box(0); +x_145 = x_304; +x_146 = x_298; +x_147 = x_293; +x_148 = x_301; +x_149 = x_291; +x_150 = x_290; +x_151 = x_300; +x_152 = x_396; +x_153 = x_295; +x_154 = x_303; +x_155 = x_296; +goto block_176; } } } } else { -uint8_t x_403; -lean_dec(x_307); -lean_dec_ref(x_306); -lean_dec(x_305); -lean_dec_ref(x_304); -lean_dec_ref(x_303); -lean_dec(x_302); -lean_dec_ref(x_301); -lean_dec_ref(x_299); +uint8_t x_397; +lean_dec(x_301); +lean_dec_ref(x_300); +lean_dec(x_299); +lean_dec_ref(x_298); +lean_dec_ref(x_297); lean_dec_ref(x_296); lean_dec_ref(x_295); +lean_dec_ref(x_293); +lean_dec_ref(x_291); +lean_dec(x_289); lean_dec_ref(x_22); +lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_1); -x_403 = !lean_is_exclusive(x_318); -if (x_403 == 0) +x_397 = !lean_is_exclusive(x_312); +if (x_397 == 0) { -return x_318; +return x_312; } else { -lean_object* x_404; lean_object* x_405; -x_404 = lean_ctor_get(x_318, 0); -lean_inc(x_404); -lean_dec(x_318); -x_405 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_405, 0, x_404); -return x_405; +lean_object* x_398; lean_object* x_399; +x_398 = lean_ctor_get(x_312, 0); +lean_inc(x_398); +lean_dec(x_312); +x_399 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_399, 0, x_398); +return x_399; } } } -block_447: +block_441: { -size_t x_413; size_t x_414; lean_object* x_415; -x_413 = lean_array_size(x_18); -x_414 = 0; -lean_inc(x_411); -lean_inc_ref(x_410); -lean_inc(x_409); -lean_inc_ref(x_408); +size_t x_407; size_t x_408; lean_object* x_409; +x_407 = lean_array_size(x_18); +x_408 = 0; +lean_inc(x_405); +lean_inc_ref(x_404); +lean_inc(x_403); +lean_inc_ref(x_402); lean_inc_ref(x_18); lean_inc_ref(x_4); -x_415 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_localMapM_spec__0(x_4, x_413, x_414, x_18, x_408, x_409, x_410, x_411); -if (lean_obj_tag(x_415) == 0) +x_409 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_localMapM_spec__0(x_4, x_407, x_408, x_18, x_402, x_403, x_404, x_405); +if (lean_obj_tag(x_409) == 0) { -lean_object* x_416; size_t x_417; lean_object* x_418; -x_416 = lean_ctor_get(x_415, 0); -lean_inc(x_416); -lean_dec_ref(x_415); -x_417 = lean_array_size(x_20); -lean_inc(x_411); -lean_inc_ref(x_410); -lean_inc(x_409); -lean_inc_ref(x_408); +lean_object* x_410; size_t x_411; lean_object* x_412; +x_410 = lean_ctor_get(x_409, 0); +lean_inc(x_410); +lean_dec_ref(x_409); +x_411 = lean_array_size(x_20); +lean_inc(x_405); +lean_inc_ref(x_404); +lean_inc(x_403); +lean_inc_ref(x_402); lean_inc_ref(x_20); -x_418 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_localMapM_spec__0(x_4, x_417, x_414, x_20, x_408, x_409, x_410, x_411); +x_412 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_M_localMapM_spec__0(x_4, x_411, x_408, x_20, x_402, x_403, x_404, x_405); +if (lean_obj_tag(x_412) == 0) +{ +lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; uint8_t x_417; lean_object* x_418; +x_413 = lean_ctor_get(x_412, 0); +lean_inc(x_413); +lean_dec_ref(x_412); +x_414 = lean_box(x_3); +x_415 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___boxed__const__1; +lean_inc_ref(x_20); +lean_inc(x_413); +lean_inc_ref(x_15); +x_416 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___lam__2___boxed), 13, 6); +lean_closure_set(x_416, 0, x_5); +lean_closure_set(x_416, 1, x_15); +lean_closure_set(x_416, 2, x_413); +lean_closure_set(x_416, 3, x_414); +lean_closure_set(x_416, 4, x_415); +lean_closure_set(x_416, 5, x_20); +x_417 = 0; +lean_inc(x_405); +lean_inc_ref(x_404); +lean_inc(x_403); +lean_inc_ref(x_402); +lean_inc_ref(x_19); +x_418 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__28___redArg(x_19, x_416, x_417, x_402, x_403, x_404, x_405); if (lean_obj_tag(x_418) == 0) { -lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; uint8_t x_423; lean_object* x_424; +lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; x_419 = lean_ctor_get(x_418, 0); lean_inc(x_419); lean_dec_ref(x_418); -x_420 = lean_box(x_3); -x_421 = l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___boxed__const__1; -lean_inc_ref(x_20); -lean_inc(x_419); -lean_inc_ref(x_15); -x_422 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26___lam__2___boxed), 13, 6); -lean_closure_set(x_422, 0, x_5); -lean_closure_set(x_422, 1, x_15); -lean_closure_set(x_422, 2, x_419); -lean_closure_set(x_422, 3, x_420); -lean_closure_set(x_422, 4, x_421); -lean_closure_set(x_422, 5, x_20); -x_423 = 0; -lean_inc(x_411); -lean_inc_ref(x_410); -lean_inc(x_409); -lean_inc_ref(x_408); -lean_inc_ref(x_19); -x_424 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__26_spec__28___redArg(x_19, x_422, x_423, x_408, x_409, x_410, x_411); -if (lean_obj_tag(x_424) == 0) +x_420 = lean_ctor_get(x_419, 1); +x_421 = lean_ctor_get(x_420, 1); +lean_inc(x_421); +x_422 = lean_ctor_get(x_15, 3); +if (lean_obj_tag(x_422) == 0) { -lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; -x_425 = lean_ctor_get(x_424, 0); -lean_inc(x_425); -lean_dec_ref(x_424); -x_426 = lean_ctor_get(x_425, 1); -x_427 = lean_ctor_get(x_426, 1); -lean_inc(x_427); -x_428 = lean_ctor_get(x_15, 3); -if (lean_obj_tag(x_428) == 0) -{ -lean_object* x_429; lean_object* x_430; lean_object* x_431; -x_429 = lean_ctor_get(x_425, 0); -lean_inc(x_429); -lean_dec(x_425); -x_430 = lean_ctor_get(x_427, 0); -lean_inc(x_430); -x_431 = lean_ctor_get(x_427, 1); -lean_inc(x_431); -lean_dec(x_427); -lean_inc_ref(x_17); -x_295 = x_431; -x_296 = x_429; -x_297 = x_430; -x_298 = x_423; -x_299 = x_416; -x_300 = x_414; -x_301 = x_419; -x_302 = x_407; -x_303 = x_17; -x_304 = x_408; -x_305 = x_409; -x_306 = x_410; -x_307 = x_411; -x_308 = lean_box(0); -goto block_406; -} -else -{ -lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; -lean_inc(x_426); -x_432 = lean_ctor_get(x_425, 0); -lean_inc(x_432); -lean_dec(x_425); -x_433 = lean_ctor_get(x_426, 0); -lean_inc(x_433); -lean_dec(x_426); -x_434 = lean_ctor_get(x_427, 0); -lean_inc(x_434); -x_435 = lean_ctor_get(x_427, 1); -lean_inc(x_435); -lean_dec(x_427); -x_436 = lean_ctor_get(x_428, 0); -lean_inc_ref(x_17); -x_437 = lean_array_set(x_17, x_436, x_433); -x_295 = x_435; -x_296 = x_432; -x_297 = x_434; -x_298 = x_423; -x_299 = x_416; -x_300 = x_414; -x_301 = x_419; -x_302 = x_407; -x_303 = x_437; -x_304 = x_408; -x_305 = x_409; -x_306 = x_410; -x_307 = x_411; -x_308 = lean_box(0); -goto block_406; -} -} -else -{ -uint8_t x_438; +lean_object* x_423; lean_object* x_424; lean_object* x_425; +x_423 = lean_ctor_get(x_419, 0); +lean_inc(x_423); lean_dec(x_419); -lean_dec(x_416); -lean_dec(x_411); -lean_dec_ref(x_410); -lean_dec(x_409); -lean_dec_ref(x_408); -lean_dec(x_407); -lean_dec_ref(x_22); -lean_dec_ref(x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_438 = !lean_is_exclusive(x_424); -if (x_438 == 0) -{ -return x_424; +x_424 = lean_ctor_get(x_421, 0); +lean_inc(x_424); +x_425 = lean_ctor_get(x_421, 1); +lean_inc(x_425); +lean_dec(x_421); +lean_inc_ref(x_17); +x_289 = x_401; +x_290 = x_417; +x_291 = x_423; +x_292 = x_424; +x_293 = x_413; +x_294 = x_408; +x_295 = x_410; +x_296 = x_425; +x_297 = x_17; +x_298 = x_402; +x_299 = x_403; +x_300 = x_404; +x_301 = x_405; +x_302 = lean_box(0); +goto block_400; } else { -lean_object* x_439; lean_object* x_440; -x_439 = lean_ctor_get(x_424, 0); -lean_inc(x_439); -lean_dec(x_424); -x_440 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_440, 0, x_439); -return x_440; -} +lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; +lean_inc(x_420); +x_426 = lean_ctor_get(x_419, 0); +lean_inc(x_426); +lean_dec(x_419); +x_427 = lean_ctor_get(x_420, 0); +lean_inc(x_427); +lean_dec(x_420); +x_428 = lean_ctor_get(x_421, 0); +lean_inc(x_428); +x_429 = lean_ctor_get(x_421, 1); +lean_inc(x_429); +lean_dec(x_421); +x_430 = lean_ctor_get(x_422, 0); +lean_inc_ref(x_17); +x_431 = lean_array_set(x_17, x_430, x_427); +x_289 = x_401; +x_290 = x_417; +x_291 = x_426; +x_292 = x_428; +x_293 = x_413; +x_294 = x_408; +x_295 = x_410; +x_296 = x_429; +x_297 = x_431; +x_298 = x_402; +x_299 = x_403; +x_300 = x_404; +x_301 = x_405; +x_302 = lean_box(0); +goto block_400; } } else { -uint8_t x_441; -lean_dec(x_416); -lean_dec(x_411); -lean_dec_ref(x_410); -lean_dec(x_409); -lean_dec_ref(x_408); -lean_dec(x_407); +uint8_t x_432; +lean_dec(x_413); +lean_dec(x_410); +lean_dec(x_405); +lean_dec_ref(x_404); +lean_dec(x_403); +lean_dec_ref(x_402); +lean_dec(x_401); lean_dec_ref(x_22); +lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); lean_dec_ref(x_1); -x_441 = !lean_is_exclusive(x_418); -if (x_441 == 0) +x_432 = !lean_is_exclusive(x_418); +if (x_432 == 0) { return x_418; } else { -lean_object* x_442; lean_object* x_443; -x_442 = lean_ctor_get(x_418, 0); -lean_inc(x_442); +lean_object* x_433; lean_object* x_434; +x_433 = lean_ctor_get(x_418, 0); +lean_inc(x_433); lean_dec(x_418); -x_443 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_443, 0, x_442); -return x_443; +x_434 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_434, 0, x_433); +return x_434; } } } else { -uint8_t x_444; -lean_dec(x_411); -lean_dec_ref(x_410); -lean_dec(x_409); -lean_dec_ref(x_408); -lean_dec(x_407); +uint8_t x_435; +lean_dec(x_410); +lean_dec(x_405); +lean_dec_ref(x_404); +lean_dec(x_403); +lean_dec_ref(x_402); +lean_dec(x_401); lean_dec_ref(x_22); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_1); +x_435 = !lean_is_exclusive(x_412); +if (x_435 == 0) +{ +return x_412; +} +else +{ +lean_object* x_436; lean_object* x_437; +x_436 = lean_ctor_get(x_412, 0); +lean_inc(x_436); +lean_dec(x_412); +x_437 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_437, 0, x_436); +return x_437; +} +} +} +else +{ +uint8_t x_438; +lean_dec(x_405); +lean_dec_ref(x_404); +lean_dec(x_403); +lean_dec_ref(x_402); +lean_dec(x_401); +lean_dec_ref(x_22); +lean_dec(x_16); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_444 = !lean_is_exclusive(x_415); -if (x_444 == 0) +x_438 = !lean_is_exclusive(x_409); +if (x_438 == 0) { -return x_415; +return x_409; } else { -lean_object* x_445; lean_object* x_446; -x_445 = lean_ctor_get(x_415, 0); -lean_inc(x_445); -lean_dec(x_415); -x_446 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_446, 0, x_445); -return x_446; +lean_object* x_439; lean_object* x_440; +x_439 = lean_ctor_get(x_409, 0); +lean_inc(x_439); +lean_dec(x_409); +x_440 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_440, 0, x_439); +return x_440; } } } } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__40___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__43___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; @@ -22585,15 +29511,15 @@ lean_ctor_set(x_10, 0, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__40(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__43(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_8; -x_8 = l_Lean_isTracingEnabledFor___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__40___redArg(x_1, x_2, x_5); +x_8 = l_Lean_isTracingEnabledFor___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__43___redArg(x_1, x_2, x_5); return x_8; } } -static lean_object* _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___closed__0() { +static lean_object* _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg___closed__0() { _start: { lean_object* x_1; lean_object* x_2; @@ -22602,24 +29528,24 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___closed__1() { +static lean_object* _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___closed__0; +x_1 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg___closed__0; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___closed__2() { +static lean_object* _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg___closed__2() { _start: { size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 5; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___closed__0; -x_4 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___closed__1; +x_3 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg___closed__0; +x_4 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg___closed__1; x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); lean_ctor_set(x_5, 0, x_4); lean_ctor_set(x_5, 1, x_3); @@ -22629,7 +29555,7 @@ lean_ctor_set_usize(x_5, 4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; @@ -22652,7 +29578,7 @@ if (x_10 == 0) lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; x_11 = lean_ctor_get(x_9, 0); lean_dec(x_11); -x_12 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___closed__2; +x_12 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg___closed__2; lean_ctor_set(x_9, 0, x_12); x_13 = lean_st_ref_set(x_2, x_7); x_14 = lean_alloc_ctor(0, 2, 0); @@ -22667,7 +29593,7 @@ else uint64_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_16 = lean_ctor_get_uint64(x_9, sizeof(void*)*1); lean_dec(x_9); -x_17 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___closed__2; +x_17 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg___closed__2; x_18 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_18, 0, x_17); lean_ctor_set_uint64(x_18, sizeof(void*)*1, x_16); @@ -22711,7 +29637,7 @@ if (lean_is_exclusive(x_22)) { lean_dec_ref(x_22); x_32 = lean_box(0); } -x_33 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___closed__2; +x_33 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg___closed__2; if (lean_is_scalar(x_32)) { x_34 = lean_alloc_ctor(0, 1, 8); } else { @@ -22739,15 +29665,15 @@ return x_38; } } } -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_7; -x_7 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg(x_1, x_5); +x_7 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__44___redArg(x_1, x_5); return x_7; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__42_spec__42(size_t x_1, size_t x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__45_spec__45(size_t x_1, size_t x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -22774,7 +29700,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__42(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__45(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_11; @@ -22797,7 +29723,7 @@ x_17 = l_Lean_PersistentArray_toArray___redArg(x_15); lean_dec_ref(x_15); x_18 = lean_array_size(x_17); x_19 = 0; -x_20 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__42_spec__42(x_18, x_19, x_17); +x_20 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__45_spec__45(x_18, x_19, x_17); x_21 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_21, 0, x_2); lean_ctor_set(x_21, 1, x_4); @@ -23063,7 +29989,7 @@ x_103 = l_Lean_PersistentArray_toArray___redArg(x_100); lean_dec_ref(x_100); x_104 = lean_array_size(x_103); x_105 = 0; -x_106 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__42_spec__42(x_104, x_105, x_103); +x_106 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__45_spec__45(x_104, x_105, x_103); x_107 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_107, 0, x_2); lean_ctor_set(x_107, 1, x_4); @@ -23161,7 +30087,7 @@ return x_131; } } } -LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__47___redArg(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -23216,15 +30142,15 @@ return x_12; } } } -LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__47(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_9; -x_9 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(x_2, x_3); +x_9 = l_MonadExcept_ofExcept___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__47___redArg(x_2, x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Option_get___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__45(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Option_get___at___00Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43_spec__48(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -23259,7 +30185,7 @@ return x_4; } } } -static double _init_l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__0() { +static double _init_l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43___redArg___closed__0() { _start: { lean_object* x_1; double x_2; @@ -23268,7 +30194,7 @@ x_2 = lean_float_of_nat(x_1); return x_2; } } -static lean_object* _init_l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__1() { +static lean_object* _init_l_Lean_withTraceNode___at___00__private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_foldAndCollect_spec__43___redArg___closed__1() { _start: { lean_object* x_1; @@ -23276,16 +30202,16 @@ x_1 = lean_mk_string_unchecked("