From d089a25f0ef405892e663ecd8d66f2c8013a46af Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Fri, 4 Sep 2020 19:00:51 -0700 Subject: [PATCH] chore: update stage0 --- stage0/src/Lean/Elab/Binders.lean | 13 +- stage0/src/Lean/Elab/LetRec.lean | 2 +- stage0/src/Lean/Elab/Match.lean | 5 +- stage0/src/Lean/Elab/Quotation.lean | 2 +- stage0/stdlib/Lean/Elab/Binders.c | 11879 ++++++++++++----------- stage0/stdlib/Lean/Elab/DoNotation.c | 2153 ++-- stage0/stdlib/Lean/Elab/LetRec.c | 2 +- stage0/stdlib/Lean/Elab/Match.c | 6078 ++++++------ stage0/stdlib/Lean/Elab/Quotation.c | 80 +- stage0/stdlib/Lean/Elab/Syntax.c | 6187 ++++++------ stage0/stdlib/Lean/Elab/Tactic/Basic.c | 505 +- stage0/stdlib/Lean/Elab/Tactic/Match.c | 4 +- 12 files changed, 13927 insertions(+), 12983 deletions(-) diff --git a/stage0/src/Lean/Elab/Binders.lean b/stage0/src/Lean/Elab/Binders.lean index d1f08fc7e4..609bfbfd07 100644 --- a/stage0/src/Lean/Elab/Binders.lean +++ b/stage0/src/Lean/Elab/Binders.lean @@ -422,10 +422,9 @@ expandMatchAltsIntoMatchAux ref matchAlts true (getMatchAltNumPatterns matchAlts @[builtinTermElab «fun»] def elabFun : TermElab := fun stx expectedType? => --- "fun " >> ((many1 funBinder >> darrow >> termParser) <|> funMatchAlts) --- funMatchAlts := parser! matchAlts false -if (stx.getArg 1).isOfKind `Lean.Parser.Term.funMatchAlts then do - stxNew ← liftMacroM $ expandMatchAltsIntoMatch stx ((stx.getArg 1).getArg 0); +-- "fun " >> ((many1 funBinder >> darrow >> termParser) <|> matchAlts) +if (stx.getArg 1).isOfKind `Lean.Parser.Term.matchAlts then do + stxNew ← liftMacroM $ expandMatchAltsIntoMatch stx (stx.getArg 1); withMacroExpansion stx stxNew $ elabTerm stxNew expectedType? else do let binders := (stx.getArg 1).getArgs; @@ -482,7 +481,7 @@ let value := letIdDecl.getArg 4; private def expandLetEqnsDeclVal (ref : Syntax) (alts : Syntax) : Nat → Array Syntax → MacroM Syntax | 0, discrs => pure $ Syntax.node `Lean.Parser.Term.match - #[mkAtomFrom ref "match ", mkNullNode discrs, mkNullNode, mkAtomFrom ref " with ", mkNullNode, alts] + #[mkAtomFrom ref "match ", mkNullNode discrs, mkNullNode, mkAtomFrom ref " with ", alts] | n+1, discrs => withFreshMacroScope do x ← `(x); let discrs := if discrs.isEmpty then discrs else discrs.push $ mkAtomFrom ref ", "; @@ -492,7 +491,7 @@ private def expandLetEqnsDeclVal (ref : Syntax) (alts : Syntax) : Nat → Array def expandLetEqnsDecl (letDecl : Syntax) : MacroM Syntax := do let ref := letDecl; -let matchAlts := letDecl.getArg 4; +let matchAlts := letDecl.getArg 3; val ← expandMatchAltsIntoMatch ref matchAlts; pure $ Syntax.node `Lean.Parser.Term.letIdDecl #[letDecl.getArg 0, letDecl.getArg 1, letDecl.getArg 2, mkAtomFrom ref " := ", val] @@ -509,7 +508,7 @@ else if letDecl.getKind == `Lean.Parser.Term.letPatDecl then do let optType := letDecl.getArg 2; let type := expandOptType stx optType; let val := letDecl.getArg 4; - stxNew ← `(let x : $type := $val; match x with $pat => $body); + stxNew ← `(let x : $type := $val; match x with | $pat => $body); let stxNew := if useLetExpr then stxNew else stxNew.updateKind `Lean.Parser.Term.«let!»; withMacroExpansion stx stxNew $ elabTerm stxNew expectedType? else if letDecl.getKind == `Lean.Parser.Term.letEqnsDecl then do diff --git a/stage0/src/Lean/Elab/LetRec.lean b/stage0/src/Lean/Elab/LetRec.lean index 2ee82e4a11..ae1c2e524b 100644 --- a/stage0/src/Lean/Elab/LetRec.lean +++ b/stage0/src/Lean/Elab/LetRec.lean @@ -54,7 +54,7 @@ decls ← (letRec.getArg 1).getArgs.getSepElems.mapM fun attrDeclStx => do { if decl.isOfKind `Lean.Parser.Term.letIdDecl then pure $ decl.getArg 4 else - liftMacroM $ expandMatchAltsIntoMatch decl (decl.getArg 4); + liftMacroM $ expandMatchAltsIntoMatch decl (decl.getArg 3); pure { ref := decl, attrs := attrs, diff --git a/stage0/src/Lean/Elab/Match.lean b/stage0/src/Lean/Elab/Match.lean index 83fe79e5a2..53dc41245a 100644 --- a/stage0/src/Lean/Elab/Match.lean +++ b/stage0/src/Lean/Elab/Match.lean @@ -686,9 +686,10 @@ else do let stx := stx.setArg 2 (mkOptType matchType); newDiscrs ← mkNewDiscrs discrs 0 #[]; let stx := stx.setArg 1 (mkNullNode newDiscrs); - let alts := (stx.getArg 5).getArgs; + let matchAlts := stx.getArg 4; + let alts := (matchAlts.getArg 1).getArgs; newAlts ← mkNewAlts discrs alts; - let stx := stx.setArg 5 (mkNullNode newAlts); + let stx := stx.setArg 4 (matchAlts.setArg 1 (mkNullNode newAlts)); pure stx -- parser! "match " >> sepBy1 termParser ", " >> optType >> " with " >> matchAlts diff --git a/stage0/src/Lean/Elab/Quotation.lean b/stage0/src/Lean/Elab/Quotation.lean index ff8faae6b5..2be476a55e 100644 --- a/stage0/src/Lean/Elab/Quotation.lean +++ b/stage0/src/Lean/Elab/Quotation.lean @@ -294,7 +294,7 @@ private def letBindRhss (cont : List Alt → TermElabM Syntax) : List Alt → Li def match_syntax.expand (stx : Syntax) : TermElabM Syntax := do let discr := stx.getArg 1; -let alts := stx.getArg 4; +let alts := (stx.getArg 3).getArg 1; alts ← alts.getArgs.getSepElems.mapM $ fun alt => do { let pats := alt.getArg 0; pat ← if pats.getArgs.size == 1 then pure $ pats.getArg 0 diff --git a/stage0/stdlib/Lean/Elab/Binders.c b/stage0/stdlib/Lean/Elab/Binders.c index f4827404bc..073aa88bdb 100644 --- a/stage0/stdlib/Lean/Elab/Binders.c +++ b/stage0/stdlib/Lean/Elab/Binders.c @@ -32,7 +32,6 @@ extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___clos extern lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__14; lean_object* l_Lean_Elab_Term_elabDepArrow___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Lean_Meta_AppBuilder_22__mkEqNDRecImp___closed__6; lean_object* l___regBuiltin_Lean_Elab_Term_elabForall___closed__1; extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__10; lean_object* l_unreachable_x21___rarg(lean_object*); @@ -113,6 +112,7 @@ lean_object* l___private_Lean_Elab_Binders_7__elabBinderViews___main(lean_object extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__4; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__2; lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Term_quoteAutoTactic___main___spec__1___closed__2; lean_object* l___private_Lean_Elab_Binders_3__expandOptIdent___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -127,7 +127,6 @@ extern lean_object* l___private_Lean_Meta_Basic_6__liftMkBindingM___rarg___close lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__15; lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__4(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_restoreSynthInstanceCache(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_elabFun___closed__2; lean_object* l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__6; lean_object* l_Lean_Elab_Term_FunBinders_elabFunBindersAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_15__isLambdaWithImplicit___spec__1___closed__2; @@ -169,6 +168,7 @@ lean_object* l_Lean_Elab_Term_elabLetDeclAux___boxed(lean_object*, lean_object*, lean_object* l_Lean_Elab_Term_mkLetIdDeclView___boxed(lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__5; lean_object* l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__12; lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__11; @@ -184,7 +184,6 @@ extern lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3_ lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__1; lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__10; lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_elabFun___closed__1; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Binders_6__matchBinder___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabForall___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); @@ -369,6 +368,7 @@ lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___clos lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__8; lean_object* l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1; +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__17; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDecl(lean_object*); lean_object* lean_compile_decl(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabArrow___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -6947,7 +6947,7 @@ lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main_ _start: { lean_object* x_1; -x_1 = lean_mk_string("|"); +x_1 = lean_mk_string("matchAlts"); return x_1; } } @@ -6955,31 +6955,27 @@ lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_SourceInfo_inhabited___closed__1; +x_1 = l_Lean_mkAppStx___closed__6; x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__10; -x_3 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); +x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__12() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_empty___closed__1; -x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; -x_3 = lean_array_push(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string("|"); +return x_1; } } lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_nullKind___closed__2; +x_1 = l_Lean_SourceInfo_inhabited___closed__1; x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__12; -x_3 = lean_alloc_ctor(1, 2, 0); +x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; @@ -6988,17 +6984,49 @@ return x_3; lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__14() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("matchAlt"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_3 = lean_array_push(x_1, x_2); +return x_3; } } lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_mkAppStx___closed__6; +x_1 = l_Lean_nullKind___closed__2; x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__14; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__17() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("matchAlt"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_mkAppStx___closed__6; +x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__17; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -7077,7 +7105,7 @@ x_39 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_38); x_40 = !lean_is_exclusive(x_39); 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; 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; uint8_t x_71; lean_object* x_72; +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; uint8_t x_73; lean_object* x_74; x_41 = lean_ctor_get(x_39, 0); lean_dec(x_41); x_42 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; @@ -7098,6175 +7126,6499 @@ x_52 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_53 = lean_array_push(x_51, x_52); x_54 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_55 = lean_array_push(x_53, x_54); -x_56 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_57 = lean_array_push(x_55, x_56); -x_58 = lean_array_push(x_46, x_19); -x_59 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_59, 0, x_48); -lean_ctor_set(x_59, 1, x_58); -x_60 = lean_array_push(x_46, x_59); -x_61 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_62 = lean_array_push(x_60, x_61); -x_63 = lean_array_push(x_62, x_35); -x_64 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +x_56 = lean_array_push(x_46, x_19); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_48); +lean_ctor_set(x_57, 1, x_56); +x_58 = lean_array_push(x_46, x_57); +x_59 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_60 = lean_array_push(x_58, x_59); +x_61 = lean_array_push(x_60, x_35); +x_62 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_61); +x_64 = lean_array_push(x_46, x_63); x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_63); -x_66 = lean_array_push(x_46, x_65); -x_67 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_67, 0, x_48); -lean_ctor_set(x_67, 1, x_66); -x_68 = lean_array_push(x_57, x_67); -x_69 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_70 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_68); -x_71 = 1; -x_72 = lean_box(x_71); -lean_ctor_set(x_30, 1, x_72); -lean_ctor_set(x_30, 0, x_70); +lean_ctor_set(x_65, 0, x_48); +lean_ctor_set(x_65, 1, x_64); +x_66 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_67 = lean_array_push(x_66, x_65); +x_68 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_68); +lean_ctor_set(x_69, 1, x_67); +x_70 = lean_array_push(x_55, x_69); +x_71 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_72 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set(x_72, 1, x_70); +x_73 = 1; +x_74 = lean_box(x_73); +lean_ctor_set(x_30, 1, x_74); +lean_ctor_set(x_30, 0, x_72); lean_ctor_set(x_39, 0, x_29); return x_39; } else { -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; 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; uint8_t x_103; lean_object* x_104; lean_object* x_105; -x_73 = lean_ctor_get(x_39, 1); -lean_inc(x_73); +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; 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; uint8_t x_107; lean_object* x_108; lean_object* x_109; +x_75 = lean_ctor_get(x_39, 1); +lean_inc(x_75); lean_dec(x_39); -x_74 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_75 = lean_array_push(x_74, x_21); -x_76 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_77 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_75); -x_78 = l_Array_empty___closed__1; -x_79 = lean_array_push(x_78, x_77); -x_80 = l_Lean_nullKind___closed__2; -x_81 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_81, 0, x_80); -lean_ctor_set(x_81, 1, x_79); -x_82 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_83 = lean_array_push(x_82, x_81); -x_84 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_85 = lean_array_push(x_83, x_84); -x_86 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_76 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_77 = lean_array_push(x_76, x_21); +x_78 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_79 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_79, 0, x_78); +lean_ctor_set(x_79, 1, x_77); +x_80 = l_Array_empty___closed__1; +x_81 = lean_array_push(x_80, x_79); +x_82 = l_Lean_nullKind___closed__2; +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_82); +lean_ctor_set(x_83, 1, x_81); +x_84 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_85 = lean_array_push(x_84, x_83); +x_86 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_87 = lean_array_push(x_85, x_86); -x_88 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_88 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_89 = lean_array_push(x_87, x_88); -x_90 = lean_array_push(x_78, x_19); +x_90 = lean_array_push(x_80, x_19); x_91 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_91, 0, x_80); +lean_ctor_set(x_91, 0, x_82); lean_ctor_set(x_91, 1, x_90); -x_92 = lean_array_push(x_78, x_91); +x_92 = lean_array_push(x_80, x_91); x_93 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; x_94 = lean_array_push(x_92, x_93); x_95 = lean_array_push(x_94, x_35); -x_96 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +x_96 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_97 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_97, 0, x_96); lean_ctor_set(x_97, 1, x_95); -x_98 = lean_array_push(x_78, x_97); +x_98 = lean_array_push(x_80, x_97); x_99 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_99, 0, x_80); +lean_ctor_set(x_99, 0, x_82); lean_ctor_set(x_99, 1, x_98); -x_100 = lean_array_push(x_89, x_99); -x_101 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_102, 0, x_101); -lean_ctor_set(x_102, 1, x_100); -x_103 = 1; -x_104 = lean_box(x_103); -lean_ctor_set(x_30, 1, x_104); -lean_ctor_set(x_30, 0, x_102); -x_105 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_105, 0, x_29); -lean_ctor_set(x_105, 1, x_73); -return x_105; +x_100 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_101 = lean_array_push(x_100, x_99); +x_102 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_101); +x_104 = lean_array_push(x_89, x_103); +x_105 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_106 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_106, 0, x_105); +lean_ctor_set(x_106, 1, x_104); +x_107 = 1; +x_108 = lean_box(x_107); +lean_ctor_set(x_30, 1, x_108); +lean_ctor_set(x_30, 0, x_106); +x_109 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_109, 0, x_29); +lean_ctor_set(x_109, 1, x_75); +return x_109; } } 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; uint8_t x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; -x_106 = lean_ctor_get(x_30, 0); -lean_inc(x_106); -lean_dec(x_30); -x_107 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_31); -x_108 = lean_ctor_get(x_107, 1); -lean_inc(x_108); -lean_dec(x_107); -x_109 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_108); -x_110 = lean_ctor_get(x_109, 1); +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; uint8_t x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; +x_110 = lean_ctor_get(x_30, 0); lean_inc(x_110); -if (lean_is_exclusive(x_109)) { - lean_ctor_release(x_109, 0); - lean_ctor_release(x_109, 1); - x_111 = x_109; +lean_dec(x_30); +x_111 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_31); +x_112 = lean_ctor_get(x_111, 1); +lean_inc(x_112); +lean_dec(x_111); +x_113 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_112); +x_114 = lean_ctor_get(x_113, 1); +lean_inc(x_114); +if (lean_is_exclusive(x_113)) { + lean_ctor_release(x_113, 0); + lean_ctor_release(x_113, 1); + x_115 = x_113; } else { - lean_dec_ref(x_109); - x_111 = lean_box(0); + lean_dec_ref(x_113); + x_115 = lean_box(0); } -x_112 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_113 = lean_array_push(x_112, x_21); -x_114 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_115 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_115, 0, x_114); -lean_ctor_set(x_115, 1, x_113); -x_116 = l_Array_empty___closed__1; -x_117 = lean_array_push(x_116, x_115); -x_118 = l_Lean_nullKind___closed__2; +x_116 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_117 = lean_array_push(x_116, x_21); +x_118 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_119 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_119, 0, x_118); lean_ctor_set(x_119, 1, x_117); -x_120 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_120 = l_Array_empty___closed__1; x_121 = lean_array_push(x_120, x_119); -x_122 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_123 = lean_array_push(x_121, x_122); -x_124 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_125 = lean_array_push(x_123, x_124); -x_126 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_122 = l_Lean_nullKind___closed__2; +x_123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_123, 0, x_122); +lean_ctor_set(x_123, 1, x_121); +x_124 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_125 = lean_array_push(x_124, x_123); +x_126 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_127 = lean_array_push(x_125, x_126); -x_128 = lean_array_push(x_116, x_19); -x_129 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_129, 0, x_118); -lean_ctor_set(x_129, 1, x_128); -x_130 = lean_array_push(x_116, x_129); -x_131 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_132 = lean_array_push(x_130, x_131); -x_133 = lean_array_push(x_132, x_106); -x_134 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_135 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_135, 0, x_134); -lean_ctor_set(x_135, 1, x_133); -x_136 = lean_array_push(x_116, x_135); +x_128 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_129 = lean_array_push(x_127, x_128); +x_130 = lean_array_push(x_120, x_19); +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_122); +lean_ctor_set(x_131, 1, x_130); +x_132 = lean_array_push(x_120, x_131); +x_133 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_134 = lean_array_push(x_132, x_133); +x_135 = lean_array_push(x_134, x_110); +x_136 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_137 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_137, 0, x_118); -lean_ctor_set(x_137, 1, x_136); -x_138 = lean_array_push(x_127, x_137); -x_139 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_140 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_140, 0, x_139); -lean_ctor_set(x_140, 1, x_138); -x_141 = 1; -x_142 = lean_box(x_141); -x_143 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_143, 0, x_140); -lean_ctor_set(x_143, 1, x_142); -lean_ctor_set(x_29, 1, x_143); -if (lean_is_scalar(x_111)) { - x_144 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_137, 0, x_136); +lean_ctor_set(x_137, 1, x_135); +x_138 = lean_array_push(x_120, x_137); +x_139 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_139, 0, x_122); +lean_ctor_set(x_139, 1, x_138); +x_140 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_141 = lean_array_push(x_140, x_139); +x_142 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_143 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_143, 0, x_142); +lean_ctor_set(x_143, 1, x_141); +x_144 = lean_array_push(x_129, x_143); +x_145 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_145); +lean_ctor_set(x_146, 1, x_144); +x_147 = 1; +x_148 = lean_box(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); +lean_ctor_set(x_29, 1, x_149); +if (lean_is_scalar(x_115)) { + x_150 = lean_alloc_ctor(0, 2, 0); } else { - x_144 = x_111; + x_150 = x_115; } -lean_ctor_set(x_144, 0, x_29); -lean_ctor_set(x_144, 1, x_110); -return x_144; +lean_ctor_set(x_150, 0, x_29); +lean_ctor_set(x_150, 1, x_114); +return x_150; } } else { -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; 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; uint8_t x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; -x_145 = lean_ctor_get(x_29, 0); -lean_inc(x_145); +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; uint8_t x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; +x_151 = lean_ctor_get(x_29, 0); +lean_inc(x_151); lean_dec(x_29); -x_146 = lean_ctor_get(x_30, 0); -lean_inc(x_146); +x_152 = lean_ctor_get(x_30, 0); +lean_inc(x_152); if (lean_is_exclusive(x_30)) { lean_ctor_release(x_30, 0); lean_ctor_release(x_30, 1); - x_147 = x_30; + x_153 = x_30; } else { lean_dec_ref(x_30); - x_147 = lean_box(0); + x_153 = lean_box(0); } -x_148 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_31); -x_149 = lean_ctor_get(x_148, 1); -lean_inc(x_149); -lean_dec(x_148); -x_150 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_149); -x_151 = lean_ctor_get(x_150, 1); -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; +x_154 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_31); +x_155 = lean_ctor_get(x_154, 1); +lean_inc(x_155); +lean_dec(x_154); +x_156 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_155); +x_157 = lean_ctor_get(x_156, 1); +lean_inc(x_157); +if (lean_is_exclusive(x_156)) { + lean_ctor_release(x_156, 0); + lean_ctor_release(x_156, 1); + x_158 = x_156; } else { - lean_dec_ref(x_150); - x_152 = lean_box(0); -} -x_153 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_154 = lean_array_push(x_153, x_21); -x_155 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_156 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_156, 0, x_155); -lean_ctor_set(x_156, 1, x_154); -x_157 = l_Array_empty___closed__1; -x_158 = lean_array_push(x_157, x_156); -x_159 = l_Lean_nullKind___closed__2; -x_160 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_160, 0, x_159); -lean_ctor_set(x_160, 1, x_158); -x_161 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_162 = lean_array_push(x_161, x_160); -x_163 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_164 = lean_array_push(x_162, x_163); -x_165 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_166 = lean_array_push(x_164, x_165); -x_167 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_168 = lean_array_push(x_166, x_167); -x_169 = lean_array_push(x_157, x_19); -x_170 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_170, 0, x_159); -lean_ctor_set(x_170, 1, x_169); -x_171 = lean_array_push(x_157, x_170); -x_172 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_173 = lean_array_push(x_171, x_172); -x_174 = lean_array_push(x_173, x_146); -x_175 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_176 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_176, 0, x_175); -lean_ctor_set(x_176, 1, x_174); -x_177 = lean_array_push(x_157, x_176); -x_178 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_178, 0, x_159); -lean_ctor_set(x_178, 1, x_177); -x_179 = lean_array_push(x_168, x_178); -x_180 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_181 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_181, 0, x_180); -lean_ctor_set(x_181, 1, x_179); -x_182 = 1; -x_183 = lean_box(x_182); -if (lean_is_scalar(x_147)) { - x_184 = lean_alloc_ctor(0, 2, 0); -} else { - x_184 = x_147; -} -lean_ctor_set(x_184, 0, x_181); -lean_ctor_set(x_184, 1, x_183); -x_185 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_185, 0, x_145); -lean_ctor_set(x_185, 1, x_184); -if (lean_is_scalar(x_152)) { - x_186 = lean_alloc_ctor(0, 2, 0); -} else { - x_186 = x_152; + lean_dec_ref(x_156); + x_158 = lean_box(0); } +x_159 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_160 = lean_array_push(x_159, x_21); +x_161 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_162 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_162, 0, x_161); +lean_ctor_set(x_162, 1, x_160); +x_163 = l_Array_empty___closed__1; +x_164 = lean_array_push(x_163, x_162); +x_165 = l_Lean_nullKind___closed__2; +x_166 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_166, 0, x_165); +lean_ctor_set(x_166, 1, x_164); +x_167 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_168 = lean_array_push(x_167, x_166); +x_169 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_170 = lean_array_push(x_168, x_169); +x_171 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_172 = lean_array_push(x_170, x_171); +x_173 = lean_array_push(x_163, x_19); +x_174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_174, 0, x_165); +lean_ctor_set(x_174, 1, x_173); +x_175 = lean_array_push(x_163, x_174); +x_176 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_177 = lean_array_push(x_175, x_176); +x_178 = lean_array_push(x_177, x_152); +x_179 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_180 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_180, 0, x_179); +lean_ctor_set(x_180, 1, x_178); +x_181 = lean_array_push(x_163, x_180); +x_182 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_182, 0, x_165); +lean_ctor_set(x_182, 1, x_181); +x_183 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_184 = lean_array_push(x_183, x_182); +x_185 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_186 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_186, 0, x_185); -lean_ctor_set(x_186, 1, x_151); -return x_186; +lean_ctor_set(x_186, 1, x_184); +x_187 = lean_array_push(x_172, x_186); +x_188 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_189 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_189, 0, x_188); +lean_ctor_set(x_189, 1, x_187); +x_190 = 1; +x_191 = lean_box(x_190); +if (lean_is_scalar(x_153)) { + x_192 = lean_alloc_ctor(0, 2, 0); +} else { + x_192 = x_153; +} +lean_ctor_set(x_192, 0, x_189); +lean_ctor_set(x_192, 1, x_191); +x_193 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_193, 0, x_151); +lean_ctor_set(x_193, 1, x_192); +if (lean_is_scalar(x_158)) { + x_194 = lean_alloc_ctor(0, 2, 0); +} else { + x_194 = x_158; +} +lean_ctor_set(x_194, 0, x_193); +lean_ctor_set(x_194, 1, x_157); +return x_194; } } case 1: { -lean_object* x_187; -x_187 = lean_ctor_get(x_19, 0); -lean_inc(x_187); -if (lean_obj_tag(x_187) == 1) -{ -lean_object* x_188; -x_188 = lean_ctor_get(x_187, 0); -lean_inc(x_188); -if (lean_obj_tag(x_188) == 1) -{ -lean_object* x_189; -x_189 = lean_ctor_get(x_188, 0); -lean_inc(x_189); -if (lean_obj_tag(x_189) == 1) -{ -lean_object* x_190; -x_190 = lean_ctor_get(x_189, 0); -lean_inc(x_190); -if (lean_obj_tag(x_190) == 1) -{ -lean_object* x_191; -x_191 = lean_ctor_get(x_190, 0); -lean_inc(x_191); -if (lean_obj_tag(x_191) == 0) -{ -lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; uint8_t x_197; -x_192 = lean_ctor_get(x_187, 1); -lean_inc(x_192); -lean_dec(x_187); -x_193 = lean_ctor_get(x_188, 1); -lean_inc(x_193); -lean_dec(x_188); -x_194 = lean_ctor_get(x_189, 1); -lean_inc(x_194); -lean_dec(x_189); -x_195 = lean_ctor_get(x_190, 1); +lean_object* x_195; +x_195 = lean_ctor_get(x_19, 0); lean_inc(x_195); -lean_dec(x_190); -x_196 = l_Lean_mkAppStx___closed__1; -x_197 = lean_string_dec_eq(x_195, x_196); -lean_dec(x_195); -if (x_197 == 0) +if (lean_obj_tag(x_195) == 1) { -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_209; uint8_t x_210; -lean_dec(x_194); -lean_dec(x_193); -lean_dec(x_192); -x_198 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_object* x_196; +x_196 = lean_ctor_get(x_195, 0); +lean_inc(x_196); +if (lean_obj_tag(x_196) == 1) +{ +lean_object* x_197; +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +if (lean_obj_tag(x_197) == 1) +{ +lean_object* x_198; +x_198 = lean_ctor_get(x_197, 0); +lean_inc(x_198); +if (lean_obj_tag(x_198) == 1) +{ +lean_object* x_199; x_199 = lean_ctor_get(x_198, 0); lean_inc(x_199); -x_200 = lean_ctor_get(x_198, 1); +if (lean_obj_tag(x_199) == 0) +{ +lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; uint8_t x_205; +x_200 = lean_ctor_get(x_195, 1); lean_inc(x_200); +lean_dec(x_195); +x_201 = lean_ctor_get(x_196, 1); +lean_inc(x_201); +lean_dec(x_196); +x_202 = lean_ctor_get(x_197, 1); +lean_inc(x_202); +lean_dec(x_197); +x_203 = lean_ctor_get(x_198, 1); +lean_inc(x_203); lean_dec(x_198); -x_201 = lean_unsigned_to_nat(1u); -x_202 = lean_nat_add(x_3, x_201); -lean_dec(x_3); -x_203 = l_Lean_mkHole(x_19); -lean_inc(x_199); -x_204 = l_Lean_Elab_Term_mkExplicitBinder(x_199, x_203); -x_205 = lean_array_push(x_4, x_204); -x_206 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_202, x_205, x_5, x_6, x_7, x_8, x_9, x_10, x_200); +x_204 = l_Lean_mkAppStx___closed__1; +x_205 = lean_string_dec_eq(x_203, x_204); +lean_dec(x_203); +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_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; uint8_t x_218; +lean_dec(x_202); +lean_dec(x_201); +lean_dec(x_200); +x_206 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); x_207 = lean_ctor_get(x_206, 0); lean_inc(x_207); -x_208 = lean_ctor_get(x_207, 1); +x_208 = lean_ctor_get(x_206, 1); lean_inc(x_208); -x_209 = lean_ctor_get(x_206, 1); -lean_inc(x_209); lean_dec(x_206); -x_210 = !lean_is_exclusive(x_207); -if (x_210 == 0) -{ -lean_object* x_211; uint8_t x_212; -x_211 = lean_ctor_get(x_207, 1); -lean_dec(x_211); -x_212 = !lean_is_exclusive(x_208); -if (x_212 == 0) -{ -lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -x_213 = lean_ctor_get(x_208, 0); -x_214 = lean_ctor_get(x_208, 1); -lean_dec(x_214); -x_215 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_209); +x_209 = lean_unsigned_to_nat(1u); +x_210 = lean_nat_add(x_3, x_209); +lean_dec(x_3); +x_211 = l_Lean_mkHole(x_19); +lean_inc(x_207); +x_212 = l_Lean_Elab_Term_mkExplicitBinder(x_207, x_211); +x_213 = lean_array_push(x_4, x_212); +x_214 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_210, x_213, x_5, x_6, x_7, x_8, x_9, x_10, x_208); +x_215 = lean_ctor_get(x_214, 0); +lean_inc(x_215); x_216 = lean_ctor_get(x_215, 1); lean_inc(x_216); -lean_dec(x_215); -x_217 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_216); -x_218 = !lean_is_exclusive(x_217); +x_217 = lean_ctor_get(x_214, 1); +lean_inc(x_217); +lean_dec(x_214); +x_218 = !lean_is_exclusive(x_215); if (x_218 == 0) { -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_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; uint8_t x_237; -x_219 = lean_ctor_get(x_217, 0); +lean_object* x_219; uint8_t x_220; +x_219 = lean_ctor_get(x_215, 1); lean_dec(x_219); -x_220 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_221 = lean_array_push(x_220, x_199); -x_222 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_223, 0, x_222); -lean_ctor_set(x_223, 1, x_221); -x_224 = l_Array_empty___closed__1; -x_225 = lean_array_push(x_224, x_223); -x_226 = l_Lean_nullKind___closed__2; -x_227 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_227, 0, x_226); -lean_ctor_set(x_227, 1, x_225); -x_228 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_229 = lean_array_push(x_228, x_227); -x_230 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_231 = lean_array_push(x_229, x_230); -x_232 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_233 = lean_array_push(x_231, x_232); -x_234 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_235 = lean_array_push(x_233, x_234); +x_220 = !lean_is_exclusive(x_216); +if (x_220 == 0) +{ +lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; +x_221 = lean_ctor_get(x_216, 0); +x_222 = lean_ctor_get(x_216, 1); +lean_dec(x_222); +x_223 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_217); +x_224 = lean_ctor_get(x_223, 1); +lean_inc(x_224); +lean_dec(x_223); +x_225 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_224); +x_226 = !lean_is_exclusive(x_225); +if (x_226 == 0) +{ +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_object* x_241; lean_object* x_242; uint8_t x_243; +x_227 = lean_ctor_get(x_225, 0); +lean_dec(x_227); +x_228 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_229 = lean_array_push(x_228, x_207); +x_230 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_231 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_231, 0, x_230); +lean_ctor_set(x_231, 1, x_229); +x_232 = l_Array_empty___closed__1; +x_233 = lean_array_push(x_232, x_231); +x_234 = l_Lean_nullKind___closed__2; +x_235 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_235, 0, x_234); +lean_ctor_set(x_235, 1, x_233); +x_236 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_237 = lean_array_push(x_236, x_235); +x_238 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_239 = lean_array_push(x_237, x_238); +x_240 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_241 = lean_array_push(x_239, x_240); lean_inc(x_19); -x_236 = lean_array_push(x_224, x_19); -x_237 = !lean_is_exclusive(x_19); -if (x_237 == 0) +x_242 = lean_array_push(x_232, x_19); +x_243 = !lean_is_exclusive(x_19); +if (x_243 == 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; 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; uint8_t x_251; lean_object* x_252; -x_238 = lean_ctor_get(x_19, 1); -lean_dec(x_238); -x_239 = lean_ctor_get(x_19, 0); -lean_dec(x_239); -lean_ctor_set(x_19, 1, x_236); -lean_ctor_set(x_19, 0, x_226); -x_240 = lean_array_push(x_224, x_19); -x_241 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_242 = lean_array_push(x_240, x_241); -x_243 = lean_array_push(x_242, x_213); -x_244 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_245 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_245, 0, x_244); -lean_ctor_set(x_245, 1, x_243); -x_246 = lean_array_push(x_224, x_245); -x_247 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_247, 0, x_226); -lean_ctor_set(x_247, 1, x_246); -x_248 = lean_array_push(x_235, x_247); -x_249 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_250 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_250, 0, x_249); -lean_ctor_set(x_250, 1, x_248); -x_251 = 1; -x_252 = lean_box(x_251); -lean_ctor_set(x_208, 1, x_252); -lean_ctor_set(x_208, 0, x_250); -lean_ctor_set(x_217, 0, x_207); -return x_217; -} -else -{ -lean_object* x_253; 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; lean_object* x_263; lean_object* x_264; uint8_t x_265; lean_object* x_266; -lean_dec(x_19); +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; lean_object* x_259; lean_object* x_260; uint8_t x_261; lean_object* x_262; +x_244 = lean_ctor_get(x_19, 1); +lean_dec(x_244); +x_245 = lean_ctor_get(x_19, 0); +lean_dec(x_245); +lean_ctor_set(x_19, 1, x_242); +lean_ctor_set(x_19, 0, x_234); +x_246 = lean_array_push(x_232, x_19); +x_247 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_248 = lean_array_push(x_246, x_247); +x_249 = lean_array_push(x_248, x_221); +x_250 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_251 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_251, 0, x_250); +lean_ctor_set(x_251, 1, x_249); +x_252 = lean_array_push(x_232, x_251); x_253 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_253, 0, x_226); -lean_ctor_set(x_253, 1, x_236); -x_254 = lean_array_push(x_224, x_253); -x_255 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_256 = lean_array_push(x_254, x_255); -x_257 = lean_array_push(x_256, x_213); -x_258 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_259 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_259, 0, x_258); -lean_ctor_set(x_259, 1, x_257); -x_260 = lean_array_push(x_224, x_259); -x_261 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_261, 0, x_226); -lean_ctor_set(x_261, 1, x_260); -x_262 = lean_array_push(x_235, x_261); -x_263 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_264 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_264, 0, x_263); -lean_ctor_set(x_264, 1, x_262); -x_265 = 1; -x_266 = lean_box(x_265); -lean_ctor_set(x_208, 1, x_266); -lean_ctor_set(x_208, 0, x_264); -lean_ctor_set(x_217, 0, x_207); -return x_217; -} +lean_ctor_set(x_253, 0, x_234); +lean_ctor_set(x_253, 1, x_252); +x_254 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_255 = lean_array_push(x_254, x_253); +x_256 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_257 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_257, 0, x_256); +lean_ctor_set(x_257, 1, x_255); +x_258 = lean_array_push(x_241, x_257); +x_259 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_260 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_260, 0, x_259); +lean_ctor_set(x_260, 1, x_258); +x_261 = 1; +x_262 = lean_box(x_261); +lean_ctor_set(x_216, 1, x_262); +lean_ctor_set(x_216, 0, x_260); +lean_ctor_set(x_225, 0, x_215); +return x_225; } else { -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; 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_object* x_297; uint8_t x_298; lean_object* x_299; lean_object* x_300; -x_267 = lean_ctor_get(x_217, 1); -lean_inc(x_267); -lean_dec(x_217); -x_268 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_269 = lean_array_push(x_268, x_199); -x_270 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +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; uint8_t x_279; lean_object* x_280; +lean_dec(x_19); +x_263 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_263, 0, x_234); +lean_ctor_set(x_263, 1, x_242); +x_264 = lean_array_push(x_232, x_263); +x_265 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_266 = lean_array_push(x_264, x_265); +x_267 = lean_array_push(x_266, x_221); +x_268 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_269 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_269, 0, x_268); +lean_ctor_set(x_269, 1, x_267); +x_270 = lean_array_push(x_232, x_269); x_271 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_271, 0, x_270); -lean_ctor_set(x_271, 1, x_269); -x_272 = l_Array_empty___closed__1; +lean_ctor_set(x_271, 0, x_234); +lean_ctor_set(x_271, 1, x_270); +x_272 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; x_273 = lean_array_push(x_272, x_271); -x_274 = l_Lean_nullKind___closed__2; +x_274 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_275 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_275, 0, x_274); lean_ctor_set(x_275, 1, x_273); -x_276 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_277 = lean_array_push(x_276, x_275); -x_278 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_279 = lean_array_push(x_277, x_278); -x_280 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_281 = lean_array_push(x_279, x_280); -x_282 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_283 = lean_array_push(x_281, x_282); -lean_inc(x_19); -x_284 = lean_array_push(x_272, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_285 = x_19; -} else { - lean_dec_ref(x_19); - x_285 = lean_box(0); -} -if (lean_is_scalar(x_285)) { - x_286 = lean_alloc_ctor(1, 2, 0); -} else { - x_286 = x_285; -} -lean_ctor_set(x_286, 0, x_274); -lean_ctor_set(x_286, 1, x_284); -x_287 = lean_array_push(x_272, x_286); -x_288 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_289 = lean_array_push(x_287, x_288); -x_290 = lean_array_push(x_289, x_213); -x_291 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_292 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_292, 0, x_291); -lean_ctor_set(x_292, 1, x_290); -x_293 = lean_array_push(x_272, x_292); -x_294 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_294, 0, x_274); -lean_ctor_set(x_294, 1, x_293); -x_295 = lean_array_push(x_283, x_294); -x_296 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_297 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_297, 0, x_296); -lean_ctor_set(x_297, 1, x_295); -x_298 = 1; -x_299 = lean_box(x_298); -lean_ctor_set(x_208, 1, x_299); -lean_ctor_set(x_208, 0, x_297); -x_300 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_300, 0, x_207); -lean_ctor_set(x_300, 1, x_267); -return x_300; +x_276 = lean_array_push(x_241, x_275); +x_277 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_278 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_278, 0, x_277); +lean_ctor_set(x_278, 1, x_276); +x_279 = 1; +x_280 = lean_box(x_279); +lean_ctor_set(x_216, 1, x_280); +lean_ctor_set(x_216, 0, x_278); +lean_ctor_set(x_225, 0, x_215); +return x_225; } } 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; 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; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; 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; 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; uint8_t x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; -x_301 = lean_ctor_get(x_208, 0); -lean_inc(x_301); -lean_dec(x_208); -x_302 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_209); -x_303 = lean_ctor_get(x_302, 1); -lean_inc(x_303); -lean_dec(x_302); -x_304 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_303); -x_305 = lean_ctor_get(x_304, 1); -lean_inc(x_305); -if (lean_is_exclusive(x_304)) { - lean_ctor_release(x_304, 0); - lean_ctor_release(x_304, 1); - x_306 = x_304; +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_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_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; lean_object* x_311; lean_object* x_312; lean_object* x_313; uint8_t x_314; lean_object* x_315; lean_object* x_316; +x_281 = lean_ctor_get(x_225, 1); +lean_inc(x_281); +lean_dec(x_225); +x_282 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_283 = lean_array_push(x_282, x_207); +x_284 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_285 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_285, 0, x_284); +lean_ctor_set(x_285, 1, x_283); +x_286 = l_Array_empty___closed__1; +x_287 = lean_array_push(x_286, x_285); +x_288 = l_Lean_nullKind___closed__2; +x_289 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_289, 0, x_288); +lean_ctor_set(x_289, 1, x_287); +x_290 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_291 = lean_array_push(x_290, x_289); +x_292 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_293 = lean_array_push(x_291, x_292); +x_294 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_295 = lean_array_push(x_293, x_294); +lean_inc(x_19); +x_296 = lean_array_push(x_286, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_297 = x_19; } else { - lean_dec_ref(x_304); - x_306 = lean_box(0); + lean_dec_ref(x_19); + x_297 = lean_box(0); } -x_307 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_308 = lean_array_push(x_307, x_199); -x_309 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +if (lean_is_scalar(x_297)) { + x_298 = lean_alloc_ctor(1, 2, 0); +} else { + x_298 = x_297; +} +lean_ctor_set(x_298, 0, x_288); +lean_ctor_set(x_298, 1, x_296); +x_299 = lean_array_push(x_286, x_298); +x_300 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_301 = lean_array_push(x_299, x_300); +x_302 = lean_array_push(x_301, x_221); +x_303 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_304 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_304, 0, x_303); +lean_ctor_set(x_304, 1, x_302); +x_305 = lean_array_push(x_286, x_304); +x_306 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_306, 0, x_288); +lean_ctor_set(x_306, 1, x_305); +x_307 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_308 = lean_array_push(x_307, x_306); +x_309 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_310 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_310, 0, x_309); lean_ctor_set(x_310, 1, x_308); -x_311 = l_Array_empty___closed__1; -x_312 = lean_array_push(x_311, x_310); -x_313 = l_Lean_nullKind___closed__2; -x_314 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_314, 0, x_313); -lean_ctor_set(x_314, 1, x_312); -x_315 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_316 = lean_array_push(x_315, x_314); -x_317 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_318 = lean_array_push(x_316, x_317); -x_319 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_320 = lean_array_push(x_318, x_319); -x_321 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_322 = lean_array_push(x_320, x_321); -lean_inc(x_19); -x_323 = lean_array_push(x_311, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_324 = x_19; -} else { - lean_dec_ref(x_19); - x_324 = lean_box(0); -} -if (lean_is_scalar(x_324)) { - x_325 = lean_alloc_ctor(1, 2, 0); -} else { - x_325 = x_324; -} -lean_ctor_set(x_325, 0, x_313); -lean_ctor_set(x_325, 1, x_323); -x_326 = lean_array_push(x_311, x_325); -x_327 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_328 = lean_array_push(x_326, x_327); -x_329 = lean_array_push(x_328, x_301); -x_330 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_331 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_331, 0, x_330); -lean_ctor_set(x_331, 1, x_329); -x_332 = lean_array_push(x_311, x_331); -x_333 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_333, 0, x_313); -lean_ctor_set(x_333, 1, x_332); -x_334 = lean_array_push(x_322, x_333); -x_335 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_336 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_336, 0, x_335); -lean_ctor_set(x_336, 1, x_334); -x_337 = 1; -x_338 = lean_box(x_337); -x_339 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_339, 0, x_336); -lean_ctor_set(x_339, 1, x_338); -lean_ctor_set(x_207, 1, x_339); -if (lean_is_scalar(x_306)) { - x_340 = lean_alloc_ctor(0, 2, 0); -} else { - x_340 = x_306; -} -lean_ctor_set(x_340, 0, x_207); -lean_ctor_set(x_340, 1, x_305); -return x_340; +x_311 = lean_array_push(x_295, x_310); +x_312 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_313 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_313, 0, x_312); +lean_ctor_set(x_313, 1, x_311); +x_314 = 1; +x_315 = lean_box(x_314); +lean_ctor_set(x_216, 1, x_315); +lean_ctor_set(x_216, 0, x_313); +x_316 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_316, 0, x_215); +lean_ctor_set(x_316, 1, x_281); +return x_316; } } 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; 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_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_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_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_381; lean_object* x_382; lean_object* x_383; -x_341 = lean_ctor_get(x_207, 0); -lean_inc(x_341); -lean_dec(x_207); -x_342 = lean_ctor_get(x_208, 0); -lean_inc(x_342); -if (lean_is_exclusive(x_208)) { - lean_ctor_release(x_208, 0); - lean_ctor_release(x_208, 1); - x_343 = x_208; +lean_object* x_317; lean_object* x_318; lean_object* x_319; 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; 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_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; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; uint8_t x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; +x_317 = lean_ctor_get(x_216, 0); +lean_inc(x_317); +lean_dec(x_216); +x_318 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_217); +x_319 = lean_ctor_get(x_318, 1); +lean_inc(x_319); +lean_dec(x_318); +x_320 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_319); +x_321 = lean_ctor_get(x_320, 1); +lean_inc(x_321); +if (lean_is_exclusive(x_320)) { + lean_ctor_release(x_320, 0); + lean_ctor_release(x_320, 1); + x_322 = x_320; } else { - lean_dec_ref(x_208); - x_343 = lean_box(0); + lean_dec_ref(x_320); + x_322 = lean_box(0); } -x_344 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_209); -x_345 = lean_ctor_get(x_344, 1); -lean_inc(x_345); -lean_dec(x_344); -x_346 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_345); -x_347 = lean_ctor_get(x_346, 1); -lean_inc(x_347); -if (lean_is_exclusive(x_346)) { - lean_ctor_release(x_346, 0); - lean_ctor_release(x_346, 1); - x_348 = x_346; -} else { - lean_dec_ref(x_346); - x_348 = lean_box(0); -} -x_349 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_350 = lean_array_push(x_349, x_199); -x_351 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_352 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_352, 0, x_351); -lean_ctor_set(x_352, 1, x_350); -x_353 = l_Array_empty___closed__1; -x_354 = lean_array_push(x_353, x_352); -x_355 = l_Lean_nullKind___closed__2; -x_356 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_356, 0, x_355); -lean_ctor_set(x_356, 1, x_354); -x_357 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_358 = lean_array_push(x_357, x_356); -x_359 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_360 = lean_array_push(x_358, x_359); -x_361 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_362 = lean_array_push(x_360, x_361); -x_363 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_364 = lean_array_push(x_362, x_363); +x_323 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_324 = lean_array_push(x_323, x_207); +x_325 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_326 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_326, 0, x_325); +lean_ctor_set(x_326, 1, x_324); +x_327 = l_Array_empty___closed__1; +x_328 = lean_array_push(x_327, x_326); +x_329 = l_Lean_nullKind___closed__2; +x_330 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_330, 0, x_329); +lean_ctor_set(x_330, 1, x_328); +x_331 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_332 = lean_array_push(x_331, x_330); +x_333 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_334 = lean_array_push(x_332, x_333); +x_335 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_336 = lean_array_push(x_334, x_335); lean_inc(x_19); -x_365 = lean_array_push(x_353, x_19); +x_337 = lean_array_push(x_327, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_366 = x_19; + x_338 = x_19; } else { lean_dec_ref(x_19); + x_338 = lean_box(0); +} +if (lean_is_scalar(x_338)) { + x_339 = lean_alloc_ctor(1, 2, 0); +} else { + x_339 = x_338; +} +lean_ctor_set(x_339, 0, x_329); +lean_ctor_set(x_339, 1, x_337); +x_340 = lean_array_push(x_327, x_339); +x_341 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_342 = lean_array_push(x_340, x_341); +x_343 = lean_array_push(x_342, x_317); +x_344 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_345 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_345, 0, x_344); +lean_ctor_set(x_345, 1, x_343); +x_346 = lean_array_push(x_327, x_345); +x_347 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_347, 0, x_329); +lean_ctor_set(x_347, 1, x_346); +x_348 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_349 = lean_array_push(x_348, x_347); +x_350 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_351 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_351, 0, x_350); +lean_ctor_set(x_351, 1, x_349); +x_352 = lean_array_push(x_336, x_351); +x_353 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_354 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_354, 0, x_353); +lean_ctor_set(x_354, 1, x_352); +x_355 = 1; +x_356 = lean_box(x_355); +x_357 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_357, 0, x_354); +lean_ctor_set(x_357, 1, x_356); +lean_ctor_set(x_215, 1, x_357); +if (lean_is_scalar(x_322)) { + x_358 = lean_alloc_ctor(0, 2, 0); +} else { + x_358 = x_322; +} +lean_ctor_set(x_358, 0, x_215); +lean_ctor_set(x_358, 1, x_321); +return x_358; +} +} +else +{ +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_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_object* x_375; 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; 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; 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_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; +x_359 = lean_ctor_get(x_215, 0); +lean_inc(x_359); +lean_dec(x_215); +x_360 = lean_ctor_get(x_216, 0); +lean_inc(x_360); +if (lean_is_exclusive(x_216)) { + lean_ctor_release(x_216, 0); + lean_ctor_release(x_216, 1); + x_361 = x_216; +} else { + lean_dec_ref(x_216); + x_361 = lean_box(0); +} +x_362 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_217); +x_363 = lean_ctor_get(x_362, 1); +lean_inc(x_363); +lean_dec(x_362); +x_364 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_363); +x_365 = lean_ctor_get(x_364, 1); +lean_inc(x_365); +if (lean_is_exclusive(x_364)) { + lean_ctor_release(x_364, 0); + lean_ctor_release(x_364, 1); + 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, 2, 0); -} else { - x_367 = x_366; -} -lean_ctor_set(x_367, 0, x_355); -lean_ctor_set(x_367, 1, x_365); -x_368 = lean_array_push(x_353, x_367); -x_369 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_370 = lean_array_push(x_368, x_369); -x_371 = lean_array_push(x_370, x_342); -x_372 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_373 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_373, 0, x_372); -lean_ctor_set(x_373, 1, x_371); -x_374 = lean_array_push(x_353, x_373); -x_375 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_375, 0, x_355); -lean_ctor_set(x_375, 1, x_374); -x_376 = lean_array_push(x_364, x_375); -x_377 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_378 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_378, 0, x_377); -lean_ctor_set(x_378, 1, x_376); -x_379 = 1; -x_380 = lean_box(x_379); -if (lean_is_scalar(x_343)) { - x_381 = lean_alloc_ctor(0, 2, 0); -} else { - x_381 = x_343; -} -lean_ctor_set(x_381, 0, x_378); -lean_ctor_set(x_381, 1, x_380); -x_382 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_382, 0, x_341); -lean_ctor_set(x_382, 1, x_381); -if (lean_is_scalar(x_348)) { - x_383 = lean_alloc_ctor(0, 2, 0); -} else { - x_383 = x_348; -} -lean_ctor_set(x_383, 0, x_382); -lean_ctor_set(x_383, 1, x_347); -return x_383; -} -} -else -{ -lean_object* x_384; uint8_t x_385; -x_384 = l_Lean_mkAppStx___closed__3; -x_385 = lean_string_dec_eq(x_194, x_384); -lean_dec(x_194); -if (x_385 == 0) -{ -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; 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_dec(x_193); -lean_dec(x_192); -x_386 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_387 = lean_ctor_get(x_386, 0); -lean_inc(x_387); -x_388 = lean_ctor_get(x_386, 1); -lean_inc(x_388); -lean_dec(x_386); -x_389 = lean_unsigned_to_nat(1u); -x_390 = lean_nat_add(x_3, x_389); -lean_dec(x_3); -x_391 = l_Lean_mkHole(x_19); -lean_inc(x_387); -x_392 = l_Lean_Elab_Term_mkExplicitBinder(x_387, x_391); -x_393 = lean_array_push(x_4, x_392); -x_394 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_390, x_393, x_5, x_6, x_7, x_8, x_9, x_10, x_388); -x_395 = lean_ctor_get(x_394, 0); -lean_inc(x_395); -x_396 = lean_ctor_get(x_395, 1); -lean_inc(x_396); -x_397 = lean_ctor_get(x_394, 1); -lean_inc(x_397); -lean_dec(x_394); -x_398 = !lean_is_exclusive(x_395); -if (x_398 == 0) -{ -lean_object* x_399; uint8_t x_400; -x_399 = lean_ctor_get(x_395, 1); -lean_dec(x_399); -x_400 = !lean_is_exclusive(x_396); -if (x_400 == 0) -{ -lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; uint8_t x_406; -x_401 = lean_ctor_get(x_396, 0); -x_402 = lean_ctor_get(x_396, 1); -lean_dec(x_402); -x_403 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_397); -x_404 = lean_ctor_get(x_403, 1); -lean_inc(x_404); -lean_dec(x_403); -x_405 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_404); -x_406 = !lean_is_exclusive(x_405); -if (x_406 == 0) -{ -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_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; lean_object* x_424; uint8_t x_425; -x_407 = lean_ctor_get(x_405, 0); -lean_dec(x_407); -x_408 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_409 = lean_array_push(x_408, x_387); -x_410 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_411 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_411, 0, x_410); -lean_ctor_set(x_411, 1, x_409); -x_412 = l_Array_empty___closed__1; -x_413 = lean_array_push(x_412, x_411); -x_414 = l_Lean_nullKind___closed__2; -x_415 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_415, 0, x_414); -lean_ctor_set(x_415, 1, x_413); -x_416 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_417 = lean_array_push(x_416, x_415); -x_418 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_419 = lean_array_push(x_417, x_418); -x_420 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_421 = lean_array_push(x_419, x_420); -x_422 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_423 = lean_array_push(x_421, x_422); +x_367 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_368 = lean_array_push(x_367, x_207); +x_369 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_370 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_370, 0, x_369); +lean_ctor_set(x_370, 1, x_368); +x_371 = l_Array_empty___closed__1; +x_372 = lean_array_push(x_371, x_370); +x_373 = l_Lean_nullKind___closed__2; +x_374 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_374, 0, x_373); +lean_ctor_set(x_374, 1, x_372); +x_375 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_376 = lean_array_push(x_375, x_374); +x_377 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_378 = lean_array_push(x_376, x_377); +x_379 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_380 = lean_array_push(x_378, x_379); lean_inc(x_19); -x_424 = lean_array_push(x_412, x_19); -x_425 = !lean_is_exclusive(x_19); -if (x_425 == 0) -{ -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_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; uint8_t x_439; lean_object* x_440; -x_426 = lean_ctor_get(x_19, 1); -lean_dec(x_426); -x_427 = lean_ctor_get(x_19, 0); -lean_dec(x_427); -lean_ctor_set(x_19, 1, x_424); -lean_ctor_set(x_19, 0, x_414); -x_428 = lean_array_push(x_412, x_19); -x_429 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_430 = lean_array_push(x_428, x_429); -x_431 = lean_array_push(x_430, x_401); -x_432 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_433 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_433, 0, x_432); -lean_ctor_set(x_433, 1, x_431); -x_434 = lean_array_push(x_412, x_433); -x_435 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_435, 0, x_414); -lean_ctor_set(x_435, 1, x_434); -x_436 = lean_array_push(x_423, x_435); -x_437 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_438 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_438, 0, x_437); -lean_ctor_set(x_438, 1, x_436); -x_439 = 1; -x_440 = lean_box(x_439); -lean_ctor_set(x_396, 1, x_440); -lean_ctor_set(x_396, 0, x_438); -lean_ctor_set(x_405, 0, x_395); -return x_405; -} -else -{ -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_451; lean_object* x_452; uint8_t x_453; lean_object* x_454; -lean_dec(x_19); -x_441 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_441, 0, x_414); -lean_ctor_set(x_441, 1, x_424); -x_442 = lean_array_push(x_412, x_441); -x_443 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_444 = lean_array_push(x_442, x_443); -x_445 = lean_array_push(x_444, x_401); -x_446 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_447 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_447, 0, x_446); -lean_ctor_set(x_447, 1, x_445); -x_448 = lean_array_push(x_412, x_447); -x_449 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_449, 0, x_414); -lean_ctor_set(x_449, 1, x_448); -x_450 = lean_array_push(x_423, x_449); -x_451 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_452 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_452, 0, x_451); -lean_ctor_set(x_452, 1, x_450); -x_453 = 1; -x_454 = lean_box(x_453); -lean_ctor_set(x_396, 1, x_454); -lean_ctor_set(x_396, 0, x_452); -lean_ctor_set(x_405, 0, x_395); -return x_405; -} -} -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; 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; lean_object* x_468; 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_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; uint8_t x_486; lean_object* x_487; lean_object* x_488; -x_455 = lean_ctor_get(x_405, 1); -lean_inc(x_455); -lean_dec(x_405); -x_456 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_457 = lean_array_push(x_456, x_387); -x_458 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_459 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_459, 0, x_458); -lean_ctor_set(x_459, 1, x_457); -x_460 = l_Array_empty___closed__1; -x_461 = lean_array_push(x_460, x_459); -x_462 = l_Lean_nullKind___closed__2; -x_463 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_463, 0, x_462); -lean_ctor_set(x_463, 1, x_461); -x_464 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_465 = lean_array_push(x_464, x_463); -x_466 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_467 = lean_array_push(x_465, x_466); -x_468 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_469 = lean_array_push(x_467, x_468); -x_470 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_471 = lean_array_push(x_469, x_470); -lean_inc(x_19); -x_472 = lean_array_push(x_460, x_19); +x_381 = lean_array_push(x_371, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_473 = x_19; + x_382 = x_19; } else { lean_dec_ref(x_19); - x_473 = lean_box(0); + x_382 = lean_box(0); } -if (lean_is_scalar(x_473)) { - x_474 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_382)) { + x_383 = lean_alloc_ctor(1, 2, 0); } else { - x_474 = x_473; + x_383 = x_382; } -lean_ctor_set(x_474, 0, x_462); -lean_ctor_set(x_474, 1, x_472); -x_475 = lean_array_push(x_460, x_474); -x_476 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_477 = lean_array_push(x_475, x_476); -x_478 = lean_array_push(x_477, x_401); -x_479 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_480 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_480, 0, x_479); -lean_ctor_set(x_480, 1, x_478); -x_481 = lean_array_push(x_460, x_480); -x_482 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_482, 0, x_462); -lean_ctor_set(x_482, 1, x_481); -x_483 = lean_array_push(x_471, x_482); -x_484 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +lean_ctor_set(x_383, 0, x_373); +lean_ctor_set(x_383, 1, x_381); +x_384 = lean_array_push(x_371, x_383); +x_385 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_386 = lean_array_push(x_384, x_385); +x_387 = lean_array_push(x_386, x_360); +x_388 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_389 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_389, 0, x_388); +lean_ctor_set(x_389, 1, x_387); +x_390 = lean_array_push(x_371, x_389); +x_391 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_391, 0, x_373); +lean_ctor_set(x_391, 1, x_390); +x_392 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_393 = lean_array_push(x_392, x_391); +x_394 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_395 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_395, 0, x_394); +lean_ctor_set(x_395, 1, x_393); +x_396 = lean_array_push(x_380, x_395); +x_397 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_398 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_398, 0, x_397); +lean_ctor_set(x_398, 1, x_396); +x_399 = 1; +x_400 = lean_box(x_399); +if (lean_is_scalar(x_361)) { + x_401 = lean_alloc_ctor(0, 2, 0); +} else { + x_401 = x_361; +} +lean_ctor_set(x_401, 0, x_398); +lean_ctor_set(x_401, 1, x_400); +x_402 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_402, 0, x_359); +lean_ctor_set(x_402, 1, x_401); +if (lean_is_scalar(x_366)) { + x_403 = lean_alloc_ctor(0, 2, 0); +} else { + x_403 = x_366; +} +lean_ctor_set(x_403, 0, x_402); +lean_ctor_set(x_403, 1, x_365); +return x_403; +} +} +else +{ +lean_object* x_404; uint8_t x_405; +x_404 = l_Lean_mkAppStx___closed__3; +x_405 = lean_string_dec_eq(x_202, x_404); +lean_dec(x_202); +if (x_405 == 0) +{ +lean_object* x_406; 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_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; uint8_t x_418; +lean_dec(x_201); +lean_dec(x_200); +x_406 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_407 = lean_ctor_get(x_406, 0); +lean_inc(x_407); +x_408 = lean_ctor_get(x_406, 1); +lean_inc(x_408); +lean_dec(x_406); +x_409 = lean_unsigned_to_nat(1u); +x_410 = lean_nat_add(x_3, x_409); +lean_dec(x_3); +x_411 = l_Lean_mkHole(x_19); +lean_inc(x_407); +x_412 = l_Lean_Elab_Term_mkExplicitBinder(x_407, x_411); +x_413 = lean_array_push(x_4, x_412); +x_414 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_410, x_413, x_5, x_6, x_7, x_8, x_9, x_10, x_408); +x_415 = lean_ctor_get(x_414, 0); +lean_inc(x_415); +x_416 = lean_ctor_get(x_415, 1); +lean_inc(x_416); +x_417 = lean_ctor_get(x_414, 1); +lean_inc(x_417); +lean_dec(x_414); +x_418 = !lean_is_exclusive(x_415); +if (x_418 == 0) +{ +lean_object* x_419; uint8_t x_420; +x_419 = lean_ctor_get(x_415, 1); +lean_dec(x_419); +x_420 = !lean_is_exclusive(x_416); +if (x_420 == 0) +{ +lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; uint8_t x_426; +x_421 = lean_ctor_get(x_416, 0); +x_422 = lean_ctor_get(x_416, 1); +lean_dec(x_422); +x_423 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_417); +x_424 = lean_ctor_get(x_423, 1); +lean_inc(x_424); +lean_dec(x_423); +x_425 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_424); +x_426 = !lean_is_exclusive(x_425); +if (x_426 == 0) +{ +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; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; uint8_t x_443; +x_427 = lean_ctor_get(x_425, 0); +lean_dec(x_427); +x_428 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_429 = lean_array_push(x_428, x_407); +x_430 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_431 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_431, 0, x_430); +lean_ctor_set(x_431, 1, x_429); +x_432 = l_Array_empty___closed__1; +x_433 = lean_array_push(x_432, x_431); +x_434 = l_Lean_nullKind___closed__2; +x_435 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_435, 0, x_434); +lean_ctor_set(x_435, 1, x_433); +x_436 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_437 = lean_array_push(x_436, x_435); +x_438 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_439 = lean_array_push(x_437, x_438); +x_440 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_441 = lean_array_push(x_439, x_440); +lean_inc(x_19); +x_442 = lean_array_push(x_432, x_19); +x_443 = !lean_is_exclusive(x_19); +if (x_443 == 0) +{ +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_451; 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; uint8_t x_461; lean_object* x_462; +x_444 = lean_ctor_get(x_19, 1); +lean_dec(x_444); +x_445 = lean_ctor_get(x_19, 0); +lean_dec(x_445); +lean_ctor_set(x_19, 1, x_442); +lean_ctor_set(x_19, 0, x_434); +x_446 = lean_array_push(x_432, x_19); +x_447 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_448 = lean_array_push(x_446, x_447); +x_449 = lean_array_push(x_448, x_421); +x_450 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_451 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_451, 0, x_450); +lean_ctor_set(x_451, 1, x_449); +x_452 = lean_array_push(x_432, x_451); +x_453 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_453, 0, x_434); +lean_ctor_set(x_453, 1, x_452); +x_454 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_455 = lean_array_push(x_454, x_453); +x_456 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_457 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_457, 0, x_456); +lean_ctor_set(x_457, 1, x_455); +x_458 = lean_array_push(x_441, x_457); +x_459 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_460 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_460, 0, x_459); +lean_ctor_set(x_460, 1, x_458); +x_461 = 1; +x_462 = lean_box(x_461); +lean_ctor_set(x_416, 1, x_462); +lean_ctor_set(x_416, 0, x_460); +lean_ctor_set(x_425, 0, x_415); +return x_425; +} +else +{ +lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; 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_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; uint8_t x_479; lean_object* x_480; +lean_dec(x_19); +x_463 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_463, 0, x_434); +lean_ctor_set(x_463, 1, x_442); +x_464 = lean_array_push(x_432, x_463); +x_465 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_466 = lean_array_push(x_464, x_465); +x_467 = lean_array_push(x_466, x_421); +x_468 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_469 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_469, 0, x_468); +lean_ctor_set(x_469, 1, x_467); +x_470 = lean_array_push(x_432, x_469); +x_471 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_471, 0, x_434); +lean_ctor_set(x_471, 1, x_470); +x_472 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_473 = lean_array_push(x_472, x_471); +x_474 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_475 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_475, 0, x_474); +lean_ctor_set(x_475, 1, x_473); +x_476 = lean_array_push(x_441, x_475); +x_477 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_478 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_478, 0, x_477); +lean_ctor_set(x_478, 1, x_476); +x_479 = 1; +x_480 = lean_box(x_479); +lean_ctor_set(x_416, 1, x_480); +lean_ctor_set(x_416, 0, x_478); +lean_ctor_set(x_425, 0, x_415); +return x_425; +} +} +else +{ +lean_object* x_481; 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_object* 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_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; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; uint8_t x_514; lean_object* x_515; lean_object* x_516; +x_481 = lean_ctor_get(x_425, 1); +lean_inc(x_481); +lean_dec(x_425); +x_482 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_483 = lean_array_push(x_482, x_407); +x_484 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_485 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_485, 0, x_484); lean_ctor_set(x_485, 1, x_483); -x_486 = 1; -x_487 = lean_box(x_486); -lean_ctor_set(x_396, 1, x_487); -lean_ctor_set(x_396, 0, x_485); -x_488 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_488, 0, x_395); -lean_ctor_set(x_488, 1, x_455); -return x_488; -} -} -else -{ -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_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; 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_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; lean_object* x_526; lean_object* x_527; lean_object* x_528; -x_489 = lean_ctor_get(x_396, 0); -lean_inc(x_489); -lean_dec(x_396); -x_490 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_397); -x_491 = lean_ctor_get(x_490, 1); -lean_inc(x_491); -lean_dec(x_490); -x_492 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_491); -x_493 = lean_ctor_get(x_492, 1); -lean_inc(x_493); -if (lean_is_exclusive(x_492)) { - lean_ctor_release(x_492, 0); - lean_ctor_release(x_492, 1); - x_494 = x_492; +x_486 = l_Array_empty___closed__1; +x_487 = lean_array_push(x_486, x_485); +x_488 = l_Lean_nullKind___closed__2; +x_489 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_489, 0, x_488); +lean_ctor_set(x_489, 1, x_487); +x_490 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_491 = lean_array_push(x_490, x_489); +x_492 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_493 = lean_array_push(x_491, x_492); +x_494 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_495 = lean_array_push(x_493, x_494); +lean_inc(x_19); +x_496 = lean_array_push(x_486, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_497 = x_19; } else { - lean_dec_ref(x_492); - x_494 = lean_box(0); + lean_dec_ref(x_19); + x_497 = lean_box(0); } -x_495 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_496 = lean_array_push(x_495, x_387); -x_497 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_498 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_498, 0, x_497); +if (lean_is_scalar(x_497)) { + x_498 = lean_alloc_ctor(1, 2, 0); +} else { + x_498 = x_497; +} +lean_ctor_set(x_498, 0, x_488); lean_ctor_set(x_498, 1, x_496); -x_499 = l_Array_empty___closed__1; -x_500 = lean_array_push(x_499, x_498); -x_501 = l_Lean_nullKind___closed__2; -x_502 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_502, 0, x_501); -lean_ctor_set(x_502, 1, x_500); -x_503 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_504 = lean_array_push(x_503, x_502); -x_505 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_506 = lean_array_push(x_504, x_505); -x_507 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_508 = lean_array_push(x_506, x_507); -x_509 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_510 = lean_array_push(x_508, x_509); -lean_inc(x_19); -x_511 = lean_array_push(x_499, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_512 = x_19; -} else { - lean_dec_ref(x_19); - x_512 = lean_box(0); -} -if (lean_is_scalar(x_512)) { - x_513 = lean_alloc_ctor(1, 2, 0); -} else { - x_513 = x_512; -} -lean_ctor_set(x_513, 0, x_501); +x_499 = lean_array_push(x_486, x_498); +x_500 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_501 = lean_array_push(x_499, x_500); +x_502 = lean_array_push(x_501, x_421); +x_503 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_504 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_504, 0, x_503); +lean_ctor_set(x_504, 1, x_502); +x_505 = lean_array_push(x_486, x_504); +x_506 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_506, 0, x_488); +lean_ctor_set(x_506, 1, x_505); +x_507 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_508 = lean_array_push(x_507, x_506); +x_509 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_510 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_510, 0, x_509); +lean_ctor_set(x_510, 1, x_508); +x_511 = lean_array_push(x_495, x_510); +x_512 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_513 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_513, 0, x_512); lean_ctor_set(x_513, 1, x_511); -x_514 = lean_array_push(x_499, x_513); -x_515 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_516 = lean_array_push(x_514, x_515); -x_517 = lean_array_push(x_516, x_489); -x_518 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_519 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_519, 0, x_518); -lean_ctor_set(x_519, 1, x_517); -x_520 = lean_array_push(x_499, x_519); -x_521 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_521, 0, x_501); -lean_ctor_set(x_521, 1, x_520); -x_522 = lean_array_push(x_510, x_521); -x_523 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_524 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_524, 0, x_523); -lean_ctor_set(x_524, 1, x_522); -x_525 = 1; -x_526 = lean_box(x_525); -x_527 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_527, 0, x_524); -lean_ctor_set(x_527, 1, x_526); -lean_ctor_set(x_395, 1, x_527); -if (lean_is_scalar(x_494)) { - x_528 = lean_alloc_ctor(0, 2, 0); -} else { - x_528 = x_494; -} -lean_ctor_set(x_528, 0, x_395); -lean_ctor_set(x_528, 1, x_493); -return x_528; +x_514 = 1; +x_515 = lean_box(x_514); +lean_ctor_set(x_416, 1, x_515); +lean_ctor_set(x_416, 0, x_513); +x_516 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_516, 0, x_415); +lean_ctor_set(x_516, 1, x_481); +return x_516; } } 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; 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; 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_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; lean_object* x_556; 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_object* x_564; lean_object* x_565; lean_object* x_566; uint8_t x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; -x_529 = lean_ctor_get(x_395, 0); -lean_inc(x_529); -lean_dec(x_395); -x_530 = lean_ctor_get(x_396, 0); -lean_inc(x_530); -if (lean_is_exclusive(x_396)) { - lean_ctor_release(x_396, 0); - lean_ctor_release(x_396, 1); - x_531 = x_396; +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_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; lean_object* x_541; 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_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; uint8_t x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; +x_517 = lean_ctor_get(x_416, 0); +lean_inc(x_517); +lean_dec(x_416); +x_518 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_417); +x_519 = lean_ctor_get(x_518, 1); +lean_inc(x_519); +lean_dec(x_518); +x_520 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_519); +x_521 = lean_ctor_get(x_520, 1); +lean_inc(x_521); +if (lean_is_exclusive(x_520)) { + lean_ctor_release(x_520, 0); + lean_ctor_release(x_520, 1); + x_522 = x_520; } else { - lean_dec_ref(x_396); - x_531 = lean_box(0); + lean_dec_ref(x_520); + x_522 = lean_box(0); } -x_532 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_397); -x_533 = lean_ctor_get(x_532, 1); -lean_inc(x_533); -lean_dec(x_532); -x_534 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_533); -x_535 = lean_ctor_get(x_534, 1); -lean_inc(x_535); -if (lean_is_exclusive(x_534)) { - lean_ctor_release(x_534, 0); - lean_ctor_release(x_534, 1); - x_536 = x_534; -} else { - lean_dec_ref(x_534); - x_536 = lean_box(0); -} -x_537 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_538 = lean_array_push(x_537, x_387); -x_539 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_540 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_540, 0, x_539); -lean_ctor_set(x_540, 1, x_538); -x_541 = l_Array_empty___closed__1; -x_542 = lean_array_push(x_541, x_540); -x_543 = l_Lean_nullKind___closed__2; -x_544 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_544, 0, x_543); -lean_ctor_set(x_544, 1, x_542); -x_545 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_546 = lean_array_push(x_545, x_544); -x_547 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_548 = lean_array_push(x_546, x_547); -x_549 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_550 = lean_array_push(x_548, x_549); -x_551 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_552 = lean_array_push(x_550, x_551); +x_523 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_524 = lean_array_push(x_523, x_407); +x_525 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_526 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_526, 0, x_525); +lean_ctor_set(x_526, 1, x_524); +x_527 = l_Array_empty___closed__1; +x_528 = lean_array_push(x_527, x_526); +x_529 = l_Lean_nullKind___closed__2; +x_530 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_530, 0, x_529); +lean_ctor_set(x_530, 1, x_528); +x_531 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_532 = lean_array_push(x_531, x_530); +x_533 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_534 = lean_array_push(x_532, x_533); +x_535 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_536 = lean_array_push(x_534, x_535); lean_inc(x_19); -x_553 = lean_array_push(x_541, x_19); +x_537 = lean_array_push(x_527, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_554 = x_19; + x_538 = x_19; } else { lean_dec_ref(x_19); - x_554 = lean_box(0); + x_538 = lean_box(0); } -if (lean_is_scalar(x_554)) { - x_555 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_538)) { + x_539 = lean_alloc_ctor(1, 2, 0); } else { - x_555 = x_554; + x_539 = x_538; } -lean_ctor_set(x_555, 0, x_543); -lean_ctor_set(x_555, 1, x_553); -x_556 = lean_array_push(x_541, x_555); -x_557 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_558 = lean_array_push(x_556, x_557); -x_559 = lean_array_push(x_558, x_530); -x_560 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_561 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_561, 0, x_560); -lean_ctor_set(x_561, 1, x_559); -x_562 = lean_array_push(x_541, x_561); -x_563 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_563, 0, x_543); -lean_ctor_set(x_563, 1, x_562); -x_564 = lean_array_push(x_552, x_563); -x_565 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_566 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_566, 0, x_565); -lean_ctor_set(x_566, 1, x_564); -x_567 = 1; -x_568 = lean_box(x_567); -if (lean_is_scalar(x_531)) { - x_569 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_539, 0, x_529); +lean_ctor_set(x_539, 1, x_537); +x_540 = lean_array_push(x_527, x_539); +x_541 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_542 = lean_array_push(x_540, x_541); +x_543 = lean_array_push(x_542, x_517); +x_544 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_545 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_545, 0, x_544); +lean_ctor_set(x_545, 1, x_543); +x_546 = lean_array_push(x_527, x_545); +x_547 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_547, 0, x_529); +lean_ctor_set(x_547, 1, x_546); +x_548 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_549 = lean_array_push(x_548, x_547); +x_550 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_551 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_551, 0, x_550); +lean_ctor_set(x_551, 1, x_549); +x_552 = lean_array_push(x_536, x_551); +x_553 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_554 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_554, 0, x_553); +lean_ctor_set(x_554, 1, x_552); +x_555 = 1; +x_556 = lean_box(x_555); +x_557 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_557, 0, x_554); +lean_ctor_set(x_557, 1, x_556); +lean_ctor_set(x_415, 1, x_557); +if (lean_is_scalar(x_522)) { + x_558 = lean_alloc_ctor(0, 2, 0); } else { - x_569 = x_531; + x_558 = x_522; } -lean_ctor_set(x_569, 0, x_566); -lean_ctor_set(x_569, 1, x_568); -x_570 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_570, 0, x_529); -lean_ctor_set(x_570, 1, x_569); -if (lean_is_scalar(x_536)) { - x_571 = lean_alloc_ctor(0, 2, 0); -} else { - x_571 = x_536; -} -lean_ctor_set(x_571, 0, x_570); -lean_ctor_set(x_571, 1, x_535); -return x_571; +lean_ctor_set(x_558, 0, x_415); +lean_ctor_set(x_558, 1, x_521); +return x_558; } } else { -lean_object* x_572; uint8_t x_573; -x_572 = l_Lean_mkAppStx___closed__5; -x_573 = lean_string_dec_eq(x_193, x_572); -lean_dec(x_193); -if (x_573 == 0) -{ -lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; uint8_t x_586; -lean_dec(x_192); -x_574 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_575 = lean_ctor_get(x_574, 0); -lean_inc(x_575); -x_576 = lean_ctor_get(x_574, 1); -lean_inc(x_576); -lean_dec(x_574); -x_577 = lean_unsigned_to_nat(1u); -x_578 = lean_nat_add(x_3, x_577); -lean_dec(x_3); -x_579 = l_Lean_mkHole(x_19); -lean_inc(x_575); -x_580 = l_Lean_Elab_Term_mkExplicitBinder(x_575, x_579); -x_581 = lean_array_push(x_4, x_580); -x_582 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_578, x_581, x_5, x_6, x_7, x_8, x_9, x_10, x_576); -x_583 = lean_ctor_get(x_582, 0); -lean_inc(x_583); -x_584 = lean_ctor_get(x_583, 1); -lean_inc(x_584); -x_585 = lean_ctor_get(x_582, 1); -lean_inc(x_585); -lean_dec(x_582); -x_586 = !lean_is_exclusive(x_583); -if (x_586 == 0) -{ -lean_object* x_587; uint8_t x_588; -x_587 = lean_ctor_get(x_583, 1); -lean_dec(x_587); -x_588 = !lean_is_exclusive(x_584); -if (x_588 == 0) -{ -lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; uint8_t x_594; -x_589 = lean_ctor_get(x_584, 0); -x_590 = lean_ctor_get(x_584, 1); -lean_dec(x_590); -x_591 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_585); -x_592 = lean_ctor_get(x_591, 1); -lean_inc(x_592); -lean_dec(x_591); -x_593 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_592); -x_594 = !lean_is_exclusive(x_593); -if (x_594 == 0) -{ -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; 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_595 = lean_ctor_get(x_593, 0); -lean_dec(x_595); -x_596 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_597 = lean_array_push(x_596, x_575); -x_598 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_599 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_599, 0, x_598); -lean_ctor_set(x_599, 1, x_597); -x_600 = l_Array_empty___closed__1; -x_601 = lean_array_push(x_600, x_599); -x_602 = l_Lean_nullKind___closed__2; -x_603 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_603, 0, x_602); -lean_ctor_set(x_603, 1, x_601); -x_604 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_605 = lean_array_push(x_604, x_603); -x_606 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_607 = lean_array_push(x_605, x_606); -x_608 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_609 = lean_array_push(x_607, x_608); -x_610 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_611 = lean_array_push(x_609, x_610); +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_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; 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_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; 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_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; uint8_t x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; +x_559 = lean_ctor_get(x_415, 0); +lean_inc(x_559); +lean_dec(x_415); +x_560 = lean_ctor_get(x_416, 0); +lean_inc(x_560); +if (lean_is_exclusive(x_416)) { + lean_ctor_release(x_416, 0); + lean_ctor_release(x_416, 1); + x_561 = x_416; +} else { + lean_dec_ref(x_416); + x_561 = lean_box(0); +} +x_562 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_417); +x_563 = lean_ctor_get(x_562, 1); +lean_inc(x_563); +lean_dec(x_562); +x_564 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_563); +x_565 = lean_ctor_get(x_564, 1); +lean_inc(x_565); +if (lean_is_exclusive(x_564)) { + lean_ctor_release(x_564, 0); + lean_ctor_release(x_564, 1); + x_566 = x_564; +} else { + lean_dec_ref(x_564); + x_566 = lean_box(0); +} +x_567 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_568 = lean_array_push(x_567, x_407); +x_569 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_570 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_570, 0, x_569); +lean_ctor_set(x_570, 1, x_568); +x_571 = l_Array_empty___closed__1; +x_572 = lean_array_push(x_571, x_570); +x_573 = l_Lean_nullKind___closed__2; +x_574 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_574, 0, x_573); +lean_ctor_set(x_574, 1, x_572); +x_575 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_576 = lean_array_push(x_575, x_574); +x_577 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_578 = lean_array_push(x_576, x_577); +x_579 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_580 = lean_array_push(x_578, x_579); lean_inc(x_19); -x_612 = lean_array_push(x_600, x_19); -x_613 = !lean_is_exclusive(x_19); -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_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; uint8_t x_627; lean_object* x_628; -x_614 = lean_ctor_get(x_19, 1); -lean_dec(x_614); -x_615 = lean_ctor_get(x_19, 0); -lean_dec(x_615); -lean_ctor_set(x_19, 1, x_612); -lean_ctor_set(x_19, 0, x_602); -x_616 = lean_array_push(x_600, x_19); -x_617 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_618 = lean_array_push(x_616, x_617); -x_619 = lean_array_push(x_618, x_589); -x_620 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_621 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_621, 0, x_620); -lean_ctor_set(x_621, 1, x_619); -x_622 = lean_array_push(x_600, x_621); -x_623 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_623, 0, x_602); -lean_ctor_set(x_623, 1, x_622); -x_624 = lean_array_push(x_611, x_623); -x_625 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_626 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_626, 0, x_625); -lean_ctor_set(x_626, 1, x_624); -x_627 = 1; -x_628 = lean_box(x_627); -lean_ctor_set(x_584, 1, x_628); -lean_ctor_set(x_584, 0, x_626); -lean_ctor_set(x_593, 0, x_583); -return x_593; +x_581 = lean_array_push(x_571, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_582 = x_19; +} else { + lean_dec_ref(x_19); + x_582 = lean_box(0); +} +if (lean_is_scalar(x_582)) { + x_583 = lean_alloc_ctor(1, 2, 0); +} else { + x_583 = x_582; +} +lean_ctor_set(x_583, 0, x_573); +lean_ctor_set(x_583, 1, x_581); +x_584 = lean_array_push(x_571, x_583); +x_585 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_586 = lean_array_push(x_584, x_585); +x_587 = lean_array_push(x_586, x_560); +x_588 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_589 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_589, 0, x_588); +lean_ctor_set(x_589, 1, x_587); +x_590 = lean_array_push(x_571, x_589); +x_591 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_591, 0, x_573); +lean_ctor_set(x_591, 1, x_590); +x_592 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_593 = lean_array_push(x_592, x_591); +x_594 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_595 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_595, 0, x_594); +lean_ctor_set(x_595, 1, x_593); +x_596 = lean_array_push(x_580, x_595); +x_597 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_598 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_598, 0, x_597); +lean_ctor_set(x_598, 1, x_596); +x_599 = 1; +x_600 = lean_box(x_599); +if (lean_is_scalar(x_561)) { + x_601 = lean_alloc_ctor(0, 2, 0); +} else { + x_601 = x_561; +} +lean_ctor_set(x_601, 0, x_598); +lean_ctor_set(x_601, 1, x_600); +x_602 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_602, 0, x_559); +lean_ctor_set(x_602, 1, x_601); +if (lean_is_scalar(x_566)) { + x_603 = lean_alloc_ctor(0, 2, 0); +} else { + x_603 = x_566; +} +lean_ctor_set(x_603, 0, x_602); +lean_ctor_set(x_603, 1, x_565); +return x_603; +} } else { -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; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; uint8_t x_641; lean_object* x_642; -lean_dec(x_19); -x_629 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_629, 0, x_602); -lean_ctor_set(x_629, 1, x_612); -x_630 = lean_array_push(x_600, x_629); -x_631 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_632 = lean_array_push(x_630, x_631); -x_633 = lean_array_push(x_632, x_589); -x_634 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +lean_object* x_604; uint8_t x_605; +x_604 = l_Lean_mkAppStx___closed__5; +x_605 = lean_string_dec_eq(x_201, x_604); +lean_dec(x_201); +if (x_605 == 0) +{ +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; uint8_t x_618; +lean_dec(x_200); +x_606 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_607 = lean_ctor_get(x_606, 0); +lean_inc(x_607); +x_608 = lean_ctor_get(x_606, 1); +lean_inc(x_608); +lean_dec(x_606); +x_609 = lean_unsigned_to_nat(1u); +x_610 = lean_nat_add(x_3, x_609); +lean_dec(x_3); +x_611 = l_Lean_mkHole(x_19); +lean_inc(x_607); +x_612 = l_Lean_Elab_Term_mkExplicitBinder(x_607, x_611); +x_613 = lean_array_push(x_4, x_612); +x_614 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_610, x_613, x_5, x_6, x_7, x_8, x_9, x_10, x_608); +x_615 = lean_ctor_get(x_614, 0); +lean_inc(x_615); +x_616 = lean_ctor_get(x_615, 1); +lean_inc(x_616); +x_617 = lean_ctor_get(x_614, 1); +lean_inc(x_617); +lean_dec(x_614); +x_618 = !lean_is_exclusive(x_615); +if (x_618 == 0) +{ +lean_object* x_619; uint8_t x_620; +x_619 = lean_ctor_get(x_615, 1); +lean_dec(x_619); +x_620 = !lean_is_exclusive(x_616); +if (x_620 == 0) +{ +lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; uint8_t x_626; +x_621 = lean_ctor_get(x_616, 0); +x_622 = lean_ctor_get(x_616, 1); +lean_dec(x_622); +x_623 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_617); +x_624 = lean_ctor_get(x_623, 1); +lean_inc(x_624); +lean_dec(x_623); +x_625 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_624); +x_626 = !lean_is_exclusive(x_625); +if (x_626 == 0) +{ +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; 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; +x_627 = lean_ctor_get(x_625, 0); +lean_dec(x_627); +x_628 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_629 = lean_array_push(x_628, x_607); +x_630 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_631 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_631, 0, x_630); +lean_ctor_set(x_631, 1, x_629); +x_632 = l_Array_empty___closed__1; +x_633 = lean_array_push(x_632, x_631); +x_634 = l_Lean_nullKind___closed__2; x_635 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_635, 0, x_634); lean_ctor_set(x_635, 1, x_633); -x_636 = lean_array_push(x_600, x_635); -x_637 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_637, 0, x_602); -lean_ctor_set(x_637, 1, x_636); -x_638 = lean_array_push(x_611, x_637); -x_639 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_640 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_640, 0, x_639); -lean_ctor_set(x_640, 1, x_638); -x_641 = 1; -x_642 = lean_box(x_641); -lean_ctor_set(x_584, 1, x_642); -lean_ctor_set(x_584, 0, x_640); -lean_ctor_set(x_593, 0, x_583); -return x_593; -} -} -else +x_636 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_637 = lean_array_push(x_636, x_635); +x_638 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_639 = lean_array_push(x_637, x_638); +x_640 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_641 = lean_array_push(x_639, x_640); +lean_inc(x_19); +x_642 = lean_array_push(x_632, x_19); +x_643 = !lean_is_exclusive(x_19); +if (x_643 == 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_object* x_650; lean_object* x_651; 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_object* x_660; lean_object* x_661; lean_object* x_662; 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_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; uint8_t x_674; lean_object* x_675; lean_object* x_676; -x_643 = lean_ctor_get(x_593, 1); -lean_inc(x_643); -lean_dec(x_593); -x_644 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_645 = lean_array_push(x_644, x_575); -x_646 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_647 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_647, 0, x_646); -lean_ctor_set(x_647, 1, x_645); -x_648 = l_Array_empty___closed__1; -x_649 = lean_array_push(x_648, x_647); -x_650 = l_Lean_nullKind___closed__2; +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; lean_object* x_651; 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_object* x_660; uint8_t x_661; lean_object* x_662; +x_644 = lean_ctor_get(x_19, 1); +lean_dec(x_644); +x_645 = lean_ctor_get(x_19, 0); +lean_dec(x_645); +lean_ctor_set(x_19, 1, x_642); +lean_ctor_set(x_19, 0, x_634); +x_646 = lean_array_push(x_632, x_19); +x_647 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_648 = lean_array_push(x_646, x_647); +x_649 = lean_array_push(x_648, x_621); +x_650 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_651 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_651, 0, x_650); lean_ctor_set(x_651, 1, x_649); -x_652 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_653 = lean_array_push(x_652, x_651); -x_654 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_655 = lean_array_push(x_653, x_654); -x_656 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_657 = lean_array_push(x_655, x_656); -x_658 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_659 = lean_array_push(x_657, x_658); -lean_inc(x_19); -x_660 = lean_array_push(x_648, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_661 = x_19; -} else { - lean_dec_ref(x_19); - x_661 = lean_box(0); +x_652 = lean_array_push(x_632, x_651); +x_653 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_653, 0, x_634); +lean_ctor_set(x_653, 1, x_652); +x_654 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_655 = lean_array_push(x_654, x_653); +x_656 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_657 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_657, 0, x_656); +lean_ctor_set(x_657, 1, x_655); +x_658 = lean_array_push(x_641, x_657); +x_659 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_660 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_660, 0, x_659); +lean_ctor_set(x_660, 1, x_658); +x_661 = 1; +x_662 = lean_box(x_661); +lean_ctor_set(x_616, 1, x_662); +lean_ctor_set(x_616, 0, x_660); +lean_ctor_set(x_625, 0, x_615); +return x_625; } -if (lean_is_scalar(x_661)) { - x_662 = lean_alloc_ctor(1, 2, 0); -} else { - x_662 = x_661; -} -lean_ctor_set(x_662, 0, x_650); -lean_ctor_set(x_662, 1, x_660); -x_663 = lean_array_push(x_648, x_662); -x_664 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_665 = lean_array_push(x_663, x_664); -x_666 = lean_array_push(x_665, x_589); -x_667 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_668 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_668, 0, x_667); -lean_ctor_set(x_668, 1, x_666); -x_669 = lean_array_push(x_648, x_668); -x_670 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_670, 0, x_650); -lean_ctor_set(x_670, 1, x_669); -x_671 = lean_array_push(x_659, x_670); -x_672 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_673 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_673, 0, x_672); -lean_ctor_set(x_673, 1, x_671); -x_674 = 1; -x_675 = lean_box(x_674); -lean_ctor_set(x_584, 1, x_675); -lean_ctor_set(x_584, 0, x_673); -x_676 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_676, 0, x_583); -lean_ctor_set(x_676, 1, x_643); -return x_676; +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; 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_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; uint8_t x_679; lean_object* x_680; +lean_dec(x_19); +x_663 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_663, 0, x_634); +lean_ctor_set(x_663, 1, x_642); +x_664 = lean_array_push(x_632, x_663); +x_665 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_666 = lean_array_push(x_664, x_665); +x_667 = lean_array_push(x_666, x_621); +x_668 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_669 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_669, 0, x_668); +lean_ctor_set(x_669, 1, x_667); +x_670 = lean_array_push(x_632, x_669); +x_671 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_671, 0, x_634); +lean_ctor_set(x_671, 1, x_670); +x_672 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_673 = lean_array_push(x_672, x_671); +x_674 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_675 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_675, 0, x_674); +lean_ctor_set(x_675, 1, x_673); +x_676 = lean_array_push(x_641, x_675); +x_677 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_678 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_678, 0, x_677); +lean_ctor_set(x_678, 1, x_676); +x_679 = 1; +x_680 = lean_box(x_679); +lean_ctor_set(x_616, 1, x_680); +lean_ctor_set(x_616, 0, x_678); +lean_ctor_set(x_625, 0, x_615); +return x_625; } } else { -lean_object* x_677; 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_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; 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; 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; uint8_t x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; -x_677 = lean_ctor_get(x_584, 0); -lean_inc(x_677); -lean_dec(x_584); -x_678 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_585); -x_679 = lean_ctor_get(x_678, 1); -lean_inc(x_679); -lean_dec(x_678); -x_680 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_679); -x_681 = lean_ctor_get(x_680, 1); +lean_object* x_681; 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_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; 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; uint8_t x_714; lean_object* x_715; lean_object* x_716; +x_681 = lean_ctor_get(x_625, 1); lean_inc(x_681); -if (lean_is_exclusive(x_680)) { - lean_ctor_release(x_680, 0); - lean_ctor_release(x_680, 1); - x_682 = x_680; -} else { - lean_dec_ref(x_680); - x_682 = lean_box(0); -} -x_683 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_684 = lean_array_push(x_683, x_575); -x_685 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_686 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_686, 0, x_685); -lean_ctor_set(x_686, 1, x_684); -x_687 = l_Array_empty___closed__1; -x_688 = lean_array_push(x_687, x_686); -x_689 = l_Lean_nullKind___closed__2; -x_690 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_690, 0, x_689); -lean_ctor_set(x_690, 1, x_688); -x_691 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_692 = lean_array_push(x_691, x_690); -x_693 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_694 = lean_array_push(x_692, x_693); -x_695 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_696 = lean_array_push(x_694, x_695); -x_697 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_698 = lean_array_push(x_696, x_697); +lean_dec(x_625); +x_682 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_683 = lean_array_push(x_682, x_607); +x_684 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_685 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_685, 0, x_684); +lean_ctor_set(x_685, 1, x_683); +x_686 = l_Array_empty___closed__1; +x_687 = lean_array_push(x_686, x_685); +x_688 = l_Lean_nullKind___closed__2; +x_689 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_689, 0, x_688); +lean_ctor_set(x_689, 1, x_687); +x_690 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_691 = lean_array_push(x_690, x_689); +x_692 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_693 = lean_array_push(x_691, x_692); +x_694 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_695 = lean_array_push(x_693, x_694); lean_inc(x_19); -x_699 = lean_array_push(x_687, x_19); +x_696 = lean_array_push(x_686, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_700 = x_19; + x_697 = x_19; } else { lean_dec_ref(x_19); - x_700 = lean_box(0); + x_697 = lean_box(0); } -if (lean_is_scalar(x_700)) { - x_701 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_697)) { + x_698 = lean_alloc_ctor(1, 2, 0); } else { - x_701 = x_700; + x_698 = x_697; } -lean_ctor_set(x_701, 0, x_689); -lean_ctor_set(x_701, 1, x_699); -x_702 = lean_array_push(x_687, x_701); -x_703 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_704 = lean_array_push(x_702, x_703); -x_705 = lean_array_push(x_704, x_677); -x_706 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_707 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_707, 0, x_706); -lean_ctor_set(x_707, 1, x_705); -x_708 = lean_array_push(x_687, x_707); -x_709 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_709, 0, x_689); -lean_ctor_set(x_709, 1, x_708); -x_710 = lean_array_push(x_698, x_709); -x_711 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_712 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_712, 0, x_711); -lean_ctor_set(x_712, 1, x_710); -x_713 = 1; -x_714 = lean_box(x_713); -x_715 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_715, 0, x_712); -lean_ctor_set(x_715, 1, x_714); -lean_ctor_set(x_583, 1, x_715); -if (lean_is_scalar(x_682)) { - x_716 = lean_alloc_ctor(0, 2, 0); -} else { - x_716 = x_682; -} -lean_ctor_set(x_716, 0, x_583); +lean_ctor_set(x_698, 0, x_688); +lean_ctor_set(x_698, 1, x_696); +x_699 = lean_array_push(x_686, x_698); +x_700 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_701 = lean_array_push(x_699, x_700); +x_702 = lean_array_push(x_701, x_621); +x_703 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_704 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_704, 0, x_703); +lean_ctor_set(x_704, 1, x_702); +x_705 = lean_array_push(x_686, x_704); +x_706 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_706, 0, x_688); +lean_ctor_set(x_706, 1, x_705); +x_707 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_708 = lean_array_push(x_707, x_706); +x_709 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_710 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_710, 0, x_709); +lean_ctor_set(x_710, 1, x_708); +x_711 = lean_array_push(x_695, x_710); +x_712 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_713 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_713, 0, x_712); +lean_ctor_set(x_713, 1, x_711); +x_714 = 1; +x_715 = lean_box(x_714); +lean_ctor_set(x_616, 1, x_715); +lean_ctor_set(x_616, 0, x_713); +x_716 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_716, 0, x_615); lean_ctor_set(x_716, 1, x_681); return x_716; } } else { -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_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; lean_object* x_731; 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_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; 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; uint8_t x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; -x_717 = lean_ctor_get(x_583, 0); +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_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; lean_object* x_731; 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_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; 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; uint8_t x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; +x_717 = lean_ctor_get(x_616, 0); lean_inc(x_717); -lean_dec(x_583); -x_718 = lean_ctor_get(x_584, 0); -lean_inc(x_718); -if (lean_is_exclusive(x_584)) { - lean_ctor_release(x_584, 0); - lean_ctor_release(x_584, 1); - x_719 = x_584; -} else { - lean_dec_ref(x_584); - x_719 = lean_box(0); -} -x_720 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_585); +lean_dec(x_616); +x_718 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_617); +x_719 = lean_ctor_get(x_718, 1); +lean_inc(x_719); +lean_dec(x_718); +x_720 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_719); x_721 = lean_ctor_get(x_720, 1); lean_inc(x_721); -lean_dec(x_720); -x_722 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_721); -x_723 = lean_ctor_get(x_722, 1); -lean_inc(x_723); -if (lean_is_exclusive(x_722)) { - lean_ctor_release(x_722, 0); - lean_ctor_release(x_722, 1); - x_724 = x_722; +if (lean_is_exclusive(x_720)) { + lean_ctor_release(x_720, 0); + lean_ctor_release(x_720, 1); + x_722 = x_720; } else { - lean_dec_ref(x_722); - x_724 = lean_box(0); + lean_dec_ref(x_720); + x_722 = lean_box(0); } -x_725 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_726 = lean_array_push(x_725, x_575); -x_727 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_728 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_728, 0, x_727); -lean_ctor_set(x_728, 1, x_726); -x_729 = l_Array_empty___closed__1; -x_730 = lean_array_push(x_729, x_728); -x_731 = l_Lean_nullKind___closed__2; -x_732 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_732, 0, x_731); -lean_ctor_set(x_732, 1, x_730); -x_733 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_734 = lean_array_push(x_733, x_732); -x_735 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_723 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_724 = lean_array_push(x_723, x_607); +x_725 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_726 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_726, 0, x_725); +lean_ctor_set(x_726, 1, x_724); +x_727 = l_Array_empty___closed__1; +x_728 = lean_array_push(x_727, x_726); +x_729 = l_Lean_nullKind___closed__2; +x_730 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_730, 0, x_729); +lean_ctor_set(x_730, 1, x_728); +x_731 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_732 = lean_array_push(x_731, x_730); +x_733 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_734 = lean_array_push(x_732, x_733); +x_735 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_736 = lean_array_push(x_734, x_735); -x_737 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_738 = lean_array_push(x_736, x_737); -x_739 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_740 = lean_array_push(x_738, x_739); lean_inc(x_19); -x_741 = lean_array_push(x_729, x_19); +x_737 = lean_array_push(x_727, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_742 = x_19; + x_738 = x_19; } else { lean_dec_ref(x_19); - x_742 = lean_box(0); + x_738 = lean_box(0); } -if (lean_is_scalar(x_742)) { - x_743 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_738)) { + x_739 = lean_alloc_ctor(1, 2, 0); } else { - x_743 = x_742; + x_739 = x_738; } -lean_ctor_set(x_743, 0, x_731); -lean_ctor_set(x_743, 1, x_741); -x_744 = lean_array_push(x_729, x_743); -x_745 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_746 = lean_array_push(x_744, x_745); -x_747 = lean_array_push(x_746, x_718); -x_748 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_749 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_749, 0, x_748); -lean_ctor_set(x_749, 1, x_747); -x_750 = lean_array_push(x_729, x_749); +lean_ctor_set(x_739, 0, x_729); +lean_ctor_set(x_739, 1, x_737); +x_740 = lean_array_push(x_727, x_739); +x_741 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_742 = lean_array_push(x_740, x_741); +x_743 = lean_array_push(x_742, x_717); +x_744 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_745 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_745, 0, x_744); +lean_ctor_set(x_745, 1, x_743); +x_746 = lean_array_push(x_727, x_745); +x_747 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_747, 0, x_729); +lean_ctor_set(x_747, 1, x_746); +x_748 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_749 = lean_array_push(x_748, x_747); +x_750 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_751 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_751, 0, x_731); -lean_ctor_set(x_751, 1, x_750); -x_752 = lean_array_push(x_740, x_751); +lean_ctor_set(x_751, 0, x_750); +lean_ctor_set(x_751, 1, x_749); +x_752 = lean_array_push(x_736, x_751); x_753 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_754 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_754, 0, x_753); lean_ctor_set(x_754, 1, x_752); x_755 = 1; x_756 = lean_box(x_755); -if (lean_is_scalar(x_719)) { - x_757 = lean_alloc_ctor(0, 2, 0); -} else { - x_757 = x_719; -} +x_757 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_757, 0, x_754); lean_ctor_set(x_757, 1, x_756); -x_758 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_758, 0, x_717); -lean_ctor_set(x_758, 1, x_757); -if (lean_is_scalar(x_724)) { - x_759 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_615, 1, x_757); +if (lean_is_scalar(x_722)) { + x_758 = lean_alloc_ctor(0, 2, 0); } else { - x_759 = x_724; + x_758 = x_722; } -lean_ctor_set(x_759, 0, x_758); -lean_ctor_set(x_759, 1, x_723); -return x_759; +lean_ctor_set(x_758, 0, x_615); +lean_ctor_set(x_758, 1, x_721); +return x_758; } } else { -lean_object* x_760; uint8_t x_761; -x_760 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_15__isLambdaWithImplicit___spec__1___closed__1; -x_761 = lean_string_dec_eq(x_192, x_760); -if (x_761 == 0) -{ -lean_object* x_762; uint8_t x_763; -x_762 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_15__isLambdaWithImplicit___spec__1___closed__2; -x_763 = lean_string_dec_eq(x_192, x_762); -if (x_763 == 0) -{ -lean_object* x_764; uint8_t x_765; -x_764 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; -x_765 = lean_string_dec_eq(x_192, x_764); -if (x_765 == 0) -{ -lean_object* x_766; uint8_t x_767; -x_766 = l_Lean_mkHole___closed__1; -x_767 = lean_string_dec_eq(x_192, x_766); -if (x_767 == 0) -{ -lean_object* x_768; uint8_t x_769; -x_768 = l_Lean_Elab_Level_elabLevel___main___closed__3; -x_769 = lean_string_dec_eq(x_192, x_768); -lean_dec(x_192); -if (x_769 == 0) -{ -lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; 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_object* x_780; lean_object* x_781; uint8_t x_782; -x_770 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_771 = lean_ctor_get(x_770, 0); -lean_inc(x_771); -x_772 = lean_ctor_get(x_770, 1); -lean_inc(x_772); -lean_dec(x_770); -x_773 = lean_unsigned_to_nat(1u); -x_774 = lean_nat_add(x_3, x_773); -lean_dec(x_3); -x_775 = l_Lean_mkHole(x_19); -lean_inc(x_771); -x_776 = l_Lean_Elab_Term_mkExplicitBinder(x_771, x_775); -x_777 = lean_array_push(x_4, x_776); -x_778 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_774, x_777, x_5, x_6, x_7, x_8, x_9, x_10, x_772); -x_779 = lean_ctor_get(x_778, 0); -lean_inc(x_779); -x_780 = lean_ctor_get(x_779, 1); -lean_inc(x_780); -x_781 = lean_ctor_get(x_778, 1); -lean_inc(x_781); -lean_dec(x_778); -x_782 = !lean_is_exclusive(x_779); -if (x_782 == 0) -{ -lean_object* x_783; uint8_t x_784; -x_783 = lean_ctor_get(x_779, 1); -lean_dec(x_783); -x_784 = !lean_is_exclusive(x_780); -if (x_784 == 0) -{ -lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; uint8_t x_790; -x_785 = lean_ctor_get(x_780, 0); -x_786 = lean_ctor_get(x_780, 1); -lean_dec(x_786); -x_787 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_781); -x_788 = lean_ctor_get(x_787, 1); -lean_inc(x_788); -lean_dec(x_787); -x_789 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_788); -x_790 = !lean_is_exclusive(x_789); -if (x_790 == 0) -{ -lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; 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; uint8_t x_809; -x_791 = lean_ctor_get(x_789, 0); -lean_dec(x_791); -x_792 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_793 = lean_array_push(x_792, x_771); -x_794 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +lean_object* x_759; lean_object* x_760; 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_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; 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_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; uint8_t x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; +x_759 = lean_ctor_get(x_615, 0); +lean_inc(x_759); +lean_dec(x_615); +x_760 = lean_ctor_get(x_616, 0); +lean_inc(x_760); +if (lean_is_exclusive(x_616)) { + lean_ctor_release(x_616, 0); + lean_ctor_release(x_616, 1); + x_761 = x_616; +} else { + lean_dec_ref(x_616); + x_761 = lean_box(0); +} +x_762 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_617); +x_763 = lean_ctor_get(x_762, 1); +lean_inc(x_763); +lean_dec(x_762); +x_764 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_763); +x_765 = lean_ctor_get(x_764, 1); +lean_inc(x_765); +if (lean_is_exclusive(x_764)) { + lean_ctor_release(x_764, 0); + lean_ctor_release(x_764, 1); + x_766 = x_764; +} else { + lean_dec_ref(x_764); + x_766 = lean_box(0); +} +x_767 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_768 = lean_array_push(x_767, x_607); +x_769 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_770 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_770, 0, x_769); +lean_ctor_set(x_770, 1, x_768); +x_771 = l_Array_empty___closed__1; +x_772 = lean_array_push(x_771, x_770); +x_773 = l_Lean_nullKind___closed__2; +x_774 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_774, 0, x_773); +lean_ctor_set(x_774, 1, x_772); +x_775 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_776 = lean_array_push(x_775, x_774); +x_777 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_778 = lean_array_push(x_776, x_777); +x_779 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_780 = lean_array_push(x_778, x_779); +lean_inc(x_19); +x_781 = lean_array_push(x_771, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_782 = x_19; +} else { + lean_dec_ref(x_19); + x_782 = lean_box(0); +} +if (lean_is_scalar(x_782)) { + x_783 = lean_alloc_ctor(1, 2, 0); +} else { + x_783 = x_782; +} +lean_ctor_set(x_783, 0, x_773); +lean_ctor_set(x_783, 1, x_781); +x_784 = lean_array_push(x_771, x_783); +x_785 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_786 = lean_array_push(x_784, x_785); +x_787 = lean_array_push(x_786, x_760); +x_788 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_789 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_789, 0, x_788); +lean_ctor_set(x_789, 1, x_787); +x_790 = lean_array_push(x_771, x_789); +x_791 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_791, 0, x_773); +lean_ctor_set(x_791, 1, x_790); +x_792 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_793 = lean_array_push(x_792, x_791); +x_794 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_795 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_795, 0, x_794); lean_ctor_set(x_795, 1, x_793); -x_796 = l_Array_empty___closed__1; -x_797 = lean_array_push(x_796, x_795); -x_798 = l_Lean_nullKind___closed__2; -x_799 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_799, 0, x_798); -lean_ctor_set(x_799, 1, x_797); -x_800 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_801 = lean_array_push(x_800, x_799); -x_802 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_803 = lean_array_push(x_801, x_802); -x_804 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_805 = lean_array_push(x_803, x_804); -x_806 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_807 = lean_array_push(x_805, x_806); -lean_inc(x_19); -x_808 = lean_array_push(x_796, x_19); -x_809 = !lean_is_exclusive(x_19); +x_796 = lean_array_push(x_780, x_795); +x_797 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_798 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_798, 0, x_797); +lean_ctor_set(x_798, 1, x_796); +x_799 = 1; +x_800 = lean_box(x_799); +if (lean_is_scalar(x_761)) { + x_801 = lean_alloc_ctor(0, 2, 0); +} else { + x_801 = x_761; +} +lean_ctor_set(x_801, 0, x_798); +lean_ctor_set(x_801, 1, x_800); +x_802 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_802, 0, x_759); +lean_ctor_set(x_802, 1, x_801); +if (lean_is_scalar(x_766)) { + x_803 = lean_alloc_ctor(0, 2, 0); +} else { + x_803 = x_766; +} +lean_ctor_set(x_803, 0, x_802); +lean_ctor_set(x_803, 1, x_765); +return x_803; +} +} +else +{ +lean_object* x_804; uint8_t x_805; +x_804 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_15__isLambdaWithImplicit___spec__1___closed__1; +x_805 = lean_string_dec_eq(x_200, x_804); +if (x_805 == 0) +{ +lean_object* x_806; uint8_t x_807; +x_806 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_15__isLambdaWithImplicit___spec__1___closed__2; +x_807 = lean_string_dec_eq(x_200, x_806); +if (x_807 == 0) +{ +lean_object* x_808; uint8_t x_809; +x_808 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; +x_809 = lean_string_dec_eq(x_200, x_808); if (x_809 == 0) { -lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; uint8_t x_823; lean_object* x_824; -x_810 = lean_ctor_get(x_19, 1); -lean_dec(x_810); -x_811 = lean_ctor_get(x_19, 0); -lean_dec(x_811); -lean_ctor_set(x_19, 1, x_808); -lean_ctor_set(x_19, 0, x_798); -x_812 = lean_array_push(x_796, x_19); -x_813 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_814 = lean_array_push(x_812, x_813); -x_815 = lean_array_push(x_814, x_785); -x_816 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_817 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_817, 0, x_816); -lean_ctor_set(x_817, 1, x_815); -x_818 = lean_array_push(x_796, x_817); -x_819 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_819, 0, x_798); -lean_ctor_set(x_819, 1, x_818); -x_820 = lean_array_push(x_807, x_819); -x_821 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_822 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_822, 0, x_821); -lean_ctor_set(x_822, 1, x_820); -x_823 = 1; -x_824 = lean_box(x_823); -lean_ctor_set(x_780, 1, x_824); -lean_ctor_set(x_780, 0, x_822); -lean_ctor_set(x_789, 0, x_779); -return x_789; -} -else +lean_object* x_810; uint8_t x_811; +x_810 = l_Lean_mkHole___closed__1; +x_811 = lean_string_dec_eq(x_200, x_810); +if (x_811 == 0) { -lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; uint8_t x_837; lean_object* x_838; -lean_dec(x_19); -x_825 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_825, 0, x_798); -lean_ctor_set(x_825, 1, x_808); -x_826 = lean_array_push(x_796, x_825); -x_827 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_828 = lean_array_push(x_826, x_827); -x_829 = lean_array_push(x_828, x_785); -x_830 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_831 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_831, 0, x_830); -lean_ctor_set(x_831, 1, x_829); -x_832 = lean_array_push(x_796, x_831); -x_833 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_833, 0, x_798); -lean_ctor_set(x_833, 1, x_832); -x_834 = lean_array_push(x_807, x_833); -x_835 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_836 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_836, 0, x_835); -lean_ctor_set(x_836, 1, x_834); -x_837 = 1; -x_838 = lean_box(x_837); -lean_ctor_set(x_780, 1, x_838); -lean_ctor_set(x_780, 0, x_836); -lean_ctor_set(x_789, 0, x_779); -return x_789; -} -} -else +lean_object* x_812; uint8_t x_813; +x_812 = l_Lean_Elab_Level_elabLevel___main___closed__3; +x_813 = lean_string_dec_eq(x_200, x_812); +lean_dec(x_200); +if (x_813 == 0) { -lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; uint8_t x_870; lean_object* x_871; lean_object* x_872; -x_839 = lean_ctor_get(x_789, 1); -lean_inc(x_839); -lean_dec(x_789); -x_840 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_841 = lean_array_push(x_840, x_771); -x_842 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; uint8_t x_826; +x_814 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_815 = lean_ctor_get(x_814, 0); +lean_inc(x_815); +x_816 = lean_ctor_get(x_814, 1); +lean_inc(x_816); +lean_dec(x_814); +x_817 = lean_unsigned_to_nat(1u); +x_818 = lean_nat_add(x_3, x_817); +lean_dec(x_3); +x_819 = l_Lean_mkHole(x_19); +lean_inc(x_815); +x_820 = l_Lean_Elab_Term_mkExplicitBinder(x_815, x_819); +x_821 = lean_array_push(x_4, x_820); +x_822 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_818, x_821, x_5, x_6, x_7, x_8, x_9, x_10, x_816); +x_823 = lean_ctor_get(x_822, 0); +lean_inc(x_823); +x_824 = lean_ctor_get(x_823, 1); +lean_inc(x_824); +x_825 = lean_ctor_get(x_822, 1); +lean_inc(x_825); +lean_dec(x_822); +x_826 = !lean_is_exclusive(x_823); +if (x_826 == 0) +{ +lean_object* x_827; uint8_t x_828; +x_827 = lean_ctor_get(x_823, 1); +lean_dec(x_827); +x_828 = !lean_is_exclusive(x_824); +if (x_828 == 0) +{ +lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; uint8_t x_834; +x_829 = lean_ctor_get(x_824, 0); +x_830 = lean_ctor_get(x_824, 1); +lean_dec(x_830); +x_831 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_825); +x_832 = lean_ctor_get(x_831, 1); +lean_inc(x_832); +lean_dec(x_831); +x_833 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_832); +x_834 = !lean_is_exclusive(x_833); +if (x_834 == 0) +{ +lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; uint8_t x_851; +x_835 = lean_ctor_get(x_833, 0); +lean_dec(x_835); +x_836 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_837 = lean_array_push(x_836, x_815); +x_838 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_839 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_839, 0, x_838); +lean_ctor_set(x_839, 1, x_837); +x_840 = l_Array_empty___closed__1; +x_841 = lean_array_push(x_840, x_839); +x_842 = l_Lean_nullKind___closed__2; x_843 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_843, 0, x_842); lean_ctor_set(x_843, 1, x_841); -x_844 = l_Array_empty___closed__1; +x_844 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; x_845 = lean_array_push(x_844, x_843); -x_846 = l_Lean_nullKind___closed__2; -x_847 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_847, 0, x_846); -lean_ctor_set(x_847, 1, x_845); -x_848 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_849 = lean_array_push(x_848, x_847); -x_850 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_851 = lean_array_push(x_849, x_850); -x_852 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_853 = lean_array_push(x_851, x_852); -x_854 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_855 = lean_array_push(x_853, x_854); +x_846 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_847 = lean_array_push(x_845, x_846); +x_848 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_849 = lean_array_push(x_847, x_848); lean_inc(x_19); -x_856 = lean_array_push(x_844, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_857 = x_19; -} else { - lean_dec_ref(x_19); - x_857 = lean_box(0); -} -if (lean_is_scalar(x_857)) { - x_858 = lean_alloc_ctor(1, 2, 0); -} else { - x_858 = x_857; -} -lean_ctor_set(x_858, 0, x_846); -lean_ctor_set(x_858, 1, x_856); -x_859 = lean_array_push(x_844, x_858); -x_860 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_861 = lean_array_push(x_859, x_860); -x_862 = lean_array_push(x_861, x_785); -x_863 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_864 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_864, 0, x_863); -lean_ctor_set(x_864, 1, x_862); -x_865 = lean_array_push(x_844, x_864); -x_866 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_866, 0, x_846); -lean_ctor_set(x_866, 1, x_865); -x_867 = lean_array_push(x_855, x_866); -x_868 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_869 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_869, 0, x_868); -lean_ctor_set(x_869, 1, x_867); -x_870 = 1; -x_871 = lean_box(x_870); -lean_ctor_set(x_780, 1, x_871); -lean_ctor_set(x_780, 0, x_869); -x_872 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_872, 0, x_779); -lean_ctor_set(x_872, 1, x_839); -return x_872; -} +x_850 = lean_array_push(x_840, x_19); +x_851 = !lean_is_exclusive(x_19); +if (x_851 == 0) +{ +lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; uint8_t x_869; lean_object* x_870; +x_852 = lean_ctor_get(x_19, 1); +lean_dec(x_852); +x_853 = lean_ctor_get(x_19, 0); +lean_dec(x_853); +lean_ctor_set(x_19, 1, x_850); +lean_ctor_set(x_19, 0, x_842); +x_854 = lean_array_push(x_840, x_19); +x_855 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_856 = lean_array_push(x_854, x_855); +x_857 = lean_array_push(x_856, x_829); +x_858 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_859 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_859, 0, x_858); +lean_ctor_set(x_859, 1, x_857); +x_860 = lean_array_push(x_840, x_859); +x_861 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_861, 0, x_842); +lean_ctor_set(x_861, 1, x_860); +x_862 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_863 = lean_array_push(x_862, x_861); +x_864 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_865 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_865, 0, x_864); +lean_ctor_set(x_865, 1, x_863); +x_866 = lean_array_push(x_849, x_865); +x_867 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_868 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_868, 0, x_867); +lean_ctor_set(x_868, 1, x_866); +x_869 = 1; +x_870 = lean_box(x_869); +lean_ctor_set(x_824, 1, x_870); +lean_ctor_set(x_824, 0, x_868); +lean_ctor_set(x_833, 0, x_823); +return x_833; } else { -lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; uint8_t x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; -x_873 = lean_ctor_get(x_780, 0); -lean_inc(x_873); -lean_dec(x_780); -x_874 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_781); -x_875 = lean_ctor_get(x_874, 1); -lean_inc(x_875); -lean_dec(x_874); -x_876 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_875); -x_877 = lean_ctor_get(x_876, 1); -lean_inc(x_877); -if (lean_is_exclusive(x_876)) { - lean_ctor_release(x_876, 0); - lean_ctor_release(x_876, 1); - x_878 = x_876; -} else { - lean_dec_ref(x_876); - x_878 = lean_box(0); -} -x_879 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_880 = lean_array_push(x_879, x_771); -x_881 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_882 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_882, 0, x_881); -lean_ctor_set(x_882, 1, x_880); -x_883 = l_Array_empty___closed__1; -x_884 = lean_array_push(x_883, x_882); -x_885 = l_Lean_nullKind___closed__2; +lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; uint8_t x_887; lean_object* x_888; +lean_dec(x_19); +x_871 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_871, 0, x_842); +lean_ctor_set(x_871, 1, x_850); +x_872 = lean_array_push(x_840, x_871); +x_873 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_874 = lean_array_push(x_872, x_873); +x_875 = lean_array_push(x_874, x_829); +x_876 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_877 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_877, 0, x_876); +lean_ctor_set(x_877, 1, x_875); +x_878 = lean_array_push(x_840, x_877); +x_879 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_879, 0, x_842); +lean_ctor_set(x_879, 1, x_878); +x_880 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_881 = lean_array_push(x_880, x_879); +x_882 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_883 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_883, 0, x_882); +lean_ctor_set(x_883, 1, x_881); +x_884 = lean_array_push(x_849, x_883); +x_885 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_886 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_886, 0, x_885); lean_ctor_set(x_886, 1, x_884); -x_887 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_888 = lean_array_push(x_887, x_886); -x_889 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_890 = lean_array_push(x_888, x_889); -x_891 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_892 = lean_array_push(x_890, x_891); -x_893 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_894 = lean_array_push(x_892, x_893); -lean_inc(x_19); -x_895 = lean_array_push(x_883, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_896 = x_19; -} else { - lean_dec_ref(x_19); - x_896 = lean_box(0); +x_887 = 1; +x_888 = lean_box(x_887); +lean_ctor_set(x_824, 1, x_888); +lean_ctor_set(x_824, 0, x_886); +lean_ctor_set(x_833, 0, x_823); +return x_833; } -if (lean_is_scalar(x_896)) { - x_897 = lean_alloc_ctor(1, 2, 0); -} else { - x_897 = x_896; } -lean_ctor_set(x_897, 0, x_885); +else +{ +lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; uint8_t x_922; lean_object* x_923; lean_object* x_924; +x_889 = lean_ctor_get(x_833, 1); +lean_inc(x_889); +lean_dec(x_833); +x_890 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_891 = lean_array_push(x_890, x_815); +x_892 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_893 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_893, 0, x_892); +lean_ctor_set(x_893, 1, x_891); +x_894 = l_Array_empty___closed__1; +x_895 = lean_array_push(x_894, x_893); +x_896 = l_Lean_nullKind___closed__2; +x_897 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_897, 0, x_896); lean_ctor_set(x_897, 1, x_895); -x_898 = lean_array_push(x_883, x_897); -x_899 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_900 = lean_array_push(x_898, x_899); -x_901 = lean_array_push(x_900, x_873); -x_902 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_903 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_903, 0, x_902); -lean_ctor_set(x_903, 1, x_901); -x_904 = lean_array_push(x_883, x_903); -x_905 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_905, 0, x_885); -lean_ctor_set(x_905, 1, x_904); -x_906 = lean_array_push(x_894, x_905); -x_907 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_908 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_908, 0, x_907); -lean_ctor_set(x_908, 1, x_906); -x_909 = 1; -x_910 = lean_box(x_909); -x_911 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_911, 0, x_908); -lean_ctor_set(x_911, 1, x_910); -lean_ctor_set(x_779, 1, x_911); -if (lean_is_scalar(x_878)) { - x_912 = lean_alloc_ctor(0, 2, 0); +x_898 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_899 = lean_array_push(x_898, x_897); +x_900 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_901 = lean_array_push(x_899, x_900); +x_902 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_903 = lean_array_push(x_901, x_902); +lean_inc(x_19); +x_904 = lean_array_push(x_894, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_905 = x_19; } else { - x_912 = x_878; + lean_dec_ref(x_19); + x_905 = lean_box(0); } -lean_ctor_set(x_912, 0, x_779); -lean_ctor_set(x_912, 1, x_877); -return x_912; +if (lean_is_scalar(x_905)) { + x_906 = lean_alloc_ctor(1, 2, 0); +} else { + x_906 = x_905; +} +lean_ctor_set(x_906, 0, x_896); +lean_ctor_set(x_906, 1, x_904); +x_907 = lean_array_push(x_894, x_906); +x_908 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_909 = lean_array_push(x_907, x_908); +x_910 = lean_array_push(x_909, x_829); +x_911 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_912 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_912, 0, x_911); +lean_ctor_set(x_912, 1, x_910); +x_913 = lean_array_push(x_894, x_912); +x_914 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_914, 0, x_896); +lean_ctor_set(x_914, 1, x_913); +x_915 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_916 = lean_array_push(x_915, x_914); +x_917 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_918 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_918, 0, x_917); +lean_ctor_set(x_918, 1, x_916); +x_919 = lean_array_push(x_903, x_918); +x_920 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_921 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_921, 0, x_920); +lean_ctor_set(x_921, 1, x_919); +x_922 = 1; +x_923 = lean_box(x_922); +lean_ctor_set(x_824, 1, x_923); +lean_ctor_set(x_824, 0, x_921); +x_924 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_924, 0, x_823); +lean_ctor_set(x_924, 1, x_889); +return x_924; } } else { -lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; uint8_t x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; -x_913 = lean_ctor_get(x_779, 0); -lean_inc(x_913); -lean_dec(x_779); -x_914 = lean_ctor_get(x_780, 0); -lean_inc(x_914); -if (lean_is_exclusive(x_780)) { - lean_ctor_release(x_780, 0); - lean_ctor_release(x_780, 1); - x_915 = x_780; +lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; uint8_t x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; +x_925 = lean_ctor_get(x_824, 0); +lean_inc(x_925); +lean_dec(x_824); +x_926 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_825); +x_927 = lean_ctor_get(x_926, 1); +lean_inc(x_927); +lean_dec(x_926); +x_928 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_927); +x_929 = lean_ctor_get(x_928, 1); +lean_inc(x_929); +if (lean_is_exclusive(x_928)) { + lean_ctor_release(x_928, 0); + lean_ctor_release(x_928, 1); + x_930 = x_928; } else { - lean_dec_ref(x_780); - x_915 = lean_box(0); + lean_dec_ref(x_928); + x_930 = lean_box(0); } -x_916 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_781); -x_917 = lean_ctor_get(x_916, 1); -lean_inc(x_917); -lean_dec(x_916); -x_918 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_917); -x_919 = lean_ctor_get(x_918, 1); -lean_inc(x_919); -if (lean_is_exclusive(x_918)) { - lean_ctor_release(x_918, 0); - lean_ctor_release(x_918, 1); - x_920 = x_918; -} else { - lean_dec_ref(x_918); - x_920 = lean_box(0); -} -x_921 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_922 = lean_array_push(x_921, x_771); -x_923 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_924 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_924, 0, x_923); -lean_ctor_set(x_924, 1, x_922); -x_925 = l_Array_empty___closed__1; -x_926 = lean_array_push(x_925, x_924); -x_927 = l_Lean_nullKind___closed__2; -x_928 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_928, 0, x_927); -lean_ctor_set(x_928, 1, x_926); -x_929 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_930 = lean_array_push(x_929, x_928); -x_931 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_932 = lean_array_push(x_930, x_931); -x_933 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_934 = lean_array_push(x_932, x_933); -x_935 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_936 = lean_array_push(x_934, x_935); -lean_inc(x_19); -x_937 = lean_array_push(x_925, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_938 = x_19; -} else { - lean_dec_ref(x_19); - x_938 = lean_box(0); -} -if (lean_is_scalar(x_938)) { - x_939 = lean_alloc_ctor(1, 2, 0); -} else { - x_939 = x_938; -} -lean_ctor_set(x_939, 0, x_927); -lean_ctor_set(x_939, 1, x_937); -x_940 = lean_array_push(x_925, x_939); -x_941 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_931 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_932 = lean_array_push(x_931, x_815); +x_933 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_934 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_934, 0, x_933); +lean_ctor_set(x_934, 1, x_932); +x_935 = l_Array_empty___closed__1; +x_936 = lean_array_push(x_935, x_934); +x_937 = l_Lean_nullKind___closed__2; +x_938 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_938, 0, x_937); +lean_ctor_set(x_938, 1, x_936); +x_939 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_940 = lean_array_push(x_939, x_938); +x_941 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_942 = lean_array_push(x_940, x_941); -x_943 = lean_array_push(x_942, x_914); -x_944 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_945 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_945, 0, x_944); -lean_ctor_set(x_945, 1, x_943); -x_946 = lean_array_push(x_925, x_945); -x_947 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_947, 0, x_927); -lean_ctor_set(x_947, 1, x_946); -x_948 = lean_array_push(x_936, x_947); -x_949 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_950 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_950, 0, x_949); -lean_ctor_set(x_950, 1, x_948); -x_951 = 1; -x_952 = lean_box(x_951); -if (lean_is_scalar(x_915)) { - x_953 = lean_alloc_ctor(0, 2, 0); +x_943 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_944 = lean_array_push(x_942, x_943); +lean_inc(x_19); +x_945 = lean_array_push(x_935, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_946 = x_19; } else { - x_953 = x_915; + lean_dec_ref(x_19); + x_946 = lean_box(0); } -lean_ctor_set(x_953, 0, x_950); -lean_ctor_set(x_953, 1, x_952); -x_954 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_954, 0, x_913); -lean_ctor_set(x_954, 1, x_953); -if (lean_is_scalar(x_920)) { - x_955 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_946)) { + x_947 = lean_alloc_ctor(1, 2, 0); } else { - x_955 = x_920; + x_947 = x_946; } -lean_ctor_set(x_955, 0, x_954); -lean_ctor_set(x_955, 1, x_919); -return x_955; +lean_ctor_set(x_947, 0, x_937); +lean_ctor_set(x_947, 1, x_945); +x_948 = lean_array_push(x_935, x_947); +x_949 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_950 = lean_array_push(x_948, x_949); +x_951 = lean_array_push(x_950, x_925); +x_952 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_953 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_953, 0, x_952); +lean_ctor_set(x_953, 1, x_951); +x_954 = lean_array_push(x_935, x_953); +x_955 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_955, 0, x_937); +lean_ctor_set(x_955, 1, x_954); +x_956 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_957 = lean_array_push(x_956, x_955); +x_958 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_959 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_959, 0, x_958); +lean_ctor_set(x_959, 1, x_957); +x_960 = lean_array_push(x_944, x_959); +x_961 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_962 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_962, 0, x_961); +lean_ctor_set(x_962, 1, x_960); +x_963 = 1; +x_964 = lean_box(x_963); +x_965 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_965, 0, x_962); +lean_ctor_set(x_965, 1, x_964); +lean_ctor_set(x_823, 1, x_965); +if (lean_is_scalar(x_930)) { + x_966 = lean_alloc_ctor(0, 2, 0); +} else { + x_966 = x_930; +} +lean_ctor_set(x_966, 0, x_823); +lean_ctor_set(x_966, 1, x_929); +return x_966; } } else { -lean_object* x_956; lean_object* x_957; uint8_t x_958; -x_956 = lean_unsigned_to_nat(1u); -x_957 = l_Lean_Syntax_getArg(x_19, x_956); -x_958 = l_Lean_Syntax_isNone(x_957); -if (x_958 == 0) -{ -lean_object* x_959; lean_object* x_960; lean_object* x_961; uint8_t x_962; -x_959 = lean_unsigned_to_nat(0u); -x_960 = l_Lean_Syntax_getArg(x_957, x_959); -x_961 = l_Lean_Syntax_getArg(x_957, x_956); -lean_dec(x_957); -x_962 = l_Lean_Syntax_isNone(x_961); -if (x_962 == 0) -{ -lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; uint8_t x_970; -x_963 = l_Lean_Syntax_getArg(x_961, x_959); -lean_dec(x_961); -lean_inc(x_963); -x_964 = l_Lean_Syntax_getKind(x_963); -x_965 = lean_name_mk_string(x_191, x_196); -x_966 = lean_name_mk_string(x_965, x_384); -x_967 = lean_name_mk_string(x_966, x_572); -x_968 = l_Lean_Elab_Term_elabParen___closed__6; -x_969 = lean_name_mk_string(x_967, x_968); -x_970 = lean_name_eq(x_964, x_969); -lean_dec(x_969); -lean_dec(x_964); -if (x_970 == 0) -{ -lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; uint8_t x_982; -lean_dec(x_963); -lean_dec(x_960); -x_971 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_972 = lean_ctor_get(x_971, 0); -lean_inc(x_972); -x_973 = lean_ctor_get(x_971, 1); +lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; uint8_t x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; +x_967 = lean_ctor_get(x_823, 0); +lean_inc(x_967); +lean_dec(x_823); +x_968 = lean_ctor_get(x_824, 0); +lean_inc(x_968); +if (lean_is_exclusive(x_824)) { + lean_ctor_release(x_824, 0); + lean_ctor_release(x_824, 1); + x_969 = x_824; +} else { + lean_dec_ref(x_824); + x_969 = lean_box(0); +} +x_970 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_825); +x_971 = lean_ctor_get(x_970, 1); +lean_inc(x_971); +lean_dec(x_970); +x_972 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_971); +x_973 = lean_ctor_get(x_972, 1); lean_inc(x_973); -lean_dec(x_971); -x_974 = lean_nat_add(x_3, x_956); -lean_dec(x_3); -x_975 = l_Lean_mkHole(x_19); -lean_inc(x_972); -x_976 = l_Lean_Elab_Term_mkExplicitBinder(x_972, x_975); -x_977 = lean_array_push(x_4, x_976); -x_978 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_974, x_977, x_5, x_6, x_7, x_8, x_9, x_10, x_973); -x_979 = lean_ctor_get(x_978, 0); -lean_inc(x_979); -x_980 = lean_ctor_get(x_979, 1); -lean_inc(x_980); -x_981 = lean_ctor_get(x_978, 1); -lean_inc(x_981); -lean_dec(x_978); -x_982 = !lean_is_exclusive(x_979); -if (x_982 == 0) -{ -lean_object* x_983; uint8_t x_984; -x_983 = lean_ctor_get(x_979, 1); -lean_dec(x_983); -x_984 = !lean_is_exclusive(x_980); -if (x_984 == 0) -{ -lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; uint8_t x_990; -x_985 = lean_ctor_get(x_980, 0); -x_986 = lean_ctor_get(x_980, 1); -lean_dec(x_986); -x_987 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_981); -x_988 = lean_ctor_get(x_987, 1); -lean_inc(x_988); -lean_dec(x_987); -x_989 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_988); -x_990 = !lean_is_exclusive(x_989); -if (x_990 == 0) -{ -lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; uint8_t x_1009; -x_991 = lean_ctor_get(x_989, 0); -lean_dec(x_991); -x_992 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_993 = lean_array_push(x_992, x_972); -x_994 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_995 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_995, 0, x_994); -lean_ctor_set(x_995, 1, x_993); -x_996 = l_Array_empty___closed__1; -x_997 = lean_array_push(x_996, x_995); -x_998 = l_Lean_nullKind___closed__2; +if (lean_is_exclusive(x_972)) { + lean_ctor_release(x_972, 0); + lean_ctor_release(x_972, 1); + x_974 = x_972; +} else { + lean_dec_ref(x_972); + x_974 = lean_box(0); +} +x_975 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_976 = lean_array_push(x_975, x_815); +x_977 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_978 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_978, 0, x_977); +lean_ctor_set(x_978, 1, x_976); +x_979 = l_Array_empty___closed__1; +x_980 = lean_array_push(x_979, x_978); +x_981 = l_Lean_nullKind___closed__2; +x_982 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_982, 0, x_981); +lean_ctor_set(x_982, 1, x_980); +x_983 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_984 = lean_array_push(x_983, x_982); +x_985 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_986 = lean_array_push(x_984, x_985); +x_987 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_988 = lean_array_push(x_986, x_987); +lean_inc(x_19); +x_989 = lean_array_push(x_979, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_990 = x_19; +} else { + lean_dec_ref(x_19); + x_990 = lean_box(0); +} +if (lean_is_scalar(x_990)) { + x_991 = lean_alloc_ctor(1, 2, 0); +} else { + x_991 = x_990; +} +lean_ctor_set(x_991, 0, x_981); +lean_ctor_set(x_991, 1, x_989); +x_992 = lean_array_push(x_979, x_991); +x_993 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_994 = lean_array_push(x_992, x_993); +x_995 = lean_array_push(x_994, x_968); +x_996 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_997 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_997, 0, x_996); +lean_ctor_set(x_997, 1, x_995); +x_998 = lean_array_push(x_979, x_997); x_999 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_999, 0, x_998); -lean_ctor_set(x_999, 1, x_997); -x_1000 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +lean_ctor_set(x_999, 0, x_981); +lean_ctor_set(x_999, 1, x_998); +x_1000 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; x_1001 = lean_array_push(x_1000, x_999); -x_1002 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1003 = lean_array_push(x_1001, x_1002); -x_1004 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1005 = lean_array_push(x_1003, x_1004); -x_1006 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1007 = lean_array_push(x_1005, x_1006); -lean_inc(x_19); -x_1008 = lean_array_push(x_996, x_19); -x_1009 = !lean_is_exclusive(x_19); -if (x_1009 == 0) -{ -lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; uint8_t x_1023; lean_object* x_1024; -x_1010 = lean_ctor_get(x_19, 1); -lean_dec(x_1010); -x_1011 = lean_ctor_get(x_19, 0); -lean_dec(x_1011); -lean_ctor_set(x_19, 1, x_1008); -lean_ctor_set(x_19, 0, x_998); -x_1012 = lean_array_push(x_996, x_19); -x_1013 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1014 = lean_array_push(x_1012, x_1013); -x_1015 = lean_array_push(x_1014, x_985); -x_1016 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1017 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1017, 0, x_1016); -lean_ctor_set(x_1017, 1, x_1015); -x_1018 = lean_array_push(x_996, x_1017); -x_1019 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1019, 0, x_998); -lean_ctor_set(x_1019, 1, x_1018); -x_1020 = lean_array_push(x_1007, x_1019); -x_1021 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1022 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1022, 0, x_1021); -lean_ctor_set(x_1022, 1, x_1020); -x_1023 = 1; -x_1024 = lean_box(x_1023); -lean_ctor_set(x_980, 1, x_1024); -lean_ctor_set(x_980, 0, x_1022); -lean_ctor_set(x_989, 0, x_979); -return x_989; +x_1002 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1003 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1003, 0, x_1002); +lean_ctor_set(x_1003, 1, x_1001); +x_1004 = lean_array_push(x_988, x_1003); +x_1005 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1006 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1006, 0, x_1005); +lean_ctor_set(x_1006, 1, x_1004); +x_1007 = 1; +x_1008 = lean_box(x_1007); +if (lean_is_scalar(x_969)) { + x_1009 = lean_alloc_ctor(0, 2, 0); +} else { + x_1009 = x_969; } -else -{ -lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; uint8_t x_1037; lean_object* x_1038; -lean_dec(x_19); -x_1025 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1025, 0, x_998); -lean_ctor_set(x_1025, 1, x_1008); -x_1026 = lean_array_push(x_996, x_1025); -x_1027 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1028 = lean_array_push(x_1026, x_1027); -x_1029 = lean_array_push(x_1028, x_985); -x_1030 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1031 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1031, 0, x_1030); -lean_ctor_set(x_1031, 1, x_1029); -x_1032 = lean_array_push(x_996, x_1031); -x_1033 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1033, 0, x_998); -lean_ctor_set(x_1033, 1, x_1032); -x_1034 = lean_array_push(x_1007, x_1033); -x_1035 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1036 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1036, 0, x_1035); -lean_ctor_set(x_1036, 1, x_1034); -x_1037 = 1; -x_1038 = lean_box(x_1037); -lean_ctor_set(x_980, 1, x_1038); -lean_ctor_set(x_980, 0, x_1036); -lean_ctor_set(x_989, 0, x_979); -return x_989; +lean_ctor_set(x_1009, 0, x_1006); +lean_ctor_set(x_1009, 1, x_1008); +x_1010 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1010, 0, x_967); +lean_ctor_set(x_1010, 1, x_1009); +if (lean_is_scalar(x_974)) { + x_1011 = lean_alloc_ctor(0, 2, 0); +} else { + x_1011 = x_974; +} +lean_ctor_set(x_1011, 0, x_1010); +lean_ctor_set(x_1011, 1, x_973); +return x_1011; } } else { -lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; uint8_t x_1070; lean_object* x_1071; lean_object* x_1072; -x_1039 = lean_ctor_get(x_989, 1); -lean_inc(x_1039); -lean_dec(x_989); -x_1040 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1041 = lean_array_push(x_1040, x_972); -x_1042 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1043 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1043, 0, x_1042); -lean_ctor_set(x_1043, 1, x_1041); -x_1044 = l_Array_empty___closed__1; -x_1045 = lean_array_push(x_1044, x_1043); -x_1046 = l_Lean_nullKind___closed__2; -x_1047 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1047, 0, x_1046); -lean_ctor_set(x_1047, 1, x_1045); -x_1048 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1049 = lean_array_push(x_1048, x_1047); -x_1050 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1051 = lean_array_push(x_1049, x_1050); -x_1052 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1053 = lean_array_push(x_1051, x_1052); -x_1054 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1055 = lean_array_push(x_1053, x_1054); -lean_inc(x_19); -x_1056 = lean_array_push(x_1044, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_1057 = x_19; -} else { - lean_dec_ref(x_19); - x_1057 = lean_box(0); -} -if (lean_is_scalar(x_1057)) { - x_1058 = lean_alloc_ctor(1, 2, 0); -} else { - x_1058 = x_1057; -} -lean_ctor_set(x_1058, 0, x_1046); -lean_ctor_set(x_1058, 1, x_1056); -x_1059 = lean_array_push(x_1044, x_1058); -x_1060 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +lean_object* x_1012; lean_object* x_1013; uint8_t x_1014; +x_1012 = lean_unsigned_to_nat(1u); +x_1013 = l_Lean_Syntax_getArg(x_19, x_1012); +x_1014 = l_Lean_Syntax_isNone(x_1013); +if (x_1014 == 0) +{ +lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; uint8_t x_1018; +x_1015 = lean_unsigned_to_nat(0u); +x_1016 = l_Lean_Syntax_getArg(x_1013, x_1015); +x_1017 = l_Lean_Syntax_getArg(x_1013, x_1012); +lean_dec(x_1013); +x_1018 = l_Lean_Syntax_isNone(x_1017); +if (x_1018 == 0) +{ +lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; uint8_t x_1026; +x_1019 = l_Lean_Syntax_getArg(x_1017, x_1015); +lean_dec(x_1017); +lean_inc(x_1019); +x_1020 = l_Lean_Syntax_getKind(x_1019); +x_1021 = lean_name_mk_string(x_199, x_204); +x_1022 = lean_name_mk_string(x_1021, x_404); +x_1023 = lean_name_mk_string(x_1022, x_604); +x_1024 = l_Lean_Elab_Term_elabParen___closed__6; +x_1025 = lean_name_mk_string(x_1023, x_1024); +x_1026 = lean_name_eq(x_1020, x_1025); +lean_dec(x_1025); +lean_dec(x_1020); +if (x_1026 == 0) +{ +lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; uint8_t x_1038; +lean_dec(x_1019); +lean_dec(x_1016); +x_1027 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_1028 = lean_ctor_get(x_1027, 0); +lean_inc(x_1028); +x_1029 = lean_ctor_get(x_1027, 1); +lean_inc(x_1029); +lean_dec(x_1027); +x_1030 = lean_nat_add(x_3, x_1012); +lean_dec(x_3); +x_1031 = l_Lean_mkHole(x_19); +lean_inc(x_1028); +x_1032 = l_Lean_Elab_Term_mkExplicitBinder(x_1028, x_1031); +x_1033 = lean_array_push(x_4, x_1032); +x_1034 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1030, x_1033, x_5, x_6, x_7, x_8, x_9, x_10, x_1029); +x_1035 = lean_ctor_get(x_1034, 0); +lean_inc(x_1035); +x_1036 = lean_ctor_get(x_1035, 1); +lean_inc(x_1036); +x_1037 = lean_ctor_get(x_1034, 1); +lean_inc(x_1037); +lean_dec(x_1034); +x_1038 = !lean_is_exclusive(x_1035); +if (x_1038 == 0) +{ +lean_object* x_1039; uint8_t x_1040; +x_1039 = lean_ctor_get(x_1035, 1); +lean_dec(x_1039); +x_1040 = !lean_is_exclusive(x_1036); +if (x_1040 == 0) +{ +lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; uint8_t x_1046; +x_1041 = lean_ctor_get(x_1036, 0); +x_1042 = lean_ctor_get(x_1036, 1); +lean_dec(x_1042); +x_1043 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1037); +x_1044 = lean_ctor_get(x_1043, 1); +lean_inc(x_1044); +lean_dec(x_1043); +x_1045 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1044); +x_1046 = !lean_is_exclusive(x_1045); +if (x_1046 == 0) +{ +lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; uint8_t x_1063; +x_1047 = lean_ctor_get(x_1045, 0); +lean_dec(x_1047); +x_1048 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1049 = lean_array_push(x_1048, x_1028); +x_1050 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1051 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1051, 0, x_1050); +lean_ctor_set(x_1051, 1, x_1049); +x_1052 = l_Array_empty___closed__1; +x_1053 = lean_array_push(x_1052, x_1051); +x_1054 = l_Lean_nullKind___closed__2; +x_1055 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1055, 0, x_1054); +lean_ctor_set(x_1055, 1, x_1053); +x_1056 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1057 = lean_array_push(x_1056, x_1055); +x_1058 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1059 = lean_array_push(x_1057, x_1058); +x_1060 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_1061 = lean_array_push(x_1059, x_1060); -x_1062 = lean_array_push(x_1061, x_985); -x_1063 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1064 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1064, 0, x_1063); -lean_ctor_set(x_1064, 1, x_1062); -x_1065 = lean_array_push(x_1044, x_1064); -x_1066 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1066, 0, x_1046); -lean_ctor_set(x_1066, 1, x_1065); -x_1067 = lean_array_push(x_1055, x_1066); -x_1068 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1069 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1069, 0, x_1068); -lean_ctor_set(x_1069, 1, x_1067); -x_1070 = 1; -x_1071 = lean_box(x_1070); -lean_ctor_set(x_980, 1, x_1071); -lean_ctor_set(x_980, 0, x_1069); -x_1072 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1072, 0, x_979); -lean_ctor_set(x_1072, 1, x_1039); -return x_1072; +lean_inc(x_19); +x_1062 = lean_array_push(x_1052, x_19); +x_1063 = !lean_is_exclusive(x_19); +if (x_1063 == 0) +{ +lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; uint8_t x_1081; lean_object* x_1082; +x_1064 = lean_ctor_get(x_19, 1); +lean_dec(x_1064); +x_1065 = lean_ctor_get(x_19, 0); +lean_dec(x_1065); +lean_ctor_set(x_19, 1, x_1062); +lean_ctor_set(x_19, 0, x_1054); +x_1066 = lean_array_push(x_1052, x_19); +x_1067 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1068 = lean_array_push(x_1066, x_1067); +x_1069 = lean_array_push(x_1068, x_1041); +x_1070 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1071 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1071, 0, x_1070); +lean_ctor_set(x_1071, 1, x_1069); +x_1072 = lean_array_push(x_1052, x_1071); +x_1073 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1073, 0, x_1054); +lean_ctor_set(x_1073, 1, x_1072); +x_1074 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1075 = lean_array_push(x_1074, x_1073); +x_1076 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1077 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1077, 0, x_1076); +lean_ctor_set(x_1077, 1, x_1075); +x_1078 = lean_array_push(x_1061, x_1077); +x_1079 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1080 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1080, 0, x_1079); +lean_ctor_set(x_1080, 1, x_1078); +x_1081 = 1; +x_1082 = lean_box(x_1081); +lean_ctor_set(x_1036, 1, x_1082); +lean_ctor_set(x_1036, 0, x_1080); +lean_ctor_set(x_1045, 0, x_1035); +return x_1045; +} +else +{ +lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; uint8_t x_1099; lean_object* x_1100; +lean_dec(x_19); +x_1083 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1083, 0, x_1054); +lean_ctor_set(x_1083, 1, x_1062); +x_1084 = lean_array_push(x_1052, x_1083); +x_1085 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1086 = lean_array_push(x_1084, x_1085); +x_1087 = lean_array_push(x_1086, x_1041); +x_1088 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1089 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1089, 0, x_1088); +lean_ctor_set(x_1089, 1, x_1087); +x_1090 = lean_array_push(x_1052, x_1089); +x_1091 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1091, 0, x_1054); +lean_ctor_set(x_1091, 1, x_1090); +x_1092 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1093 = lean_array_push(x_1092, x_1091); +x_1094 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1095 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1095, 0, x_1094); +lean_ctor_set(x_1095, 1, x_1093); +x_1096 = lean_array_push(x_1061, x_1095); +x_1097 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1098 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1098, 0, x_1097); +lean_ctor_set(x_1098, 1, x_1096); +x_1099 = 1; +x_1100 = lean_box(x_1099); +lean_ctor_set(x_1036, 1, x_1100); +lean_ctor_set(x_1036, 0, x_1098); +lean_ctor_set(x_1045, 0, x_1035); +return x_1045; } } else { -lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; uint8_t x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; -x_1073 = lean_ctor_get(x_980, 0); -lean_inc(x_1073); -lean_dec(x_980); -x_1074 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_981); -x_1075 = lean_ctor_get(x_1074, 1); -lean_inc(x_1075); -lean_dec(x_1074); -x_1076 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1075); -x_1077 = lean_ctor_get(x_1076, 1); -lean_inc(x_1077); -if (lean_is_exclusive(x_1076)) { - lean_ctor_release(x_1076, 0); - lean_ctor_release(x_1076, 1); - x_1078 = x_1076; -} else { - lean_dec_ref(x_1076); - x_1078 = lean_box(0); -} -x_1079 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1080 = lean_array_push(x_1079, x_972); -x_1081 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1082 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1082, 0, x_1081); -lean_ctor_set(x_1082, 1, x_1080); -x_1083 = l_Array_empty___closed__1; -x_1084 = lean_array_push(x_1083, x_1082); -x_1085 = l_Lean_nullKind___closed__2; -x_1086 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1086, 0, x_1085); -lean_ctor_set(x_1086, 1, x_1084); -x_1087 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1088 = lean_array_push(x_1087, x_1086); -x_1089 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1090 = lean_array_push(x_1088, x_1089); -x_1091 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1092 = lean_array_push(x_1090, x_1091); -x_1093 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1094 = lean_array_push(x_1092, x_1093); +lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; uint8_t x_1134; lean_object* x_1135; lean_object* x_1136; +x_1101 = lean_ctor_get(x_1045, 1); +lean_inc(x_1101); +lean_dec(x_1045); +x_1102 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1103 = lean_array_push(x_1102, x_1028); +x_1104 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1105, 0, x_1104); +lean_ctor_set(x_1105, 1, x_1103); +x_1106 = l_Array_empty___closed__1; +x_1107 = lean_array_push(x_1106, x_1105); +x_1108 = l_Lean_nullKind___closed__2; +x_1109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1109, 0, x_1108); +lean_ctor_set(x_1109, 1, x_1107); +x_1110 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1111 = lean_array_push(x_1110, x_1109); +x_1112 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1113 = lean_array_push(x_1111, x_1112); +x_1114 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1115 = lean_array_push(x_1113, x_1114); lean_inc(x_19); -x_1095 = lean_array_push(x_1083, x_19); +x_1116 = lean_array_push(x_1106, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1096 = x_19; + x_1117 = x_19; } else { lean_dec_ref(x_19); - x_1096 = lean_box(0); + x_1117 = lean_box(0); } -if (lean_is_scalar(x_1096)) { - x_1097 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1117)) { + x_1118 = lean_alloc_ctor(1, 2, 0); } else { - x_1097 = x_1096; + x_1118 = x_1117; } -lean_ctor_set(x_1097, 0, x_1085); -lean_ctor_set(x_1097, 1, x_1095); -x_1098 = lean_array_push(x_1083, x_1097); -x_1099 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1100 = lean_array_push(x_1098, x_1099); -x_1101 = lean_array_push(x_1100, x_1073); -x_1102 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1103 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1103, 0, x_1102); -lean_ctor_set(x_1103, 1, x_1101); -x_1104 = lean_array_push(x_1083, x_1103); -x_1105 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1105, 0, x_1085); -lean_ctor_set(x_1105, 1, x_1104); -x_1106 = lean_array_push(x_1094, x_1105); -x_1107 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1108, 0, x_1107); -lean_ctor_set(x_1108, 1, x_1106); -x_1109 = 1; -x_1110 = lean_box(x_1109); -x_1111 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1111, 0, x_1108); -lean_ctor_set(x_1111, 1, x_1110); -lean_ctor_set(x_979, 1, x_1111); -if (lean_is_scalar(x_1078)) { - x_1112 = lean_alloc_ctor(0, 2, 0); -} else { - x_1112 = x_1078; -} -lean_ctor_set(x_1112, 0, x_979); -lean_ctor_set(x_1112, 1, x_1077); -return x_1112; -} -} -else -{ -lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; uint8_t x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; -x_1113 = lean_ctor_get(x_979, 0); -lean_inc(x_1113); -lean_dec(x_979); -x_1114 = lean_ctor_get(x_980, 0); -lean_inc(x_1114); -if (lean_is_exclusive(x_980)) { - lean_ctor_release(x_980, 0); - lean_ctor_release(x_980, 1); - x_1115 = x_980; -} else { - lean_dec_ref(x_980); - x_1115 = lean_box(0); -} -x_1116 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_981); -x_1117 = lean_ctor_get(x_1116, 1); -lean_inc(x_1117); -lean_dec(x_1116); -x_1118 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1117); -x_1119 = lean_ctor_get(x_1118, 1); -lean_inc(x_1119); -if (lean_is_exclusive(x_1118)) { - lean_ctor_release(x_1118, 0); - lean_ctor_release(x_1118, 1); - x_1120 = x_1118; -} else { - lean_dec_ref(x_1118); - x_1120 = lean_box(0); -} -x_1121 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1122 = lean_array_push(x_1121, x_972); -x_1123 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +lean_ctor_set(x_1118, 0, x_1108); +lean_ctor_set(x_1118, 1, x_1116); +x_1119 = lean_array_push(x_1106, x_1118); +x_1120 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1121 = lean_array_push(x_1119, x_1120); +x_1122 = lean_array_push(x_1121, x_1041); +x_1123 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_1124 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1124, 0, x_1123); lean_ctor_set(x_1124, 1, x_1122); -x_1125 = l_Array_empty___closed__1; -x_1126 = lean_array_push(x_1125, x_1124); -x_1127 = l_Lean_nullKind___closed__2; -x_1128 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1128, 0, x_1127); -lean_ctor_set(x_1128, 1, x_1126); -x_1129 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1130 = lean_array_push(x_1129, x_1128); -x_1131 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1132 = lean_array_push(x_1130, x_1131); -x_1133 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1134 = lean_array_push(x_1132, x_1133); -x_1135 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1136 = lean_array_push(x_1134, x_1135); -lean_inc(x_19); -x_1137 = lean_array_push(x_1125, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_1138 = x_19; -} else { - lean_dec_ref(x_19); - x_1138 = lean_box(0); +x_1125 = lean_array_push(x_1106, x_1124); +x_1126 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1126, 0, x_1108); +lean_ctor_set(x_1126, 1, x_1125); +x_1127 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1128 = lean_array_push(x_1127, x_1126); +x_1129 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1130 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1130, 0, x_1129); +lean_ctor_set(x_1130, 1, x_1128); +x_1131 = lean_array_push(x_1115, x_1130); +x_1132 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1133, 0, x_1132); +lean_ctor_set(x_1133, 1, x_1131); +x_1134 = 1; +x_1135 = lean_box(x_1134); +lean_ctor_set(x_1036, 1, x_1135); +lean_ctor_set(x_1036, 0, x_1133); +x_1136 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1136, 0, x_1035); +lean_ctor_set(x_1136, 1, x_1101); +return x_1136; } -if (lean_is_scalar(x_1138)) { - x_1139 = lean_alloc_ctor(1, 2, 0); -} else { - x_1139 = x_1138; } -lean_ctor_set(x_1139, 0, x_1127); -lean_ctor_set(x_1139, 1, x_1137); -x_1140 = lean_array_push(x_1125, x_1139); -x_1141 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1142 = lean_array_push(x_1140, x_1141); -x_1143 = lean_array_push(x_1142, x_1114); -x_1144 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1145, 0, x_1144); -lean_ctor_set(x_1145, 1, x_1143); -x_1146 = lean_array_push(x_1125, x_1145); -x_1147 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1147, 0, x_1127); -lean_ctor_set(x_1147, 1, x_1146); -x_1148 = lean_array_push(x_1136, x_1147); -x_1149 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +else +{ +lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; uint8_t x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; +x_1137 = lean_ctor_get(x_1036, 0); +lean_inc(x_1137); +lean_dec(x_1036); +x_1138 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1037); +x_1139 = lean_ctor_get(x_1138, 1); +lean_inc(x_1139); +lean_dec(x_1138); +x_1140 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1139); +x_1141 = lean_ctor_get(x_1140, 1); +lean_inc(x_1141); +if (lean_is_exclusive(x_1140)) { + lean_ctor_release(x_1140, 0); + lean_ctor_release(x_1140, 1); + x_1142 = x_1140; +} else { + lean_dec_ref(x_1140); + x_1142 = lean_box(0); +} +x_1143 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1144 = lean_array_push(x_1143, x_1028); +x_1145 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1146, 0, x_1145); +lean_ctor_set(x_1146, 1, x_1144); +x_1147 = l_Array_empty___closed__1; +x_1148 = lean_array_push(x_1147, x_1146); +x_1149 = l_Lean_nullKind___closed__2; x_1150 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1150, 0, x_1149); lean_ctor_set(x_1150, 1, x_1148); -x_1151 = 1; -x_1152 = lean_box(x_1151); -if (lean_is_scalar(x_1115)) { - x_1153 = lean_alloc_ctor(0, 2, 0); +x_1151 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1152 = lean_array_push(x_1151, x_1150); +x_1153 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1154 = lean_array_push(x_1152, x_1153); +x_1155 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1156 = lean_array_push(x_1154, x_1155); +lean_inc(x_19); +x_1157 = lean_array_push(x_1147, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_1158 = x_19; } else { - x_1153 = x_1115; + lean_dec_ref(x_19); + x_1158 = lean_box(0); } -lean_ctor_set(x_1153, 0, x_1150); -lean_ctor_set(x_1153, 1, x_1152); -x_1154 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1154, 0, x_1113); -lean_ctor_set(x_1154, 1, x_1153); -if (lean_is_scalar(x_1120)) { - x_1155 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_1158)) { + x_1159 = lean_alloc_ctor(1, 2, 0); } else { - x_1155 = x_1120; + x_1159 = x_1158; } -lean_ctor_set(x_1155, 0, x_1154); -lean_ctor_set(x_1155, 1, x_1119); -return x_1155; +lean_ctor_set(x_1159, 0, x_1149); +lean_ctor_set(x_1159, 1, x_1157); +x_1160 = lean_array_push(x_1147, x_1159); +x_1161 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1162 = lean_array_push(x_1160, x_1161); +x_1163 = lean_array_push(x_1162, x_1137); +x_1164 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1165 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1165, 0, x_1164); +lean_ctor_set(x_1165, 1, x_1163); +x_1166 = lean_array_push(x_1147, x_1165); +x_1167 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1167, 0, x_1149); +lean_ctor_set(x_1167, 1, x_1166); +x_1168 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1169 = lean_array_push(x_1168, x_1167); +x_1170 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1171 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1171, 0, x_1170); +lean_ctor_set(x_1171, 1, x_1169); +x_1172 = lean_array_push(x_1156, x_1171); +x_1173 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1174, 0, x_1173); +lean_ctor_set(x_1174, 1, x_1172); +x_1175 = 1; +x_1176 = lean_box(x_1175); +x_1177 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1177, 0, x_1174); +lean_ctor_set(x_1177, 1, x_1176); +lean_ctor_set(x_1035, 1, x_1177); +if (lean_is_scalar(x_1142)) { + x_1178 = lean_alloc_ctor(0, 2, 0); +} else { + x_1178 = x_1142; +} +lean_ctor_set(x_1178, 0, x_1035); +lean_ctor_set(x_1178, 1, x_1141); +return x_1178; } } else { -lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; -x_1156 = l_Lean_Syntax_getArg(x_963, x_956); -lean_dec(x_963); -x_1157 = l___private_Lean_Elab_Binders_10__getFunBinderIds_x3f(x_960, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1158 = lean_ctor_get(x_1157, 0); -lean_inc(x_1158); -if (lean_obj_tag(x_1158) == 0) -{ -lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; uint8_t x_1171; -lean_dec(x_1156); -x_1159 = lean_ctor_get(x_1157, 1); -lean_inc(x_1159); -lean_dec(x_1157); -x_1160 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_1159); -x_1161 = lean_ctor_get(x_1160, 0); -lean_inc(x_1161); -x_1162 = lean_ctor_get(x_1160, 1); -lean_inc(x_1162); -lean_dec(x_1160); -x_1163 = lean_nat_add(x_3, x_956); -lean_dec(x_3); -x_1164 = l_Lean_mkHole(x_19); -lean_inc(x_1161); -x_1165 = l_Lean_Elab_Term_mkExplicitBinder(x_1161, x_1164); -x_1166 = lean_array_push(x_4, x_1165); -x_1167 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1163, x_1166, x_5, x_6, x_7, x_8, x_9, x_10, x_1162); -x_1168 = lean_ctor_get(x_1167, 0); -lean_inc(x_1168); -x_1169 = lean_ctor_get(x_1168, 1); -lean_inc(x_1169); -x_1170 = lean_ctor_get(x_1167, 1); -lean_inc(x_1170); -lean_dec(x_1167); -x_1171 = !lean_is_exclusive(x_1168); -if (x_1171 == 0) -{ -lean_object* x_1172; uint8_t x_1173; -x_1172 = lean_ctor_get(x_1168, 1); -lean_dec(x_1172); -x_1173 = !lean_is_exclusive(x_1169); -if (x_1173 == 0) -{ -lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; uint8_t x_1179; -x_1174 = lean_ctor_get(x_1169, 0); -x_1175 = lean_ctor_get(x_1169, 1); -lean_dec(x_1175); -x_1176 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1170); -x_1177 = lean_ctor_get(x_1176, 1); -lean_inc(x_1177); -lean_dec(x_1176); -x_1178 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1177); -x_1179 = !lean_is_exclusive(x_1178); -if (x_1179 == 0) -{ -lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; uint8_t x_1198; -x_1180 = lean_ctor_get(x_1178, 0); -lean_dec(x_1180); -x_1181 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1182 = lean_array_push(x_1181, x_1161); -x_1183 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1184 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1184, 0, x_1183); -lean_ctor_set(x_1184, 1, x_1182); -x_1185 = l_Array_empty___closed__1; -x_1186 = lean_array_push(x_1185, x_1184); -x_1187 = l_Lean_nullKind___closed__2; -x_1188 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1188, 0, x_1187); -lean_ctor_set(x_1188, 1, x_1186); -x_1189 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1190 = lean_array_push(x_1189, x_1188); -x_1191 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1192 = lean_array_push(x_1190, x_1191); -x_1193 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1194 = lean_array_push(x_1192, x_1193); -x_1195 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1196 = lean_array_push(x_1194, x_1195); +lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; uint8_t x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; +x_1179 = lean_ctor_get(x_1035, 0); +lean_inc(x_1179); +lean_dec(x_1035); +x_1180 = lean_ctor_get(x_1036, 0); +lean_inc(x_1180); +if (lean_is_exclusive(x_1036)) { + lean_ctor_release(x_1036, 0); + lean_ctor_release(x_1036, 1); + x_1181 = x_1036; +} else { + lean_dec_ref(x_1036); + x_1181 = lean_box(0); +} +x_1182 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1037); +x_1183 = lean_ctor_get(x_1182, 1); +lean_inc(x_1183); +lean_dec(x_1182); +x_1184 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1183); +x_1185 = lean_ctor_get(x_1184, 1); +lean_inc(x_1185); +if (lean_is_exclusive(x_1184)) { + lean_ctor_release(x_1184, 0); + lean_ctor_release(x_1184, 1); + x_1186 = x_1184; +} else { + lean_dec_ref(x_1184); + x_1186 = lean_box(0); +} +x_1187 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1188 = lean_array_push(x_1187, x_1028); +x_1189 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1190 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1190, 0, x_1189); +lean_ctor_set(x_1190, 1, x_1188); +x_1191 = l_Array_empty___closed__1; +x_1192 = lean_array_push(x_1191, x_1190); +x_1193 = l_Lean_nullKind___closed__2; +x_1194 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1194, 0, x_1193); +lean_ctor_set(x_1194, 1, x_1192); +x_1195 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1196 = lean_array_push(x_1195, x_1194); +x_1197 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1198 = lean_array_push(x_1196, x_1197); +x_1199 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1200 = lean_array_push(x_1198, x_1199); lean_inc(x_19); -x_1197 = lean_array_push(x_1185, x_19); -x_1198 = !lean_is_exclusive(x_19); -if (x_1198 == 0) -{ -lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; uint8_t x_1212; lean_object* x_1213; -x_1199 = lean_ctor_get(x_19, 1); -lean_dec(x_1199); -x_1200 = lean_ctor_get(x_19, 0); -lean_dec(x_1200); -lean_ctor_set(x_19, 1, x_1197); -lean_ctor_set(x_19, 0, x_1187); -x_1201 = lean_array_push(x_1185, x_19); -x_1202 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1203 = lean_array_push(x_1201, x_1202); -x_1204 = lean_array_push(x_1203, x_1174); -x_1205 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1206 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1206, 0, x_1205); -lean_ctor_set(x_1206, 1, x_1204); -x_1207 = lean_array_push(x_1185, x_1206); -x_1208 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1208, 0, x_1187); -lean_ctor_set(x_1208, 1, x_1207); -x_1209 = lean_array_push(x_1196, x_1208); -x_1210 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1201 = lean_array_push(x_1191, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_1202 = x_19; +} else { + lean_dec_ref(x_19); + x_1202 = lean_box(0); +} +if (lean_is_scalar(x_1202)) { + x_1203 = lean_alloc_ctor(1, 2, 0); +} else { + x_1203 = x_1202; +} +lean_ctor_set(x_1203, 0, x_1193); +lean_ctor_set(x_1203, 1, x_1201); +x_1204 = lean_array_push(x_1191, x_1203); +x_1205 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1206 = lean_array_push(x_1204, x_1205); +x_1207 = lean_array_push(x_1206, x_1180); +x_1208 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1209 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1209, 0, x_1208); +lean_ctor_set(x_1209, 1, x_1207); +x_1210 = lean_array_push(x_1191, x_1209); x_1211 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1211, 0, x_1210); -lean_ctor_set(x_1211, 1, x_1209); -x_1212 = 1; -x_1213 = lean_box(x_1212); -lean_ctor_set(x_1169, 1, x_1213); -lean_ctor_set(x_1169, 0, x_1211); -lean_ctor_set(x_1178, 0, x_1168); -return x_1178; +lean_ctor_set(x_1211, 0, x_1193); +lean_ctor_set(x_1211, 1, x_1210); +x_1212 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1213 = lean_array_push(x_1212, x_1211); +x_1214 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1215 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1215, 0, x_1214); +lean_ctor_set(x_1215, 1, x_1213); +x_1216 = lean_array_push(x_1200, x_1215); +x_1217 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1218 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1218, 0, x_1217); +lean_ctor_set(x_1218, 1, x_1216); +x_1219 = 1; +x_1220 = lean_box(x_1219); +if (lean_is_scalar(x_1181)) { + x_1221 = lean_alloc_ctor(0, 2, 0); +} else { + x_1221 = x_1181; } -else -{ -lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; uint8_t x_1226; lean_object* x_1227; -lean_dec(x_19); -x_1214 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1214, 0, x_1187); -lean_ctor_set(x_1214, 1, x_1197); -x_1215 = lean_array_push(x_1185, x_1214); -x_1216 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1217 = lean_array_push(x_1215, x_1216); -x_1218 = lean_array_push(x_1217, x_1174); -x_1219 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1220 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1220, 0, x_1219); -lean_ctor_set(x_1220, 1, x_1218); -x_1221 = lean_array_push(x_1185, x_1220); -x_1222 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1222, 0, x_1187); +lean_ctor_set(x_1221, 0, x_1218); +lean_ctor_set(x_1221, 1, x_1220); +x_1222 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1222, 0, x_1179); lean_ctor_set(x_1222, 1, x_1221); -x_1223 = lean_array_push(x_1196, x_1222); -x_1224 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1225 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1225, 0, x_1224); -lean_ctor_set(x_1225, 1, x_1223); -x_1226 = 1; -x_1227 = lean_box(x_1226); -lean_ctor_set(x_1169, 1, x_1227); -lean_ctor_set(x_1169, 0, x_1225); -lean_ctor_set(x_1178, 0, x_1168); -return x_1178; +if (lean_is_scalar(x_1186)) { + x_1223 = lean_alloc_ctor(0, 2, 0); +} else { + x_1223 = x_1186; +} +lean_ctor_set(x_1223, 0, x_1222); +lean_ctor_set(x_1223, 1, x_1185); +return x_1223; } } else { -lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; uint8_t x_1259; lean_object* x_1260; lean_object* x_1261; -x_1228 = lean_ctor_get(x_1178, 1); -lean_inc(x_1228); -lean_dec(x_1178); -x_1229 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1230 = lean_array_push(x_1229, x_1161); -x_1231 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1232 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1232, 0, x_1231); -lean_ctor_set(x_1232, 1, x_1230); -x_1233 = l_Array_empty___closed__1; -x_1234 = lean_array_push(x_1233, x_1232); -x_1235 = l_Lean_nullKind___closed__2; -x_1236 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1236, 0, x_1235); -lean_ctor_set(x_1236, 1, x_1234); -x_1237 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1238 = lean_array_push(x_1237, x_1236); -x_1239 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1240 = lean_array_push(x_1238, x_1239); -x_1241 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1242 = lean_array_push(x_1240, x_1241); -x_1243 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1244 = lean_array_push(x_1242, x_1243); +lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; +x_1224 = l_Lean_Syntax_getArg(x_1019, x_1012); +lean_dec(x_1019); +x_1225 = l___private_Lean_Elab_Binders_10__getFunBinderIds_x3f(x_1016, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_1226 = lean_ctor_get(x_1225, 0); +lean_inc(x_1226); +if (lean_obj_tag(x_1226) == 0) +{ +lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; uint8_t x_1239; +lean_dec(x_1224); +x_1227 = lean_ctor_get(x_1225, 1); +lean_inc(x_1227); +lean_dec(x_1225); +x_1228 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_1227); +x_1229 = lean_ctor_get(x_1228, 0); +lean_inc(x_1229); +x_1230 = lean_ctor_get(x_1228, 1); +lean_inc(x_1230); +lean_dec(x_1228); +x_1231 = lean_nat_add(x_3, x_1012); +lean_dec(x_3); +x_1232 = l_Lean_mkHole(x_19); +lean_inc(x_1229); +x_1233 = l_Lean_Elab_Term_mkExplicitBinder(x_1229, x_1232); +x_1234 = lean_array_push(x_4, x_1233); +x_1235 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1231, x_1234, x_5, x_6, x_7, x_8, x_9, x_10, x_1230); +x_1236 = lean_ctor_get(x_1235, 0); +lean_inc(x_1236); +x_1237 = lean_ctor_get(x_1236, 1); +lean_inc(x_1237); +x_1238 = lean_ctor_get(x_1235, 1); +lean_inc(x_1238); +lean_dec(x_1235); +x_1239 = !lean_is_exclusive(x_1236); +if (x_1239 == 0) +{ +lean_object* x_1240; uint8_t x_1241; +x_1240 = lean_ctor_get(x_1236, 1); +lean_dec(x_1240); +x_1241 = !lean_is_exclusive(x_1237); +if (x_1241 == 0) +{ +lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; uint8_t x_1247; +x_1242 = lean_ctor_get(x_1237, 0); +x_1243 = lean_ctor_get(x_1237, 1); +lean_dec(x_1243); +x_1244 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1238); +x_1245 = lean_ctor_get(x_1244, 1); +lean_inc(x_1245); +lean_dec(x_1244); +x_1246 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1245); +x_1247 = !lean_is_exclusive(x_1246); +if (x_1247 == 0) +{ +lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; uint8_t x_1264; +x_1248 = lean_ctor_get(x_1246, 0); +lean_dec(x_1248); +x_1249 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1250 = lean_array_push(x_1249, x_1229); +x_1251 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1252 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1252, 0, x_1251); +lean_ctor_set(x_1252, 1, x_1250); +x_1253 = l_Array_empty___closed__1; +x_1254 = lean_array_push(x_1253, x_1252); +x_1255 = l_Lean_nullKind___closed__2; +x_1256 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1256, 0, x_1255); +lean_ctor_set(x_1256, 1, x_1254); +x_1257 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1258 = lean_array_push(x_1257, x_1256); +x_1259 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1260 = lean_array_push(x_1258, x_1259); +x_1261 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1262 = lean_array_push(x_1260, x_1261); lean_inc(x_19); -x_1245 = lean_array_push(x_1233, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_1246 = x_19; -} else { - lean_dec_ref(x_19); - x_1246 = lean_box(0); -} -if (lean_is_scalar(x_1246)) { - x_1247 = lean_alloc_ctor(1, 2, 0); -} else { - x_1247 = x_1246; -} -lean_ctor_set(x_1247, 0, x_1235); -lean_ctor_set(x_1247, 1, x_1245); -x_1248 = lean_array_push(x_1233, x_1247); -x_1249 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1250 = lean_array_push(x_1248, x_1249); -x_1251 = lean_array_push(x_1250, x_1174); -x_1252 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1253 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1253, 0, x_1252); -lean_ctor_set(x_1253, 1, x_1251); -x_1254 = lean_array_push(x_1233, x_1253); -x_1255 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1255, 0, x_1235); -lean_ctor_set(x_1255, 1, x_1254); -x_1256 = lean_array_push(x_1244, x_1255); -x_1257 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1258 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1258, 0, x_1257); -lean_ctor_set(x_1258, 1, x_1256); -x_1259 = 1; -x_1260 = lean_box(x_1259); -lean_ctor_set(x_1169, 1, x_1260); -lean_ctor_set(x_1169, 0, x_1258); -x_1261 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1261, 0, x_1168); -lean_ctor_set(x_1261, 1, x_1228); -return x_1261; -} +x_1263 = lean_array_push(x_1253, x_19); +x_1264 = !lean_is_exclusive(x_19); +if (x_1264 == 0) +{ +lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; uint8_t x_1282; lean_object* x_1283; +x_1265 = lean_ctor_get(x_19, 1); +lean_dec(x_1265); +x_1266 = lean_ctor_get(x_19, 0); +lean_dec(x_1266); +lean_ctor_set(x_19, 1, x_1263); +lean_ctor_set(x_19, 0, x_1255); +x_1267 = lean_array_push(x_1253, x_19); +x_1268 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1269 = lean_array_push(x_1267, x_1268); +x_1270 = lean_array_push(x_1269, x_1242); +x_1271 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1272 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1272, 0, x_1271); +lean_ctor_set(x_1272, 1, x_1270); +x_1273 = lean_array_push(x_1253, x_1272); +x_1274 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1274, 0, x_1255); +lean_ctor_set(x_1274, 1, x_1273); +x_1275 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1276 = lean_array_push(x_1275, x_1274); +x_1277 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1278 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1278, 0, x_1277); +lean_ctor_set(x_1278, 1, x_1276); +x_1279 = lean_array_push(x_1262, x_1278); +x_1280 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1281 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1281, 0, x_1280); +lean_ctor_set(x_1281, 1, x_1279); +x_1282 = 1; +x_1283 = lean_box(x_1282); +lean_ctor_set(x_1237, 1, x_1283); +lean_ctor_set(x_1237, 0, x_1281); +lean_ctor_set(x_1246, 0, x_1236); +return x_1246; } else { -lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; uint8_t x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; -x_1262 = lean_ctor_get(x_1169, 0); -lean_inc(x_1262); -lean_dec(x_1169); -x_1263 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1170); -x_1264 = lean_ctor_get(x_1263, 1); -lean_inc(x_1264); -lean_dec(x_1263); -x_1265 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1264); -x_1266 = lean_ctor_get(x_1265, 1); -lean_inc(x_1266); -if (lean_is_exclusive(x_1265)) { - lean_ctor_release(x_1265, 0); - lean_ctor_release(x_1265, 1); - x_1267 = x_1265; -} else { - lean_dec_ref(x_1265); - x_1267 = lean_box(0); -} -x_1268 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1269 = lean_array_push(x_1268, x_1161); -x_1270 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1271 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1271, 0, x_1270); -lean_ctor_set(x_1271, 1, x_1269); -x_1272 = l_Array_empty___closed__1; -x_1273 = lean_array_push(x_1272, x_1271); -x_1274 = l_Lean_nullKind___closed__2; -x_1275 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1275, 0, x_1274); -lean_ctor_set(x_1275, 1, x_1273); -x_1276 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1277 = lean_array_push(x_1276, x_1275); -x_1278 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1279 = lean_array_push(x_1277, x_1278); -x_1280 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1281 = lean_array_push(x_1279, x_1280); -x_1282 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1283 = lean_array_push(x_1281, x_1282); -lean_inc(x_19); -x_1284 = lean_array_push(x_1272, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_1285 = x_19; -} else { - lean_dec_ref(x_19); - x_1285 = lean_box(0); -} -if (lean_is_scalar(x_1285)) { - x_1286 = lean_alloc_ctor(1, 2, 0); -} else { - x_1286 = x_1285; -} -lean_ctor_set(x_1286, 0, x_1274); -lean_ctor_set(x_1286, 1, x_1284); -x_1287 = lean_array_push(x_1272, x_1286); -x_1288 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1289 = lean_array_push(x_1287, x_1288); -x_1290 = lean_array_push(x_1289, x_1262); -x_1291 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; uint8_t x_1300; lean_object* x_1301; +lean_dec(x_19); +x_1284 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1284, 0, x_1255); +lean_ctor_set(x_1284, 1, x_1263); +x_1285 = lean_array_push(x_1253, x_1284); +x_1286 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1287 = lean_array_push(x_1285, x_1286); +x_1288 = lean_array_push(x_1287, x_1242); +x_1289 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1290 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1290, 0, x_1289); +lean_ctor_set(x_1290, 1, x_1288); +x_1291 = lean_array_push(x_1253, x_1290); x_1292 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1292, 0, x_1291); -lean_ctor_set(x_1292, 1, x_1290); -x_1293 = lean_array_push(x_1272, x_1292); -x_1294 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1294, 0, x_1274); -lean_ctor_set(x_1294, 1, x_1293); -x_1295 = lean_array_push(x_1283, x_1294); -x_1296 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1297 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1297, 0, x_1296); -lean_ctor_set(x_1297, 1, x_1295); -x_1298 = 1; -x_1299 = lean_box(x_1298); -x_1300 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1300, 0, x_1297); -lean_ctor_set(x_1300, 1, x_1299); -lean_ctor_set(x_1168, 1, x_1300); -if (lean_is_scalar(x_1267)) { - x_1301 = lean_alloc_ctor(0, 2, 0); -} else { - x_1301 = x_1267; -} -lean_ctor_set(x_1301, 0, x_1168); -lean_ctor_set(x_1301, 1, x_1266); -return x_1301; +lean_ctor_set(x_1292, 0, x_1255); +lean_ctor_set(x_1292, 1, x_1291); +x_1293 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1294 = lean_array_push(x_1293, x_1292); +x_1295 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1296 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1296, 0, x_1295); +lean_ctor_set(x_1296, 1, x_1294); +x_1297 = lean_array_push(x_1262, x_1296); +x_1298 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1299 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1299, 0, x_1298); +lean_ctor_set(x_1299, 1, x_1297); +x_1300 = 1; +x_1301 = lean_box(x_1300); +lean_ctor_set(x_1237, 1, x_1301); +lean_ctor_set(x_1237, 0, x_1299); +lean_ctor_set(x_1246, 0, x_1236); +return x_1246; } } else { -lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; uint8_t x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; -x_1302 = lean_ctor_get(x_1168, 0); +lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; uint8_t x_1335; lean_object* x_1336; lean_object* x_1337; +x_1302 = lean_ctor_get(x_1246, 1); lean_inc(x_1302); -lean_dec(x_1168); -x_1303 = lean_ctor_get(x_1169, 0); -lean_inc(x_1303); -if (lean_is_exclusive(x_1169)) { - lean_ctor_release(x_1169, 0); - lean_ctor_release(x_1169, 1); - x_1304 = x_1169; -} else { - lean_dec_ref(x_1169); - x_1304 = lean_box(0); -} -x_1305 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1170); -x_1306 = lean_ctor_get(x_1305, 1); -lean_inc(x_1306); -lean_dec(x_1305); -x_1307 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1306); -x_1308 = lean_ctor_get(x_1307, 1); -lean_inc(x_1308); -if (lean_is_exclusive(x_1307)) { - lean_ctor_release(x_1307, 0); - lean_ctor_release(x_1307, 1); - x_1309 = x_1307; -} else { - lean_dec_ref(x_1307); - x_1309 = lean_box(0); -} -x_1310 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1311 = lean_array_push(x_1310, x_1161); -x_1312 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1313 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1313, 0, x_1312); -lean_ctor_set(x_1313, 1, x_1311); -x_1314 = l_Array_empty___closed__1; -x_1315 = lean_array_push(x_1314, x_1313); -x_1316 = l_Lean_nullKind___closed__2; -x_1317 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1317, 0, x_1316); -lean_ctor_set(x_1317, 1, x_1315); -x_1318 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1319 = lean_array_push(x_1318, x_1317); -x_1320 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1321 = lean_array_push(x_1319, x_1320); -x_1322 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1323 = lean_array_push(x_1321, x_1322); -x_1324 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1325 = lean_array_push(x_1323, x_1324); +lean_dec(x_1246); +x_1303 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1304 = lean_array_push(x_1303, x_1229); +x_1305 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1306 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1306, 0, x_1305); +lean_ctor_set(x_1306, 1, x_1304); +x_1307 = l_Array_empty___closed__1; +x_1308 = lean_array_push(x_1307, x_1306); +x_1309 = l_Lean_nullKind___closed__2; +x_1310 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1310, 0, x_1309); +lean_ctor_set(x_1310, 1, x_1308); +x_1311 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1312 = lean_array_push(x_1311, x_1310); +x_1313 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1314 = lean_array_push(x_1312, x_1313); +x_1315 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1316 = lean_array_push(x_1314, x_1315); lean_inc(x_19); -x_1326 = lean_array_push(x_1314, x_19); +x_1317 = lean_array_push(x_1307, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1327 = x_19; + x_1318 = x_19; } else { lean_dec_ref(x_19); - x_1327 = lean_box(0); + x_1318 = lean_box(0); } -if (lean_is_scalar(x_1327)) { - x_1328 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1318)) { + x_1319 = lean_alloc_ctor(1, 2, 0); } else { - x_1328 = x_1327; + x_1319 = x_1318; } -lean_ctor_set(x_1328, 0, x_1316); -lean_ctor_set(x_1328, 1, x_1326); -x_1329 = lean_array_push(x_1314, x_1328); -x_1330 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1331 = lean_array_push(x_1329, x_1330); -x_1332 = lean_array_push(x_1331, x_1303); -x_1333 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +lean_ctor_set(x_1319, 0, x_1309); +lean_ctor_set(x_1319, 1, x_1317); +x_1320 = lean_array_push(x_1307, x_1319); +x_1321 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1322 = lean_array_push(x_1320, x_1321); +x_1323 = lean_array_push(x_1322, x_1242); +x_1324 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1325 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1325, 0, x_1324); +lean_ctor_set(x_1325, 1, x_1323); +x_1326 = lean_array_push(x_1307, x_1325); +x_1327 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1327, 0, x_1309); +lean_ctor_set(x_1327, 1, x_1326); +x_1328 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1329 = lean_array_push(x_1328, x_1327); +x_1330 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1331 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1331, 0, x_1330); +lean_ctor_set(x_1331, 1, x_1329); +x_1332 = lean_array_push(x_1316, x_1331); +x_1333 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1334 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1334, 0, x_1333); lean_ctor_set(x_1334, 1, x_1332); -x_1335 = lean_array_push(x_1314, x_1334); -x_1336 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1336, 0, x_1316); -lean_ctor_set(x_1336, 1, x_1335); -x_1337 = lean_array_push(x_1325, x_1336); -x_1338 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1339 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1339, 0, x_1338); -lean_ctor_set(x_1339, 1, x_1337); -x_1340 = 1; -x_1341 = lean_box(x_1340); -if (lean_is_scalar(x_1304)) { - x_1342 = lean_alloc_ctor(0, 2, 0); -} else { - x_1342 = x_1304; -} -lean_ctor_set(x_1342, 0, x_1339); -lean_ctor_set(x_1342, 1, x_1341); -x_1343 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1343, 0, x_1302); -lean_ctor_set(x_1343, 1, x_1342); -if (lean_is_scalar(x_1309)) { - x_1344 = lean_alloc_ctor(0, 2, 0); -} else { - x_1344 = x_1309; -} -lean_ctor_set(x_1344, 0, x_1343); -lean_ctor_set(x_1344, 1, x_1308); -return x_1344; +x_1335 = 1; +x_1336 = lean_box(x_1335); +lean_ctor_set(x_1237, 1, x_1336); +lean_ctor_set(x_1237, 0, x_1334); +x_1337 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1337, 0, x_1236); +lean_ctor_set(x_1337, 1, x_1302); +return x_1337; } } else { -lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; +lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; uint8_t x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; +x_1338 = lean_ctor_get(x_1237, 0); +lean_inc(x_1338); +lean_dec(x_1237); +x_1339 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1238); +x_1340 = lean_ctor_get(x_1339, 1); +lean_inc(x_1340); +lean_dec(x_1339); +x_1341 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1340); +x_1342 = lean_ctor_get(x_1341, 1); +lean_inc(x_1342); +if (lean_is_exclusive(x_1341)) { + lean_ctor_release(x_1341, 0); + lean_ctor_release(x_1341, 1); + x_1343 = x_1341; +} else { + lean_dec_ref(x_1341); + x_1343 = lean_box(0); +} +x_1344 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1345 = lean_array_push(x_1344, x_1229); +x_1346 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1347 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1347, 0, x_1346); +lean_ctor_set(x_1347, 1, x_1345); +x_1348 = l_Array_empty___closed__1; +x_1349 = lean_array_push(x_1348, x_1347); +x_1350 = l_Lean_nullKind___closed__2; +x_1351 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1351, 0, x_1350); +lean_ctor_set(x_1351, 1, x_1349); +x_1352 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1353 = lean_array_push(x_1352, x_1351); +x_1354 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1355 = lean_array_push(x_1353, x_1354); +x_1356 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1357 = lean_array_push(x_1355, x_1356); +lean_inc(x_19); +x_1358 = lean_array_push(x_1348, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_1359 = x_19; +} else { + lean_dec_ref(x_19); + x_1359 = lean_box(0); +} +if (lean_is_scalar(x_1359)) { + x_1360 = lean_alloc_ctor(1, 2, 0); +} else { + x_1360 = x_1359; +} +lean_ctor_set(x_1360, 0, x_1350); +lean_ctor_set(x_1360, 1, x_1358); +x_1361 = lean_array_push(x_1348, x_1360); +x_1362 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1363 = lean_array_push(x_1361, x_1362); +x_1364 = lean_array_push(x_1363, x_1338); +x_1365 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1366 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1366, 0, x_1365); +lean_ctor_set(x_1366, 1, x_1364); +x_1367 = lean_array_push(x_1348, x_1366); +x_1368 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1368, 0, x_1350); +lean_ctor_set(x_1368, 1, x_1367); +x_1369 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1370 = lean_array_push(x_1369, x_1368); +x_1371 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1372 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1372, 0, x_1371); +lean_ctor_set(x_1372, 1, x_1370); +x_1373 = lean_array_push(x_1357, x_1372); +x_1374 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1375 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1375, 0, x_1374); +lean_ctor_set(x_1375, 1, x_1373); +x_1376 = 1; +x_1377 = lean_box(x_1376); +x_1378 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1378, 0, x_1375); +lean_ctor_set(x_1378, 1, x_1377); +lean_ctor_set(x_1236, 1, x_1378); +if (lean_is_scalar(x_1343)) { + x_1379 = lean_alloc_ctor(0, 2, 0); +} else { + x_1379 = x_1343; +} +lean_ctor_set(x_1379, 0, x_1236); +lean_ctor_set(x_1379, 1, x_1342); +return x_1379; +} +} +else +{ +lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; uint8_t x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; +x_1380 = lean_ctor_get(x_1236, 0); +lean_inc(x_1380); +lean_dec(x_1236); +x_1381 = lean_ctor_get(x_1237, 0); +lean_inc(x_1381); +if (lean_is_exclusive(x_1237)) { + lean_ctor_release(x_1237, 0); + lean_ctor_release(x_1237, 1); + x_1382 = x_1237; +} else { + lean_dec_ref(x_1237); + x_1382 = lean_box(0); +} +x_1383 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1238); +x_1384 = lean_ctor_get(x_1383, 1); +lean_inc(x_1384); +lean_dec(x_1383); +x_1385 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1384); +x_1386 = lean_ctor_get(x_1385, 1); +lean_inc(x_1386); +if (lean_is_exclusive(x_1385)) { + lean_ctor_release(x_1385, 0); + lean_ctor_release(x_1385, 1); + x_1387 = x_1385; +} else { + lean_dec_ref(x_1385); + x_1387 = lean_box(0); +} +x_1388 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1389 = lean_array_push(x_1388, x_1229); +x_1390 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1391 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1391, 0, x_1390); +lean_ctor_set(x_1391, 1, x_1389); +x_1392 = l_Array_empty___closed__1; +x_1393 = lean_array_push(x_1392, x_1391); +x_1394 = l_Lean_nullKind___closed__2; +x_1395 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1395, 0, x_1394); +lean_ctor_set(x_1395, 1, x_1393); +x_1396 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1397 = lean_array_push(x_1396, x_1395); +x_1398 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1399 = lean_array_push(x_1397, x_1398); +x_1400 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1401 = lean_array_push(x_1399, x_1400); +lean_inc(x_19); +x_1402 = lean_array_push(x_1392, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_1403 = x_19; +} else { + lean_dec_ref(x_19); + x_1403 = lean_box(0); +} +if (lean_is_scalar(x_1403)) { + x_1404 = lean_alloc_ctor(1, 2, 0); +} else { + x_1404 = x_1403; +} +lean_ctor_set(x_1404, 0, x_1394); +lean_ctor_set(x_1404, 1, x_1402); +x_1405 = lean_array_push(x_1392, x_1404); +x_1406 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1407 = lean_array_push(x_1405, x_1406); +x_1408 = lean_array_push(x_1407, x_1381); +x_1409 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1410 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1410, 0, x_1409); +lean_ctor_set(x_1410, 1, x_1408); +x_1411 = lean_array_push(x_1392, x_1410); +x_1412 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1412, 0, x_1394); +lean_ctor_set(x_1412, 1, x_1411); +x_1413 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1414 = lean_array_push(x_1413, x_1412); +x_1415 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1416 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1416, 0, x_1415); +lean_ctor_set(x_1416, 1, x_1414); +x_1417 = lean_array_push(x_1401, x_1416); +x_1418 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1419 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1419, 0, x_1418); +lean_ctor_set(x_1419, 1, x_1417); +x_1420 = 1; +x_1421 = lean_box(x_1420); +if (lean_is_scalar(x_1382)) { + x_1422 = lean_alloc_ctor(0, 2, 0); +} else { + x_1422 = x_1382; +} +lean_ctor_set(x_1422, 0, x_1419); +lean_ctor_set(x_1422, 1, x_1421); +x_1423 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1423, 0, x_1380); +lean_ctor_set(x_1423, 1, x_1422); +if (lean_is_scalar(x_1387)) { + x_1424 = lean_alloc_ctor(0, 2, 0); +} else { + x_1424 = x_1387; +} +lean_ctor_set(x_1424, 0, x_1423); +lean_ctor_set(x_1424, 1, x_1386); +return x_1424; +} +} +else +{ +lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_dec(x_19); -x_1345 = lean_ctor_get(x_1157, 1); -lean_inc(x_1345); -lean_dec(x_1157); -x_1346 = lean_ctor_get(x_1158, 0); -lean_inc(x_1346); -lean_dec(x_1158); -x_1347 = lean_nat_add(x_3, x_956); +x_1425 = lean_ctor_get(x_1225, 1); +lean_inc(x_1425); +lean_dec(x_1225); +x_1426 = lean_ctor_get(x_1226, 0); +lean_inc(x_1426); +lean_dec(x_1226); +x_1427 = lean_nat_add(x_3, x_1012); lean_dec(x_3); -x_1348 = x_1346; -x_1349 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(x_1156, x_959, x_1348); -x_1350 = x_1349; -x_1351 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_1350, x_1350, x_959, x_4); -lean_dec(x_1350); -x_3 = x_1347; -x_4 = x_1351; -x_11 = x_1345; +x_1428 = x_1426; +x_1429 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(x_1224, x_1015, x_1428); +x_1430 = x_1429; +x_1431 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_1430, x_1430, x_1015, x_4); +lean_dec(x_1430); +x_3 = x_1427; +x_4 = x_1431; +x_11 = x_1425; goto _start; } } } else { -lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; uint8_t x_1364; -lean_dec(x_961); -lean_dec(x_960); -x_1353 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1354 = lean_ctor_get(x_1353, 0); -lean_inc(x_1354); -x_1355 = lean_ctor_get(x_1353, 1); -lean_inc(x_1355); -lean_dec(x_1353); -x_1356 = lean_nat_add(x_3, x_956); +lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; uint8_t x_1444; +lean_dec(x_1017); +lean_dec(x_1016); +x_1433 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_1434 = lean_ctor_get(x_1433, 0); +lean_inc(x_1434); +x_1435 = lean_ctor_get(x_1433, 1); +lean_inc(x_1435); +lean_dec(x_1433); +x_1436 = lean_nat_add(x_3, x_1012); lean_dec(x_3); -x_1357 = l_Lean_mkHole(x_19); -lean_inc(x_1354); -x_1358 = l_Lean_Elab_Term_mkExplicitBinder(x_1354, x_1357); -x_1359 = lean_array_push(x_4, x_1358); -x_1360 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1356, x_1359, x_5, x_6, x_7, x_8, x_9, x_10, x_1355); -x_1361 = lean_ctor_get(x_1360, 0); -lean_inc(x_1361); -x_1362 = lean_ctor_get(x_1361, 1); -lean_inc(x_1362); -x_1363 = lean_ctor_get(x_1360, 1); -lean_inc(x_1363); -lean_dec(x_1360); -x_1364 = !lean_is_exclusive(x_1361); -if (x_1364 == 0) +x_1437 = l_Lean_mkHole(x_19); +lean_inc(x_1434); +x_1438 = l_Lean_Elab_Term_mkExplicitBinder(x_1434, x_1437); +x_1439 = lean_array_push(x_4, x_1438); +x_1440 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1436, x_1439, x_5, x_6, x_7, x_8, x_9, x_10, x_1435); +x_1441 = lean_ctor_get(x_1440, 0); +lean_inc(x_1441); +x_1442 = lean_ctor_get(x_1441, 1); +lean_inc(x_1442); +x_1443 = lean_ctor_get(x_1440, 1); +lean_inc(x_1443); +lean_dec(x_1440); +x_1444 = !lean_is_exclusive(x_1441); +if (x_1444 == 0) { -lean_object* x_1365; uint8_t x_1366; -x_1365 = lean_ctor_get(x_1361, 1); -lean_dec(x_1365); -x_1366 = !lean_is_exclusive(x_1362); -if (x_1366 == 0) +lean_object* x_1445; uint8_t x_1446; +x_1445 = lean_ctor_get(x_1441, 1); +lean_dec(x_1445); +x_1446 = !lean_is_exclusive(x_1442); +if (x_1446 == 0) { -lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; uint8_t x_1372; -x_1367 = lean_ctor_get(x_1362, 0); -x_1368 = lean_ctor_get(x_1362, 1); -lean_dec(x_1368); -x_1369 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1363); -x_1370 = lean_ctor_get(x_1369, 1); -lean_inc(x_1370); -lean_dec(x_1369); -x_1371 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1370); -x_1372 = !lean_is_exclusive(x_1371); -if (x_1372 == 0) +lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; uint8_t x_1452; +x_1447 = lean_ctor_get(x_1442, 0); +x_1448 = lean_ctor_get(x_1442, 1); +lean_dec(x_1448); +x_1449 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1443); +x_1450 = lean_ctor_get(x_1449, 1); +lean_inc(x_1450); +lean_dec(x_1449); +x_1451 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1450); +x_1452 = !lean_is_exclusive(x_1451); +if (x_1452 == 0) { -lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; uint8_t x_1391; -x_1373 = lean_ctor_get(x_1371, 0); -lean_dec(x_1373); -x_1374 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1375 = lean_array_push(x_1374, x_1354); -x_1376 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1377 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1377, 0, x_1376); -lean_ctor_set(x_1377, 1, x_1375); -x_1378 = l_Array_empty___closed__1; -x_1379 = lean_array_push(x_1378, x_1377); -x_1380 = l_Lean_nullKind___closed__2; -x_1381 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1381, 0, x_1380); -lean_ctor_set(x_1381, 1, x_1379); -x_1382 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1383 = lean_array_push(x_1382, x_1381); -x_1384 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1385 = lean_array_push(x_1383, x_1384); -x_1386 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1387 = lean_array_push(x_1385, x_1386); -x_1388 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1389 = lean_array_push(x_1387, x_1388); +lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; uint8_t x_1469; +x_1453 = lean_ctor_get(x_1451, 0); +lean_dec(x_1453); +x_1454 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1455 = lean_array_push(x_1454, x_1434); +x_1456 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1457 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1457, 0, x_1456); +lean_ctor_set(x_1457, 1, x_1455); +x_1458 = l_Array_empty___closed__1; +x_1459 = lean_array_push(x_1458, x_1457); +x_1460 = l_Lean_nullKind___closed__2; +x_1461 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1461, 0, x_1460); +lean_ctor_set(x_1461, 1, x_1459); +x_1462 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1463 = lean_array_push(x_1462, x_1461); +x_1464 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1465 = lean_array_push(x_1463, x_1464); +x_1466 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1467 = lean_array_push(x_1465, x_1466); lean_inc(x_19); -x_1390 = lean_array_push(x_1378, x_19); -x_1391 = !lean_is_exclusive(x_19); -if (x_1391 == 0) +x_1468 = lean_array_push(x_1458, x_19); +x_1469 = !lean_is_exclusive(x_19); +if (x_1469 == 0) { -lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; uint8_t x_1405; lean_object* x_1406; -x_1392 = lean_ctor_get(x_19, 1); -lean_dec(x_1392); -x_1393 = lean_ctor_get(x_19, 0); -lean_dec(x_1393); -lean_ctor_set(x_19, 1, x_1390); -lean_ctor_set(x_19, 0, x_1380); -x_1394 = lean_array_push(x_1378, x_19); -x_1395 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1396 = lean_array_push(x_1394, x_1395); -x_1397 = lean_array_push(x_1396, x_1367); -x_1398 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1399 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1399, 0, x_1398); -lean_ctor_set(x_1399, 1, x_1397); -x_1400 = lean_array_push(x_1378, x_1399); -x_1401 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1401, 0, x_1380); -lean_ctor_set(x_1401, 1, x_1400); -x_1402 = lean_array_push(x_1389, x_1401); -x_1403 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1404 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1404, 0, x_1403); -lean_ctor_set(x_1404, 1, x_1402); -x_1405 = 1; -x_1406 = lean_box(x_1405); -lean_ctor_set(x_1362, 1, x_1406); -lean_ctor_set(x_1362, 0, x_1404); -lean_ctor_set(x_1371, 0, x_1361); -return x_1371; -} -else -{ -lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; uint8_t x_1419; lean_object* x_1420; -lean_dec(x_19); -x_1407 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1407, 0, x_1380); -lean_ctor_set(x_1407, 1, x_1390); -x_1408 = lean_array_push(x_1378, x_1407); -x_1409 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1410 = lean_array_push(x_1408, x_1409); -x_1411 = lean_array_push(x_1410, x_1367); -x_1412 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1413 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1413, 0, x_1412); -lean_ctor_set(x_1413, 1, x_1411); -x_1414 = lean_array_push(x_1378, x_1413); -x_1415 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1415, 0, x_1380); -lean_ctor_set(x_1415, 1, x_1414); -x_1416 = lean_array_push(x_1389, x_1415); -x_1417 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1418 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1418, 0, x_1417); -lean_ctor_set(x_1418, 1, x_1416); -x_1419 = 1; -x_1420 = lean_box(x_1419); -lean_ctor_set(x_1362, 1, x_1420); -lean_ctor_set(x_1362, 0, x_1418); -lean_ctor_set(x_1371, 0, x_1361); -return x_1371; -} -} -else -{ -lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; uint8_t x_1452; lean_object* x_1453; lean_object* x_1454; -x_1421 = lean_ctor_get(x_1371, 1); -lean_inc(x_1421); -lean_dec(x_1371); -x_1422 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1423 = lean_array_push(x_1422, x_1354); -x_1424 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1425 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1425, 0, x_1424); -lean_ctor_set(x_1425, 1, x_1423); -x_1426 = l_Array_empty___closed__1; -x_1427 = lean_array_push(x_1426, x_1425); -x_1428 = l_Lean_nullKind___closed__2; -x_1429 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1429, 0, x_1428); -lean_ctor_set(x_1429, 1, x_1427); -x_1430 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1431 = lean_array_push(x_1430, x_1429); -x_1432 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1433 = lean_array_push(x_1431, x_1432); -x_1434 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1435 = lean_array_push(x_1433, x_1434); -x_1436 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1437 = lean_array_push(x_1435, x_1436); -lean_inc(x_19); -x_1438 = lean_array_push(x_1426, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_1439 = x_19; -} else { - lean_dec_ref(x_19); - x_1439 = lean_box(0); -} -if (lean_is_scalar(x_1439)) { - x_1440 = lean_alloc_ctor(1, 2, 0); -} else { - x_1440 = x_1439; -} -lean_ctor_set(x_1440, 0, x_1428); -lean_ctor_set(x_1440, 1, x_1438); -x_1441 = lean_array_push(x_1426, x_1440); -x_1442 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1443 = lean_array_push(x_1441, x_1442); -x_1444 = lean_array_push(x_1443, x_1367); -x_1445 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1446 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1446, 0, x_1445); -lean_ctor_set(x_1446, 1, x_1444); -x_1447 = lean_array_push(x_1426, x_1446); -x_1448 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1448, 0, x_1428); -lean_ctor_set(x_1448, 1, x_1447); -x_1449 = lean_array_push(x_1437, x_1448); -x_1450 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1451 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1451, 0, x_1450); -lean_ctor_set(x_1451, 1, x_1449); -x_1452 = 1; -x_1453 = lean_box(x_1452); -lean_ctor_set(x_1362, 1, x_1453); -lean_ctor_set(x_1362, 0, x_1451); -x_1454 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1454, 0, x_1361); -lean_ctor_set(x_1454, 1, x_1421); -return x_1454; -} -} -else -{ -lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; uint8_t x_1491; lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; -x_1455 = lean_ctor_get(x_1362, 0); -lean_inc(x_1455); -lean_dec(x_1362); -x_1456 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1363); -x_1457 = lean_ctor_get(x_1456, 1); -lean_inc(x_1457); -lean_dec(x_1456); -x_1458 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1457); -x_1459 = lean_ctor_get(x_1458, 1); -lean_inc(x_1459); -if (lean_is_exclusive(x_1458)) { - lean_ctor_release(x_1458, 0); - lean_ctor_release(x_1458, 1); - x_1460 = x_1458; -} else { - lean_dec_ref(x_1458); - x_1460 = lean_box(0); -} -x_1461 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1462 = lean_array_push(x_1461, x_1354); -x_1463 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1464 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1464, 0, x_1463); -lean_ctor_set(x_1464, 1, x_1462); -x_1465 = l_Array_empty___closed__1; -x_1466 = lean_array_push(x_1465, x_1464); -x_1467 = l_Lean_nullKind___closed__2; -x_1468 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1468, 0, x_1467); -lean_ctor_set(x_1468, 1, x_1466); -x_1469 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1470 = lean_array_push(x_1469, x_1468); -x_1471 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1472 = lean_array_push(x_1470, x_1471); -x_1473 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; uint8_t x_1487; lean_object* x_1488; +x_1470 = lean_ctor_get(x_19, 1); +lean_dec(x_1470); +x_1471 = lean_ctor_get(x_19, 0); +lean_dec(x_1471); +lean_ctor_set(x_19, 1, x_1468); +lean_ctor_set(x_19, 0, x_1460); +x_1472 = lean_array_push(x_1458, x_19); +x_1473 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; x_1474 = lean_array_push(x_1472, x_1473); -x_1475 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1476 = lean_array_push(x_1474, x_1475); -lean_inc(x_19); -x_1477 = lean_array_push(x_1465, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_1478 = x_19; -} else { - lean_dec_ref(x_19); - x_1478 = lean_box(0); +x_1475 = lean_array_push(x_1474, x_1447); +x_1476 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1477 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1477, 0, x_1476); +lean_ctor_set(x_1477, 1, x_1475); +x_1478 = lean_array_push(x_1458, x_1477); +x_1479 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1479, 0, x_1460); +lean_ctor_set(x_1479, 1, x_1478); +x_1480 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1481 = lean_array_push(x_1480, x_1479); +x_1482 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1483 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1483, 0, x_1482); +lean_ctor_set(x_1483, 1, x_1481); +x_1484 = lean_array_push(x_1467, x_1483); +x_1485 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1486 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1486, 0, x_1485); +lean_ctor_set(x_1486, 1, x_1484); +x_1487 = 1; +x_1488 = lean_box(x_1487); +lean_ctor_set(x_1442, 1, x_1488); +lean_ctor_set(x_1442, 0, x_1486); +lean_ctor_set(x_1451, 0, x_1441); +return x_1451; } -if (lean_is_scalar(x_1478)) { - x_1479 = lean_alloc_ctor(1, 2, 0); -} else { - x_1479 = x_1478; -} -lean_ctor_set(x_1479, 0, x_1467); -lean_ctor_set(x_1479, 1, x_1477); -x_1480 = lean_array_push(x_1465, x_1479); -x_1481 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1482 = lean_array_push(x_1480, x_1481); -x_1483 = lean_array_push(x_1482, x_1455); -x_1484 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1485 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1485, 0, x_1484); -lean_ctor_set(x_1485, 1, x_1483); -x_1486 = lean_array_push(x_1465, x_1485); -x_1487 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1487, 0, x_1467); -lean_ctor_set(x_1487, 1, x_1486); -x_1488 = lean_array_push(x_1476, x_1487); -x_1489 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1490 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1490, 0, x_1489); -lean_ctor_set(x_1490, 1, x_1488); -x_1491 = 1; -x_1492 = lean_box(x_1491); -x_1493 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1493, 0, x_1490); -lean_ctor_set(x_1493, 1, x_1492); -lean_ctor_set(x_1361, 1, x_1493); -if (lean_is_scalar(x_1460)) { - x_1494 = lean_alloc_ctor(0, 2, 0); -} else { - x_1494 = x_1460; -} -lean_ctor_set(x_1494, 0, x_1361); -lean_ctor_set(x_1494, 1, x_1459); -return x_1494; +else +{ +lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; uint8_t x_1505; lean_object* x_1506; +lean_dec(x_19); +x_1489 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1489, 0, x_1460); +lean_ctor_set(x_1489, 1, x_1468); +x_1490 = lean_array_push(x_1458, x_1489); +x_1491 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1492 = lean_array_push(x_1490, x_1491); +x_1493 = lean_array_push(x_1492, x_1447); +x_1494 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1495 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1495, 0, x_1494); +lean_ctor_set(x_1495, 1, x_1493); +x_1496 = lean_array_push(x_1458, x_1495); +x_1497 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1497, 0, x_1460); +lean_ctor_set(x_1497, 1, x_1496); +x_1498 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1499 = lean_array_push(x_1498, x_1497); +x_1500 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1501 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1501, 0, x_1500); +lean_ctor_set(x_1501, 1, x_1499); +x_1502 = lean_array_push(x_1467, x_1501); +x_1503 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1504 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1504, 0, x_1503); +lean_ctor_set(x_1504, 1, x_1502); +x_1505 = 1; +x_1506 = lean_box(x_1505); +lean_ctor_set(x_1442, 1, x_1506); +lean_ctor_set(x_1442, 0, x_1504); +lean_ctor_set(x_1451, 0, x_1441); +return x_1451; } } else { -lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; uint8_t x_1533; lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; -x_1495 = lean_ctor_get(x_1361, 0); -lean_inc(x_1495); -lean_dec(x_1361); -x_1496 = lean_ctor_get(x_1362, 0); -lean_inc(x_1496); -if (lean_is_exclusive(x_1362)) { - lean_ctor_release(x_1362, 0); - lean_ctor_release(x_1362, 1); - x_1497 = x_1362; -} else { - lean_dec_ref(x_1362); - x_1497 = lean_box(0); -} -x_1498 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1363); -x_1499 = lean_ctor_get(x_1498, 1); -lean_inc(x_1499); -lean_dec(x_1498); -x_1500 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1499); -x_1501 = lean_ctor_get(x_1500, 1); -lean_inc(x_1501); -if (lean_is_exclusive(x_1500)) { - lean_ctor_release(x_1500, 0); - lean_ctor_release(x_1500, 1); - x_1502 = x_1500; -} else { - lean_dec_ref(x_1500); - x_1502 = lean_box(0); -} -x_1503 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1504 = lean_array_push(x_1503, x_1354); -x_1505 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1506 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1506, 0, x_1505); -lean_ctor_set(x_1506, 1, x_1504); -x_1507 = l_Array_empty___closed__1; -x_1508 = lean_array_push(x_1507, x_1506); -x_1509 = l_Lean_nullKind___closed__2; -x_1510 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1510, 0, x_1509); -lean_ctor_set(x_1510, 1, x_1508); -x_1511 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1512 = lean_array_push(x_1511, x_1510); -x_1513 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1514 = lean_array_push(x_1512, x_1513); -x_1515 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1516 = lean_array_push(x_1514, x_1515); -x_1517 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1518 = lean_array_push(x_1516, x_1517); +lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; lean_object* x_1538; lean_object* x_1539; uint8_t x_1540; lean_object* x_1541; lean_object* x_1542; +x_1507 = lean_ctor_get(x_1451, 1); +lean_inc(x_1507); +lean_dec(x_1451); +x_1508 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1509 = lean_array_push(x_1508, x_1434); +x_1510 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1511 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1511, 0, x_1510); +lean_ctor_set(x_1511, 1, x_1509); +x_1512 = l_Array_empty___closed__1; +x_1513 = lean_array_push(x_1512, x_1511); +x_1514 = l_Lean_nullKind___closed__2; +x_1515 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1515, 0, x_1514); +lean_ctor_set(x_1515, 1, x_1513); +x_1516 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1517 = lean_array_push(x_1516, x_1515); +x_1518 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1519 = lean_array_push(x_1517, x_1518); +x_1520 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1521 = lean_array_push(x_1519, x_1520); lean_inc(x_19); -x_1519 = lean_array_push(x_1507, x_19); +x_1522 = lean_array_push(x_1512, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1520 = x_19; + x_1523 = x_19; } else { lean_dec_ref(x_19); - x_1520 = lean_box(0); + x_1523 = lean_box(0); } -if (lean_is_scalar(x_1520)) { - x_1521 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1523)) { + x_1524 = lean_alloc_ctor(1, 2, 0); } else { - x_1521 = x_1520; + x_1524 = x_1523; } -lean_ctor_set(x_1521, 0, x_1509); -lean_ctor_set(x_1521, 1, x_1519); -x_1522 = lean_array_push(x_1507, x_1521); -x_1523 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1524 = lean_array_push(x_1522, x_1523); -x_1525 = lean_array_push(x_1524, x_1496); -x_1526 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1527 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1527, 0, x_1526); -lean_ctor_set(x_1527, 1, x_1525); -x_1528 = lean_array_push(x_1507, x_1527); -x_1529 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1529, 0, x_1509); -lean_ctor_set(x_1529, 1, x_1528); -x_1530 = lean_array_push(x_1518, x_1529); -x_1531 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +lean_ctor_set(x_1524, 0, x_1514); +lean_ctor_set(x_1524, 1, x_1522); +x_1525 = lean_array_push(x_1512, x_1524); +x_1526 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1527 = lean_array_push(x_1525, x_1526); +x_1528 = lean_array_push(x_1527, x_1447); +x_1529 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1530 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1530, 0, x_1529); +lean_ctor_set(x_1530, 1, x_1528); +x_1531 = lean_array_push(x_1512, x_1530); x_1532 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1532, 0, x_1531); -lean_ctor_set(x_1532, 1, x_1530); -x_1533 = 1; -x_1534 = lean_box(x_1533); -if (lean_is_scalar(x_1497)) { - x_1535 = lean_alloc_ctor(0, 2, 0); -} else { - x_1535 = x_1497; -} -lean_ctor_set(x_1535, 0, x_1532); -lean_ctor_set(x_1535, 1, x_1534); -x_1536 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1536, 0, x_1495); -lean_ctor_set(x_1536, 1, x_1535); -if (lean_is_scalar(x_1502)) { - x_1537 = lean_alloc_ctor(0, 2, 0); -} else { - x_1537 = x_1502; -} -lean_ctor_set(x_1537, 0, x_1536); -lean_ctor_set(x_1537, 1, x_1501); -return x_1537; -} +lean_ctor_set(x_1532, 0, x_1514); +lean_ctor_set(x_1532, 1, x_1531); +x_1533 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1534 = lean_array_push(x_1533, x_1532); +x_1535 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1536 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1536, 0, x_1535); +lean_ctor_set(x_1536, 1, x_1534); +x_1537 = lean_array_push(x_1521, x_1536); +x_1538 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1539 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1539, 0, x_1538); +lean_ctor_set(x_1539, 1, x_1537); +x_1540 = 1; +x_1541 = lean_box(x_1540); +lean_ctor_set(x_1442, 1, x_1541); +lean_ctor_set(x_1442, 0, x_1539); +x_1542 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1542, 0, x_1441); +lean_ctor_set(x_1542, 1, x_1507); +return x_1542; } } else { -lean_object* x_1538; lean_object* x_1539; lean_object* x_1540; lean_object* x_1541; lean_object* x_1542; lean_object* x_1543; lean_object* x_1544; lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; uint8_t x_1549; -lean_dec(x_957); -x_1538 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1539 = lean_ctor_get(x_1538, 0); -lean_inc(x_1539); -x_1540 = lean_ctor_get(x_1538, 1); -lean_inc(x_1540); -lean_dec(x_1538); -x_1541 = lean_nat_add(x_3, x_956); -lean_dec(x_3); -x_1542 = l_Lean_mkHole(x_19); -lean_inc(x_1539); -x_1543 = l_Lean_Elab_Term_mkExplicitBinder(x_1539, x_1542); -x_1544 = lean_array_push(x_4, x_1543); -x_1545 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1541, x_1544, x_5, x_6, x_7, x_8, x_9, x_10, x_1540); -x_1546 = lean_ctor_get(x_1545, 0); -lean_inc(x_1546); +lean_object* x_1543; lean_object* x_1544; lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; lean_object* x_1573; lean_object* x_1574; lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; uint8_t x_1581; lean_object* x_1582; lean_object* x_1583; lean_object* x_1584; +x_1543 = lean_ctor_get(x_1442, 0); +lean_inc(x_1543); +lean_dec(x_1442); +x_1544 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1443); +x_1545 = lean_ctor_get(x_1544, 1); +lean_inc(x_1545); +lean_dec(x_1544); +x_1546 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1545); x_1547 = lean_ctor_get(x_1546, 1); lean_inc(x_1547); -x_1548 = lean_ctor_get(x_1545, 1); -lean_inc(x_1548); -lean_dec(x_1545); -x_1549 = !lean_is_exclusive(x_1546); -if (x_1549 == 0) -{ -lean_object* x_1550; uint8_t x_1551; -x_1550 = lean_ctor_get(x_1546, 1); -lean_dec(x_1550); -x_1551 = !lean_is_exclusive(x_1547); -if (x_1551 == 0) -{ -lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; uint8_t x_1557; -x_1552 = lean_ctor_get(x_1547, 0); -x_1553 = lean_ctor_get(x_1547, 1); -lean_dec(x_1553); -x_1554 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1548); -x_1555 = lean_ctor_get(x_1554, 1); -lean_inc(x_1555); -lean_dec(x_1554); -x_1556 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1555); -x_1557 = !lean_is_exclusive(x_1556); -if (x_1557 == 0) -{ -lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; lean_object* x_1573; lean_object* x_1574; lean_object* x_1575; uint8_t x_1576; -x_1558 = lean_ctor_get(x_1556, 0); -lean_dec(x_1558); -x_1559 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1560 = lean_array_push(x_1559, x_1539); -x_1561 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1562 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1562, 0, x_1561); -lean_ctor_set(x_1562, 1, x_1560); -x_1563 = l_Array_empty___closed__1; -x_1564 = lean_array_push(x_1563, x_1562); -x_1565 = l_Lean_nullKind___closed__2; -x_1566 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1566, 0, x_1565); -lean_ctor_set(x_1566, 1, x_1564); -x_1567 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1568 = lean_array_push(x_1567, x_1566); -x_1569 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1570 = lean_array_push(x_1568, x_1569); -x_1571 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1572 = lean_array_push(x_1570, x_1571); -x_1573 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1574 = lean_array_push(x_1572, x_1573); +if (lean_is_exclusive(x_1546)) { + lean_ctor_release(x_1546, 0); + lean_ctor_release(x_1546, 1); + x_1548 = x_1546; +} else { + lean_dec_ref(x_1546); + x_1548 = lean_box(0); +} +x_1549 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1550 = lean_array_push(x_1549, x_1434); +x_1551 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1552 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1552, 0, x_1551); +lean_ctor_set(x_1552, 1, x_1550); +x_1553 = l_Array_empty___closed__1; +x_1554 = lean_array_push(x_1553, x_1552); +x_1555 = l_Lean_nullKind___closed__2; +x_1556 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1556, 0, x_1555); +lean_ctor_set(x_1556, 1, x_1554); +x_1557 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1558 = lean_array_push(x_1557, x_1556); +x_1559 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1560 = lean_array_push(x_1558, x_1559); +x_1561 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1562 = lean_array_push(x_1560, x_1561); lean_inc(x_19); -x_1575 = lean_array_push(x_1563, x_19); -x_1576 = !lean_is_exclusive(x_19); -if (x_1576 == 0) -{ -lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; lean_object* x_1581; lean_object* x_1582; lean_object* x_1583; lean_object* x_1584; lean_object* x_1585; lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; uint8_t x_1590; lean_object* x_1591; -x_1577 = lean_ctor_get(x_19, 1); -lean_dec(x_1577); -x_1578 = lean_ctor_get(x_19, 0); -lean_dec(x_1578); -lean_ctor_set(x_19, 1, x_1575); -lean_ctor_set(x_19, 0, x_1565); -x_1579 = lean_array_push(x_1563, x_19); -x_1580 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1581 = lean_array_push(x_1579, x_1580); -x_1582 = lean_array_push(x_1581, x_1552); -x_1583 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1584 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1584, 0, x_1583); -lean_ctor_set(x_1584, 1, x_1582); -x_1585 = lean_array_push(x_1563, x_1584); -x_1586 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1586, 0, x_1565); -lean_ctor_set(x_1586, 1, x_1585); -x_1587 = lean_array_push(x_1574, x_1586); -x_1588 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1589 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1589, 0, x_1588); -lean_ctor_set(x_1589, 1, x_1587); -x_1590 = 1; -x_1591 = lean_box(x_1590); -lean_ctor_set(x_1547, 1, x_1591); -lean_ctor_set(x_1547, 0, x_1589); -lean_ctor_set(x_1556, 0, x_1546); -return x_1556; +x_1563 = lean_array_push(x_1553, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_1564 = x_19; +} else { + lean_dec_ref(x_19); + x_1564 = lean_box(0); +} +if (lean_is_scalar(x_1564)) { + x_1565 = lean_alloc_ctor(1, 2, 0); +} else { + x_1565 = x_1564; +} +lean_ctor_set(x_1565, 0, x_1555); +lean_ctor_set(x_1565, 1, x_1563); +x_1566 = lean_array_push(x_1553, x_1565); +x_1567 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1568 = lean_array_push(x_1566, x_1567); +x_1569 = lean_array_push(x_1568, x_1543); +x_1570 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1571 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1571, 0, x_1570); +lean_ctor_set(x_1571, 1, x_1569); +x_1572 = lean_array_push(x_1553, x_1571); +x_1573 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1573, 0, x_1555); +lean_ctor_set(x_1573, 1, x_1572); +x_1574 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1575 = lean_array_push(x_1574, x_1573); +x_1576 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1577 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1577, 0, x_1576); +lean_ctor_set(x_1577, 1, x_1575); +x_1578 = lean_array_push(x_1562, x_1577); +x_1579 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1580 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1580, 0, x_1579); +lean_ctor_set(x_1580, 1, x_1578); +x_1581 = 1; +x_1582 = lean_box(x_1581); +x_1583 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1583, 0, x_1580); +lean_ctor_set(x_1583, 1, x_1582); +lean_ctor_set(x_1441, 1, x_1583); +if (lean_is_scalar(x_1548)) { + x_1584 = lean_alloc_ctor(0, 2, 0); +} else { + x_1584 = x_1548; +} +lean_ctor_set(x_1584, 0, x_1441); +lean_ctor_set(x_1584, 1, x_1547); +return x_1584; +} } else { -lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; lean_object* x_1600; lean_object* x_1601; lean_object* x_1602; lean_object* x_1603; uint8_t x_1604; lean_object* x_1605; -lean_dec(x_19); -x_1592 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1592, 0, x_1565); -lean_ctor_set(x_1592, 1, x_1575); -x_1593 = lean_array_push(x_1563, x_1592); -x_1594 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1595 = lean_array_push(x_1593, x_1594); -x_1596 = lean_array_push(x_1595, x_1552); -x_1597 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1598 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1598, 0, x_1597); -lean_ctor_set(x_1598, 1, x_1596); -x_1599 = lean_array_push(x_1563, x_1598); +lean_object* x_1585; lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; lean_object* x_1590; lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; lean_object* x_1600; lean_object* x_1601; lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; lean_object* x_1610; lean_object* x_1611; lean_object* x_1612; lean_object* x_1613; lean_object* x_1614; lean_object* x_1615; lean_object* x_1616; lean_object* x_1617; lean_object* x_1618; lean_object* x_1619; lean_object* x_1620; lean_object* x_1621; lean_object* x_1622; lean_object* x_1623; lean_object* x_1624; uint8_t x_1625; lean_object* x_1626; lean_object* x_1627; lean_object* x_1628; lean_object* x_1629; +x_1585 = lean_ctor_get(x_1441, 0); +lean_inc(x_1585); +lean_dec(x_1441); +x_1586 = lean_ctor_get(x_1442, 0); +lean_inc(x_1586); +if (lean_is_exclusive(x_1442)) { + lean_ctor_release(x_1442, 0); + lean_ctor_release(x_1442, 1); + x_1587 = x_1442; +} else { + lean_dec_ref(x_1442); + x_1587 = lean_box(0); +} +x_1588 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1443); +x_1589 = lean_ctor_get(x_1588, 1); +lean_inc(x_1589); +lean_dec(x_1588); +x_1590 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1589); +x_1591 = lean_ctor_get(x_1590, 1); +lean_inc(x_1591); +if (lean_is_exclusive(x_1590)) { + lean_ctor_release(x_1590, 0); + lean_ctor_release(x_1590, 1); + x_1592 = x_1590; +} else { + lean_dec_ref(x_1590); + x_1592 = lean_box(0); +} +x_1593 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1594 = lean_array_push(x_1593, x_1434); +x_1595 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1596 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1596, 0, x_1595); +lean_ctor_set(x_1596, 1, x_1594); +x_1597 = l_Array_empty___closed__1; +x_1598 = lean_array_push(x_1597, x_1596); +x_1599 = l_Lean_nullKind___closed__2; x_1600 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1600, 0, x_1565); -lean_ctor_set(x_1600, 1, x_1599); -x_1601 = lean_array_push(x_1574, x_1600); -x_1602 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1603 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1603, 0, x_1602); -lean_ctor_set(x_1603, 1, x_1601); -x_1604 = 1; -x_1605 = lean_box(x_1604); -lean_ctor_set(x_1547, 1, x_1605); -lean_ctor_set(x_1547, 0, x_1603); -lean_ctor_set(x_1556, 0, x_1546); -return x_1556; -} -} -else -{ -lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; lean_object* x_1610; lean_object* x_1611; lean_object* x_1612; lean_object* x_1613; lean_object* x_1614; lean_object* x_1615; lean_object* x_1616; lean_object* x_1617; lean_object* x_1618; lean_object* x_1619; lean_object* x_1620; lean_object* x_1621; lean_object* x_1622; lean_object* x_1623; lean_object* x_1624; lean_object* x_1625; lean_object* x_1626; lean_object* x_1627; lean_object* x_1628; lean_object* x_1629; lean_object* x_1630; lean_object* x_1631; lean_object* x_1632; lean_object* x_1633; lean_object* x_1634; lean_object* x_1635; lean_object* x_1636; uint8_t x_1637; lean_object* x_1638; lean_object* x_1639; -x_1606 = lean_ctor_get(x_1556, 1); -lean_inc(x_1606); -lean_dec(x_1556); -x_1607 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1608 = lean_array_push(x_1607, x_1539); -x_1609 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1610 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1610, 0, x_1609); -lean_ctor_set(x_1610, 1, x_1608); -x_1611 = l_Array_empty___closed__1; -x_1612 = lean_array_push(x_1611, x_1610); -x_1613 = l_Lean_nullKind___closed__2; -x_1614 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1614, 0, x_1613); -lean_ctor_set(x_1614, 1, x_1612); -x_1615 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1616 = lean_array_push(x_1615, x_1614); -x_1617 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1618 = lean_array_push(x_1616, x_1617); -x_1619 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1620 = lean_array_push(x_1618, x_1619); -x_1621 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1622 = lean_array_push(x_1620, x_1621); +lean_ctor_set(x_1600, 0, x_1599); +lean_ctor_set(x_1600, 1, x_1598); +x_1601 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1602 = lean_array_push(x_1601, x_1600); +x_1603 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1604 = lean_array_push(x_1602, x_1603); +x_1605 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1606 = lean_array_push(x_1604, x_1605); lean_inc(x_19); -x_1623 = lean_array_push(x_1611, x_19); +x_1607 = lean_array_push(x_1597, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1624 = x_19; + x_1608 = x_19; } else { lean_dec_ref(x_19); - x_1624 = lean_box(0); + x_1608 = lean_box(0); } -if (lean_is_scalar(x_1624)) { - x_1625 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1608)) { + x_1609 = lean_alloc_ctor(1, 2, 0); } else { - x_1625 = x_1624; + x_1609 = x_1608; +} +lean_ctor_set(x_1609, 0, x_1599); +lean_ctor_set(x_1609, 1, x_1607); +x_1610 = lean_array_push(x_1597, x_1609); +x_1611 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1612 = lean_array_push(x_1610, x_1611); +x_1613 = lean_array_push(x_1612, x_1586); +x_1614 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1615 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1615, 0, x_1614); +lean_ctor_set(x_1615, 1, x_1613); +x_1616 = lean_array_push(x_1597, x_1615); +x_1617 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1617, 0, x_1599); +lean_ctor_set(x_1617, 1, x_1616); +x_1618 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1619 = lean_array_push(x_1618, x_1617); +x_1620 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1621 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1621, 0, x_1620); +lean_ctor_set(x_1621, 1, x_1619); +x_1622 = lean_array_push(x_1606, x_1621); +x_1623 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1624 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1624, 0, x_1623); +lean_ctor_set(x_1624, 1, x_1622); +x_1625 = 1; +x_1626 = lean_box(x_1625); +if (lean_is_scalar(x_1587)) { + x_1627 = lean_alloc_ctor(0, 2, 0); +} else { + x_1627 = x_1587; +} +lean_ctor_set(x_1627, 0, x_1624); +lean_ctor_set(x_1627, 1, x_1626); +x_1628 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1628, 0, x_1585); +lean_ctor_set(x_1628, 1, x_1627); +if (lean_is_scalar(x_1592)) { + x_1629 = lean_alloc_ctor(0, 2, 0); +} else { + x_1629 = x_1592; +} +lean_ctor_set(x_1629, 0, x_1628); +lean_ctor_set(x_1629, 1, x_1591); +return x_1629; } -lean_ctor_set(x_1625, 0, x_1613); -lean_ctor_set(x_1625, 1, x_1623); -x_1626 = lean_array_push(x_1611, x_1625); -x_1627 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1628 = lean_array_push(x_1626, x_1627); -x_1629 = lean_array_push(x_1628, x_1552); -x_1630 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1631 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1631, 0, x_1630); -lean_ctor_set(x_1631, 1, x_1629); -x_1632 = lean_array_push(x_1611, x_1631); -x_1633 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1633, 0, x_1613); -lean_ctor_set(x_1633, 1, x_1632); -x_1634 = lean_array_push(x_1622, x_1633); -x_1635 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1636 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1636, 0, x_1635); -lean_ctor_set(x_1636, 1, x_1634); -x_1637 = 1; -x_1638 = lean_box(x_1637); -lean_ctor_set(x_1547, 1, x_1638); -lean_ctor_set(x_1547, 0, x_1636); -x_1639 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1639, 0, x_1546); -lean_ctor_set(x_1639, 1, x_1606); -return x_1639; } } else { -lean_object* x_1640; lean_object* x_1641; lean_object* x_1642; lean_object* x_1643; lean_object* x_1644; lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; lean_object* x_1648; lean_object* x_1649; lean_object* x_1650; lean_object* x_1651; lean_object* x_1652; lean_object* x_1653; lean_object* x_1654; lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; lean_object* x_1658; lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; lean_object* x_1662; lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; lean_object* x_1666; lean_object* x_1667; lean_object* x_1668; lean_object* x_1669; lean_object* x_1670; lean_object* x_1671; lean_object* x_1672; lean_object* x_1673; lean_object* x_1674; lean_object* x_1675; uint8_t x_1676; lean_object* x_1677; lean_object* x_1678; lean_object* x_1679; -x_1640 = lean_ctor_get(x_1547, 0); +lean_object* x_1630; lean_object* x_1631; lean_object* x_1632; lean_object* x_1633; lean_object* x_1634; lean_object* x_1635; lean_object* x_1636; lean_object* x_1637; lean_object* x_1638; lean_object* x_1639; lean_object* x_1640; uint8_t x_1641; +lean_dec(x_1013); +x_1630 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_1631 = lean_ctor_get(x_1630, 0); +lean_inc(x_1631); +x_1632 = lean_ctor_get(x_1630, 1); +lean_inc(x_1632); +lean_dec(x_1630); +x_1633 = lean_nat_add(x_3, x_1012); +lean_dec(x_3); +x_1634 = l_Lean_mkHole(x_19); +lean_inc(x_1631); +x_1635 = l_Lean_Elab_Term_mkExplicitBinder(x_1631, x_1634); +x_1636 = lean_array_push(x_4, x_1635); +x_1637 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1633, x_1636, x_5, x_6, x_7, x_8, x_9, x_10, x_1632); +x_1638 = lean_ctor_get(x_1637, 0); +lean_inc(x_1638); +x_1639 = lean_ctor_get(x_1638, 1); +lean_inc(x_1639); +x_1640 = lean_ctor_get(x_1637, 1); lean_inc(x_1640); -lean_dec(x_1547); -x_1641 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1548); -x_1642 = lean_ctor_get(x_1641, 1); -lean_inc(x_1642); -lean_dec(x_1641); -x_1643 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1642); -x_1644 = lean_ctor_get(x_1643, 1); -lean_inc(x_1644); -if (lean_is_exclusive(x_1643)) { - lean_ctor_release(x_1643, 0); - lean_ctor_release(x_1643, 1); - x_1645 = x_1643; -} else { - lean_dec_ref(x_1643); - x_1645 = lean_box(0); -} -x_1646 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1647 = lean_array_push(x_1646, x_1539); -x_1648 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1649 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1649, 0, x_1648); -lean_ctor_set(x_1649, 1, x_1647); -x_1650 = l_Array_empty___closed__1; -x_1651 = lean_array_push(x_1650, x_1649); -x_1652 = l_Lean_nullKind___closed__2; -x_1653 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1653, 0, x_1652); -lean_ctor_set(x_1653, 1, x_1651); -x_1654 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1655 = lean_array_push(x_1654, x_1653); -x_1656 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1657 = lean_array_push(x_1655, x_1656); -x_1658 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1659 = lean_array_push(x_1657, x_1658); -x_1660 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1661 = lean_array_push(x_1659, x_1660); +lean_dec(x_1637); +x_1641 = !lean_is_exclusive(x_1638); +if (x_1641 == 0) +{ +lean_object* x_1642; uint8_t x_1643; +x_1642 = lean_ctor_get(x_1638, 1); +lean_dec(x_1642); +x_1643 = !lean_is_exclusive(x_1639); +if (x_1643 == 0) +{ +lean_object* x_1644; lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; lean_object* x_1648; uint8_t x_1649; +x_1644 = lean_ctor_get(x_1639, 0); +x_1645 = lean_ctor_get(x_1639, 1); +lean_dec(x_1645); +x_1646 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1640); +x_1647 = lean_ctor_get(x_1646, 1); +lean_inc(x_1647); +lean_dec(x_1646); +x_1648 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1647); +x_1649 = !lean_is_exclusive(x_1648); +if (x_1649 == 0) +{ +lean_object* x_1650; lean_object* x_1651; lean_object* x_1652; lean_object* x_1653; lean_object* x_1654; lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; lean_object* x_1658; lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; lean_object* x_1662; lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; uint8_t x_1666; +x_1650 = lean_ctor_get(x_1648, 0); +lean_dec(x_1650); +x_1651 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1652 = lean_array_push(x_1651, x_1631); +x_1653 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1654 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1654, 0, x_1653); +lean_ctor_set(x_1654, 1, x_1652); +x_1655 = l_Array_empty___closed__1; +x_1656 = lean_array_push(x_1655, x_1654); +x_1657 = l_Lean_nullKind___closed__2; +x_1658 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1658, 0, x_1657); +lean_ctor_set(x_1658, 1, x_1656); +x_1659 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1660 = lean_array_push(x_1659, x_1658); +x_1661 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1662 = lean_array_push(x_1660, x_1661); +x_1663 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1664 = lean_array_push(x_1662, x_1663); lean_inc(x_19); -x_1662 = lean_array_push(x_1650, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_1663 = x_19; -} else { - lean_dec_ref(x_19); - x_1663 = lean_box(0); +x_1665 = lean_array_push(x_1655, x_19); +x_1666 = !lean_is_exclusive(x_19); +if (x_1666 == 0) +{ +lean_object* x_1667; lean_object* x_1668; lean_object* x_1669; lean_object* x_1670; lean_object* x_1671; lean_object* x_1672; lean_object* x_1673; lean_object* x_1674; lean_object* x_1675; lean_object* x_1676; lean_object* x_1677; lean_object* x_1678; lean_object* x_1679; lean_object* x_1680; lean_object* x_1681; lean_object* x_1682; lean_object* x_1683; uint8_t x_1684; lean_object* x_1685; +x_1667 = lean_ctor_get(x_19, 1); +lean_dec(x_1667); +x_1668 = lean_ctor_get(x_19, 0); +lean_dec(x_1668); +lean_ctor_set(x_19, 1, x_1665); +lean_ctor_set(x_19, 0, x_1657); +x_1669 = lean_array_push(x_1655, x_19); +x_1670 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1671 = lean_array_push(x_1669, x_1670); +x_1672 = lean_array_push(x_1671, x_1644); +x_1673 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1674 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1674, 0, x_1673); +lean_ctor_set(x_1674, 1, x_1672); +x_1675 = lean_array_push(x_1655, x_1674); +x_1676 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1676, 0, x_1657); +lean_ctor_set(x_1676, 1, x_1675); +x_1677 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1678 = lean_array_push(x_1677, x_1676); +x_1679 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1680 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1680, 0, x_1679); +lean_ctor_set(x_1680, 1, x_1678); +x_1681 = lean_array_push(x_1664, x_1680); +x_1682 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1683 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1683, 0, x_1682); +lean_ctor_set(x_1683, 1, x_1681); +x_1684 = 1; +x_1685 = lean_box(x_1684); +lean_ctor_set(x_1639, 1, x_1685); +lean_ctor_set(x_1639, 0, x_1683); +lean_ctor_set(x_1648, 0, x_1638); +return x_1648; } -if (lean_is_scalar(x_1663)) { - x_1664 = lean_alloc_ctor(1, 2, 0); -} else { - x_1664 = x_1663; -} -lean_ctor_set(x_1664, 0, x_1652); -lean_ctor_set(x_1664, 1, x_1662); -x_1665 = lean_array_push(x_1650, x_1664); -x_1666 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1667 = lean_array_push(x_1665, x_1666); -x_1668 = lean_array_push(x_1667, x_1640); -x_1669 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1670 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1670, 0, x_1669); -lean_ctor_set(x_1670, 1, x_1668); -x_1671 = lean_array_push(x_1650, x_1670); -x_1672 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1672, 0, x_1652); -lean_ctor_set(x_1672, 1, x_1671); -x_1673 = lean_array_push(x_1661, x_1672); -x_1674 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1675 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1675, 0, x_1674); -lean_ctor_set(x_1675, 1, x_1673); -x_1676 = 1; -x_1677 = lean_box(x_1676); -x_1678 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1678, 0, x_1675); -lean_ctor_set(x_1678, 1, x_1677); -lean_ctor_set(x_1546, 1, x_1678); -if (lean_is_scalar(x_1645)) { - x_1679 = lean_alloc_ctor(0, 2, 0); -} else { - x_1679 = x_1645; -} -lean_ctor_set(x_1679, 0, x_1546); -lean_ctor_set(x_1679, 1, x_1644); -return x_1679; +else +{ +lean_object* x_1686; lean_object* x_1687; lean_object* x_1688; lean_object* x_1689; lean_object* x_1690; lean_object* x_1691; lean_object* x_1692; lean_object* x_1693; lean_object* x_1694; lean_object* x_1695; lean_object* x_1696; lean_object* x_1697; lean_object* x_1698; lean_object* x_1699; lean_object* x_1700; lean_object* x_1701; uint8_t x_1702; lean_object* x_1703; +lean_dec(x_19); +x_1686 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1686, 0, x_1657); +lean_ctor_set(x_1686, 1, x_1665); +x_1687 = lean_array_push(x_1655, x_1686); +x_1688 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1689 = lean_array_push(x_1687, x_1688); +x_1690 = lean_array_push(x_1689, x_1644); +x_1691 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1692 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1692, 0, x_1691); +lean_ctor_set(x_1692, 1, x_1690); +x_1693 = lean_array_push(x_1655, x_1692); +x_1694 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1694, 0, x_1657); +lean_ctor_set(x_1694, 1, x_1693); +x_1695 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1696 = lean_array_push(x_1695, x_1694); +x_1697 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1698 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1698, 0, x_1697); +lean_ctor_set(x_1698, 1, x_1696); +x_1699 = lean_array_push(x_1664, x_1698); +x_1700 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1701 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1701, 0, x_1700); +lean_ctor_set(x_1701, 1, x_1699); +x_1702 = 1; +x_1703 = lean_box(x_1702); +lean_ctor_set(x_1639, 1, x_1703); +lean_ctor_set(x_1639, 0, x_1701); +lean_ctor_set(x_1648, 0, x_1638); +return x_1648; } } else { -lean_object* x_1680; lean_object* x_1681; lean_object* x_1682; lean_object* x_1683; lean_object* x_1684; lean_object* x_1685; lean_object* x_1686; lean_object* x_1687; lean_object* x_1688; lean_object* x_1689; lean_object* x_1690; lean_object* x_1691; lean_object* x_1692; lean_object* x_1693; lean_object* x_1694; lean_object* x_1695; lean_object* x_1696; lean_object* x_1697; lean_object* x_1698; lean_object* x_1699; lean_object* x_1700; lean_object* x_1701; lean_object* x_1702; lean_object* x_1703; lean_object* x_1704; lean_object* x_1705; lean_object* x_1706; lean_object* x_1707; lean_object* x_1708; lean_object* x_1709; lean_object* x_1710; lean_object* x_1711; lean_object* x_1712; lean_object* x_1713; lean_object* x_1714; lean_object* x_1715; lean_object* x_1716; lean_object* x_1717; uint8_t x_1718; lean_object* x_1719; lean_object* x_1720; lean_object* x_1721; lean_object* x_1722; -x_1680 = lean_ctor_get(x_1546, 0); -lean_inc(x_1680); -lean_dec(x_1546); -x_1681 = lean_ctor_get(x_1547, 0); -lean_inc(x_1681); -if (lean_is_exclusive(x_1547)) { - lean_ctor_release(x_1547, 0); - lean_ctor_release(x_1547, 1); - x_1682 = x_1547; -} else { - lean_dec_ref(x_1547); - x_1682 = lean_box(0); -} -x_1683 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1548); -x_1684 = lean_ctor_get(x_1683, 1); -lean_inc(x_1684); -lean_dec(x_1683); -x_1685 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1684); -x_1686 = lean_ctor_get(x_1685, 1); -lean_inc(x_1686); -if (lean_is_exclusive(x_1685)) { - lean_ctor_release(x_1685, 0); - lean_ctor_release(x_1685, 1); - x_1687 = x_1685; -} else { - lean_dec_ref(x_1685); - x_1687 = lean_box(0); -} -x_1688 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1689 = lean_array_push(x_1688, x_1539); -x_1690 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1691 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1691, 0, x_1690); -lean_ctor_set(x_1691, 1, x_1689); -x_1692 = l_Array_empty___closed__1; -x_1693 = lean_array_push(x_1692, x_1691); -x_1694 = l_Lean_nullKind___closed__2; -x_1695 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1695, 0, x_1694); -lean_ctor_set(x_1695, 1, x_1693); -x_1696 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1697 = lean_array_push(x_1696, x_1695); -x_1698 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1699 = lean_array_push(x_1697, x_1698); -x_1700 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1701 = lean_array_push(x_1699, x_1700); -x_1702 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1703 = lean_array_push(x_1701, x_1702); -lean_inc(x_19); -x_1704 = lean_array_push(x_1692, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_1705 = x_19; -} else { - lean_dec_ref(x_19); - x_1705 = lean_box(0); -} -if (lean_is_scalar(x_1705)) { - x_1706 = lean_alloc_ctor(1, 2, 0); -} else { - x_1706 = x_1705; -} -lean_ctor_set(x_1706, 0, x_1694); -lean_ctor_set(x_1706, 1, x_1704); -x_1707 = lean_array_push(x_1692, x_1706); -x_1708 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1709 = lean_array_push(x_1707, x_1708); -x_1710 = lean_array_push(x_1709, x_1681); -x_1711 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +lean_object* x_1704; lean_object* x_1705; lean_object* x_1706; lean_object* x_1707; lean_object* x_1708; lean_object* x_1709; lean_object* x_1710; lean_object* x_1711; lean_object* x_1712; lean_object* x_1713; lean_object* x_1714; lean_object* x_1715; lean_object* x_1716; lean_object* x_1717; lean_object* x_1718; lean_object* x_1719; lean_object* x_1720; lean_object* x_1721; lean_object* x_1722; lean_object* x_1723; lean_object* x_1724; lean_object* x_1725; lean_object* x_1726; lean_object* x_1727; lean_object* x_1728; lean_object* x_1729; lean_object* x_1730; lean_object* x_1731; lean_object* x_1732; lean_object* x_1733; lean_object* x_1734; lean_object* x_1735; lean_object* x_1736; uint8_t x_1737; lean_object* x_1738; lean_object* x_1739; +x_1704 = lean_ctor_get(x_1648, 1); +lean_inc(x_1704); +lean_dec(x_1648); +x_1705 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1706 = lean_array_push(x_1705, x_1631); +x_1707 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1708 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1708, 0, x_1707); +lean_ctor_set(x_1708, 1, x_1706); +x_1709 = l_Array_empty___closed__1; +x_1710 = lean_array_push(x_1709, x_1708); +x_1711 = l_Lean_nullKind___closed__2; x_1712 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1712, 0, x_1711); lean_ctor_set(x_1712, 1, x_1710); -x_1713 = lean_array_push(x_1692, x_1712); -x_1714 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1714, 0, x_1694); -lean_ctor_set(x_1714, 1, x_1713); -x_1715 = lean_array_push(x_1703, x_1714); -x_1716 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1717 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1717, 0, x_1716); -lean_ctor_set(x_1717, 1, x_1715); -x_1718 = 1; -x_1719 = lean_box(x_1718); -if (lean_is_scalar(x_1682)) { - x_1720 = lean_alloc_ctor(0, 2, 0); +x_1713 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1714 = lean_array_push(x_1713, x_1712); +x_1715 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1716 = lean_array_push(x_1714, x_1715); +x_1717 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1718 = lean_array_push(x_1716, x_1717); +lean_inc(x_19); +x_1719 = lean_array_push(x_1709, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_1720 = x_19; } else { - x_1720 = x_1682; + lean_dec_ref(x_19); + x_1720 = lean_box(0); } -lean_ctor_set(x_1720, 0, x_1717); -lean_ctor_set(x_1720, 1, x_1719); -x_1721 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1721, 0, x_1680); -lean_ctor_set(x_1721, 1, x_1720); -if (lean_is_scalar(x_1687)) { - x_1722 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_1720)) { + x_1721 = lean_alloc_ctor(1, 2, 0); } else { - x_1722 = x_1687; -} -lean_ctor_set(x_1722, 0, x_1721); -lean_ctor_set(x_1722, 1, x_1686); -return x_1722; -} + x_1721 = x_1720; } +lean_ctor_set(x_1721, 0, x_1711); +lean_ctor_set(x_1721, 1, x_1719); +x_1722 = lean_array_push(x_1709, x_1721); +x_1723 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1724 = lean_array_push(x_1722, x_1723); +x_1725 = lean_array_push(x_1724, x_1644); +x_1726 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1727 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1727, 0, x_1726); +lean_ctor_set(x_1727, 1, x_1725); +x_1728 = lean_array_push(x_1709, x_1727); +x_1729 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1729, 0, x_1711); +lean_ctor_set(x_1729, 1, x_1728); +x_1730 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1731 = lean_array_push(x_1730, x_1729); +x_1732 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1733 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1733, 0, x_1732); +lean_ctor_set(x_1733, 1, x_1731); +x_1734 = lean_array_push(x_1718, x_1733); +x_1735 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1736 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1736, 0, x_1735); +lean_ctor_set(x_1736, 1, x_1734); +x_1737 = 1; +x_1738 = lean_box(x_1737); +lean_ctor_set(x_1639, 1, x_1738); +lean_ctor_set(x_1639, 0, x_1736); +x_1739 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1739, 0, x_1638); +lean_ctor_set(x_1739, 1, x_1704); +return x_1739; } } else { -lean_object* x_1723; lean_object* x_1724; lean_object* x_1725; lean_object* x_1726; lean_object* x_1727; lean_object* x_1728; lean_object* x_1729; -lean_dec(x_192); -x_1723 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1724 = lean_ctor_get(x_1723, 0); -lean_inc(x_1724); -x_1725 = lean_ctor_get(x_1723, 1); -lean_inc(x_1725); -lean_dec(x_1723); -x_1726 = lean_unsigned_to_nat(1u); -x_1727 = lean_nat_add(x_3, x_1726); -lean_dec(x_3); -x_1728 = l_Lean_Elab_Term_mkExplicitBinder(x_1724, x_19); -x_1729 = lean_array_push(x_4, x_1728); -x_3 = x_1727; -x_4 = x_1729; -x_11 = x_1725; -goto _start; -} -} -else -{ -lean_object* x_1731; lean_object* x_1732; lean_object* x_1733; -lean_dec(x_192); -x_1731 = lean_unsigned_to_nat(1u); -x_1732 = lean_nat_add(x_3, x_1731); -lean_dec(x_3); -x_1733 = lean_array_push(x_4, x_19); -x_3 = x_1732; -x_4 = x_1733; -goto _start; -} -} -else -{ -lean_object* x_1735; lean_object* x_1736; lean_object* x_1737; -lean_dec(x_192); -x_1735 = lean_unsigned_to_nat(1u); -x_1736 = lean_nat_add(x_3, x_1735); -lean_dec(x_3); -x_1737 = lean_array_push(x_4, x_19); -x_3 = x_1736; -x_4 = x_1737; -goto _start; -} -} -else -{ -lean_object* x_1739; lean_object* x_1740; lean_object* x_1741; -lean_dec(x_192); -x_1739 = lean_unsigned_to_nat(1u); -x_1740 = lean_nat_add(x_3, x_1739); -lean_dec(x_3); -x_1741 = lean_array_push(x_4, x_19); -x_3 = x_1740; -x_4 = x_1741; -goto _start; -} -} -} -} -} -else -{ -lean_object* x_1743; lean_object* x_1744; lean_object* x_1745; lean_object* x_1746; lean_object* x_1747; lean_object* x_1748; lean_object* x_1749; lean_object* x_1750; lean_object* x_1751; lean_object* x_1752; lean_object* x_1753; lean_object* x_1754; uint8_t x_1755; -lean_dec(x_191); -lean_dec(x_190); -lean_dec(x_189); -lean_dec(x_188); -lean_dec(x_187); -x_1743 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1744 = lean_ctor_get(x_1743, 0); +lean_object* x_1740; lean_object* x_1741; lean_object* x_1742; lean_object* x_1743; lean_object* x_1744; lean_object* x_1745; lean_object* x_1746; lean_object* x_1747; lean_object* x_1748; lean_object* x_1749; lean_object* x_1750; lean_object* x_1751; lean_object* x_1752; lean_object* x_1753; lean_object* x_1754; lean_object* x_1755; lean_object* x_1756; lean_object* x_1757; lean_object* x_1758; lean_object* x_1759; lean_object* x_1760; lean_object* x_1761; lean_object* x_1762; lean_object* x_1763; lean_object* x_1764; lean_object* x_1765; lean_object* x_1766; lean_object* x_1767; lean_object* x_1768; lean_object* x_1769; lean_object* x_1770; lean_object* x_1771; lean_object* x_1772; lean_object* x_1773; lean_object* x_1774; lean_object* x_1775; lean_object* x_1776; lean_object* x_1777; uint8_t x_1778; lean_object* x_1779; lean_object* x_1780; lean_object* x_1781; +x_1740 = lean_ctor_get(x_1639, 0); +lean_inc(x_1740); +lean_dec(x_1639); +x_1741 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1640); +x_1742 = lean_ctor_get(x_1741, 1); +lean_inc(x_1742); +lean_dec(x_1741); +x_1743 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1742); +x_1744 = lean_ctor_get(x_1743, 1); lean_inc(x_1744); -x_1745 = lean_ctor_get(x_1743, 1); -lean_inc(x_1745); -lean_dec(x_1743); -x_1746 = lean_unsigned_to_nat(1u); -x_1747 = lean_nat_add(x_3, x_1746); -lean_dec(x_3); -x_1748 = l_Lean_mkHole(x_19); -lean_inc(x_1744); -x_1749 = l_Lean_Elab_Term_mkExplicitBinder(x_1744, x_1748); -x_1750 = lean_array_push(x_4, x_1749); -x_1751 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1747, x_1750, x_5, x_6, x_7, x_8, x_9, x_10, x_1745); -x_1752 = lean_ctor_get(x_1751, 0); -lean_inc(x_1752); -x_1753 = lean_ctor_get(x_1752, 1); -lean_inc(x_1753); -x_1754 = lean_ctor_get(x_1751, 1); -lean_inc(x_1754); -lean_dec(x_1751); -x_1755 = !lean_is_exclusive(x_1752); -if (x_1755 == 0) -{ -lean_object* x_1756; uint8_t x_1757; -x_1756 = lean_ctor_get(x_1752, 1); -lean_dec(x_1756); -x_1757 = !lean_is_exclusive(x_1753); -if (x_1757 == 0) -{ -lean_object* x_1758; lean_object* x_1759; lean_object* x_1760; lean_object* x_1761; lean_object* x_1762; uint8_t x_1763; -x_1758 = lean_ctor_get(x_1753, 0); -x_1759 = lean_ctor_get(x_1753, 1); -lean_dec(x_1759); -x_1760 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1754); -x_1761 = lean_ctor_get(x_1760, 1); -lean_inc(x_1761); -lean_dec(x_1760); -x_1762 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1761); -x_1763 = !lean_is_exclusive(x_1762); -if (x_1763 == 0) -{ -lean_object* x_1764; lean_object* x_1765; lean_object* x_1766; lean_object* x_1767; lean_object* x_1768; lean_object* x_1769; lean_object* x_1770; lean_object* x_1771; lean_object* x_1772; lean_object* x_1773; lean_object* x_1774; lean_object* x_1775; lean_object* x_1776; lean_object* x_1777; lean_object* x_1778; lean_object* x_1779; lean_object* x_1780; lean_object* x_1781; uint8_t x_1782; -x_1764 = lean_ctor_get(x_1762, 0); -lean_dec(x_1764); -x_1765 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1766 = lean_array_push(x_1765, x_1744); -x_1767 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +if (lean_is_exclusive(x_1743)) { + lean_ctor_release(x_1743, 0); + lean_ctor_release(x_1743, 1); + x_1745 = x_1743; +} else { + lean_dec_ref(x_1743); + x_1745 = lean_box(0); +} +x_1746 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1747 = lean_array_push(x_1746, x_1631); +x_1748 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1749 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1749, 0, x_1748); +lean_ctor_set(x_1749, 1, x_1747); +x_1750 = l_Array_empty___closed__1; +x_1751 = lean_array_push(x_1750, x_1749); +x_1752 = l_Lean_nullKind___closed__2; +x_1753 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1753, 0, x_1752); +lean_ctor_set(x_1753, 1, x_1751); +x_1754 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1755 = lean_array_push(x_1754, x_1753); +x_1756 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1757 = lean_array_push(x_1755, x_1756); +x_1758 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1759 = lean_array_push(x_1757, x_1758); +lean_inc(x_19); +x_1760 = lean_array_push(x_1750, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_1761 = x_19; +} else { + lean_dec_ref(x_19); + x_1761 = lean_box(0); +} +if (lean_is_scalar(x_1761)) { + x_1762 = lean_alloc_ctor(1, 2, 0); +} else { + x_1762 = x_1761; +} +lean_ctor_set(x_1762, 0, x_1752); +lean_ctor_set(x_1762, 1, x_1760); +x_1763 = lean_array_push(x_1750, x_1762); +x_1764 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1765 = lean_array_push(x_1763, x_1764); +x_1766 = lean_array_push(x_1765, x_1740); +x_1767 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_1768 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1768, 0, x_1767); lean_ctor_set(x_1768, 1, x_1766); -x_1769 = l_Array_empty___closed__1; -x_1770 = lean_array_push(x_1769, x_1768); -x_1771 = l_Lean_nullKind___closed__2; -x_1772 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1772, 0, x_1771); -lean_ctor_set(x_1772, 1, x_1770); -x_1773 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1774 = lean_array_push(x_1773, x_1772); -x_1775 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1776 = lean_array_push(x_1774, x_1775); -x_1777 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1778 = lean_array_push(x_1776, x_1777); -x_1779 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1780 = lean_array_push(x_1778, x_1779); -lean_inc(x_19); -x_1781 = lean_array_push(x_1769, x_19); -x_1782 = !lean_is_exclusive(x_19); -if (x_1782 == 0) -{ -lean_object* x_1783; lean_object* x_1784; lean_object* x_1785; lean_object* x_1786; lean_object* x_1787; lean_object* x_1788; lean_object* x_1789; lean_object* x_1790; lean_object* x_1791; lean_object* x_1792; lean_object* x_1793; lean_object* x_1794; lean_object* x_1795; uint8_t x_1796; lean_object* x_1797; -x_1783 = lean_ctor_get(x_19, 1); -lean_dec(x_1783); -x_1784 = lean_ctor_get(x_19, 0); -lean_dec(x_1784); -lean_ctor_set(x_19, 1, x_1781); -lean_ctor_set(x_19, 0, x_1771); -x_1785 = lean_array_push(x_1769, x_19); -x_1786 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1787 = lean_array_push(x_1785, x_1786); -x_1788 = lean_array_push(x_1787, x_1758); -x_1789 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1790 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1790, 0, x_1789); -lean_ctor_set(x_1790, 1, x_1788); -x_1791 = lean_array_push(x_1769, x_1790); -x_1792 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1792, 0, x_1771); -lean_ctor_set(x_1792, 1, x_1791); -x_1793 = lean_array_push(x_1780, x_1792); -x_1794 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1795 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1795, 0, x_1794); -lean_ctor_set(x_1795, 1, x_1793); -x_1796 = 1; -x_1797 = lean_box(x_1796); -lean_ctor_set(x_1753, 1, x_1797); -lean_ctor_set(x_1753, 0, x_1795); -lean_ctor_set(x_1762, 0, x_1752); -return x_1762; +x_1769 = lean_array_push(x_1750, x_1768); +x_1770 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1770, 0, x_1752); +lean_ctor_set(x_1770, 1, x_1769); +x_1771 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1772 = lean_array_push(x_1771, x_1770); +x_1773 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1774 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1774, 0, x_1773); +lean_ctor_set(x_1774, 1, x_1772); +x_1775 = lean_array_push(x_1759, x_1774); +x_1776 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1777 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1777, 0, x_1776); +lean_ctor_set(x_1777, 1, x_1775); +x_1778 = 1; +x_1779 = lean_box(x_1778); +x_1780 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1780, 0, x_1777); +lean_ctor_set(x_1780, 1, x_1779); +lean_ctor_set(x_1638, 1, x_1780); +if (lean_is_scalar(x_1745)) { + x_1781 = lean_alloc_ctor(0, 2, 0); +} else { + x_1781 = x_1745; +} +lean_ctor_set(x_1781, 0, x_1638); +lean_ctor_set(x_1781, 1, x_1744); +return x_1781; +} } else { -lean_object* x_1798; lean_object* x_1799; lean_object* x_1800; lean_object* x_1801; lean_object* x_1802; lean_object* x_1803; lean_object* x_1804; lean_object* x_1805; lean_object* x_1806; lean_object* x_1807; lean_object* x_1808; lean_object* x_1809; uint8_t x_1810; lean_object* x_1811; -lean_dec(x_19); -x_1798 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1798, 0, x_1771); -lean_ctor_set(x_1798, 1, x_1781); -x_1799 = lean_array_push(x_1769, x_1798); -x_1800 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +lean_object* x_1782; lean_object* x_1783; lean_object* x_1784; lean_object* x_1785; lean_object* x_1786; lean_object* x_1787; lean_object* x_1788; lean_object* x_1789; lean_object* x_1790; lean_object* x_1791; lean_object* x_1792; lean_object* x_1793; lean_object* x_1794; lean_object* x_1795; lean_object* x_1796; lean_object* x_1797; lean_object* x_1798; lean_object* x_1799; lean_object* x_1800; lean_object* x_1801; lean_object* x_1802; lean_object* x_1803; lean_object* x_1804; lean_object* x_1805; lean_object* x_1806; lean_object* x_1807; lean_object* x_1808; lean_object* x_1809; lean_object* x_1810; lean_object* x_1811; lean_object* x_1812; lean_object* x_1813; lean_object* x_1814; lean_object* x_1815; lean_object* x_1816; lean_object* x_1817; lean_object* x_1818; lean_object* x_1819; lean_object* x_1820; lean_object* x_1821; uint8_t x_1822; lean_object* x_1823; lean_object* x_1824; lean_object* x_1825; lean_object* x_1826; +x_1782 = lean_ctor_get(x_1638, 0); +lean_inc(x_1782); +lean_dec(x_1638); +x_1783 = lean_ctor_get(x_1639, 0); +lean_inc(x_1783); +if (lean_is_exclusive(x_1639)) { + lean_ctor_release(x_1639, 0); + lean_ctor_release(x_1639, 1); + x_1784 = x_1639; +} else { + lean_dec_ref(x_1639); + x_1784 = lean_box(0); +} +x_1785 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1640); +x_1786 = lean_ctor_get(x_1785, 1); +lean_inc(x_1786); +lean_dec(x_1785); +x_1787 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1786); +x_1788 = lean_ctor_get(x_1787, 1); +lean_inc(x_1788); +if (lean_is_exclusive(x_1787)) { + lean_ctor_release(x_1787, 0); + lean_ctor_release(x_1787, 1); + x_1789 = x_1787; +} else { + lean_dec_ref(x_1787); + x_1789 = lean_box(0); +} +x_1790 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1791 = lean_array_push(x_1790, x_1631); +x_1792 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1793 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1793, 0, x_1792); +lean_ctor_set(x_1793, 1, x_1791); +x_1794 = l_Array_empty___closed__1; +x_1795 = lean_array_push(x_1794, x_1793); +x_1796 = l_Lean_nullKind___closed__2; +x_1797 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1797, 0, x_1796); +lean_ctor_set(x_1797, 1, x_1795); +x_1798 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1799 = lean_array_push(x_1798, x_1797); +x_1800 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_1801 = lean_array_push(x_1799, x_1800); -x_1802 = lean_array_push(x_1801, x_1758); -x_1803 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1804 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1804, 0, x_1803); -lean_ctor_set(x_1804, 1, x_1802); -x_1805 = lean_array_push(x_1769, x_1804); -x_1806 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1806, 0, x_1771); -lean_ctor_set(x_1806, 1, x_1805); -x_1807 = lean_array_push(x_1780, x_1806); -x_1808 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1809 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1809, 0, x_1808); -lean_ctor_set(x_1809, 1, x_1807); -x_1810 = 1; -x_1811 = lean_box(x_1810); -lean_ctor_set(x_1753, 1, x_1811); -lean_ctor_set(x_1753, 0, x_1809); -lean_ctor_set(x_1762, 0, x_1752); -return x_1762; -} -} -else -{ -lean_object* x_1812; lean_object* x_1813; lean_object* x_1814; lean_object* x_1815; lean_object* x_1816; lean_object* x_1817; lean_object* x_1818; lean_object* x_1819; lean_object* x_1820; lean_object* x_1821; lean_object* x_1822; lean_object* x_1823; lean_object* x_1824; lean_object* x_1825; lean_object* x_1826; lean_object* x_1827; lean_object* x_1828; lean_object* x_1829; lean_object* x_1830; lean_object* x_1831; lean_object* x_1832; lean_object* x_1833; lean_object* x_1834; lean_object* x_1835; lean_object* x_1836; lean_object* x_1837; lean_object* x_1838; lean_object* x_1839; lean_object* x_1840; lean_object* x_1841; lean_object* x_1842; uint8_t x_1843; lean_object* x_1844; lean_object* x_1845; -x_1812 = lean_ctor_get(x_1762, 1); -lean_inc(x_1812); -lean_dec(x_1762); -x_1813 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1814 = lean_array_push(x_1813, x_1744); -x_1815 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1816 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1816, 0, x_1815); -lean_ctor_set(x_1816, 1, x_1814); -x_1817 = l_Array_empty___closed__1; -x_1818 = lean_array_push(x_1817, x_1816); -x_1819 = l_Lean_nullKind___closed__2; -x_1820 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1820, 0, x_1819); -lean_ctor_set(x_1820, 1, x_1818); -x_1821 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1822 = lean_array_push(x_1821, x_1820); -x_1823 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1824 = lean_array_push(x_1822, x_1823); -x_1825 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1826 = lean_array_push(x_1824, x_1825); -x_1827 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1828 = lean_array_push(x_1826, x_1827); +x_1802 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1803 = lean_array_push(x_1801, x_1802); lean_inc(x_19); -x_1829 = lean_array_push(x_1817, x_19); +x_1804 = lean_array_push(x_1794, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1830 = x_19; + x_1805 = x_19; } else { lean_dec_ref(x_19); - x_1830 = lean_box(0); + x_1805 = lean_box(0); } -if (lean_is_scalar(x_1830)) { - x_1831 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1805)) { + x_1806 = lean_alloc_ctor(1, 2, 0); } else { - x_1831 = x_1830; + x_1806 = x_1805; +} +lean_ctor_set(x_1806, 0, x_1796); +lean_ctor_set(x_1806, 1, x_1804); +x_1807 = lean_array_push(x_1794, x_1806); +x_1808 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1809 = lean_array_push(x_1807, x_1808); +x_1810 = lean_array_push(x_1809, x_1783); +x_1811 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1812 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1812, 0, x_1811); +lean_ctor_set(x_1812, 1, x_1810); +x_1813 = lean_array_push(x_1794, x_1812); +x_1814 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1814, 0, x_1796); +lean_ctor_set(x_1814, 1, x_1813); +x_1815 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1816 = lean_array_push(x_1815, x_1814); +x_1817 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1818 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1818, 0, x_1817); +lean_ctor_set(x_1818, 1, x_1816); +x_1819 = lean_array_push(x_1803, x_1818); +x_1820 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1821 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1821, 0, x_1820); +lean_ctor_set(x_1821, 1, x_1819); +x_1822 = 1; +x_1823 = lean_box(x_1822); +if (lean_is_scalar(x_1784)) { + x_1824 = lean_alloc_ctor(0, 2, 0); +} else { + x_1824 = x_1784; +} +lean_ctor_set(x_1824, 0, x_1821); +lean_ctor_set(x_1824, 1, x_1823); +x_1825 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1825, 0, x_1782); +lean_ctor_set(x_1825, 1, x_1824); +if (lean_is_scalar(x_1789)) { + x_1826 = lean_alloc_ctor(0, 2, 0); +} else { + x_1826 = x_1789; +} +lean_ctor_set(x_1826, 0, x_1825); +lean_ctor_set(x_1826, 1, x_1788); +return x_1826; +} } -lean_ctor_set(x_1831, 0, x_1819); -lean_ctor_set(x_1831, 1, x_1829); -x_1832 = lean_array_push(x_1817, x_1831); -x_1833 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1834 = lean_array_push(x_1832, x_1833); -x_1835 = lean_array_push(x_1834, x_1758); -x_1836 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1837 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1837, 0, x_1836); -lean_ctor_set(x_1837, 1, x_1835); -x_1838 = lean_array_push(x_1817, x_1837); -x_1839 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1839, 0, x_1819); -lean_ctor_set(x_1839, 1, x_1838); -x_1840 = lean_array_push(x_1828, x_1839); -x_1841 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1842 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1842, 0, x_1841); -lean_ctor_set(x_1842, 1, x_1840); -x_1843 = 1; -x_1844 = lean_box(x_1843); -lean_ctor_set(x_1753, 1, x_1844); -lean_ctor_set(x_1753, 0, x_1842); -x_1845 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1845, 0, x_1752); -lean_ctor_set(x_1845, 1, x_1812); -return x_1845; } } else { -lean_object* x_1846; lean_object* x_1847; lean_object* x_1848; lean_object* x_1849; lean_object* x_1850; lean_object* x_1851; lean_object* x_1852; lean_object* x_1853; lean_object* x_1854; lean_object* x_1855; lean_object* x_1856; lean_object* x_1857; lean_object* x_1858; lean_object* x_1859; lean_object* x_1860; lean_object* x_1861; lean_object* x_1862; lean_object* x_1863; lean_object* x_1864; lean_object* x_1865; lean_object* x_1866; lean_object* x_1867; lean_object* x_1868; lean_object* x_1869; lean_object* x_1870; lean_object* x_1871; lean_object* x_1872; lean_object* x_1873; lean_object* x_1874; lean_object* x_1875; lean_object* x_1876; lean_object* x_1877; lean_object* x_1878; lean_object* x_1879; lean_object* x_1880; lean_object* x_1881; uint8_t x_1882; lean_object* x_1883; lean_object* x_1884; lean_object* x_1885; -x_1846 = lean_ctor_get(x_1753, 0); -lean_inc(x_1846); -lean_dec(x_1753); -x_1847 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1754); -x_1848 = lean_ctor_get(x_1847, 1); +lean_object* x_1827; lean_object* x_1828; lean_object* x_1829; lean_object* x_1830; lean_object* x_1831; lean_object* x_1832; lean_object* x_1833; +lean_dec(x_200); +x_1827 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_1828 = lean_ctor_get(x_1827, 0); +lean_inc(x_1828); +x_1829 = lean_ctor_get(x_1827, 1); +lean_inc(x_1829); +lean_dec(x_1827); +x_1830 = lean_unsigned_to_nat(1u); +x_1831 = lean_nat_add(x_3, x_1830); +lean_dec(x_3); +x_1832 = l_Lean_Elab_Term_mkExplicitBinder(x_1828, x_19); +x_1833 = lean_array_push(x_4, x_1832); +x_3 = x_1831; +x_4 = x_1833; +x_11 = x_1829; +goto _start; +} +} +else +{ +lean_object* x_1835; lean_object* x_1836; lean_object* x_1837; +lean_dec(x_200); +x_1835 = lean_unsigned_to_nat(1u); +x_1836 = lean_nat_add(x_3, x_1835); +lean_dec(x_3); +x_1837 = lean_array_push(x_4, x_19); +x_3 = x_1836; +x_4 = x_1837; +goto _start; +} +} +else +{ +lean_object* x_1839; lean_object* x_1840; lean_object* x_1841; +lean_dec(x_200); +x_1839 = lean_unsigned_to_nat(1u); +x_1840 = lean_nat_add(x_3, x_1839); +lean_dec(x_3); +x_1841 = lean_array_push(x_4, x_19); +x_3 = x_1840; +x_4 = x_1841; +goto _start; +} +} +else +{ +lean_object* x_1843; lean_object* x_1844; lean_object* x_1845; +lean_dec(x_200); +x_1843 = lean_unsigned_to_nat(1u); +x_1844 = lean_nat_add(x_3, x_1843); +lean_dec(x_3); +x_1845 = lean_array_push(x_4, x_19); +x_3 = x_1844; +x_4 = x_1845; +goto _start; +} +} +} +} +} +else +{ +lean_object* x_1847; lean_object* x_1848; lean_object* x_1849; lean_object* x_1850; lean_object* x_1851; lean_object* x_1852; lean_object* x_1853; lean_object* x_1854; lean_object* x_1855; lean_object* x_1856; lean_object* x_1857; lean_object* x_1858; uint8_t x_1859; +lean_dec(x_199); +lean_dec(x_198); +lean_dec(x_197); +lean_dec(x_196); +lean_dec(x_195); +x_1847 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_1848 = lean_ctor_get(x_1847, 0); lean_inc(x_1848); +x_1849 = lean_ctor_get(x_1847, 1); +lean_inc(x_1849); lean_dec(x_1847); -x_1849 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1848); -x_1850 = lean_ctor_get(x_1849, 1); -lean_inc(x_1850); -if (lean_is_exclusive(x_1849)) { - lean_ctor_release(x_1849, 0); - lean_ctor_release(x_1849, 1); - x_1851 = x_1849; -} else { - lean_dec_ref(x_1849); - x_1851 = lean_box(0); -} -x_1852 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1853 = lean_array_push(x_1852, x_1744); -x_1854 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1855 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1855, 0, x_1854); -lean_ctor_set(x_1855, 1, x_1853); -x_1856 = l_Array_empty___closed__1; -x_1857 = lean_array_push(x_1856, x_1855); -x_1858 = l_Lean_nullKind___closed__2; -x_1859 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1859, 0, x_1858); -lean_ctor_set(x_1859, 1, x_1857); -x_1860 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1861 = lean_array_push(x_1860, x_1859); -x_1862 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1863 = lean_array_push(x_1861, x_1862); -x_1864 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1865 = lean_array_push(x_1863, x_1864); -x_1866 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1867 = lean_array_push(x_1865, x_1866); -lean_inc(x_19); -x_1868 = lean_array_push(x_1856, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_1869 = x_19; -} else { - lean_dec_ref(x_19); - x_1869 = lean_box(0); -} -if (lean_is_scalar(x_1869)) { - x_1870 = lean_alloc_ctor(1, 2, 0); -} else { - x_1870 = x_1869; -} -lean_ctor_set(x_1870, 0, x_1858); -lean_ctor_set(x_1870, 1, x_1868); -x_1871 = lean_array_push(x_1856, x_1870); -x_1872 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1873 = lean_array_push(x_1871, x_1872); -x_1874 = lean_array_push(x_1873, x_1846); -x_1875 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +x_1850 = lean_unsigned_to_nat(1u); +x_1851 = lean_nat_add(x_3, x_1850); +lean_dec(x_3); +x_1852 = l_Lean_mkHole(x_19); +lean_inc(x_1848); +x_1853 = l_Lean_Elab_Term_mkExplicitBinder(x_1848, x_1852); +x_1854 = lean_array_push(x_4, x_1853); +x_1855 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1851, x_1854, x_5, x_6, x_7, x_8, x_9, x_10, x_1849); +x_1856 = lean_ctor_get(x_1855, 0); +lean_inc(x_1856); +x_1857 = lean_ctor_get(x_1856, 1); +lean_inc(x_1857); +x_1858 = lean_ctor_get(x_1855, 1); +lean_inc(x_1858); +lean_dec(x_1855); +x_1859 = !lean_is_exclusive(x_1856); +if (x_1859 == 0) +{ +lean_object* x_1860; uint8_t x_1861; +x_1860 = lean_ctor_get(x_1856, 1); +lean_dec(x_1860); +x_1861 = !lean_is_exclusive(x_1857); +if (x_1861 == 0) +{ +lean_object* x_1862; lean_object* x_1863; lean_object* x_1864; lean_object* x_1865; lean_object* x_1866; uint8_t x_1867; +x_1862 = lean_ctor_get(x_1857, 0); +x_1863 = lean_ctor_get(x_1857, 1); +lean_dec(x_1863); +x_1864 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1858); +x_1865 = lean_ctor_get(x_1864, 1); +lean_inc(x_1865); +lean_dec(x_1864); +x_1866 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1865); +x_1867 = !lean_is_exclusive(x_1866); +if (x_1867 == 0) +{ +lean_object* x_1868; lean_object* x_1869; lean_object* x_1870; lean_object* x_1871; lean_object* x_1872; lean_object* x_1873; lean_object* x_1874; lean_object* x_1875; lean_object* x_1876; lean_object* x_1877; lean_object* x_1878; lean_object* x_1879; lean_object* x_1880; lean_object* x_1881; lean_object* x_1882; lean_object* x_1883; uint8_t x_1884; +x_1868 = lean_ctor_get(x_1866, 0); +lean_dec(x_1868); +x_1869 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1870 = lean_array_push(x_1869, x_1848); +x_1871 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1872 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1872, 0, x_1871); +lean_ctor_set(x_1872, 1, x_1870); +x_1873 = l_Array_empty___closed__1; +x_1874 = lean_array_push(x_1873, x_1872); +x_1875 = l_Lean_nullKind___closed__2; x_1876 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1876, 0, x_1875); lean_ctor_set(x_1876, 1, x_1874); -x_1877 = lean_array_push(x_1856, x_1876); -x_1878 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1878, 0, x_1858); -lean_ctor_set(x_1878, 1, x_1877); -x_1879 = lean_array_push(x_1867, x_1878); -x_1880 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1881 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1881, 0, x_1880); -lean_ctor_set(x_1881, 1, x_1879); -x_1882 = 1; -x_1883 = lean_box(x_1882); -x_1884 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1884, 0, x_1881); -lean_ctor_set(x_1884, 1, x_1883); -lean_ctor_set(x_1752, 1, x_1884); -if (lean_is_scalar(x_1851)) { - x_1885 = lean_alloc_ctor(0, 2, 0); -} else { - x_1885 = x_1851; -} -lean_ctor_set(x_1885, 0, x_1752); -lean_ctor_set(x_1885, 1, x_1850); -return x_1885; -} -} -else +x_1877 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1878 = lean_array_push(x_1877, x_1876); +x_1879 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1880 = lean_array_push(x_1878, x_1879); +x_1881 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1882 = lean_array_push(x_1880, x_1881); +lean_inc(x_19); +x_1883 = lean_array_push(x_1873, x_19); +x_1884 = !lean_is_exclusive(x_19); +if (x_1884 == 0) { -lean_object* x_1886; lean_object* x_1887; lean_object* x_1888; lean_object* x_1889; lean_object* x_1890; lean_object* x_1891; lean_object* x_1892; lean_object* x_1893; lean_object* x_1894; lean_object* x_1895; lean_object* x_1896; lean_object* x_1897; lean_object* x_1898; lean_object* x_1899; lean_object* x_1900; lean_object* x_1901; lean_object* x_1902; lean_object* x_1903; lean_object* x_1904; lean_object* x_1905; lean_object* x_1906; lean_object* x_1907; lean_object* x_1908; lean_object* x_1909; lean_object* x_1910; lean_object* x_1911; lean_object* x_1912; lean_object* x_1913; lean_object* x_1914; lean_object* x_1915; lean_object* x_1916; lean_object* x_1917; lean_object* x_1918; lean_object* x_1919; lean_object* x_1920; lean_object* x_1921; lean_object* x_1922; lean_object* x_1923; uint8_t x_1924; lean_object* x_1925; lean_object* x_1926; lean_object* x_1927; lean_object* x_1928; -x_1886 = lean_ctor_get(x_1752, 0); -lean_inc(x_1886); -lean_dec(x_1752); -x_1887 = lean_ctor_get(x_1753, 0); -lean_inc(x_1887); -if (lean_is_exclusive(x_1753)) { - lean_ctor_release(x_1753, 0); - lean_ctor_release(x_1753, 1); - x_1888 = x_1753; -} else { - lean_dec_ref(x_1753); - x_1888 = lean_box(0); -} -x_1889 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1754); -x_1890 = lean_ctor_get(x_1889, 1); -lean_inc(x_1890); -lean_dec(x_1889); -x_1891 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1890); -x_1892 = lean_ctor_get(x_1891, 1); -lean_inc(x_1892); -if (lean_is_exclusive(x_1891)) { - lean_ctor_release(x_1891, 0); - lean_ctor_release(x_1891, 1); - x_1893 = x_1891; -} else { - lean_dec_ref(x_1891); - x_1893 = lean_box(0); -} -x_1894 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1895 = lean_array_push(x_1894, x_1744); -x_1896 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_1897 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1897, 0, x_1896); -lean_ctor_set(x_1897, 1, x_1895); -x_1898 = l_Array_empty___closed__1; -x_1899 = lean_array_push(x_1898, x_1897); -x_1900 = l_Lean_nullKind___closed__2; +lean_object* x_1885; lean_object* x_1886; lean_object* x_1887; lean_object* x_1888; lean_object* x_1889; lean_object* x_1890; lean_object* x_1891; lean_object* x_1892; lean_object* x_1893; lean_object* x_1894; lean_object* x_1895; lean_object* x_1896; lean_object* x_1897; lean_object* x_1898; lean_object* x_1899; lean_object* x_1900; lean_object* x_1901; uint8_t x_1902; lean_object* x_1903; +x_1885 = lean_ctor_get(x_19, 1); +lean_dec(x_1885); +x_1886 = lean_ctor_get(x_19, 0); +lean_dec(x_1886); +lean_ctor_set(x_19, 1, x_1883); +lean_ctor_set(x_19, 0, x_1875); +x_1887 = lean_array_push(x_1873, x_19); +x_1888 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1889 = lean_array_push(x_1887, x_1888); +x_1890 = lean_array_push(x_1889, x_1862); +x_1891 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1892 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1892, 0, x_1891); +lean_ctor_set(x_1892, 1, x_1890); +x_1893 = lean_array_push(x_1873, x_1892); +x_1894 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1894, 0, x_1875); +lean_ctor_set(x_1894, 1, x_1893); +x_1895 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1896 = lean_array_push(x_1895, x_1894); +x_1897 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1898 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1898, 0, x_1897); +lean_ctor_set(x_1898, 1, x_1896); +x_1899 = lean_array_push(x_1882, x_1898); +x_1900 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1901 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1901, 0, x_1900); lean_ctor_set(x_1901, 1, x_1899); -x_1902 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1903 = lean_array_push(x_1902, x_1901); -x_1904 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1905 = lean_array_push(x_1903, x_1904); -x_1906 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1902 = 1; +x_1903 = lean_box(x_1902); +lean_ctor_set(x_1857, 1, x_1903); +lean_ctor_set(x_1857, 0, x_1901); +lean_ctor_set(x_1866, 0, x_1856); +return x_1866; +} +else +{ +lean_object* x_1904; lean_object* x_1905; lean_object* x_1906; lean_object* x_1907; lean_object* x_1908; lean_object* x_1909; lean_object* x_1910; lean_object* x_1911; lean_object* x_1912; lean_object* x_1913; lean_object* x_1914; lean_object* x_1915; lean_object* x_1916; lean_object* x_1917; lean_object* x_1918; lean_object* x_1919; uint8_t x_1920; lean_object* x_1921; +lean_dec(x_19); +x_1904 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1904, 0, x_1875); +lean_ctor_set(x_1904, 1, x_1883); +x_1905 = lean_array_push(x_1873, x_1904); +x_1906 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; x_1907 = lean_array_push(x_1905, x_1906); -x_1908 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1909 = lean_array_push(x_1907, x_1908); +x_1908 = lean_array_push(x_1907, x_1862); +x_1909 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1910 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1910, 0, x_1909); +lean_ctor_set(x_1910, 1, x_1908); +x_1911 = lean_array_push(x_1873, x_1910); +x_1912 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1912, 0, x_1875); +lean_ctor_set(x_1912, 1, x_1911); +x_1913 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1914 = lean_array_push(x_1913, x_1912); +x_1915 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1916 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1916, 0, x_1915); +lean_ctor_set(x_1916, 1, x_1914); +x_1917 = lean_array_push(x_1882, x_1916); +x_1918 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1919 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1919, 0, x_1918); +lean_ctor_set(x_1919, 1, x_1917); +x_1920 = 1; +x_1921 = lean_box(x_1920); +lean_ctor_set(x_1857, 1, x_1921); +lean_ctor_set(x_1857, 0, x_1919); +lean_ctor_set(x_1866, 0, x_1856); +return x_1866; +} +} +else +{ +lean_object* x_1922; lean_object* x_1923; lean_object* x_1924; lean_object* x_1925; lean_object* x_1926; lean_object* x_1927; lean_object* x_1928; lean_object* x_1929; lean_object* x_1930; lean_object* x_1931; lean_object* x_1932; lean_object* x_1933; lean_object* x_1934; lean_object* x_1935; lean_object* x_1936; lean_object* x_1937; lean_object* x_1938; lean_object* x_1939; lean_object* x_1940; lean_object* x_1941; lean_object* x_1942; lean_object* x_1943; lean_object* x_1944; lean_object* x_1945; lean_object* x_1946; lean_object* x_1947; lean_object* x_1948; lean_object* x_1949; lean_object* x_1950; lean_object* x_1951; lean_object* x_1952; lean_object* x_1953; lean_object* x_1954; uint8_t x_1955; lean_object* x_1956; lean_object* x_1957; +x_1922 = lean_ctor_get(x_1866, 1); +lean_inc(x_1922); +lean_dec(x_1866); +x_1923 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1924 = lean_array_push(x_1923, x_1848); +x_1925 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1926 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1926, 0, x_1925); +lean_ctor_set(x_1926, 1, x_1924); +x_1927 = l_Array_empty___closed__1; +x_1928 = lean_array_push(x_1927, x_1926); +x_1929 = l_Lean_nullKind___closed__2; +x_1930 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1930, 0, x_1929); +lean_ctor_set(x_1930, 1, x_1928); +x_1931 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1932 = lean_array_push(x_1931, x_1930); +x_1933 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1934 = lean_array_push(x_1932, x_1933); +x_1935 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1936 = lean_array_push(x_1934, x_1935); lean_inc(x_19); -x_1910 = lean_array_push(x_1898, x_19); +x_1937 = lean_array_push(x_1927, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1911 = x_19; + x_1938 = x_19; } else { lean_dec_ref(x_19); - x_1911 = lean_box(0); + x_1938 = lean_box(0); } -if (lean_is_scalar(x_1911)) { - x_1912 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1938)) { + x_1939 = lean_alloc_ctor(1, 2, 0); } else { - x_1912 = x_1911; + x_1939 = x_1938; } -lean_ctor_set(x_1912, 0, x_1900); -lean_ctor_set(x_1912, 1, x_1910); -x_1913 = lean_array_push(x_1898, x_1912); -x_1914 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1915 = lean_array_push(x_1913, x_1914); -x_1916 = lean_array_push(x_1915, x_1887); -x_1917 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1918 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1918, 0, x_1917); -lean_ctor_set(x_1918, 1, x_1916); -x_1919 = lean_array_push(x_1898, x_1918); -x_1920 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1920, 0, x_1900); -lean_ctor_set(x_1920, 1, x_1919); -x_1921 = lean_array_push(x_1909, x_1920); -x_1922 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1923 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1923, 0, x_1922); -lean_ctor_set(x_1923, 1, x_1921); -x_1924 = 1; -x_1925 = lean_box(x_1924); -if (lean_is_scalar(x_1888)) { - x_1926 = lean_alloc_ctor(0, 2, 0); -} else { - x_1926 = x_1888; -} -lean_ctor_set(x_1926, 0, x_1923); -lean_ctor_set(x_1926, 1, x_1925); -x_1927 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1927, 0, x_1886); -lean_ctor_set(x_1927, 1, x_1926); -if (lean_is_scalar(x_1893)) { - x_1928 = lean_alloc_ctor(0, 2, 0); -} else { - x_1928 = x_1893; -} -lean_ctor_set(x_1928, 0, x_1927); -lean_ctor_set(x_1928, 1, x_1892); -return x_1928; -} -} -} -else -{ -lean_object* x_1929; lean_object* x_1930; lean_object* x_1931; lean_object* x_1932; lean_object* x_1933; lean_object* x_1934; lean_object* x_1935; lean_object* x_1936; lean_object* x_1937; lean_object* x_1938; lean_object* x_1939; lean_object* x_1940; uint8_t x_1941; -lean_dec(x_190); -lean_dec(x_189); -lean_dec(x_188); -lean_dec(x_187); -x_1929 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1930 = lean_ctor_get(x_1929, 0); -lean_inc(x_1930); -x_1931 = lean_ctor_get(x_1929, 1); -lean_inc(x_1931); -lean_dec(x_1929); -x_1932 = lean_unsigned_to_nat(1u); -x_1933 = lean_nat_add(x_3, x_1932); -lean_dec(x_3); -x_1934 = l_Lean_mkHole(x_19); -lean_inc(x_1930); -x_1935 = l_Lean_Elab_Term_mkExplicitBinder(x_1930, x_1934); -x_1936 = lean_array_push(x_4, x_1935); -x_1937 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1933, x_1936, x_5, x_6, x_7, x_8, x_9, x_10, x_1931); -x_1938 = lean_ctor_get(x_1937, 0); -lean_inc(x_1938); -x_1939 = lean_ctor_get(x_1938, 1); -lean_inc(x_1939); -x_1940 = lean_ctor_get(x_1937, 1); -lean_inc(x_1940); -lean_dec(x_1937); -x_1941 = !lean_is_exclusive(x_1938); -if (x_1941 == 0) -{ -lean_object* x_1942; uint8_t x_1943; -x_1942 = lean_ctor_get(x_1938, 1); -lean_dec(x_1942); -x_1943 = !lean_is_exclusive(x_1939); -if (x_1943 == 0) -{ -lean_object* x_1944; lean_object* x_1945; lean_object* x_1946; lean_object* x_1947; lean_object* x_1948; uint8_t x_1949; -x_1944 = lean_ctor_get(x_1939, 0); -x_1945 = lean_ctor_get(x_1939, 1); -lean_dec(x_1945); -x_1946 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1940); -x_1947 = lean_ctor_get(x_1946, 1); -lean_inc(x_1947); -lean_dec(x_1946); -x_1948 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1947); -x_1949 = !lean_is_exclusive(x_1948); -if (x_1949 == 0) -{ -lean_object* x_1950; lean_object* x_1951; lean_object* x_1952; lean_object* x_1953; lean_object* x_1954; lean_object* x_1955; lean_object* x_1956; lean_object* x_1957; lean_object* x_1958; lean_object* x_1959; lean_object* x_1960; lean_object* x_1961; lean_object* x_1962; lean_object* x_1963; lean_object* x_1964; lean_object* x_1965; lean_object* x_1966; lean_object* x_1967; uint8_t x_1968; -x_1950 = lean_ctor_get(x_1948, 0); -lean_dec(x_1950); -x_1951 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_1952 = lean_array_push(x_1951, x_1930); -x_1953 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +lean_ctor_set(x_1939, 0, x_1929); +lean_ctor_set(x_1939, 1, x_1937); +x_1940 = lean_array_push(x_1927, x_1939); +x_1941 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1942 = lean_array_push(x_1940, x_1941); +x_1943 = lean_array_push(x_1942, x_1862); +x_1944 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1945 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1945, 0, x_1944); +lean_ctor_set(x_1945, 1, x_1943); +x_1946 = lean_array_push(x_1927, x_1945); +x_1947 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1947, 0, x_1929); +lean_ctor_set(x_1947, 1, x_1946); +x_1948 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1949 = lean_array_push(x_1948, x_1947); +x_1950 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1951 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1951, 0, x_1950); +lean_ctor_set(x_1951, 1, x_1949); +x_1952 = lean_array_push(x_1936, x_1951); +x_1953 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1954 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1954, 0, x_1953); lean_ctor_set(x_1954, 1, x_1952); -x_1955 = l_Array_empty___closed__1; -x_1956 = lean_array_push(x_1955, x_1954); -x_1957 = l_Lean_nullKind___closed__2; -x_1958 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1958, 0, x_1957); -lean_ctor_set(x_1958, 1, x_1956); -x_1959 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_1960 = lean_array_push(x_1959, x_1958); -x_1961 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_1962 = lean_array_push(x_1960, x_1961); -x_1963 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1964 = lean_array_push(x_1962, x_1963); -x_1965 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1966 = lean_array_push(x_1964, x_1965); -lean_inc(x_19); -x_1967 = lean_array_push(x_1955, x_19); -x_1968 = !lean_is_exclusive(x_19); -if (x_1968 == 0) -{ -lean_object* x_1969; lean_object* x_1970; lean_object* x_1971; lean_object* x_1972; lean_object* x_1973; lean_object* x_1974; lean_object* x_1975; lean_object* x_1976; lean_object* x_1977; lean_object* x_1978; lean_object* x_1979; lean_object* x_1980; lean_object* x_1981; uint8_t x_1982; lean_object* x_1983; -x_1969 = lean_ctor_get(x_19, 1); -lean_dec(x_1969); -x_1970 = lean_ctor_get(x_19, 0); -lean_dec(x_1970); -lean_ctor_set(x_19, 1, x_1967); -lean_ctor_set(x_19, 0, x_1957); -x_1971 = lean_array_push(x_1955, x_19); -x_1972 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1973 = lean_array_push(x_1971, x_1972); -x_1974 = lean_array_push(x_1973, x_1944); -x_1975 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1976 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1976, 0, x_1975); -lean_ctor_set(x_1976, 1, x_1974); -x_1977 = lean_array_push(x_1955, x_1976); -x_1978 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1978, 0, x_1957); -lean_ctor_set(x_1978, 1, x_1977); -x_1979 = lean_array_push(x_1966, x_1978); -x_1980 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_1981 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1981, 0, x_1980); -lean_ctor_set(x_1981, 1, x_1979); -x_1982 = 1; -x_1983 = lean_box(x_1982); -lean_ctor_set(x_1939, 1, x_1983); -lean_ctor_set(x_1939, 0, x_1981); -lean_ctor_set(x_1948, 0, x_1938); -return x_1948; +x_1955 = 1; +x_1956 = lean_box(x_1955); +lean_ctor_set(x_1857, 1, x_1956); +lean_ctor_set(x_1857, 0, x_1954); +x_1957 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1957, 0, x_1856); +lean_ctor_set(x_1957, 1, x_1922); +return x_1957; +} } else { -lean_object* x_1984; lean_object* x_1985; lean_object* x_1986; lean_object* x_1987; lean_object* x_1988; lean_object* x_1989; lean_object* x_1990; lean_object* x_1991; lean_object* x_1992; lean_object* x_1993; lean_object* x_1994; lean_object* x_1995; uint8_t x_1996; lean_object* x_1997; -lean_dec(x_19); -x_1984 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1984, 0, x_1957); -lean_ctor_set(x_1984, 1, x_1967); -x_1985 = lean_array_push(x_1955, x_1984); -x_1986 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1987 = lean_array_push(x_1985, x_1986); -x_1988 = lean_array_push(x_1987, x_1944); -x_1989 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1990 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1990, 0, x_1989); -lean_ctor_set(x_1990, 1, x_1988); -x_1991 = lean_array_push(x_1955, x_1990); +lean_object* x_1958; lean_object* x_1959; lean_object* x_1960; lean_object* x_1961; lean_object* x_1962; lean_object* x_1963; lean_object* x_1964; lean_object* x_1965; lean_object* x_1966; lean_object* x_1967; lean_object* x_1968; lean_object* x_1969; lean_object* x_1970; lean_object* x_1971; lean_object* x_1972; lean_object* x_1973; lean_object* x_1974; lean_object* x_1975; lean_object* x_1976; lean_object* x_1977; lean_object* x_1978; lean_object* x_1979; lean_object* x_1980; lean_object* x_1981; lean_object* x_1982; lean_object* x_1983; lean_object* x_1984; lean_object* x_1985; lean_object* x_1986; lean_object* x_1987; lean_object* x_1988; lean_object* x_1989; lean_object* x_1990; lean_object* x_1991; lean_object* x_1992; lean_object* x_1993; lean_object* x_1994; lean_object* x_1995; uint8_t x_1996; lean_object* x_1997; lean_object* x_1998; lean_object* x_1999; +x_1958 = lean_ctor_get(x_1857, 0); +lean_inc(x_1958); +lean_dec(x_1857); +x_1959 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1858); +x_1960 = lean_ctor_get(x_1959, 1); +lean_inc(x_1960); +lean_dec(x_1959); +x_1961 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1960); +x_1962 = lean_ctor_get(x_1961, 1); +lean_inc(x_1962); +if (lean_is_exclusive(x_1961)) { + lean_ctor_release(x_1961, 0); + lean_ctor_release(x_1961, 1); + x_1963 = x_1961; +} else { + lean_dec_ref(x_1961); + x_1963 = lean_box(0); +} +x_1964 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1965 = lean_array_push(x_1964, x_1848); +x_1966 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1967 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1967, 0, x_1966); +lean_ctor_set(x_1967, 1, x_1965); +x_1968 = l_Array_empty___closed__1; +x_1969 = lean_array_push(x_1968, x_1967); +x_1970 = l_Lean_nullKind___closed__2; +x_1971 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1971, 0, x_1970); +lean_ctor_set(x_1971, 1, x_1969); +x_1972 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_1973 = lean_array_push(x_1972, x_1971); +x_1974 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1975 = lean_array_push(x_1973, x_1974); +x_1976 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1977 = lean_array_push(x_1975, x_1976); +lean_inc(x_19); +x_1978 = lean_array_push(x_1968, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_1979 = x_19; +} else { + lean_dec_ref(x_19); + x_1979 = lean_box(0); +} +if (lean_is_scalar(x_1979)) { + x_1980 = lean_alloc_ctor(1, 2, 0); +} else { + x_1980 = x_1979; +} +lean_ctor_set(x_1980, 0, x_1970); +lean_ctor_set(x_1980, 1, x_1978); +x_1981 = lean_array_push(x_1968, x_1980); +x_1982 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1983 = lean_array_push(x_1981, x_1982); +x_1984 = lean_array_push(x_1983, x_1958); +x_1985 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1986 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1986, 0, x_1985); +lean_ctor_set(x_1986, 1, x_1984); +x_1987 = lean_array_push(x_1968, x_1986); +x_1988 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1988, 0, x_1970); +lean_ctor_set(x_1988, 1, x_1987); +x_1989 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1990 = lean_array_push(x_1989, x_1988); +x_1991 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_1992 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1992, 0, x_1957); -lean_ctor_set(x_1992, 1, x_1991); -x_1993 = lean_array_push(x_1966, x_1992); +lean_ctor_set(x_1992, 0, x_1991); +lean_ctor_set(x_1992, 1, x_1990); +x_1993 = lean_array_push(x_1977, x_1992); x_1994 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1995 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1995, 0, x_1994); lean_ctor_set(x_1995, 1, x_1993); x_1996 = 1; x_1997 = lean_box(x_1996); -lean_ctor_set(x_1939, 1, x_1997); -lean_ctor_set(x_1939, 0, x_1995); -lean_ctor_set(x_1948, 0, x_1938); -return x_1948; +x_1998 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1998, 0, x_1995); +lean_ctor_set(x_1998, 1, x_1997); +lean_ctor_set(x_1856, 1, x_1998); +if (lean_is_scalar(x_1963)) { + x_1999 = lean_alloc_ctor(0, 2, 0); +} else { + x_1999 = x_1963; +} +lean_ctor_set(x_1999, 0, x_1856); +lean_ctor_set(x_1999, 1, x_1962); +return x_1999; } } else { -lean_object* x_1998; lean_object* x_1999; lean_object* x_2000; lean_object* x_2001; lean_object* x_2002; lean_object* x_2003; lean_object* x_2004; lean_object* x_2005; lean_object* x_2006; lean_object* x_2007; lean_object* x_2008; lean_object* x_2009; lean_object* x_2010; lean_object* x_2011; lean_object* x_2012; lean_object* x_2013; lean_object* x_2014; lean_object* x_2015; lean_object* x_2016; lean_object* x_2017; lean_object* x_2018; lean_object* x_2019; lean_object* x_2020; lean_object* x_2021; lean_object* x_2022; lean_object* x_2023; lean_object* x_2024; lean_object* x_2025; lean_object* x_2026; lean_object* x_2027; lean_object* x_2028; uint8_t x_2029; lean_object* x_2030; lean_object* x_2031; -x_1998 = lean_ctor_get(x_1948, 1); -lean_inc(x_1998); -lean_dec(x_1948); -x_1999 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2000 = lean_array_push(x_1999, x_1930); -x_2001 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2002 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2002, 0, x_2001); -lean_ctor_set(x_2002, 1, x_2000); -x_2003 = l_Array_empty___closed__1; -x_2004 = lean_array_push(x_2003, x_2002); -x_2005 = l_Lean_nullKind___closed__2; -x_2006 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2006, 0, x_2005); -lean_ctor_set(x_2006, 1, x_2004); -x_2007 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2008 = lean_array_push(x_2007, x_2006); -x_2009 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2010 = lean_array_push(x_2008, x_2009); -x_2011 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2012 = lean_array_push(x_2010, x_2011); -x_2013 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2014 = lean_array_push(x_2012, x_2013); +lean_object* x_2000; lean_object* x_2001; lean_object* x_2002; lean_object* x_2003; lean_object* x_2004; lean_object* x_2005; lean_object* x_2006; lean_object* x_2007; lean_object* x_2008; lean_object* x_2009; lean_object* x_2010; lean_object* x_2011; lean_object* x_2012; lean_object* x_2013; lean_object* x_2014; lean_object* x_2015; lean_object* x_2016; lean_object* x_2017; lean_object* x_2018; lean_object* x_2019; lean_object* x_2020; lean_object* x_2021; lean_object* x_2022; lean_object* x_2023; lean_object* x_2024; lean_object* x_2025; lean_object* x_2026; lean_object* x_2027; lean_object* x_2028; lean_object* x_2029; lean_object* x_2030; lean_object* x_2031; lean_object* x_2032; lean_object* x_2033; lean_object* x_2034; lean_object* x_2035; lean_object* x_2036; lean_object* x_2037; lean_object* x_2038; lean_object* x_2039; uint8_t x_2040; lean_object* x_2041; lean_object* x_2042; lean_object* x_2043; lean_object* x_2044; +x_2000 = lean_ctor_get(x_1856, 0); +lean_inc(x_2000); +lean_dec(x_1856); +x_2001 = lean_ctor_get(x_1857, 0); +lean_inc(x_2001); +if (lean_is_exclusive(x_1857)) { + lean_ctor_release(x_1857, 0); + lean_ctor_release(x_1857, 1); + x_2002 = x_1857; +} else { + lean_dec_ref(x_1857); + x_2002 = lean_box(0); +} +x_2003 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1858); +x_2004 = lean_ctor_get(x_2003, 1); +lean_inc(x_2004); +lean_dec(x_2003); +x_2005 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2004); +x_2006 = lean_ctor_get(x_2005, 1); +lean_inc(x_2006); +if (lean_is_exclusive(x_2005)) { + lean_ctor_release(x_2005, 0); + lean_ctor_release(x_2005, 1); + x_2007 = x_2005; +} else { + lean_dec_ref(x_2005); + x_2007 = lean_box(0); +} +x_2008 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2009 = lean_array_push(x_2008, x_1848); +x_2010 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2011 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2011, 0, x_2010); +lean_ctor_set(x_2011, 1, x_2009); +x_2012 = l_Array_empty___closed__1; +x_2013 = lean_array_push(x_2012, x_2011); +x_2014 = l_Lean_nullKind___closed__2; +x_2015 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2015, 0, x_2014); +lean_ctor_set(x_2015, 1, x_2013); +x_2016 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2017 = lean_array_push(x_2016, x_2015); +x_2018 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2019 = lean_array_push(x_2017, x_2018); +x_2020 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2021 = lean_array_push(x_2019, x_2020); lean_inc(x_19); -x_2015 = lean_array_push(x_2003, x_19); +x_2022 = lean_array_push(x_2012, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2016 = x_19; + x_2023 = x_19; } else { lean_dec_ref(x_19); - x_2016 = lean_box(0); + x_2023 = lean_box(0); } -if (lean_is_scalar(x_2016)) { - x_2017 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2023)) { + x_2024 = lean_alloc_ctor(1, 2, 0); } else { - x_2017 = x_2016; + x_2024 = x_2023; } -lean_ctor_set(x_2017, 0, x_2005); -lean_ctor_set(x_2017, 1, x_2015); -x_2018 = lean_array_push(x_2003, x_2017); -x_2019 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2020 = lean_array_push(x_2018, x_2019); -x_2021 = lean_array_push(x_2020, x_1944); -x_2022 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2023 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2023, 0, x_2022); -lean_ctor_set(x_2023, 1, x_2021); -x_2024 = lean_array_push(x_2003, x_2023); -x_2025 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2025, 0, x_2005); -lean_ctor_set(x_2025, 1, x_2024); -x_2026 = lean_array_push(x_2014, x_2025); -x_2027 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2028 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2028, 0, x_2027); -lean_ctor_set(x_2028, 1, x_2026); -x_2029 = 1; -x_2030 = lean_box(x_2029); -lean_ctor_set(x_1939, 1, x_2030); -lean_ctor_set(x_1939, 0, x_2028); -x_2031 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2031, 0, x_1938); -lean_ctor_set(x_2031, 1, x_1998); -return x_2031; -} -} -else -{ -lean_object* x_2032; lean_object* x_2033; lean_object* x_2034; lean_object* x_2035; lean_object* x_2036; lean_object* x_2037; lean_object* x_2038; lean_object* x_2039; lean_object* x_2040; lean_object* x_2041; lean_object* x_2042; lean_object* x_2043; lean_object* x_2044; lean_object* x_2045; lean_object* x_2046; lean_object* x_2047; lean_object* x_2048; lean_object* x_2049; lean_object* x_2050; lean_object* x_2051; lean_object* x_2052; lean_object* x_2053; lean_object* x_2054; lean_object* x_2055; lean_object* x_2056; lean_object* x_2057; lean_object* x_2058; lean_object* x_2059; lean_object* x_2060; lean_object* x_2061; lean_object* x_2062; lean_object* x_2063; lean_object* x_2064; lean_object* x_2065; lean_object* x_2066; lean_object* x_2067; uint8_t x_2068; lean_object* x_2069; lean_object* x_2070; lean_object* x_2071; -x_2032 = lean_ctor_get(x_1939, 0); -lean_inc(x_2032); -lean_dec(x_1939); -x_2033 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1940); -x_2034 = lean_ctor_get(x_2033, 1); -lean_inc(x_2034); -lean_dec(x_2033); -x_2035 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2034); -x_2036 = lean_ctor_get(x_2035, 1); -lean_inc(x_2036); -if (lean_is_exclusive(x_2035)) { - lean_ctor_release(x_2035, 0); - lean_ctor_release(x_2035, 1); - x_2037 = x_2035; +lean_ctor_set(x_2024, 0, x_2014); +lean_ctor_set(x_2024, 1, x_2022); +x_2025 = lean_array_push(x_2012, x_2024); +x_2026 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2027 = lean_array_push(x_2025, x_2026); +x_2028 = lean_array_push(x_2027, x_2001); +x_2029 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2030 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2030, 0, x_2029); +lean_ctor_set(x_2030, 1, x_2028); +x_2031 = lean_array_push(x_2012, x_2030); +x_2032 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2032, 0, x_2014); +lean_ctor_set(x_2032, 1, x_2031); +x_2033 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2034 = lean_array_push(x_2033, x_2032); +x_2035 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2036 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2036, 0, x_2035); +lean_ctor_set(x_2036, 1, x_2034); +x_2037 = lean_array_push(x_2021, x_2036); +x_2038 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2039 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2039, 0, x_2038); +lean_ctor_set(x_2039, 1, x_2037); +x_2040 = 1; +x_2041 = lean_box(x_2040); +if (lean_is_scalar(x_2002)) { + x_2042 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_2035); - x_2037 = lean_box(0); + x_2042 = x_2002; } -x_2038 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2039 = lean_array_push(x_2038, x_1930); -x_2040 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2041 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2041, 0, x_2040); -lean_ctor_set(x_2041, 1, x_2039); -x_2042 = l_Array_empty___closed__1; -x_2043 = lean_array_push(x_2042, x_2041); -x_2044 = l_Lean_nullKind___closed__2; -x_2045 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2045, 0, x_2044); -lean_ctor_set(x_2045, 1, x_2043); -x_2046 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2047 = lean_array_push(x_2046, x_2045); -x_2048 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2049 = lean_array_push(x_2047, x_2048); -x_2050 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2051 = lean_array_push(x_2049, x_2050); -x_2052 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2053 = lean_array_push(x_2051, x_2052); -lean_inc(x_19); -x_2054 = lean_array_push(x_2042, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_2055 = x_19; +lean_ctor_set(x_2042, 0, x_2039); +lean_ctor_set(x_2042, 1, x_2041); +x_2043 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2043, 0, x_2000); +lean_ctor_set(x_2043, 1, x_2042); +if (lean_is_scalar(x_2007)) { + x_2044 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_19); - x_2055 = lean_box(0); + x_2044 = x_2007; } -if (lean_is_scalar(x_2055)) { - x_2056 = lean_alloc_ctor(1, 2, 0); -} else { - x_2056 = x_2055; -} -lean_ctor_set(x_2056, 0, x_2044); -lean_ctor_set(x_2056, 1, x_2054); -x_2057 = lean_array_push(x_2042, x_2056); -x_2058 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2059 = lean_array_push(x_2057, x_2058); -x_2060 = lean_array_push(x_2059, x_2032); -x_2061 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2062 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2062, 0, x_2061); -lean_ctor_set(x_2062, 1, x_2060); -x_2063 = lean_array_push(x_2042, x_2062); -x_2064 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2064, 0, x_2044); -lean_ctor_set(x_2064, 1, x_2063); -x_2065 = lean_array_push(x_2053, x_2064); -x_2066 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2067 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2067, 0, x_2066); -lean_ctor_set(x_2067, 1, x_2065); -x_2068 = 1; -x_2069 = lean_box(x_2068); -x_2070 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2070, 0, x_2067); -lean_ctor_set(x_2070, 1, x_2069); -lean_ctor_set(x_1938, 1, x_2070); -if (lean_is_scalar(x_2037)) { - x_2071 = lean_alloc_ctor(0, 2, 0); -} else { - x_2071 = x_2037; -} -lean_ctor_set(x_2071, 0, x_1938); -lean_ctor_set(x_2071, 1, x_2036); -return x_2071; -} -} -else -{ -lean_object* x_2072; lean_object* x_2073; lean_object* x_2074; lean_object* x_2075; lean_object* x_2076; lean_object* x_2077; lean_object* x_2078; lean_object* x_2079; lean_object* x_2080; lean_object* x_2081; lean_object* x_2082; lean_object* x_2083; lean_object* x_2084; lean_object* x_2085; lean_object* x_2086; lean_object* x_2087; lean_object* x_2088; lean_object* x_2089; lean_object* x_2090; lean_object* x_2091; lean_object* x_2092; lean_object* x_2093; lean_object* x_2094; lean_object* x_2095; lean_object* x_2096; lean_object* x_2097; lean_object* x_2098; lean_object* x_2099; lean_object* x_2100; lean_object* x_2101; lean_object* x_2102; lean_object* x_2103; lean_object* x_2104; lean_object* x_2105; lean_object* x_2106; lean_object* x_2107; lean_object* x_2108; lean_object* x_2109; uint8_t x_2110; lean_object* x_2111; lean_object* x_2112; lean_object* x_2113; lean_object* x_2114; -x_2072 = lean_ctor_get(x_1938, 0); -lean_inc(x_2072); -lean_dec(x_1938); -x_2073 = lean_ctor_get(x_1939, 0); -lean_inc(x_2073); -if (lean_is_exclusive(x_1939)) { - lean_ctor_release(x_1939, 0); - lean_ctor_release(x_1939, 1); - x_2074 = x_1939; -} else { - lean_dec_ref(x_1939); - x_2074 = lean_box(0); -} -x_2075 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1940); -x_2076 = lean_ctor_get(x_2075, 1); -lean_inc(x_2076); -lean_dec(x_2075); -x_2077 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2076); -x_2078 = lean_ctor_get(x_2077, 1); -lean_inc(x_2078); -if (lean_is_exclusive(x_2077)) { - lean_ctor_release(x_2077, 0); - lean_ctor_release(x_2077, 1); - x_2079 = x_2077; -} else { - lean_dec_ref(x_2077); - x_2079 = lean_box(0); -} -x_2080 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2081 = lean_array_push(x_2080, x_1930); -x_2082 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2083 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2083, 0, x_2082); -lean_ctor_set(x_2083, 1, x_2081); -x_2084 = l_Array_empty___closed__1; -x_2085 = lean_array_push(x_2084, x_2083); -x_2086 = l_Lean_nullKind___closed__2; -x_2087 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2087, 0, x_2086); -lean_ctor_set(x_2087, 1, x_2085); -x_2088 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2089 = lean_array_push(x_2088, x_2087); -x_2090 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2091 = lean_array_push(x_2089, x_2090); -x_2092 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2093 = lean_array_push(x_2091, x_2092); -x_2094 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2095 = lean_array_push(x_2093, x_2094); -lean_inc(x_19); -x_2096 = lean_array_push(x_2084, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_2097 = x_19; -} else { - lean_dec_ref(x_19); - x_2097 = lean_box(0); -} -if (lean_is_scalar(x_2097)) { - x_2098 = lean_alloc_ctor(1, 2, 0); -} else { - x_2098 = x_2097; -} -lean_ctor_set(x_2098, 0, x_2086); -lean_ctor_set(x_2098, 1, x_2096); -x_2099 = lean_array_push(x_2084, x_2098); -x_2100 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2101 = lean_array_push(x_2099, x_2100); -x_2102 = lean_array_push(x_2101, x_2073); -x_2103 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2104 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2104, 0, x_2103); -lean_ctor_set(x_2104, 1, x_2102); -x_2105 = lean_array_push(x_2084, x_2104); -x_2106 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2106, 0, x_2086); -lean_ctor_set(x_2106, 1, x_2105); -x_2107 = lean_array_push(x_2095, x_2106); -x_2108 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2109 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2109, 0, x_2108); -lean_ctor_set(x_2109, 1, x_2107); -x_2110 = 1; -x_2111 = lean_box(x_2110); -if (lean_is_scalar(x_2074)) { - x_2112 = lean_alloc_ctor(0, 2, 0); -} else { - x_2112 = x_2074; -} -lean_ctor_set(x_2112, 0, x_2109); -lean_ctor_set(x_2112, 1, x_2111); -x_2113 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2113, 0, x_2072); -lean_ctor_set(x_2113, 1, x_2112); -if (lean_is_scalar(x_2079)) { - x_2114 = lean_alloc_ctor(0, 2, 0); -} else { - x_2114 = x_2079; -} -lean_ctor_set(x_2114, 0, x_2113); -lean_ctor_set(x_2114, 1, x_2078); -return x_2114; +lean_ctor_set(x_2044, 0, x_2043); +lean_ctor_set(x_2044, 1, x_2006); +return x_2044; } } } else { -lean_object* x_2115; lean_object* x_2116; lean_object* x_2117; lean_object* x_2118; lean_object* x_2119; lean_object* x_2120; lean_object* x_2121; lean_object* x_2122; lean_object* x_2123; lean_object* x_2124; lean_object* x_2125; lean_object* x_2126; uint8_t x_2127; -lean_dec(x_189); -lean_dec(x_188); -lean_dec(x_187); -x_2115 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_2116 = lean_ctor_get(x_2115, 0); -lean_inc(x_2116); -x_2117 = lean_ctor_get(x_2115, 1); -lean_inc(x_2117); -lean_dec(x_2115); -x_2118 = lean_unsigned_to_nat(1u); -x_2119 = lean_nat_add(x_3, x_2118); +lean_object* x_2045; lean_object* x_2046; lean_object* x_2047; lean_object* x_2048; lean_object* x_2049; lean_object* x_2050; lean_object* x_2051; lean_object* x_2052; lean_object* x_2053; lean_object* x_2054; lean_object* x_2055; lean_object* x_2056; uint8_t x_2057; +lean_dec(x_198); +lean_dec(x_197); +lean_dec(x_196); +lean_dec(x_195); +x_2045 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_2046 = lean_ctor_get(x_2045, 0); +lean_inc(x_2046); +x_2047 = lean_ctor_get(x_2045, 1); +lean_inc(x_2047); +lean_dec(x_2045); +x_2048 = lean_unsigned_to_nat(1u); +x_2049 = lean_nat_add(x_3, x_2048); lean_dec(x_3); -x_2120 = l_Lean_mkHole(x_19); -lean_inc(x_2116); -x_2121 = l_Lean_Elab_Term_mkExplicitBinder(x_2116, x_2120); -x_2122 = lean_array_push(x_4, x_2121); -x_2123 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2119, x_2122, x_5, x_6, x_7, x_8, x_9, x_10, x_2117); -x_2124 = lean_ctor_get(x_2123, 0); -lean_inc(x_2124); -x_2125 = lean_ctor_get(x_2124, 1); -lean_inc(x_2125); -x_2126 = lean_ctor_get(x_2123, 1); -lean_inc(x_2126); -lean_dec(x_2123); -x_2127 = !lean_is_exclusive(x_2124); -if (x_2127 == 0) +x_2050 = l_Lean_mkHole(x_19); +lean_inc(x_2046); +x_2051 = l_Lean_Elab_Term_mkExplicitBinder(x_2046, x_2050); +x_2052 = lean_array_push(x_4, x_2051); +x_2053 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2049, x_2052, x_5, x_6, x_7, x_8, x_9, x_10, x_2047); +x_2054 = lean_ctor_get(x_2053, 0); +lean_inc(x_2054); +x_2055 = lean_ctor_get(x_2054, 1); +lean_inc(x_2055); +x_2056 = lean_ctor_get(x_2053, 1); +lean_inc(x_2056); +lean_dec(x_2053); +x_2057 = !lean_is_exclusive(x_2054); +if (x_2057 == 0) { -lean_object* x_2128; uint8_t x_2129; -x_2128 = lean_ctor_get(x_2124, 1); -lean_dec(x_2128); -x_2129 = !lean_is_exclusive(x_2125); -if (x_2129 == 0) +lean_object* x_2058; uint8_t x_2059; +x_2058 = lean_ctor_get(x_2054, 1); +lean_dec(x_2058); +x_2059 = !lean_is_exclusive(x_2055); +if (x_2059 == 0) { -lean_object* x_2130; lean_object* x_2131; lean_object* x_2132; lean_object* x_2133; lean_object* x_2134; uint8_t x_2135; -x_2130 = lean_ctor_get(x_2125, 0); -x_2131 = lean_ctor_get(x_2125, 1); -lean_dec(x_2131); -x_2132 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2126); -x_2133 = lean_ctor_get(x_2132, 1); -lean_inc(x_2133); -lean_dec(x_2132); -x_2134 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2133); -x_2135 = !lean_is_exclusive(x_2134); -if (x_2135 == 0) +lean_object* x_2060; lean_object* x_2061; lean_object* x_2062; lean_object* x_2063; lean_object* x_2064; uint8_t x_2065; +x_2060 = lean_ctor_get(x_2055, 0); +x_2061 = lean_ctor_get(x_2055, 1); +lean_dec(x_2061); +x_2062 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2056); +x_2063 = lean_ctor_get(x_2062, 1); +lean_inc(x_2063); +lean_dec(x_2062); +x_2064 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2063); +x_2065 = !lean_is_exclusive(x_2064); +if (x_2065 == 0) { -lean_object* x_2136; lean_object* x_2137; lean_object* x_2138; lean_object* x_2139; lean_object* x_2140; lean_object* x_2141; lean_object* x_2142; lean_object* x_2143; lean_object* x_2144; lean_object* x_2145; lean_object* x_2146; lean_object* x_2147; lean_object* x_2148; lean_object* x_2149; lean_object* x_2150; lean_object* x_2151; lean_object* x_2152; lean_object* x_2153; uint8_t x_2154; -x_2136 = lean_ctor_get(x_2134, 0); -lean_dec(x_2136); -x_2137 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2138 = lean_array_push(x_2137, x_2116); -x_2139 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2140 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2140, 0, x_2139); -lean_ctor_set(x_2140, 1, x_2138); -x_2141 = l_Array_empty___closed__1; -x_2142 = lean_array_push(x_2141, x_2140); -x_2143 = l_Lean_nullKind___closed__2; -x_2144 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2144, 0, x_2143); -lean_ctor_set(x_2144, 1, x_2142); -x_2145 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2146 = lean_array_push(x_2145, x_2144); -x_2147 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2148 = lean_array_push(x_2146, x_2147); -x_2149 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2150 = lean_array_push(x_2148, x_2149); -x_2151 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2152 = lean_array_push(x_2150, x_2151); +lean_object* x_2066; lean_object* x_2067; lean_object* x_2068; lean_object* x_2069; lean_object* x_2070; lean_object* x_2071; lean_object* x_2072; lean_object* x_2073; lean_object* x_2074; lean_object* x_2075; lean_object* x_2076; lean_object* x_2077; lean_object* x_2078; lean_object* x_2079; lean_object* x_2080; lean_object* x_2081; uint8_t x_2082; +x_2066 = lean_ctor_get(x_2064, 0); +lean_dec(x_2066); +x_2067 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2068 = lean_array_push(x_2067, x_2046); +x_2069 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2070 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2070, 0, x_2069); +lean_ctor_set(x_2070, 1, x_2068); +x_2071 = l_Array_empty___closed__1; +x_2072 = lean_array_push(x_2071, x_2070); +x_2073 = l_Lean_nullKind___closed__2; +x_2074 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2074, 0, x_2073); +lean_ctor_set(x_2074, 1, x_2072); +x_2075 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2076 = lean_array_push(x_2075, x_2074); +x_2077 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2078 = lean_array_push(x_2076, x_2077); +x_2079 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2080 = lean_array_push(x_2078, x_2079); lean_inc(x_19); -x_2153 = lean_array_push(x_2141, x_19); -x_2154 = !lean_is_exclusive(x_19); -if (x_2154 == 0) +x_2081 = lean_array_push(x_2071, x_19); +x_2082 = !lean_is_exclusive(x_19); +if (x_2082 == 0) { -lean_object* x_2155; lean_object* x_2156; lean_object* x_2157; lean_object* x_2158; lean_object* x_2159; lean_object* x_2160; lean_object* x_2161; lean_object* x_2162; lean_object* x_2163; lean_object* x_2164; lean_object* x_2165; lean_object* x_2166; lean_object* x_2167; uint8_t x_2168; lean_object* x_2169; -x_2155 = lean_ctor_get(x_19, 1); -lean_dec(x_2155); -x_2156 = lean_ctor_get(x_19, 0); -lean_dec(x_2156); -lean_ctor_set(x_19, 1, x_2153); -lean_ctor_set(x_19, 0, x_2143); -x_2157 = lean_array_push(x_2141, x_19); -x_2158 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2159 = lean_array_push(x_2157, x_2158); -x_2160 = lean_array_push(x_2159, x_2130); -x_2161 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2162 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2162, 0, x_2161); -lean_ctor_set(x_2162, 1, x_2160); -x_2163 = lean_array_push(x_2141, x_2162); -x_2164 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2164, 0, x_2143); -lean_ctor_set(x_2164, 1, x_2163); -x_2165 = lean_array_push(x_2152, x_2164); -x_2166 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2167 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2167, 0, x_2166); -lean_ctor_set(x_2167, 1, x_2165); -x_2168 = 1; -x_2169 = lean_box(x_2168); -lean_ctor_set(x_2125, 1, x_2169); -lean_ctor_set(x_2125, 0, x_2167); -lean_ctor_set(x_2134, 0, x_2124); -return x_2134; +lean_object* x_2083; lean_object* x_2084; lean_object* x_2085; lean_object* x_2086; lean_object* x_2087; lean_object* x_2088; lean_object* x_2089; lean_object* x_2090; lean_object* x_2091; lean_object* x_2092; lean_object* x_2093; lean_object* x_2094; lean_object* x_2095; lean_object* x_2096; lean_object* x_2097; lean_object* x_2098; lean_object* x_2099; uint8_t x_2100; lean_object* x_2101; +x_2083 = lean_ctor_get(x_19, 1); +lean_dec(x_2083); +x_2084 = lean_ctor_get(x_19, 0); +lean_dec(x_2084); +lean_ctor_set(x_19, 1, x_2081); +lean_ctor_set(x_19, 0, x_2073); +x_2085 = lean_array_push(x_2071, x_19); +x_2086 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2087 = lean_array_push(x_2085, x_2086); +x_2088 = lean_array_push(x_2087, x_2060); +x_2089 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2090 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2090, 0, x_2089); +lean_ctor_set(x_2090, 1, x_2088); +x_2091 = lean_array_push(x_2071, x_2090); +x_2092 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2092, 0, x_2073); +lean_ctor_set(x_2092, 1, x_2091); +x_2093 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2094 = lean_array_push(x_2093, x_2092); +x_2095 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2096 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2096, 0, x_2095); +lean_ctor_set(x_2096, 1, x_2094); +x_2097 = lean_array_push(x_2080, x_2096); +x_2098 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2099 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2099, 0, x_2098); +lean_ctor_set(x_2099, 1, x_2097); +x_2100 = 1; +x_2101 = lean_box(x_2100); +lean_ctor_set(x_2055, 1, x_2101); +lean_ctor_set(x_2055, 0, x_2099); +lean_ctor_set(x_2064, 0, x_2054); +return x_2064; } else { -lean_object* x_2170; lean_object* x_2171; lean_object* x_2172; lean_object* x_2173; lean_object* x_2174; lean_object* x_2175; lean_object* x_2176; lean_object* x_2177; lean_object* x_2178; lean_object* x_2179; lean_object* x_2180; lean_object* x_2181; uint8_t x_2182; lean_object* x_2183; +lean_object* x_2102; lean_object* x_2103; lean_object* x_2104; lean_object* x_2105; lean_object* x_2106; lean_object* x_2107; lean_object* x_2108; lean_object* x_2109; lean_object* x_2110; lean_object* x_2111; lean_object* x_2112; lean_object* x_2113; lean_object* x_2114; lean_object* x_2115; lean_object* x_2116; lean_object* x_2117; uint8_t x_2118; lean_object* x_2119; lean_dec(x_19); -x_2170 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2170, 0, x_2143); -lean_ctor_set(x_2170, 1, x_2153); -x_2171 = lean_array_push(x_2141, x_2170); -x_2172 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2173 = lean_array_push(x_2171, x_2172); -x_2174 = lean_array_push(x_2173, x_2130); -x_2175 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2176 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2176, 0, x_2175); -lean_ctor_set(x_2176, 1, x_2174); -x_2177 = lean_array_push(x_2141, x_2176); -x_2178 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2178, 0, x_2143); -lean_ctor_set(x_2178, 1, x_2177); -x_2179 = lean_array_push(x_2152, x_2178); -x_2180 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2181 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2181, 0, x_2180); -lean_ctor_set(x_2181, 1, x_2179); -x_2182 = 1; -x_2183 = lean_box(x_2182); -lean_ctor_set(x_2125, 1, x_2183); -lean_ctor_set(x_2125, 0, x_2181); -lean_ctor_set(x_2134, 0, x_2124); -return x_2134; +x_2102 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2102, 0, x_2073); +lean_ctor_set(x_2102, 1, x_2081); +x_2103 = lean_array_push(x_2071, x_2102); +x_2104 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2105 = lean_array_push(x_2103, x_2104); +x_2106 = lean_array_push(x_2105, x_2060); +x_2107 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2108 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2108, 0, x_2107); +lean_ctor_set(x_2108, 1, x_2106); +x_2109 = lean_array_push(x_2071, x_2108); +x_2110 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2110, 0, x_2073); +lean_ctor_set(x_2110, 1, x_2109); +x_2111 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2112 = lean_array_push(x_2111, x_2110); +x_2113 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2114 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2114, 0, x_2113); +lean_ctor_set(x_2114, 1, x_2112); +x_2115 = lean_array_push(x_2080, x_2114); +x_2116 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2117 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2117, 0, x_2116); +lean_ctor_set(x_2117, 1, x_2115); +x_2118 = 1; +x_2119 = lean_box(x_2118); +lean_ctor_set(x_2055, 1, x_2119); +lean_ctor_set(x_2055, 0, x_2117); +lean_ctor_set(x_2064, 0, x_2054); +return x_2064; } } else { -lean_object* x_2184; lean_object* x_2185; lean_object* x_2186; lean_object* x_2187; lean_object* x_2188; lean_object* x_2189; lean_object* x_2190; lean_object* x_2191; lean_object* x_2192; lean_object* x_2193; lean_object* x_2194; lean_object* x_2195; lean_object* x_2196; lean_object* x_2197; lean_object* x_2198; lean_object* x_2199; lean_object* x_2200; lean_object* x_2201; lean_object* x_2202; lean_object* x_2203; lean_object* x_2204; lean_object* x_2205; lean_object* x_2206; lean_object* x_2207; lean_object* x_2208; lean_object* x_2209; lean_object* x_2210; lean_object* x_2211; lean_object* x_2212; lean_object* x_2213; lean_object* x_2214; uint8_t x_2215; lean_object* x_2216; lean_object* x_2217; -x_2184 = lean_ctor_get(x_2134, 1); -lean_inc(x_2184); -lean_dec(x_2134); -x_2185 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2186 = lean_array_push(x_2185, x_2116); -x_2187 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2188 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2188, 0, x_2187); -lean_ctor_set(x_2188, 1, x_2186); -x_2189 = l_Array_empty___closed__1; -x_2190 = lean_array_push(x_2189, x_2188); -x_2191 = l_Lean_nullKind___closed__2; -x_2192 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2192, 0, x_2191); -lean_ctor_set(x_2192, 1, x_2190); -x_2193 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2194 = lean_array_push(x_2193, x_2192); -x_2195 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2196 = lean_array_push(x_2194, x_2195); -x_2197 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2198 = lean_array_push(x_2196, x_2197); -x_2199 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2200 = lean_array_push(x_2198, x_2199); +lean_object* x_2120; lean_object* x_2121; lean_object* x_2122; lean_object* x_2123; lean_object* x_2124; lean_object* x_2125; lean_object* x_2126; lean_object* x_2127; lean_object* x_2128; lean_object* x_2129; lean_object* x_2130; lean_object* x_2131; lean_object* x_2132; lean_object* x_2133; lean_object* x_2134; lean_object* x_2135; lean_object* x_2136; lean_object* x_2137; lean_object* x_2138; lean_object* x_2139; lean_object* x_2140; lean_object* x_2141; lean_object* x_2142; lean_object* x_2143; lean_object* x_2144; lean_object* x_2145; lean_object* x_2146; lean_object* x_2147; lean_object* x_2148; lean_object* x_2149; lean_object* x_2150; lean_object* x_2151; lean_object* x_2152; uint8_t x_2153; lean_object* x_2154; lean_object* x_2155; +x_2120 = lean_ctor_get(x_2064, 1); +lean_inc(x_2120); +lean_dec(x_2064); +x_2121 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2122 = lean_array_push(x_2121, x_2046); +x_2123 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2124 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2124, 0, x_2123); +lean_ctor_set(x_2124, 1, x_2122); +x_2125 = l_Array_empty___closed__1; +x_2126 = lean_array_push(x_2125, x_2124); +x_2127 = l_Lean_nullKind___closed__2; +x_2128 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2128, 0, x_2127); +lean_ctor_set(x_2128, 1, x_2126); +x_2129 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2130 = lean_array_push(x_2129, x_2128); +x_2131 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2132 = lean_array_push(x_2130, x_2131); +x_2133 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2134 = lean_array_push(x_2132, x_2133); lean_inc(x_19); -x_2201 = lean_array_push(x_2189, x_19); +x_2135 = lean_array_push(x_2125, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2202 = x_19; + x_2136 = x_19; } else { lean_dec_ref(x_19); - x_2202 = lean_box(0); + x_2136 = lean_box(0); } -if (lean_is_scalar(x_2202)) { - x_2203 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2136)) { + x_2137 = lean_alloc_ctor(1, 2, 0); } else { - x_2203 = x_2202; + x_2137 = x_2136; } -lean_ctor_set(x_2203, 0, x_2191); -lean_ctor_set(x_2203, 1, x_2201); -x_2204 = lean_array_push(x_2189, x_2203); -x_2205 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2206 = lean_array_push(x_2204, x_2205); -x_2207 = lean_array_push(x_2206, x_2130); -x_2208 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +lean_ctor_set(x_2137, 0, x_2127); +lean_ctor_set(x_2137, 1, x_2135); +x_2138 = lean_array_push(x_2125, x_2137); +x_2139 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2140 = lean_array_push(x_2138, x_2139); +x_2141 = lean_array_push(x_2140, x_2060); +x_2142 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2143 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2143, 0, x_2142); +lean_ctor_set(x_2143, 1, x_2141); +x_2144 = lean_array_push(x_2125, x_2143); +x_2145 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2145, 0, x_2127); +lean_ctor_set(x_2145, 1, x_2144); +x_2146 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2147 = lean_array_push(x_2146, x_2145); +x_2148 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2149 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2149, 0, x_2148); +lean_ctor_set(x_2149, 1, x_2147); +x_2150 = lean_array_push(x_2134, x_2149); +x_2151 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2152 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2152, 0, x_2151); +lean_ctor_set(x_2152, 1, x_2150); +x_2153 = 1; +x_2154 = lean_box(x_2153); +lean_ctor_set(x_2055, 1, x_2154); +lean_ctor_set(x_2055, 0, x_2152); +x_2155 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2155, 0, x_2054); +lean_ctor_set(x_2155, 1, x_2120); +return x_2155; +} +} +else +{ +lean_object* x_2156; lean_object* x_2157; lean_object* x_2158; lean_object* x_2159; lean_object* x_2160; lean_object* x_2161; lean_object* x_2162; lean_object* x_2163; lean_object* x_2164; lean_object* x_2165; lean_object* x_2166; lean_object* x_2167; lean_object* x_2168; lean_object* x_2169; lean_object* x_2170; lean_object* x_2171; lean_object* x_2172; lean_object* x_2173; lean_object* x_2174; lean_object* x_2175; lean_object* x_2176; lean_object* x_2177; lean_object* x_2178; lean_object* x_2179; lean_object* x_2180; lean_object* x_2181; lean_object* x_2182; lean_object* x_2183; lean_object* x_2184; lean_object* x_2185; lean_object* x_2186; lean_object* x_2187; lean_object* x_2188; lean_object* x_2189; lean_object* x_2190; lean_object* x_2191; lean_object* x_2192; lean_object* x_2193; uint8_t x_2194; lean_object* x_2195; lean_object* x_2196; lean_object* x_2197; +x_2156 = lean_ctor_get(x_2055, 0); +lean_inc(x_2156); +lean_dec(x_2055); +x_2157 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2056); +x_2158 = lean_ctor_get(x_2157, 1); +lean_inc(x_2158); +lean_dec(x_2157); +x_2159 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2158); +x_2160 = lean_ctor_get(x_2159, 1); +lean_inc(x_2160); +if (lean_is_exclusive(x_2159)) { + lean_ctor_release(x_2159, 0); + lean_ctor_release(x_2159, 1); + x_2161 = x_2159; +} else { + lean_dec_ref(x_2159); + x_2161 = lean_box(0); +} +x_2162 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2163 = lean_array_push(x_2162, x_2046); +x_2164 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2165 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2165, 0, x_2164); +lean_ctor_set(x_2165, 1, x_2163); +x_2166 = l_Array_empty___closed__1; +x_2167 = lean_array_push(x_2166, x_2165); +x_2168 = l_Lean_nullKind___closed__2; +x_2169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2169, 0, x_2168); +lean_ctor_set(x_2169, 1, x_2167); +x_2170 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2171 = lean_array_push(x_2170, x_2169); +x_2172 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2173 = lean_array_push(x_2171, x_2172); +x_2174 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2175 = lean_array_push(x_2173, x_2174); +lean_inc(x_19); +x_2176 = lean_array_push(x_2166, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_2177 = x_19; +} else { + lean_dec_ref(x_19); + x_2177 = lean_box(0); +} +if (lean_is_scalar(x_2177)) { + x_2178 = lean_alloc_ctor(1, 2, 0); +} else { + x_2178 = x_2177; +} +lean_ctor_set(x_2178, 0, x_2168); +lean_ctor_set(x_2178, 1, x_2176); +x_2179 = lean_array_push(x_2166, x_2178); +x_2180 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2181 = lean_array_push(x_2179, x_2180); +x_2182 = lean_array_push(x_2181, x_2156); +x_2183 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2184 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2184, 0, x_2183); +lean_ctor_set(x_2184, 1, x_2182); +x_2185 = lean_array_push(x_2166, x_2184); +x_2186 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2186, 0, x_2168); +lean_ctor_set(x_2186, 1, x_2185); +x_2187 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2188 = lean_array_push(x_2187, x_2186); +x_2189 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2190 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2190, 0, x_2189); +lean_ctor_set(x_2190, 1, x_2188); +x_2191 = lean_array_push(x_2175, x_2190); +x_2192 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2193 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2193, 0, x_2192); +lean_ctor_set(x_2193, 1, x_2191); +x_2194 = 1; +x_2195 = lean_box(x_2194); +x_2196 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2196, 0, x_2193); +lean_ctor_set(x_2196, 1, x_2195); +lean_ctor_set(x_2054, 1, x_2196); +if (lean_is_scalar(x_2161)) { + x_2197 = lean_alloc_ctor(0, 2, 0); +} else { + x_2197 = x_2161; +} +lean_ctor_set(x_2197, 0, x_2054); +lean_ctor_set(x_2197, 1, x_2160); +return x_2197; +} +} +else +{ +lean_object* x_2198; lean_object* x_2199; lean_object* x_2200; lean_object* x_2201; lean_object* x_2202; lean_object* x_2203; lean_object* x_2204; lean_object* x_2205; lean_object* x_2206; lean_object* x_2207; lean_object* x_2208; lean_object* x_2209; lean_object* x_2210; lean_object* x_2211; lean_object* x_2212; lean_object* x_2213; lean_object* x_2214; lean_object* x_2215; lean_object* x_2216; lean_object* x_2217; lean_object* x_2218; lean_object* x_2219; lean_object* x_2220; lean_object* x_2221; lean_object* x_2222; lean_object* x_2223; lean_object* x_2224; lean_object* x_2225; lean_object* x_2226; lean_object* x_2227; lean_object* x_2228; lean_object* x_2229; lean_object* x_2230; lean_object* x_2231; lean_object* x_2232; lean_object* x_2233; lean_object* x_2234; lean_object* x_2235; lean_object* x_2236; lean_object* x_2237; uint8_t x_2238; lean_object* x_2239; lean_object* x_2240; lean_object* x_2241; lean_object* x_2242; +x_2198 = lean_ctor_get(x_2054, 0); +lean_inc(x_2198); +lean_dec(x_2054); +x_2199 = lean_ctor_get(x_2055, 0); +lean_inc(x_2199); +if (lean_is_exclusive(x_2055)) { + lean_ctor_release(x_2055, 0); + lean_ctor_release(x_2055, 1); + x_2200 = x_2055; +} else { + lean_dec_ref(x_2055); + x_2200 = lean_box(0); +} +x_2201 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2056); +x_2202 = lean_ctor_get(x_2201, 1); +lean_inc(x_2202); +lean_dec(x_2201); +x_2203 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2202); +x_2204 = lean_ctor_get(x_2203, 1); +lean_inc(x_2204); +if (lean_is_exclusive(x_2203)) { + lean_ctor_release(x_2203, 0); + lean_ctor_release(x_2203, 1); + x_2205 = x_2203; +} else { + lean_dec_ref(x_2203); + x_2205 = lean_box(0); +} +x_2206 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2207 = lean_array_push(x_2206, x_2046); +x_2208 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2209 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2209, 0, x_2208); lean_ctor_set(x_2209, 1, x_2207); -x_2210 = lean_array_push(x_2189, x_2209); -x_2211 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2211, 0, x_2191); -lean_ctor_set(x_2211, 1, x_2210); -x_2212 = lean_array_push(x_2200, x_2211); -x_2213 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2214 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2214, 0, x_2213); -lean_ctor_set(x_2214, 1, x_2212); -x_2215 = 1; -x_2216 = lean_box(x_2215); -lean_ctor_set(x_2125, 1, x_2216); -lean_ctor_set(x_2125, 0, x_2214); -x_2217 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2217, 0, x_2124); -lean_ctor_set(x_2217, 1, x_2184); -return x_2217; -} -} -else -{ -lean_object* x_2218; lean_object* x_2219; lean_object* x_2220; lean_object* x_2221; lean_object* x_2222; lean_object* x_2223; lean_object* x_2224; lean_object* x_2225; lean_object* x_2226; lean_object* x_2227; lean_object* x_2228; lean_object* x_2229; lean_object* x_2230; lean_object* x_2231; lean_object* x_2232; lean_object* x_2233; lean_object* x_2234; lean_object* x_2235; lean_object* x_2236; lean_object* x_2237; lean_object* x_2238; lean_object* x_2239; lean_object* x_2240; lean_object* x_2241; lean_object* x_2242; lean_object* x_2243; lean_object* x_2244; lean_object* x_2245; lean_object* x_2246; lean_object* x_2247; lean_object* x_2248; lean_object* x_2249; lean_object* x_2250; lean_object* x_2251; lean_object* x_2252; lean_object* x_2253; uint8_t x_2254; lean_object* x_2255; lean_object* x_2256; lean_object* x_2257; -x_2218 = lean_ctor_get(x_2125, 0); -lean_inc(x_2218); -lean_dec(x_2125); -x_2219 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2126); -x_2220 = lean_ctor_get(x_2219, 1); -lean_inc(x_2220); -lean_dec(x_2219); -x_2221 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2220); -x_2222 = lean_ctor_get(x_2221, 1); -lean_inc(x_2222); -if (lean_is_exclusive(x_2221)) { - lean_ctor_release(x_2221, 0); - lean_ctor_release(x_2221, 1); - x_2223 = x_2221; -} else { - lean_dec_ref(x_2221); - x_2223 = lean_box(0); -} -x_2224 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2225 = lean_array_push(x_2224, x_2116); -x_2226 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2227 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2227, 0, x_2226); -lean_ctor_set(x_2227, 1, x_2225); -x_2228 = l_Array_empty___closed__1; -x_2229 = lean_array_push(x_2228, x_2227); -x_2230 = l_Lean_nullKind___closed__2; -x_2231 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2231, 0, x_2230); -lean_ctor_set(x_2231, 1, x_2229); -x_2232 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2233 = lean_array_push(x_2232, x_2231); -x_2234 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2235 = lean_array_push(x_2233, x_2234); -x_2236 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2237 = lean_array_push(x_2235, x_2236); -x_2238 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2239 = lean_array_push(x_2237, x_2238); +x_2210 = l_Array_empty___closed__1; +x_2211 = lean_array_push(x_2210, x_2209); +x_2212 = l_Lean_nullKind___closed__2; +x_2213 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2213, 0, x_2212); +lean_ctor_set(x_2213, 1, x_2211); +x_2214 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2215 = lean_array_push(x_2214, x_2213); +x_2216 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2217 = lean_array_push(x_2215, x_2216); +x_2218 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2219 = lean_array_push(x_2217, x_2218); lean_inc(x_19); -x_2240 = lean_array_push(x_2228, x_19); +x_2220 = lean_array_push(x_2210, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2241 = x_19; + x_2221 = x_19; } else { lean_dec_ref(x_19); - x_2241 = lean_box(0); + x_2221 = lean_box(0); } -if (lean_is_scalar(x_2241)) { - x_2242 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2221)) { + x_2222 = lean_alloc_ctor(1, 2, 0); } else { - x_2242 = x_2241; + x_2222 = x_2221; } -lean_ctor_set(x_2242, 0, x_2230); -lean_ctor_set(x_2242, 1, x_2240); -x_2243 = lean_array_push(x_2228, x_2242); -x_2244 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2245 = lean_array_push(x_2243, x_2244); -x_2246 = lean_array_push(x_2245, x_2218); -x_2247 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2248 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2248, 0, x_2247); -lean_ctor_set(x_2248, 1, x_2246); -x_2249 = lean_array_push(x_2228, x_2248); -x_2250 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2250, 0, x_2230); -lean_ctor_set(x_2250, 1, x_2249); -x_2251 = lean_array_push(x_2239, x_2250); -x_2252 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2253 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2253, 0, x_2252); -lean_ctor_set(x_2253, 1, x_2251); -x_2254 = 1; -x_2255 = lean_box(x_2254); -x_2256 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2256, 0, x_2253); -lean_ctor_set(x_2256, 1, x_2255); -lean_ctor_set(x_2124, 1, x_2256); -if (lean_is_scalar(x_2223)) { - x_2257 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2222, 0, x_2212); +lean_ctor_set(x_2222, 1, x_2220); +x_2223 = lean_array_push(x_2210, x_2222); +x_2224 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2225 = lean_array_push(x_2223, x_2224); +x_2226 = lean_array_push(x_2225, x_2199); +x_2227 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2228 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2228, 0, x_2227); +lean_ctor_set(x_2228, 1, x_2226); +x_2229 = lean_array_push(x_2210, x_2228); +x_2230 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2230, 0, x_2212); +lean_ctor_set(x_2230, 1, x_2229); +x_2231 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2232 = lean_array_push(x_2231, x_2230); +x_2233 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2234 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2234, 0, x_2233); +lean_ctor_set(x_2234, 1, x_2232); +x_2235 = lean_array_push(x_2219, x_2234); +x_2236 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2237, 0, x_2236); +lean_ctor_set(x_2237, 1, x_2235); +x_2238 = 1; +x_2239 = lean_box(x_2238); +if (lean_is_scalar(x_2200)) { + x_2240 = lean_alloc_ctor(0, 2, 0); } else { - x_2257 = x_2223; + x_2240 = x_2200; } -lean_ctor_set(x_2257, 0, x_2124); -lean_ctor_set(x_2257, 1, x_2222); -return x_2257; -} -} -else -{ -lean_object* x_2258; lean_object* x_2259; lean_object* x_2260; lean_object* x_2261; lean_object* x_2262; lean_object* x_2263; lean_object* x_2264; lean_object* x_2265; lean_object* x_2266; lean_object* x_2267; lean_object* x_2268; lean_object* x_2269; lean_object* x_2270; lean_object* x_2271; lean_object* x_2272; lean_object* x_2273; lean_object* x_2274; lean_object* x_2275; lean_object* x_2276; lean_object* x_2277; lean_object* x_2278; lean_object* x_2279; lean_object* x_2280; lean_object* x_2281; lean_object* x_2282; lean_object* x_2283; lean_object* x_2284; lean_object* x_2285; lean_object* x_2286; lean_object* x_2287; lean_object* x_2288; lean_object* x_2289; lean_object* x_2290; lean_object* x_2291; lean_object* x_2292; lean_object* x_2293; lean_object* x_2294; lean_object* x_2295; uint8_t x_2296; lean_object* x_2297; lean_object* x_2298; lean_object* x_2299; lean_object* x_2300; -x_2258 = lean_ctor_get(x_2124, 0); -lean_inc(x_2258); -lean_dec(x_2124); -x_2259 = lean_ctor_get(x_2125, 0); -lean_inc(x_2259); -if (lean_is_exclusive(x_2125)) { - lean_ctor_release(x_2125, 0); - lean_ctor_release(x_2125, 1); - x_2260 = x_2125; +lean_ctor_set(x_2240, 0, x_2237); +lean_ctor_set(x_2240, 1, x_2239); +x_2241 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2241, 0, x_2198); +lean_ctor_set(x_2241, 1, x_2240); +if (lean_is_scalar(x_2205)) { + x_2242 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_2125); - x_2260 = lean_box(0); + x_2242 = x_2205; } -x_2261 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2126); -x_2262 = lean_ctor_get(x_2261, 1); -lean_inc(x_2262); -lean_dec(x_2261); -x_2263 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2262); -x_2264 = lean_ctor_get(x_2263, 1); -lean_inc(x_2264); -if (lean_is_exclusive(x_2263)) { - lean_ctor_release(x_2263, 0); - lean_ctor_release(x_2263, 1); - x_2265 = x_2263; -} else { - lean_dec_ref(x_2263); - x_2265 = lean_box(0); -} -x_2266 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2267 = lean_array_push(x_2266, x_2116); -x_2268 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2269 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2269, 0, x_2268); -lean_ctor_set(x_2269, 1, x_2267); -x_2270 = l_Array_empty___closed__1; -x_2271 = lean_array_push(x_2270, x_2269); -x_2272 = l_Lean_nullKind___closed__2; -x_2273 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2273, 0, x_2272); -lean_ctor_set(x_2273, 1, x_2271); -x_2274 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2275 = lean_array_push(x_2274, x_2273); -x_2276 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2277 = lean_array_push(x_2275, x_2276); -x_2278 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2279 = lean_array_push(x_2277, x_2278); -x_2280 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2281 = lean_array_push(x_2279, x_2280); -lean_inc(x_19); -x_2282 = lean_array_push(x_2270, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_2283 = x_19; -} else { - lean_dec_ref(x_19); - x_2283 = lean_box(0); -} -if (lean_is_scalar(x_2283)) { - x_2284 = lean_alloc_ctor(1, 2, 0); -} else { - x_2284 = x_2283; -} -lean_ctor_set(x_2284, 0, x_2272); -lean_ctor_set(x_2284, 1, x_2282); -x_2285 = lean_array_push(x_2270, x_2284); -x_2286 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2287 = lean_array_push(x_2285, x_2286); -x_2288 = lean_array_push(x_2287, x_2259); -x_2289 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2290 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2290, 0, x_2289); -lean_ctor_set(x_2290, 1, x_2288); -x_2291 = lean_array_push(x_2270, x_2290); -x_2292 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2292, 0, x_2272); -lean_ctor_set(x_2292, 1, x_2291); -x_2293 = lean_array_push(x_2281, x_2292); -x_2294 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2295 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2295, 0, x_2294); -lean_ctor_set(x_2295, 1, x_2293); -x_2296 = 1; -x_2297 = lean_box(x_2296); -if (lean_is_scalar(x_2260)) { - x_2298 = lean_alloc_ctor(0, 2, 0); -} else { - x_2298 = x_2260; -} -lean_ctor_set(x_2298, 0, x_2295); -lean_ctor_set(x_2298, 1, x_2297); -x_2299 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2299, 0, x_2258); -lean_ctor_set(x_2299, 1, x_2298); -if (lean_is_scalar(x_2265)) { - x_2300 = lean_alloc_ctor(0, 2, 0); -} else { - x_2300 = x_2265; -} -lean_ctor_set(x_2300, 0, x_2299); -lean_ctor_set(x_2300, 1, x_2264); -return x_2300; +lean_ctor_set(x_2242, 0, x_2241); +lean_ctor_set(x_2242, 1, x_2204); +return x_2242; } } } else { -lean_object* x_2301; lean_object* x_2302; lean_object* x_2303; lean_object* x_2304; lean_object* x_2305; lean_object* x_2306; lean_object* x_2307; lean_object* x_2308; lean_object* x_2309; lean_object* x_2310; lean_object* x_2311; lean_object* x_2312; uint8_t x_2313; -lean_dec(x_188); -lean_dec(x_187); -x_2301 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_2302 = lean_ctor_get(x_2301, 0); -lean_inc(x_2302); -x_2303 = lean_ctor_get(x_2301, 1); -lean_inc(x_2303); -lean_dec(x_2301); -x_2304 = lean_unsigned_to_nat(1u); -x_2305 = lean_nat_add(x_3, x_2304); +lean_object* x_2243; lean_object* x_2244; lean_object* x_2245; lean_object* x_2246; lean_object* x_2247; lean_object* x_2248; lean_object* x_2249; lean_object* x_2250; lean_object* x_2251; lean_object* x_2252; lean_object* x_2253; lean_object* x_2254; uint8_t x_2255; +lean_dec(x_197); +lean_dec(x_196); +lean_dec(x_195); +x_2243 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_2244 = lean_ctor_get(x_2243, 0); +lean_inc(x_2244); +x_2245 = lean_ctor_get(x_2243, 1); +lean_inc(x_2245); +lean_dec(x_2243); +x_2246 = lean_unsigned_to_nat(1u); +x_2247 = lean_nat_add(x_3, x_2246); lean_dec(x_3); -x_2306 = l_Lean_mkHole(x_19); -lean_inc(x_2302); -x_2307 = l_Lean_Elab_Term_mkExplicitBinder(x_2302, x_2306); -x_2308 = lean_array_push(x_4, x_2307); -x_2309 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2305, x_2308, x_5, x_6, x_7, x_8, x_9, x_10, x_2303); -x_2310 = lean_ctor_get(x_2309, 0); -lean_inc(x_2310); -x_2311 = lean_ctor_get(x_2310, 1); -lean_inc(x_2311); -x_2312 = lean_ctor_get(x_2309, 1); -lean_inc(x_2312); -lean_dec(x_2309); -x_2313 = !lean_is_exclusive(x_2310); -if (x_2313 == 0) +x_2248 = l_Lean_mkHole(x_19); +lean_inc(x_2244); +x_2249 = l_Lean_Elab_Term_mkExplicitBinder(x_2244, x_2248); +x_2250 = lean_array_push(x_4, x_2249); +x_2251 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2247, x_2250, x_5, x_6, x_7, x_8, x_9, x_10, x_2245); +x_2252 = lean_ctor_get(x_2251, 0); +lean_inc(x_2252); +x_2253 = lean_ctor_get(x_2252, 1); +lean_inc(x_2253); +x_2254 = lean_ctor_get(x_2251, 1); +lean_inc(x_2254); +lean_dec(x_2251); +x_2255 = !lean_is_exclusive(x_2252); +if (x_2255 == 0) { -lean_object* x_2314; uint8_t x_2315; -x_2314 = lean_ctor_get(x_2310, 1); -lean_dec(x_2314); -x_2315 = !lean_is_exclusive(x_2311); -if (x_2315 == 0) +lean_object* x_2256; uint8_t x_2257; +x_2256 = lean_ctor_get(x_2252, 1); +lean_dec(x_2256); +x_2257 = !lean_is_exclusive(x_2253); +if (x_2257 == 0) { -lean_object* x_2316; lean_object* x_2317; lean_object* x_2318; lean_object* x_2319; lean_object* x_2320; uint8_t x_2321; -x_2316 = lean_ctor_get(x_2311, 0); -x_2317 = lean_ctor_get(x_2311, 1); -lean_dec(x_2317); -x_2318 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2312); -x_2319 = lean_ctor_get(x_2318, 1); -lean_inc(x_2319); -lean_dec(x_2318); -x_2320 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2319); -x_2321 = !lean_is_exclusive(x_2320); -if (x_2321 == 0) +lean_object* x_2258; lean_object* x_2259; lean_object* x_2260; lean_object* x_2261; lean_object* x_2262; uint8_t x_2263; +x_2258 = lean_ctor_get(x_2253, 0); +x_2259 = lean_ctor_get(x_2253, 1); +lean_dec(x_2259); +x_2260 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2254); +x_2261 = lean_ctor_get(x_2260, 1); +lean_inc(x_2261); +lean_dec(x_2260); +x_2262 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2261); +x_2263 = !lean_is_exclusive(x_2262); +if (x_2263 == 0) { -lean_object* x_2322; lean_object* x_2323; lean_object* x_2324; lean_object* x_2325; lean_object* x_2326; lean_object* x_2327; lean_object* x_2328; lean_object* x_2329; lean_object* x_2330; lean_object* x_2331; lean_object* x_2332; lean_object* x_2333; lean_object* x_2334; lean_object* x_2335; lean_object* x_2336; lean_object* x_2337; lean_object* x_2338; lean_object* x_2339; uint8_t x_2340; -x_2322 = lean_ctor_get(x_2320, 0); -lean_dec(x_2322); -x_2323 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2324 = lean_array_push(x_2323, x_2302); -x_2325 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +lean_object* x_2264; lean_object* x_2265; lean_object* x_2266; lean_object* x_2267; lean_object* x_2268; lean_object* x_2269; lean_object* x_2270; lean_object* x_2271; lean_object* x_2272; lean_object* x_2273; lean_object* x_2274; lean_object* x_2275; lean_object* x_2276; lean_object* x_2277; lean_object* x_2278; lean_object* x_2279; uint8_t x_2280; +x_2264 = lean_ctor_get(x_2262, 0); +lean_dec(x_2264); +x_2265 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2266 = lean_array_push(x_2265, x_2244); +x_2267 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2268 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2268, 0, x_2267); +lean_ctor_set(x_2268, 1, x_2266); +x_2269 = l_Array_empty___closed__1; +x_2270 = lean_array_push(x_2269, x_2268); +x_2271 = l_Lean_nullKind___closed__2; +x_2272 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2272, 0, x_2271); +lean_ctor_set(x_2272, 1, x_2270); +x_2273 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2274 = lean_array_push(x_2273, x_2272); +x_2275 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2276 = lean_array_push(x_2274, x_2275); +x_2277 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2278 = lean_array_push(x_2276, x_2277); +lean_inc(x_19); +x_2279 = lean_array_push(x_2269, x_19); +x_2280 = !lean_is_exclusive(x_19); +if (x_2280 == 0) +{ +lean_object* x_2281; lean_object* x_2282; lean_object* x_2283; lean_object* x_2284; lean_object* x_2285; lean_object* x_2286; lean_object* x_2287; lean_object* x_2288; lean_object* x_2289; lean_object* x_2290; lean_object* x_2291; lean_object* x_2292; lean_object* x_2293; lean_object* x_2294; lean_object* x_2295; lean_object* x_2296; lean_object* x_2297; uint8_t x_2298; lean_object* x_2299; +x_2281 = lean_ctor_get(x_19, 1); +lean_dec(x_2281); +x_2282 = lean_ctor_get(x_19, 0); +lean_dec(x_2282); +lean_ctor_set(x_19, 1, x_2279); +lean_ctor_set(x_19, 0, x_2271); +x_2283 = lean_array_push(x_2269, x_19); +x_2284 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2285 = lean_array_push(x_2283, x_2284); +x_2286 = lean_array_push(x_2285, x_2258); +x_2287 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2288 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2288, 0, x_2287); +lean_ctor_set(x_2288, 1, x_2286); +x_2289 = lean_array_push(x_2269, x_2288); +x_2290 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2290, 0, x_2271); +lean_ctor_set(x_2290, 1, x_2289); +x_2291 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2292 = lean_array_push(x_2291, x_2290); +x_2293 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2294 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2294, 0, x_2293); +lean_ctor_set(x_2294, 1, x_2292); +x_2295 = lean_array_push(x_2278, x_2294); +x_2296 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2297 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2297, 0, x_2296); +lean_ctor_set(x_2297, 1, x_2295); +x_2298 = 1; +x_2299 = lean_box(x_2298); +lean_ctor_set(x_2253, 1, x_2299); +lean_ctor_set(x_2253, 0, x_2297); +lean_ctor_set(x_2262, 0, x_2252); +return x_2262; +} +else +{ +lean_object* x_2300; lean_object* x_2301; lean_object* x_2302; lean_object* x_2303; lean_object* x_2304; lean_object* x_2305; lean_object* x_2306; lean_object* x_2307; lean_object* x_2308; lean_object* x_2309; lean_object* x_2310; lean_object* x_2311; lean_object* x_2312; lean_object* x_2313; lean_object* x_2314; lean_object* x_2315; uint8_t x_2316; lean_object* x_2317; +lean_dec(x_19); +x_2300 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2300, 0, x_2271); +lean_ctor_set(x_2300, 1, x_2279); +x_2301 = lean_array_push(x_2269, x_2300); +x_2302 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2303 = lean_array_push(x_2301, x_2302); +x_2304 = lean_array_push(x_2303, x_2258); +x_2305 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2306 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2306, 0, x_2305); +lean_ctor_set(x_2306, 1, x_2304); +x_2307 = lean_array_push(x_2269, x_2306); +x_2308 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2308, 0, x_2271); +lean_ctor_set(x_2308, 1, x_2307); +x_2309 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2310 = lean_array_push(x_2309, x_2308); +x_2311 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2312 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2312, 0, x_2311); +lean_ctor_set(x_2312, 1, x_2310); +x_2313 = lean_array_push(x_2278, x_2312); +x_2314 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2315 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2315, 0, x_2314); +lean_ctor_set(x_2315, 1, x_2313); +x_2316 = 1; +x_2317 = lean_box(x_2316); +lean_ctor_set(x_2253, 1, x_2317); +lean_ctor_set(x_2253, 0, x_2315); +lean_ctor_set(x_2262, 0, x_2252); +return x_2262; +} +} +else +{ +lean_object* x_2318; lean_object* x_2319; lean_object* x_2320; lean_object* x_2321; lean_object* x_2322; lean_object* x_2323; lean_object* x_2324; lean_object* x_2325; lean_object* x_2326; lean_object* x_2327; lean_object* x_2328; lean_object* x_2329; lean_object* x_2330; lean_object* x_2331; lean_object* x_2332; lean_object* x_2333; lean_object* x_2334; lean_object* x_2335; lean_object* x_2336; lean_object* x_2337; lean_object* x_2338; lean_object* x_2339; lean_object* x_2340; lean_object* x_2341; lean_object* x_2342; lean_object* x_2343; lean_object* x_2344; lean_object* x_2345; lean_object* x_2346; lean_object* x_2347; lean_object* x_2348; lean_object* x_2349; lean_object* x_2350; uint8_t x_2351; lean_object* x_2352; lean_object* x_2353; +x_2318 = lean_ctor_get(x_2262, 1); +lean_inc(x_2318); +lean_dec(x_2262); +x_2319 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2320 = lean_array_push(x_2319, x_2244); +x_2321 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2322 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2322, 0, x_2321); +lean_ctor_set(x_2322, 1, x_2320); +x_2323 = l_Array_empty___closed__1; +x_2324 = lean_array_push(x_2323, x_2322); +x_2325 = l_Lean_nullKind___closed__2; x_2326 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2326, 0, x_2325); lean_ctor_set(x_2326, 1, x_2324); -x_2327 = l_Array_empty___closed__1; +x_2327 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; x_2328 = lean_array_push(x_2327, x_2326); -x_2329 = l_Lean_nullKind___closed__2; -x_2330 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2330, 0, x_2329); -lean_ctor_set(x_2330, 1, x_2328); -x_2331 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2332 = lean_array_push(x_2331, x_2330); -x_2333 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2334 = lean_array_push(x_2332, x_2333); -x_2335 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2336 = lean_array_push(x_2334, x_2335); -x_2337 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2338 = lean_array_push(x_2336, x_2337); +x_2329 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2330 = lean_array_push(x_2328, x_2329); +x_2331 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2332 = lean_array_push(x_2330, x_2331); lean_inc(x_19); -x_2339 = lean_array_push(x_2327, x_19); -x_2340 = !lean_is_exclusive(x_19); -if (x_2340 == 0) -{ -lean_object* x_2341; lean_object* x_2342; lean_object* x_2343; lean_object* x_2344; lean_object* x_2345; lean_object* x_2346; lean_object* x_2347; lean_object* x_2348; lean_object* x_2349; lean_object* x_2350; lean_object* x_2351; lean_object* x_2352; lean_object* x_2353; uint8_t x_2354; lean_object* x_2355; -x_2341 = lean_ctor_get(x_19, 1); -lean_dec(x_2341); -x_2342 = lean_ctor_get(x_19, 0); -lean_dec(x_2342); -lean_ctor_set(x_19, 1, x_2339); -lean_ctor_set(x_19, 0, x_2329); -x_2343 = lean_array_push(x_2327, x_19); -x_2344 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2345 = lean_array_push(x_2343, x_2344); -x_2346 = lean_array_push(x_2345, x_2316); -x_2347 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2348 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2348, 0, x_2347); -lean_ctor_set(x_2348, 1, x_2346); -x_2349 = lean_array_push(x_2327, x_2348); +x_2333 = lean_array_push(x_2323, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_2334 = x_19; +} else { + lean_dec_ref(x_19); + x_2334 = lean_box(0); +} +if (lean_is_scalar(x_2334)) { + x_2335 = lean_alloc_ctor(1, 2, 0); +} else { + x_2335 = x_2334; +} +lean_ctor_set(x_2335, 0, x_2325); +lean_ctor_set(x_2335, 1, x_2333); +x_2336 = lean_array_push(x_2323, x_2335); +x_2337 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2338 = lean_array_push(x_2336, x_2337); +x_2339 = lean_array_push(x_2338, x_2258); +x_2340 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2341 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2341, 0, x_2340); +lean_ctor_set(x_2341, 1, x_2339); +x_2342 = lean_array_push(x_2323, x_2341); +x_2343 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2343, 0, x_2325); +lean_ctor_set(x_2343, 1, x_2342); +x_2344 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2345 = lean_array_push(x_2344, x_2343); +x_2346 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2347 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2347, 0, x_2346); +lean_ctor_set(x_2347, 1, x_2345); +x_2348 = lean_array_push(x_2332, x_2347); +x_2349 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2350 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2350, 0, x_2329); -lean_ctor_set(x_2350, 1, x_2349); -x_2351 = lean_array_push(x_2338, x_2350); -x_2352 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2353 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2353, 0, x_2352); -lean_ctor_set(x_2353, 1, x_2351); -x_2354 = 1; -x_2355 = lean_box(x_2354); -lean_ctor_set(x_2311, 1, x_2355); -lean_ctor_set(x_2311, 0, x_2353); -lean_ctor_set(x_2320, 0, x_2310); -return x_2320; +lean_ctor_set(x_2350, 0, x_2349); +lean_ctor_set(x_2350, 1, x_2348); +x_2351 = 1; +x_2352 = lean_box(x_2351); +lean_ctor_set(x_2253, 1, x_2352); +lean_ctor_set(x_2253, 0, x_2350); +x_2353 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2353, 0, x_2252); +lean_ctor_set(x_2353, 1, x_2318); +return x_2353; +} } else { -lean_object* x_2356; lean_object* x_2357; lean_object* x_2358; lean_object* x_2359; lean_object* x_2360; lean_object* x_2361; lean_object* x_2362; lean_object* x_2363; lean_object* x_2364; lean_object* x_2365; lean_object* x_2366; lean_object* x_2367; uint8_t x_2368; lean_object* x_2369; -lean_dec(x_19); -x_2356 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2356, 0, x_2329); -lean_ctor_set(x_2356, 1, x_2339); -x_2357 = lean_array_push(x_2327, x_2356); -x_2358 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2359 = lean_array_push(x_2357, x_2358); -x_2360 = lean_array_push(x_2359, x_2316); -x_2361 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2362 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2362, 0, x_2361); -lean_ctor_set(x_2362, 1, x_2360); -x_2363 = lean_array_push(x_2327, x_2362); -x_2364 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2364, 0, x_2329); -lean_ctor_set(x_2364, 1, x_2363); -x_2365 = lean_array_push(x_2338, x_2364); -x_2366 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +lean_object* x_2354; lean_object* x_2355; lean_object* x_2356; lean_object* x_2357; lean_object* x_2358; lean_object* x_2359; lean_object* x_2360; lean_object* x_2361; lean_object* x_2362; lean_object* x_2363; lean_object* x_2364; lean_object* x_2365; lean_object* x_2366; lean_object* x_2367; lean_object* x_2368; lean_object* x_2369; lean_object* x_2370; lean_object* x_2371; lean_object* x_2372; lean_object* x_2373; lean_object* x_2374; lean_object* x_2375; lean_object* x_2376; lean_object* x_2377; lean_object* x_2378; lean_object* x_2379; lean_object* x_2380; lean_object* x_2381; lean_object* x_2382; lean_object* x_2383; lean_object* x_2384; lean_object* x_2385; lean_object* x_2386; lean_object* x_2387; lean_object* x_2388; lean_object* x_2389; lean_object* x_2390; lean_object* x_2391; uint8_t x_2392; lean_object* x_2393; lean_object* x_2394; lean_object* x_2395; +x_2354 = lean_ctor_get(x_2253, 0); +lean_inc(x_2354); +lean_dec(x_2253); +x_2355 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2254); +x_2356 = lean_ctor_get(x_2355, 1); +lean_inc(x_2356); +lean_dec(x_2355); +x_2357 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2356); +x_2358 = lean_ctor_get(x_2357, 1); +lean_inc(x_2358); +if (lean_is_exclusive(x_2357)) { + lean_ctor_release(x_2357, 0); + lean_ctor_release(x_2357, 1); + x_2359 = x_2357; +} else { + lean_dec_ref(x_2357); + x_2359 = lean_box(0); +} +x_2360 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2361 = lean_array_push(x_2360, x_2244); +x_2362 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2363 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2363, 0, x_2362); +lean_ctor_set(x_2363, 1, x_2361); +x_2364 = l_Array_empty___closed__1; +x_2365 = lean_array_push(x_2364, x_2363); +x_2366 = l_Lean_nullKind___closed__2; x_2367 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2367, 0, x_2366); lean_ctor_set(x_2367, 1, x_2365); -x_2368 = 1; -x_2369 = lean_box(x_2368); -lean_ctor_set(x_2311, 1, x_2369); -lean_ctor_set(x_2311, 0, x_2367); -lean_ctor_set(x_2320, 0, x_2310); -return x_2320; -} -} -else -{ -lean_object* x_2370; lean_object* x_2371; lean_object* x_2372; lean_object* x_2373; lean_object* x_2374; lean_object* x_2375; lean_object* x_2376; lean_object* x_2377; lean_object* x_2378; lean_object* x_2379; lean_object* x_2380; lean_object* x_2381; lean_object* x_2382; lean_object* x_2383; lean_object* x_2384; lean_object* x_2385; lean_object* x_2386; lean_object* x_2387; lean_object* x_2388; lean_object* x_2389; lean_object* x_2390; lean_object* x_2391; lean_object* x_2392; lean_object* x_2393; lean_object* x_2394; lean_object* x_2395; lean_object* x_2396; lean_object* x_2397; lean_object* x_2398; lean_object* x_2399; lean_object* x_2400; uint8_t x_2401; lean_object* x_2402; lean_object* x_2403; -x_2370 = lean_ctor_get(x_2320, 1); -lean_inc(x_2370); -lean_dec(x_2320); -x_2371 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2372 = lean_array_push(x_2371, x_2302); -x_2373 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2374 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2374, 0, x_2373); -lean_ctor_set(x_2374, 1, x_2372); -x_2375 = l_Array_empty___closed__1; -x_2376 = lean_array_push(x_2375, x_2374); -x_2377 = l_Lean_nullKind___closed__2; -x_2378 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2378, 0, x_2377); -lean_ctor_set(x_2378, 1, x_2376); -x_2379 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2380 = lean_array_push(x_2379, x_2378); -x_2381 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2382 = lean_array_push(x_2380, x_2381); -x_2383 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2384 = lean_array_push(x_2382, x_2383); -x_2385 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2386 = lean_array_push(x_2384, x_2385); +x_2368 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2369 = lean_array_push(x_2368, x_2367); +x_2370 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2371 = lean_array_push(x_2369, x_2370); +x_2372 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2373 = lean_array_push(x_2371, x_2372); lean_inc(x_19); -x_2387 = lean_array_push(x_2375, x_19); +x_2374 = lean_array_push(x_2364, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2388 = x_19; + x_2375 = x_19; } else { lean_dec_ref(x_19); - x_2388 = lean_box(0); + x_2375 = lean_box(0); } -if (lean_is_scalar(x_2388)) { - x_2389 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2375)) { + x_2376 = lean_alloc_ctor(1, 2, 0); } else { - x_2389 = x_2388; + x_2376 = x_2375; } -lean_ctor_set(x_2389, 0, x_2377); -lean_ctor_set(x_2389, 1, x_2387); -x_2390 = lean_array_push(x_2375, x_2389); -x_2391 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2392 = lean_array_push(x_2390, x_2391); -x_2393 = lean_array_push(x_2392, x_2316); -x_2394 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2395 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2395, 0, x_2394); -lean_ctor_set(x_2395, 1, x_2393); -x_2396 = lean_array_push(x_2375, x_2395); -x_2397 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2397, 0, x_2377); -lean_ctor_set(x_2397, 1, x_2396); -x_2398 = lean_array_push(x_2386, x_2397); -x_2399 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2400 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2400, 0, x_2399); -lean_ctor_set(x_2400, 1, x_2398); -x_2401 = 1; -x_2402 = lean_box(x_2401); -lean_ctor_set(x_2311, 1, x_2402); -lean_ctor_set(x_2311, 0, x_2400); -x_2403 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2403, 0, x_2310); -lean_ctor_set(x_2403, 1, x_2370); -return x_2403; +lean_ctor_set(x_2376, 0, x_2366); +lean_ctor_set(x_2376, 1, x_2374); +x_2377 = lean_array_push(x_2364, x_2376); +x_2378 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2379 = lean_array_push(x_2377, x_2378); +x_2380 = lean_array_push(x_2379, x_2354); +x_2381 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2382 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2382, 0, x_2381); +lean_ctor_set(x_2382, 1, x_2380); +x_2383 = lean_array_push(x_2364, x_2382); +x_2384 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2384, 0, x_2366); +lean_ctor_set(x_2384, 1, x_2383); +x_2385 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2386 = lean_array_push(x_2385, x_2384); +x_2387 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2388 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2388, 0, x_2387); +lean_ctor_set(x_2388, 1, x_2386); +x_2389 = lean_array_push(x_2373, x_2388); +x_2390 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2391 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2391, 0, x_2390); +lean_ctor_set(x_2391, 1, x_2389); +x_2392 = 1; +x_2393 = lean_box(x_2392); +x_2394 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2394, 0, x_2391); +lean_ctor_set(x_2394, 1, x_2393); +lean_ctor_set(x_2252, 1, x_2394); +if (lean_is_scalar(x_2359)) { + x_2395 = lean_alloc_ctor(0, 2, 0); +} else { + x_2395 = x_2359; +} +lean_ctor_set(x_2395, 0, x_2252); +lean_ctor_set(x_2395, 1, x_2358); +return x_2395; } } else { -lean_object* x_2404; lean_object* x_2405; lean_object* x_2406; lean_object* x_2407; lean_object* x_2408; lean_object* x_2409; lean_object* x_2410; lean_object* x_2411; lean_object* x_2412; lean_object* x_2413; lean_object* x_2414; lean_object* x_2415; lean_object* x_2416; lean_object* x_2417; lean_object* x_2418; lean_object* x_2419; lean_object* x_2420; lean_object* x_2421; lean_object* x_2422; lean_object* x_2423; lean_object* x_2424; lean_object* x_2425; lean_object* x_2426; lean_object* x_2427; lean_object* x_2428; lean_object* x_2429; lean_object* x_2430; lean_object* x_2431; lean_object* x_2432; lean_object* x_2433; lean_object* x_2434; lean_object* x_2435; lean_object* x_2436; lean_object* x_2437; lean_object* x_2438; lean_object* x_2439; uint8_t x_2440; lean_object* x_2441; lean_object* x_2442; lean_object* x_2443; -x_2404 = lean_ctor_get(x_2311, 0); -lean_inc(x_2404); -lean_dec(x_2311); -x_2405 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2312); -x_2406 = lean_ctor_get(x_2405, 1); -lean_inc(x_2406); -lean_dec(x_2405); -x_2407 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2406); -x_2408 = lean_ctor_get(x_2407, 1); -lean_inc(x_2408); -if (lean_is_exclusive(x_2407)) { - lean_ctor_release(x_2407, 0); - lean_ctor_release(x_2407, 1); - x_2409 = x_2407; +lean_object* x_2396; lean_object* x_2397; lean_object* x_2398; lean_object* x_2399; lean_object* x_2400; lean_object* x_2401; lean_object* x_2402; lean_object* x_2403; lean_object* x_2404; lean_object* x_2405; lean_object* x_2406; lean_object* x_2407; lean_object* x_2408; lean_object* x_2409; lean_object* x_2410; lean_object* x_2411; lean_object* x_2412; lean_object* x_2413; lean_object* x_2414; lean_object* x_2415; lean_object* x_2416; lean_object* x_2417; lean_object* x_2418; lean_object* x_2419; lean_object* x_2420; lean_object* x_2421; lean_object* x_2422; lean_object* x_2423; lean_object* x_2424; lean_object* x_2425; lean_object* x_2426; lean_object* x_2427; lean_object* x_2428; lean_object* x_2429; lean_object* x_2430; lean_object* x_2431; lean_object* x_2432; lean_object* x_2433; lean_object* x_2434; lean_object* x_2435; uint8_t x_2436; lean_object* x_2437; lean_object* x_2438; lean_object* x_2439; lean_object* x_2440; +x_2396 = lean_ctor_get(x_2252, 0); +lean_inc(x_2396); +lean_dec(x_2252); +x_2397 = lean_ctor_get(x_2253, 0); +lean_inc(x_2397); +if (lean_is_exclusive(x_2253)) { + lean_ctor_release(x_2253, 0); + lean_ctor_release(x_2253, 1); + x_2398 = x_2253; } else { - lean_dec_ref(x_2407); - x_2409 = lean_box(0); + lean_dec_ref(x_2253); + x_2398 = lean_box(0); } -x_2410 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2411 = lean_array_push(x_2410, x_2302); -x_2412 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2413 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2413, 0, x_2412); -lean_ctor_set(x_2413, 1, x_2411); -x_2414 = l_Array_empty___closed__1; -x_2415 = lean_array_push(x_2414, x_2413); -x_2416 = l_Lean_nullKind___closed__2; -x_2417 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2417, 0, x_2416); -lean_ctor_set(x_2417, 1, x_2415); -x_2418 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2419 = lean_array_push(x_2418, x_2417); -x_2420 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2421 = lean_array_push(x_2419, x_2420); -x_2422 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2399 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2254); +x_2400 = lean_ctor_get(x_2399, 1); +lean_inc(x_2400); +lean_dec(x_2399); +x_2401 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2400); +x_2402 = lean_ctor_get(x_2401, 1); +lean_inc(x_2402); +if (lean_is_exclusive(x_2401)) { + lean_ctor_release(x_2401, 0); + lean_ctor_release(x_2401, 1); + x_2403 = x_2401; +} else { + lean_dec_ref(x_2401); + x_2403 = lean_box(0); +} +x_2404 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2405 = lean_array_push(x_2404, x_2244); +x_2406 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2407 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2407, 0, x_2406); +lean_ctor_set(x_2407, 1, x_2405); +x_2408 = l_Array_empty___closed__1; +x_2409 = lean_array_push(x_2408, x_2407); +x_2410 = l_Lean_nullKind___closed__2; +x_2411 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2411, 0, x_2410); +lean_ctor_set(x_2411, 1, x_2409); +x_2412 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2413 = lean_array_push(x_2412, x_2411); +x_2414 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2415 = lean_array_push(x_2413, x_2414); +x_2416 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2417 = lean_array_push(x_2415, x_2416); +lean_inc(x_19); +x_2418 = lean_array_push(x_2408, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_2419 = x_19; +} else { + lean_dec_ref(x_19); + x_2419 = lean_box(0); +} +if (lean_is_scalar(x_2419)) { + x_2420 = lean_alloc_ctor(1, 2, 0); +} else { + x_2420 = x_2419; +} +lean_ctor_set(x_2420, 0, x_2410); +lean_ctor_set(x_2420, 1, x_2418); +x_2421 = lean_array_push(x_2408, x_2420); +x_2422 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; x_2423 = lean_array_push(x_2421, x_2422); -x_2424 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2425 = lean_array_push(x_2423, x_2424); -lean_inc(x_19); -x_2426 = lean_array_push(x_2414, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_2427 = x_19; +x_2424 = lean_array_push(x_2423, x_2397); +x_2425 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2426 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2426, 0, x_2425); +lean_ctor_set(x_2426, 1, x_2424); +x_2427 = lean_array_push(x_2408, x_2426); +x_2428 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2428, 0, x_2410); +lean_ctor_set(x_2428, 1, x_2427); +x_2429 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2430 = lean_array_push(x_2429, x_2428); +x_2431 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2432 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2432, 0, x_2431); +lean_ctor_set(x_2432, 1, x_2430); +x_2433 = lean_array_push(x_2417, x_2432); +x_2434 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2435 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2435, 0, x_2434); +lean_ctor_set(x_2435, 1, x_2433); +x_2436 = 1; +x_2437 = lean_box(x_2436); +if (lean_is_scalar(x_2398)) { + x_2438 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_19); - x_2427 = lean_box(0); + x_2438 = x_2398; } -if (lean_is_scalar(x_2427)) { - x_2428 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2438, 0, x_2435); +lean_ctor_set(x_2438, 1, x_2437); +x_2439 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2439, 0, x_2396); +lean_ctor_set(x_2439, 1, x_2438); +if (lean_is_scalar(x_2403)) { + x_2440 = lean_alloc_ctor(0, 2, 0); } else { - x_2428 = x_2427; + x_2440 = x_2403; } -lean_ctor_set(x_2428, 0, x_2416); -lean_ctor_set(x_2428, 1, x_2426); -x_2429 = lean_array_push(x_2414, x_2428); -x_2430 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2431 = lean_array_push(x_2429, x_2430); -x_2432 = lean_array_push(x_2431, x_2404); -x_2433 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2434 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2434, 0, x_2433); -lean_ctor_set(x_2434, 1, x_2432); -x_2435 = lean_array_push(x_2414, x_2434); -x_2436 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2436, 0, x_2416); -lean_ctor_set(x_2436, 1, x_2435); -x_2437 = lean_array_push(x_2425, x_2436); -x_2438 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2439 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2439, 0, x_2438); -lean_ctor_set(x_2439, 1, x_2437); -x_2440 = 1; -x_2441 = lean_box(x_2440); -x_2442 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2442, 0, x_2439); -lean_ctor_set(x_2442, 1, x_2441); -lean_ctor_set(x_2310, 1, x_2442); -if (lean_is_scalar(x_2409)) { - x_2443 = lean_alloc_ctor(0, 2, 0); -} else { - x_2443 = x_2409; -} -lean_ctor_set(x_2443, 0, x_2310); -lean_ctor_set(x_2443, 1, x_2408); -return x_2443; -} -} -else -{ -lean_object* x_2444; lean_object* x_2445; lean_object* x_2446; lean_object* x_2447; lean_object* x_2448; lean_object* x_2449; lean_object* x_2450; lean_object* x_2451; lean_object* x_2452; lean_object* x_2453; lean_object* x_2454; lean_object* x_2455; lean_object* x_2456; lean_object* x_2457; lean_object* x_2458; lean_object* x_2459; lean_object* x_2460; lean_object* x_2461; lean_object* x_2462; lean_object* x_2463; lean_object* x_2464; lean_object* x_2465; lean_object* x_2466; lean_object* x_2467; lean_object* x_2468; lean_object* x_2469; lean_object* x_2470; lean_object* x_2471; lean_object* x_2472; lean_object* x_2473; lean_object* x_2474; lean_object* x_2475; lean_object* x_2476; lean_object* x_2477; lean_object* x_2478; lean_object* x_2479; lean_object* x_2480; lean_object* x_2481; uint8_t x_2482; lean_object* x_2483; lean_object* x_2484; lean_object* x_2485; lean_object* x_2486; -x_2444 = lean_ctor_get(x_2310, 0); -lean_inc(x_2444); -lean_dec(x_2310); -x_2445 = lean_ctor_get(x_2311, 0); -lean_inc(x_2445); -if (lean_is_exclusive(x_2311)) { - lean_ctor_release(x_2311, 0); - lean_ctor_release(x_2311, 1); - x_2446 = x_2311; -} else { - lean_dec_ref(x_2311); - x_2446 = lean_box(0); -} -x_2447 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2312); -x_2448 = lean_ctor_get(x_2447, 1); -lean_inc(x_2448); -lean_dec(x_2447); -x_2449 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2448); -x_2450 = lean_ctor_get(x_2449, 1); -lean_inc(x_2450); -if (lean_is_exclusive(x_2449)) { - lean_ctor_release(x_2449, 0); - lean_ctor_release(x_2449, 1); - x_2451 = x_2449; -} else { - lean_dec_ref(x_2449); - x_2451 = lean_box(0); -} -x_2452 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2453 = lean_array_push(x_2452, x_2302); -x_2454 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2455 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2455, 0, x_2454); -lean_ctor_set(x_2455, 1, x_2453); -x_2456 = l_Array_empty___closed__1; -x_2457 = lean_array_push(x_2456, x_2455); -x_2458 = l_Lean_nullKind___closed__2; -x_2459 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2459, 0, x_2458); -lean_ctor_set(x_2459, 1, x_2457); -x_2460 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2461 = lean_array_push(x_2460, x_2459); -x_2462 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2463 = lean_array_push(x_2461, x_2462); -x_2464 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2465 = lean_array_push(x_2463, x_2464); -x_2466 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2467 = lean_array_push(x_2465, x_2466); -lean_inc(x_19); -x_2468 = lean_array_push(x_2456, x_19); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_2469 = x_19; -} else { - lean_dec_ref(x_19); - x_2469 = lean_box(0); -} -if (lean_is_scalar(x_2469)) { - x_2470 = lean_alloc_ctor(1, 2, 0); -} else { - x_2470 = x_2469; -} -lean_ctor_set(x_2470, 0, x_2458); -lean_ctor_set(x_2470, 1, x_2468); -x_2471 = lean_array_push(x_2456, x_2470); -x_2472 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2473 = lean_array_push(x_2471, x_2472); -x_2474 = lean_array_push(x_2473, x_2445); -x_2475 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2476 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2476, 0, x_2475); -lean_ctor_set(x_2476, 1, x_2474); -x_2477 = lean_array_push(x_2456, x_2476); -x_2478 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2478, 0, x_2458); -lean_ctor_set(x_2478, 1, x_2477); -x_2479 = lean_array_push(x_2467, x_2478); -x_2480 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2481 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2481, 0, x_2480); -lean_ctor_set(x_2481, 1, x_2479); -x_2482 = 1; -x_2483 = lean_box(x_2482); -if (lean_is_scalar(x_2446)) { - x_2484 = lean_alloc_ctor(0, 2, 0); -} else { - x_2484 = x_2446; -} -lean_ctor_set(x_2484, 0, x_2481); -lean_ctor_set(x_2484, 1, x_2483); -x_2485 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2485, 0, x_2444); -lean_ctor_set(x_2485, 1, x_2484); -if (lean_is_scalar(x_2451)) { - x_2486 = lean_alloc_ctor(0, 2, 0); -} else { - x_2486 = x_2451; -} -lean_ctor_set(x_2486, 0, x_2485); -lean_ctor_set(x_2486, 1, x_2450); -return x_2486; +lean_ctor_set(x_2440, 0, x_2439); +lean_ctor_set(x_2440, 1, x_2402); +return x_2440; } } } else { -lean_object* x_2487; lean_object* x_2488; lean_object* x_2489; lean_object* x_2490; lean_object* x_2491; lean_object* x_2492; lean_object* x_2493; lean_object* x_2494; lean_object* x_2495; lean_object* x_2496; lean_object* x_2497; lean_object* x_2498; uint8_t x_2499; -lean_dec(x_187); -x_2487 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_2488 = lean_ctor_get(x_2487, 0); -lean_inc(x_2488); -x_2489 = lean_ctor_get(x_2487, 1); -lean_inc(x_2489); -lean_dec(x_2487); -x_2490 = lean_unsigned_to_nat(1u); -x_2491 = lean_nat_add(x_3, x_2490); +lean_object* x_2441; lean_object* x_2442; lean_object* x_2443; lean_object* x_2444; lean_object* x_2445; lean_object* x_2446; lean_object* x_2447; lean_object* x_2448; lean_object* x_2449; lean_object* x_2450; lean_object* x_2451; lean_object* x_2452; uint8_t x_2453; +lean_dec(x_196); +lean_dec(x_195); +x_2441 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_2442 = lean_ctor_get(x_2441, 0); +lean_inc(x_2442); +x_2443 = lean_ctor_get(x_2441, 1); +lean_inc(x_2443); +lean_dec(x_2441); +x_2444 = lean_unsigned_to_nat(1u); +x_2445 = lean_nat_add(x_3, x_2444); lean_dec(x_3); -x_2492 = l_Lean_mkHole(x_19); -lean_inc(x_2488); -x_2493 = l_Lean_Elab_Term_mkExplicitBinder(x_2488, x_2492); -x_2494 = lean_array_push(x_4, x_2493); -x_2495 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2491, x_2494, x_5, x_6, x_7, x_8, x_9, x_10, x_2489); -x_2496 = lean_ctor_get(x_2495, 0); -lean_inc(x_2496); -x_2497 = lean_ctor_get(x_2496, 1); -lean_inc(x_2497); -x_2498 = lean_ctor_get(x_2495, 1); -lean_inc(x_2498); -lean_dec(x_2495); -x_2499 = !lean_is_exclusive(x_2496); -if (x_2499 == 0) +x_2446 = l_Lean_mkHole(x_19); +lean_inc(x_2442); +x_2447 = l_Lean_Elab_Term_mkExplicitBinder(x_2442, x_2446); +x_2448 = lean_array_push(x_4, x_2447); +x_2449 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2445, x_2448, x_5, x_6, x_7, x_8, x_9, x_10, x_2443); +x_2450 = lean_ctor_get(x_2449, 0); +lean_inc(x_2450); +x_2451 = lean_ctor_get(x_2450, 1); +lean_inc(x_2451); +x_2452 = lean_ctor_get(x_2449, 1); +lean_inc(x_2452); +lean_dec(x_2449); +x_2453 = !lean_is_exclusive(x_2450); +if (x_2453 == 0) { -lean_object* x_2500; uint8_t x_2501; -x_2500 = lean_ctor_get(x_2496, 1); -lean_dec(x_2500); -x_2501 = !lean_is_exclusive(x_2497); -if (x_2501 == 0) +lean_object* x_2454; uint8_t x_2455; +x_2454 = lean_ctor_get(x_2450, 1); +lean_dec(x_2454); +x_2455 = !lean_is_exclusive(x_2451); +if (x_2455 == 0) { -lean_object* x_2502; lean_object* x_2503; lean_object* x_2504; lean_object* x_2505; lean_object* x_2506; uint8_t x_2507; -x_2502 = lean_ctor_get(x_2497, 0); -x_2503 = lean_ctor_get(x_2497, 1); -lean_dec(x_2503); -x_2504 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2498); -x_2505 = lean_ctor_get(x_2504, 1); -lean_inc(x_2505); -lean_dec(x_2504); -x_2506 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2505); -x_2507 = !lean_is_exclusive(x_2506); -if (x_2507 == 0) +lean_object* x_2456; lean_object* x_2457; lean_object* x_2458; lean_object* x_2459; lean_object* x_2460; uint8_t x_2461; +x_2456 = lean_ctor_get(x_2451, 0); +x_2457 = lean_ctor_get(x_2451, 1); +lean_dec(x_2457); +x_2458 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2452); +x_2459 = lean_ctor_get(x_2458, 1); +lean_inc(x_2459); +lean_dec(x_2458); +x_2460 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2459); +x_2461 = !lean_is_exclusive(x_2460); +if (x_2461 == 0) { -lean_object* x_2508; lean_object* x_2509; lean_object* x_2510; lean_object* x_2511; lean_object* x_2512; lean_object* x_2513; lean_object* x_2514; lean_object* x_2515; lean_object* x_2516; lean_object* x_2517; lean_object* x_2518; lean_object* x_2519; lean_object* x_2520; lean_object* x_2521; lean_object* x_2522; lean_object* x_2523; lean_object* x_2524; lean_object* x_2525; uint8_t x_2526; -x_2508 = lean_ctor_get(x_2506, 0); -lean_dec(x_2508); -x_2509 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2510 = lean_array_push(x_2509, x_2488); -x_2511 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2512 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2512, 0, x_2511); -lean_ctor_set(x_2512, 1, x_2510); -x_2513 = l_Array_empty___closed__1; -x_2514 = lean_array_push(x_2513, x_2512); -x_2515 = l_Lean_nullKind___closed__2; -x_2516 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2516, 0, x_2515); -lean_ctor_set(x_2516, 1, x_2514); -x_2517 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2518 = lean_array_push(x_2517, x_2516); -x_2519 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2520 = lean_array_push(x_2518, x_2519); -x_2521 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2522 = lean_array_push(x_2520, x_2521); -x_2523 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2524 = lean_array_push(x_2522, x_2523); +lean_object* x_2462; lean_object* x_2463; lean_object* x_2464; lean_object* x_2465; lean_object* x_2466; lean_object* x_2467; lean_object* x_2468; lean_object* x_2469; lean_object* x_2470; lean_object* x_2471; lean_object* x_2472; lean_object* x_2473; lean_object* x_2474; lean_object* x_2475; lean_object* x_2476; lean_object* x_2477; uint8_t x_2478; +x_2462 = lean_ctor_get(x_2460, 0); +lean_dec(x_2462); +x_2463 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2464 = lean_array_push(x_2463, x_2442); +x_2465 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2466 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2466, 0, x_2465); +lean_ctor_set(x_2466, 1, x_2464); +x_2467 = l_Array_empty___closed__1; +x_2468 = lean_array_push(x_2467, x_2466); +x_2469 = l_Lean_nullKind___closed__2; +x_2470 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2470, 0, x_2469); +lean_ctor_set(x_2470, 1, x_2468); +x_2471 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2472 = lean_array_push(x_2471, x_2470); +x_2473 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2474 = lean_array_push(x_2472, x_2473); +x_2475 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2476 = lean_array_push(x_2474, x_2475); lean_inc(x_19); -x_2525 = lean_array_push(x_2513, x_19); -x_2526 = !lean_is_exclusive(x_19); -if (x_2526 == 0) +x_2477 = lean_array_push(x_2467, x_19); +x_2478 = !lean_is_exclusive(x_19); +if (x_2478 == 0) { -lean_object* x_2527; lean_object* x_2528; lean_object* x_2529; lean_object* x_2530; lean_object* x_2531; lean_object* x_2532; lean_object* x_2533; lean_object* x_2534; lean_object* x_2535; lean_object* x_2536; lean_object* x_2537; lean_object* x_2538; lean_object* x_2539; uint8_t x_2540; lean_object* x_2541; -x_2527 = lean_ctor_get(x_19, 1); -lean_dec(x_2527); -x_2528 = lean_ctor_get(x_19, 0); -lean_dec(x_2528); -lean_ctor_set(x_19, 1, x_2525); -lean_ctor_set(x_19, 0, x_2515); -x_2529 = lean_array_push(x_2513, x_19); -x_2530 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2531 = lean_array_push(x_2529, x_2530); -x_2532 = lean_array_push(x_2531, x_2502); -x_2533 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2534 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2534, 0, x_2533); -lean_ctor_set(x_2534, 1, x_2532); -x_2535 = lean_array_push(x_2513, x_2534); -x_2536 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2536, 0, x_2515); -lean_ctor_set(x_2536, 1, x_2535); -x_2537 = lean_array_push(x_2524, x_2536); -x_2538 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +lean_object* x_2479; lean_object* x_2480; lean_object* x_2481; lean_object* x_2482; lean_object* x_2483; lean_object* x_2484; lean_object* x_2485; lean_object* x_2486; lean_object* x_2487; lean_object* x_2488; lean_object* x_2489; lean_object* x_2490; lean_object* x_2491; lean_object* x_2492; lean_object* x_2493; lean_object* x_2494; lean_object* x_2495; uint8_t x_2496; lean_object* x_2497; +x_2479 = lean_ctor_get(x_19, 1); +lean_dec(x_2479); +x_2480 = lean_ctor_get(x_19, 0); +lean_dec(x_2480); +lean_ctor_set(x_19, 1, x_2477); +lean_ctor_set(x_19, 0, x_2469); +x_2481 = lean_array_push(x_2467, x_19); +x_2482 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2483 = lean_array_push(x_2481, x_2482); +x_2484 = lean_array_push(x_2483, x_2456); +x_2485 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2486 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2486, 0, x_2485); +lean_ctor_set(x_2486, 1, x_2484); +x_2487 = lean_array_push(x_2467, x_2486); +x_2488 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2488, 0, x_2469); +lean_ctor_set(x_2488, 1, x_2487); +x_2489 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2490 = lean_array_push(x_2489, x_2488); +x_2491 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2492 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2492, 0, x_2491); +lean_ctor_set(x_2492, 1, x_2490); +x_2493 = lean_array_push(x_2476, x_2492); +x_2494 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2495 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2495, 0, x_2494); +lean_ctor_set(x_2495, 1, x_2493); +x_2496 = 1; +x_2497 = lean_box(x_2496); +lean_ctor_set(x_2451, 1, x_2497); +lean_ctor_set(x_2451, 0, x_2495); +lean_ctor_set(x_2460, 0, x_2450); +return x_2460; +} +else +{ +lean_object* x_2498; lean_object* x_2499; lean_object* x_2500; lean_object* x_2501; lean_object* x_2502; lean_object* x_2503; lean_object* x_2504; lean_object* x_2505; lean_object* x_2506; lean_object* x_2507; lean_object* x_2508; lean_object* x_2509; lean_object* x_2510; lean_object* x_2511; lean_object* x_2512; lean_object* x_2513; uint8_t x_2514; lean_object* x_2515; +lean_dec(x_19); +x_2498 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2498, 0, x_2469); +lean_ctor_set(x_2498, 1, x_2477); +x_2499 = lean_array_push(x_2467, x_2498); +x_2500 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2501 = lean_array_push(x_2499, x_2500); +x_2502 = lean_array_push(x_2501, x_2456); +x_2503 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2504 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2504, 0, x_2503); +lean_ctor_set(x_2504, 1, x_2502); +x_2505 = lean_array_push(x_2467, x_2504); +x_2506 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2506, 0, x_2469); +lean_ctor_set(x_2506, 1, x_2505); +x_2507 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2508 = lean_array_push(x_2507, x_2506); +x_2509 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2510 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2510, 0, x_2509); +lean_ctor_set(x_2510, 1, x_2508); +x_2511 = lean_array_push(x_2476, x_2510); +x_2512 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2513 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2513, 0, x_2512); +lean_ctor_set(x_2513, 1, x_2511); +x_2514 = 1; +x_2515 = lean_box(x_2514); +lean_ctor_set(x_2451, 1, x_2515); +lean_ctor_set(x_2451, 0, x_2513); +lean_ctor_set(x_2460, 0, x_2450); +return x_2460; +} +} +else +{ +lean_object* x_2516; lean_object* x_2517; lean_object* x_2518; lean_object* x_2519; lean_object* x_2520; lean_object* x_2521; lean_object* x_2522; lean_object* x_2523; lean_object* x_2524; lean_object* x_2525; lean_object* x_2526; lean_object* x_2527; lean_object* x_2528; lean_object* x_2529; lean_object* x_2530; lean_object* x_2531; lean_object* x_2532; lean_object* x_2533; lean_object* x_2534; lean_object* x_2535; lean_object* x_2536; lean_object* x_2537; lean_object* x_2538; lean_object* x_2539; lean_object* x_2540; lean_object* x_2541; lean_object* x_2542; lean_object* x_2543; lean_object* x_2544; lean_object* x_2545; lean_object* x_2546; lean_object* x_2547; lean_object* x_2548; uint8_t x_2549; lean_object* x_2550; lean_object* x_2551; +x_2516 = lean_ctor_get(x_2460, 1); +lean_inc(x_2516); +lean_dec(x_2460); +x_2517 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2518 = lean_array_push(x_2517, x_2442); +x_2519 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2520 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2520, 0, x_2519); +lean_ctor_set(x_2520, 1, x_2518); +x_2521 = l_Array_empty___closed__1; +x_2522 = lean_array_push(x_2521, x_2520); +x_2523 = l_Lean_nullKind___closed__2; +x_2524 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2524, 0, x_2523); +lean_ctor_set(x_2524, 1, x_2522); +x_2525 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2526 = lean_array_push(x_2525, x_2524); +x_2527 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2528 = lean_array_push(x_2526, x_2527); +x_2529 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2530 = lean_array_push(x_2528, x_2529); +lean_inc(x_19); +x_2531 = lean_array_push(x_2521, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_2532 = x_19; +} else { + lean_dec_ref(x_19); + x_2532 = lean_box(0); +} +if (lean_is_scalar(x_2532)) { + x_2533 = lean_alloc_ctor(1, 2, 0); +} else { + x_2533 = x_2532; +} +lean_ctor_set(x_2533, 0, x_2523); +lean_ctor_set(x_2533, 1, x_2531); +x_2534 = lean_array_push(x_2521, x_2533); +x_2535 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2536 = lean_array_push(x_2534, x_2535); +x_2537 = lean_array_push(x_2536, x_2456); +x_2538 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_2539 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2539, 0, x_2538); lean_ctor_set(x_2539, 1, x_2537); -x_2540 = 1; -x_2541 = lean_box(x_2540); -lean_ctor_set(x_2497, 1, x_2541); -lean_ctor_set(x_2497, 0, x_2539); -lean_ctor_set(x_2506, 0, x_2496); -return x_2506; -} -else -{ -lean_object* x_2542; lean_object* x_2543; lean_object* x_2544; lean_object* x_2545; lean_object* x_2546; lean_object* x_2547; lean_object* x_2548; lean_object* x_2549; lean_object* x_2550; lean_object* x_2551; lean_object* x_2552; lean_object* x_2553; uint8_t x_2554; lean_object* x_2555; -lean_dec(x_19); -x_2542 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2542, 0, x_2515); -lean_ctor_set(x_2542, 1, x_2525); -x_2543 = lean_array_push(x_2513, x_2542); -x_2544 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2545 = lean_array_push(x_2543, x_2544); -x_2546 = lean_array_push(x_2545, x_2502); -x_2547 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +x_2540 = lean_array_push(x_2521, x_2539); +x_2541 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2541, 0, x_2523); +lean_ctor_set(x_2541, 1, x_2540); +x_2542 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2543 = lean_array_push(x_2542, x_2541); +x_2544 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2545 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2545, 0, x_2544); +lean_ctor_set(x_2545, 1, x_2543); +x_2546 = lean_array_push(x_2530, x_2545); +x_2547 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2548 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2548, 0, x_2547); lean_ctor_set(x_2548, 1, x_2546); -x_2549 = lean_array_push(x_2513, x_2548); -x_2550 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2550, 0, x_2515); -lean_ctor_set(x_2550, 1, x_2549); -x_2551 = lean_array_push(x_2524, x_2550); -x_2552 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2553 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2553, 0, x_2552); -lean_ctor_set(x_2553, 1, x_2551); -x_2554 = 1; -x_2555 = lean_box(x_2554); -lean_ctor_set(x_2497, 1, x_2555); -lean_ctor_set(x_2497, 0, x_2553); -lean_ctor_set(x_2506, 0, x_2496); -return x_2506; +x_2549 = 1; +x_2550 = lean_box(x_2549); +lean_ctor_set(x_2451, 1, x_2550); +lean_ctor_set(x_2451, 0, x_2548); +x_2551 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2551, 0, x_2450); +lean_ctor_set(x_2551, 1, x_2516); +return x_2551; } } else { -lean_object* x_2556; lean_object* x_2557; lean_object* x_2558; lean_object* x_2559; lean_object* x_2560; lean_object* x_2561; lean_object* x_2562; lean_object* x_2563; lean_object* x_2564; lean_object* x_2565; lean_object* x_2566; lean_object* x_2567; lean_object* x_2568; lean_object* x_2569; lean_object* x_2570; lean_object* x_2571; lean_object* x_2572; lean_object* x_2573; lean_object* x_2574; lean_object* x_2575; lean_object* x_2576; lean_object* x_2577; lean_object* x_2578; lean_object* x_2579; lean_object* x_2580; lean_object* x_2581; lean_object* x_2582; lean_object* x_2583; lean_object* x_2584; lean_object* x_2585; lean_object* x_2586; uint8_t x_2587; lean_object* x_2588; lean_object* x_2589; -x_2556 = lean_ctor_get(x_2506, 1); +lean_object* x_2552; lean_object* x_2553; lean_object* x_2554; lean_object* x_2555; lean_object* x_2556; lean_object* x_2557; lean_object* x_2558; lean_object* x_2559; lean_object* x_2560; lean_object* x_2561; lean_object* x_2562; lean_object* x_2563; lean_object* x_2564; lean_object* x_2565; lean_object* x_2566; lean_object* x_2567; lean_object* x_2568; lean_object* x_2569; lean_object* x_2570; lean_object* x_2571; lean_object* x_2572; lean_object* x_2573; lean_object* x_2574; lean_object* x_2575; lean_object* x_2576; lean_object* x_2577; lean_object* x_2578; lean_object* x_2579; lean_object* x_2580; lean_object* x_2581; lean_object* x_2582; lean_object* x_2583; lean_object* x_2584; lean_object* x_2585; lean_object* x_2586; lean_object* x_2587; lean_object* x_2588; lean_object* x_2589; uint8_t x_2590; lean_object* x_2591; lean_object* x_2592; lean_object* x_2593; +x_2552 = lean_ctor_get(x_2451, 0); +lean_inc(x_2552); +lean_dec(x_2451); +x_2553 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2452); +x_2554 = lean_ctor_get(x_2553, 1); +lean_inc(x_2554); +lean_dec(x_2553); +x_2555 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2554); +x_2556 = lean_ctor_get(x_2555, 1); lean_inc(x_2556); -lean_dec(x_2506); -x_2557 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2558 = lean_array_push(x_2557, x_2488); -x_2559 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2560 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2560, 0, x_2559); -lean_ctor_set(x_2560, 1, x_2558); -x_2561 = l_Array_empty___closed__1; -x_2562 = lean_array_push(x_2561, x_2560); -x_2563 = l_Lean_nullKind___closed__2; -x_2564 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2564, 0, x_2563); -lean_ctor_set(x_2564, 1, x_2562); -x_2565 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2566 = lean_array_push(x_2565, x_2564); -x_2567 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2568 = lean_array_push(x_2566, x_2567); -x_2569 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2570 = lean_array_push(x_2568, x_2569); -x_2571 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2572 = lean_array_push(x_2570, x_2571); +if (lean_is_exclusive(x_2555)) { + lean_ctor_release(x_2555, 0); + lean_ctor_release(x_2555, 1); + x_2557 = x_2555; +} else { + lean_dec_ref(x_2555); + x_2557 = lean_box(0); +} +x_2558 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2559 = lean_array_push(x_2558, x_2442); +x_2560 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2561 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2561, 0, x_2560); +lean_ctor_set(x_2561, 1, x_2559); +x_2562 = l_Array_empty___closed__1; +x_2563 = lean_array_push(x_2562, x_2561); +x_2564 = l_Lean_nullKind___closed__2; +x_2565 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2565, 0, x_2564); +lean_ctor_set(x_2565, 1, x_2563); +x_2566 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2567 = lean_array_push(x_2566, x_2565); +x_2568 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2569 = lean_array_push(x_2567, x_2568); +x_2570 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2571 = lean_array_push(x_2569, x_2570); lean_inc(x_19); -x_2573 = lean_array_push(x_2561, x_19); +x_2572 = lean_array_push(x_2562, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2574 = x_19; + x_2573 = x_19; } else { lean_dec_ref(x_19); - x_2574 = lean_box(0); + x_2573 = lean_box(0); } -if (lean_is_scalar(x_2574)) { - x_2575 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2573)) { + x_2574 = lean_alloc_ctor(1, 2, 0); } else { - x_2575 = x_2574; + x_2574 = x_2573; } -lean_ctor_set(x_2575, 0, x_2563); -lean_ctor_set(x_2575, 1, x_2573); -x_2576 = lean_array_push(x_2561, x_2575); -x_2577 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2578 = lean_array_push(x_2576, x_2577); -x_2579 = lean_array_push(x_2578, x_2502); -x_2580 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2581 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2581, 0, x_2580); -lean_ctor_set(x_2581, 1, x_2579); -x_2582 = lean_array_push(x_2561, x_2581); -x_2583 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2583, 0, x_2563); -lean_ctor_set(x_2583, 1, x_2582); -x_2584 = lean_array_push(x_2572, x_2583); -x_2585 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +lean_ctor_set(x_2574, 0, x_2564); +lean_ctor_set(x_2574, 1, x_2572); +x_2575 = lean_array_push(x_2562, x_2574); +x_2576 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2577 = lean_array_push(x_2575, x_2576); +x_2578 = lean_array_push(x_2577, x_2552); +x_2579 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2580 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2580, 0, x_2579); +lean_ctor_set(x_2580, 1, x_2578); +x_2581 = lean_array_push(x_2562, x_2580); +x_2582 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2582, 0, x_2564); +lean_ctor_set(x_2582, 1, x_2581); +x_2583 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2584 = lean_array_push(x_2583, x_2582); +x_2585 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_2586 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2586, 0, x_2585); lean_ctor_set(x_2586, 1, x_2584); -x_2587 = 1; -x_2588 = lean_box(x_2587); -lean_ctor_set(x_2497, 1, x_2588); -lean_ctor_set(x_2497, 0, x_2586); -x_2589 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2589, 0, x_2496); -lean_ctor_set(x_2589, 1, x_2556); -return x_2589; +x_2587 = lean_array_push(x_2571, x_2586); +x_2588 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2589 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2589, 0, x_2588); +lean_ctor_set(x_2589, 1, x_2587); +x_2590 = 1; +x_2591 = lean_box(x_2590); +x_2592 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2592, 0, x_2589); +lean_ctor_set(x_2592, 1, x_2591); +lean_ctor_set(x_2450, 1, x_2592); +if (lean_is_scalar(x_2557)) { + x_2593 = lean_alloc_ctor(0, 2, 0); +} else { + x_2593 = x_2557; +} +lean_ctor_set(x_2593, 0, x_2450); +lean_ctor_set(x_2593, 1, x_2556); +return x_2593; } } else { -lean_object* x_2590; lean_object* x_2591; lean_object* x_2592; lean_object* x_2593; lean_object* x_2594; lean_object* x_2595; lean_object* x_2596; lean_object* x_2597; lean_object* x_2598; lean_object* x_2599; lean_object* x_2600; lean_object* x_2601; lean_object* x_2602; lean_object* x_2603; lean_object* x_2604; lean_object* x_2605; lean_object* x_2606; lean_object* x_2607; lean_object* x_2608; lean_object* x_2609; lean_object* x_2610; lean_object* x_2611; lean_object* x_2612; lean_object* x_2613; lean_object* x_2614; lean_object* x_2615; lean_object* x_2616; lean_object* x_2617; lean_object* x_2618; lean_object* x_2619; lean_object* x_2620; lean_object* x_2621; lean_object* x_2622; lean_object* x_2623; lean_object* x_2624; lean_object* x_2625; uint8_t x_2626; lean_object* x_2627; lean_object* x_2628; lean_object* x_2629; -x_2590 = lean_ctor_get(x_2497, 0); -lean_inc(x_2590); -lean_dec(x_2497); -x_2591 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2498); -x_2592 = lean_ctor_get(x_2591, 1); -lean_inc(x_2592); -lean_dec(x_2591); -x_2593 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2592); -x_2594 = lean_ctor_get(x_2593, 1); +lean_object* x_2594; lean_object* x_2595; lean_object* x_2596; lean_object* x_2597; lean_object* x_2598; lean_object* x_2599; lean_object* x_2600; lean_object* x_2601; lean_object* x_2602; lean_object* x_2603; lean_object* x_2604; lean_object* x_2605; lean_object* x_2606; lean_object* x_2607; lean_object* x_2608; lean_object* x_2609; lean_object* x_2610; lean_object* x_2611; lean_object* x_2612; lean_object* x_2613; lean_object* x_2614; lean_object* x_2615; lean_object* x_2616; lean_object* x_2617; lean_object* x_2618; lean_object* x_2619; lean_object* x_2620; lean_object* x_2621; lean_object* x_2622; lean_object* x_2623; lean_object* x_2624; lean_object* x_2625; lean_object* x_2626; lean_object* x_2627; lean_object* x_2628; lean_object* x_2629; lean_object* x_2630; lean_object* x_2631; lean_object* x_2632; lean_object* x_2633; uint8_t x_2634; lean_object* x_2635; lean_object* x_2636; lean_object* x_2637; lean_object* x_2638; +x_2594 = lean_ctor_get(x_2450, 0); lean_inc(x_2594); -if (lean_is_exclusive(x_2593)) { - lean_ctor_release(x_2593, 0); - lean_ctor_release(x_2593, 1); - x_2595 = x_2593; +lean_dec(x_2450); +x_2595 = lean_ctor_get(x_2451, 0); +lean_inc(x_2595); +if (lean_is_exclusive(x_2451)) { + lean_ctor_release(x_2451, 0); + lean_ctor_release(x_2451, 1); + x_2596 = x_2451; } else { - lean_dec_ref(x_2593); - x_2595 = lean_box(0); + lean_dec_ref(x_2451); + x_2596 = lean_box(0); } -x_2596 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2597 = lean_array_push(x_2596, x_2488); -x_2598 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2599 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2599, 0, x_2598); -lean_ctor_set(x_2599, 1, x_2597); -x_2600 = l_Array_empty___closed__1; -x_2601 = lean_array_push(x_2600, x_2599); -x_2602 = l_Lean_nullKind___closed__2; -x_2603 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2603, 0, x_2602); -lean_ctor_set(x_2603, 1, x_2601); -x_2604 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2605 = lean_array_push(x_2604, x_2603); -x_2606 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2607 = lean_array_push(x_2605, x_2606); -x_2608 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2609 = lean_array_push(x_2607, x_2608); -x_2610 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2611 = lean_array_push(x_2609, x_2610); +x_2597 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2452); +x_2598 = lean_ctor_get(x_2597, 1); +lean_inc(x_2598); +lean_dec(x_2597); +x_2599 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2598); +x_2600 = lean_ctor_get(x_2599, 1); +lean_inc(x_2600); +if (lean_is_exclusive(x_2599)) { + lean_ctor_release(x_2599, 0); + lean_ctor_release(x_2599, 1); + x_2601 = x_2599; +} else { + lean_dec_ref(x_2599); + x_2601 = lean_box(0); +} +x_2602 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2603 = lean_array_push(x_2602, x_2442); +x_2604 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2605 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2605, 0, x_2604); +lean_ctor_set(x_2605, 1, x_2603); +x_2606 = l_Array_empty___closed__1; +x_2607 = lean_array_push(x_2606, x_2605); +x_2608 = l_Lean_nullKind___closed__2; +x_2609 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2609, 0, x_2608); +lean_ctor_set(x_2609, 1, x_2607); +x_2610 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2611 = lean_array_push(x_2610, x_2609); +x_2612 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2613 = lean_array_push(x_2611, x_2612); +x_2614 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2615 = lean_array_push(x_2613, x_2614); lean_inc(x_19); -x_2612 = lean_array_push(x_2600, x_19); +x_2616 = lean_array_push(x_2606, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2613 = x_19; + x_2617 = x_19; } else { lean_dec_ref(x_19); - x_2613 = lean_box(0); + x_2617 = lean_box(0); } -if (lean_is_scalar(x_2613)) { - x_2614 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2617)) { + x_2618 = lean_alloc_ctor(1, 2, 0); } else { - x_2614 = x_2613; + x_2618 = x_2617; } -lean_ctor_set(x_2614, 0, x_2602); -lean_ctor_set(x_2614, 1, x_2612); -x_2615 = lean_array_push(x_2600, x_2614); -x_2616 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2617 = lean_array_push(x_2615, x_2616); -x_2618 = lean_array_push(x_2617, x_2590); -x_2619 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2620 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2620, 0, x_2619); -lean_ctor_set(x_2620, 1, x_2618); -x_2621 = lean_array_push(x_2600, x_2620); -x_2622 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2622, 0, x_2602); -lean_ctor_set(x_2622, 1, x_2621); -x_2623 = lean_array_push(x_2611, x_2622); -x_2624 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2625 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2625, 0, x_2624); -lean_ctor_set(x_2625, 1, x_2623); -x_2626 = 1; -x_2627 = lean_box(x_2626); -x_2628 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2628, 0, x_2625); -lean_ctor_set(x_2628, 1, x_2627); -lean_ctor_set(x_2496, 1, x_2628); -if (lean_is_scalar(x_2595)) { - x_2629 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2618, 0, x_2608); +lean_ctor_set(x_2618, 1, x_2616); +x_2619 = lean_array_push(x_2606, x_2618); +x_2620 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2621 = lean_array_push(x_2619, x_2620); +x_2622 = lean_array_push(x_2621, x_2595); +x_2623 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2624 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2624, 0, x_2623); +lean_ctor_set(x_2624, 1, x_2622); +x_2625 = lean_array_push(x_2606, x_2624); +x_2626 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2626, 0, x_2608); +lean_ctor_set(x_2626, 1, x_2625); +x_2627 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2628 = lean_array_push(x_2627, x_2626); +x_2629 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2630 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2630, 0, x_2629); +lean_ctor_set(x_2630, 1, x_2628); +x_2631 = lean_array_push(x_2615, x_2630); +x_2632 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2633 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2633, 0, x_2632); +lean_ctor_set(x_2633, 1, x_2631); +x_2634 = 1; +x_2635 = lean_box(x_2634); +if (lean_is_scalar(x_2596)) { + x_2636 = lean_alloc_ctor(0, 2, 0); } else { - x_2629 = x_2595; + x_2636 = x_2596; +} +lean_ctor_set(x_2636, 0, x_2633); +lean_ctor_set(x_2636, 1, x_2635); +x_2637 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2637, 0, x_2594); +lean_ctor_set(x_2637, 1, x_2636); +if (lean_is_scalar(x_2601)) { + x_2638 = lean_alloc_ctor(0, 2, 0); +} else { + x_2638 = x_2601; +} +lean_ctor_set(x_2638, 0, x_2637); +lean_ctor_set(x_2638, 1, x_2600); +return x_2638; } -lean_ctor_set(x_2629, 0, x_2496); -lean_ctor_set(x_2629, 1, x_2594); -return x_2629; } } else { -lean_object* x_2630; lean_object* x_2631; lean_object* x_2632; lean_object* x_2633; lean_object* x_2634; lean_object* x_2635; lean_object* x_2636; lean_object* x_2637; lean_object* x_2638; lean_object* x_2639; lean_object* x_2640; lean_object* x_2641; lean_object* x_2642; lean_object* x_2643; lean_object* x_2644; lean_object* x_2645; lean_object* x_2646; lean_object* x_2647; lean_object* x_2648; lean_object* x_2649; lean_object* x_2650; lean_object* x_2651; lean_object* x_2652; lean_object* x_2653; lean_object* x_2654; lean_object* x_2655; lean_object* x_2656; lean_object* x_2657; lean_object* x_2658; lean_object* x_2659; lean_object* x_2660; lean_object* x_2661; lean_object* x_2662; lean_object* x_2663; lean_object* x_2664; lean_object* x_2665; lean_object* x_2666; lean_object* x_2667; uint8_t x_2668; lean_object* x_2669; lean_object* x_2670; lean_object* x_2671; lean_object* x_2672; -x_2630 = lean_ctor_get(x_2496, 0); -lean_inc(x_2630); -lean_dec(x_2496); -x_2631 = lean_ctor_get(x_2497, 0); -lean_inc(x_2631); -if (lean_is_exclusive(x_2497)) { - lean_ctor_release(x_2497, 0); - lean_ctor_release(x_2497, 1); - x_2632 = x_2497; -} else { - lean_dec_ref(x_2497); - x_2632 = lean_box(0); -} -x_2633 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2498); -x_2634 = lean_ctor_get(x_2633, 1); -lean_inc(x_2634); -lean_dec(x_2633); -x_2635 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2634); -x_2636 = lean_ctor_get(x_2635, 1); -lean_inc(x_2636); -if (lean_is_exclusive(x_2635)) { - lean_ctor_release(x_2635, 0); - lean_ctor_release(x_2635, 1); - x_2637 = x_2635; -} else { - lean_dec_ref(x_2635); - x_2637 = lean_box(0); -} -x_2638 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2639 = lean_array_push(x_2638, x_2488); -x_2640 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2641 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2641, 0, x_2640); -lean_ctor_set(x_2641, 1, x_2639); -x_2642 = l_Array_empty___closed__1; -x_2643 = lean_array_push(x_2642, x_2641); -x_2644 = l_Lean_nullKind___closed__2; -x_2645 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2645, 0, x_2644); -lean_ctor_set(x_2645, 1, x_2643); -x_2646 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2647 = lean_array_push(x_2646, x_2645); -x_2648 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2649 = lean_array_push(x_2647, x_2648); -x_2650 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2651 = lean_array_push(x_2649, x_2650); -x_2652 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2653 = lean_array_push(x_2651, x_2652); +lean_object* x_2639; lean_object* x_2640; lean_object* x_2641; lean_object* x_2642; lean_object* x_2643; lean_object* x_2644; lean_object* x_2645; lean_object* x_2646; lean_object* x_2647; lean_object* x_2648; lean_object* x_2649; lean_object* x_2650; uint8_t x_2651; +lean_dec(x_195); +x_2639 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_2640 = lean_ctor_get(x_2639, 0); +lean_inc(x_2640); +x_2641 = lean_ctor_get(x_2639, 1); +lean_inc(x_2641); +lean_dec(x_2639); +x_2642 = lean_unsigned_to_nat(1u); +x_2643 = lean_nat_add(x_3, x_2642); +lean_dec(x_3); +x_2644 = l_Lean_mkHole(x_19); +lean_inc(x_2640); +x_2645 = l_Lean_Elab_Term_mkExplicitBinder(x_2640, x_2644); +x_2646 = lean_array_push(x_4, x_2645); +x_2647 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2643, x_2646, x_5, x_6, x_7, x_8, x_9, x_10, x_2641); +x_2648 = lean_ctor_get(x_2647, 0); +lean_inc(x_2648); +x_2649 = lean_ctor_get(x_2648, 1); +lean_inc(x_2649); +x_2650 = lean_ctor_get(x_2647, 1); +lean_inc(x_2650); +lean_dec(x_2647); +x_2651 = !lean_is_exclusive(x_2648); +if (x_2651 == 0) +{ +lean_object* x_2652; uint8_t x_2653; +x_2652 = lean_ctor_get(x_2648, 1); +lean_dec(x_2652); +x_2653 = !lean_is_exclusive(x_2649); +if (x_2653 == 0) +{ +lean_object* x_2654; lean_object* x_2655; lean_object* x_2656; lean_object* x_2657; lean_object* x_2658; uint8_t x_2659; +x_2654 = lean_ctor_get(x_2649, 0); +x_2655 = lean_ctor_get(x_2649, 1); +lean_dec(x_2655); +x_2656 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2650); +x_2657 = lean_ctor_get(x_2656, 1); +lean_inc(x_2657); +lean_dec(x_2656); +x_2658 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2657); +x_2659 = !lean_is_exclusive(x_2658); +if (x_2659 == 0) +{ +lean_object* x_2660; lean_object* x_2661; lean_object* x_2662; lean_object* x_2663; lean_object* x_2664; lean_object* x_2665; lean_object* x_2666; lean_object* x_2667; lean_object* x_2668; lean_object* x_2669; lean_object* x_2670; lean_object* x_2671; lean_object* x_2672; lean_object* x_2673; lean_object* x_2674; lean_object* x_2675; uint8_t x_2676; +x_2660 = lean_ctor_get(x_2658, 0); +lean_dec(x_2660); +x_2661 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2662 = lean_array_push(x_2661, x_2640); +x_2663 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2664 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2664, 0, x_2663); +lean_ctor_set(x_2664, 1, x_2662); +x_2665 = l_Array_empty___closed__1; +x_2666 = lean_array_push(x_2665, x_2664); +x_2667 = l_Lean_nullKind___closed__2; +x_2668 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2668, 0, x_2667); +lean_ctor_set(x_2668, 1, x_2666); +x_2669 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2670 = lean_array_push(x_2669, x_2668); +x_2671 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2672 = lean_array_push(x_2670, x_2671); +x_2673 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2674 = lean_array_push(x_2672, x_2673); lean_inc(x_19); -x_2654 = lean_array_push(x_2642, x_19); +x_2675 = lean_array_push(x_2665, x_19); +x_2676 = !lean_is_exclusive(x_19); +if (x_2676 == 0) +{ +lean_object* x_2677; lean_object* x_2678; lean_object* x_2679; lean_object* x_2680; lean_object* x_2681; lean_object* x_2682; lean_object* x_2683; lean_object* x_2684; lean_object* x_2685; lean_object* x_2686; lean_object* x_2687; lean_object* x_2688; lean_object* x_2689; lean_object* x_2690; lean_object* x_2691; lean_object* x_2692; lean_object* x_2693; uint8_t x_2694; lean_object* x_2695; +x_2677 = lean_ctor_get(x_19, 1); +lean_dec(x_2677); +x_2678 = lean_ctor_get(x_19, 0); +lean_dec(x_2678); +lean_ctor_set(x_19, 1, x_2675); +lean_ctor_set(x_19, 0, x_2667); +x_2679 = lean_array_push(x_2665, x_19); +x_2680 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2681 = lean_array_push(x_2679, x_2680); +x_2682 = lean_array_push(x_2681, x_2654); +x_2683 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2684 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2684, 0, x_2683); +lean_ctor_set(x_2684, 1, x_2682); +x_2685 = lean_array_push(x_2665, x_2684); +x_2686 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2686, 0, x_2667); +lean_ctor_set(x_2686, 1, x_2685); +x_2687 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2688 = lean_array_push(x_2687, x_2686); +x_2689 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2690 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2690, 0, x_2689); +lean_ctor_set(x_2690, 1, x_2688); +x_2691 = lean_array_push(x_2674, x_2690); +x_2692 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2693 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2693, 0, x_2692); +lean_ctor_set(x_2693, 1, x_2691); +x_2694 = 1; +x_2695 = lean_box(x_2694); +lean_ctor_set(x_2649, 1, x_2695); +lean_ctor_set(x_2649, 0, x_2693); +lean_ctor_set(x_2658, 0, x_2648); +return x_2658; +} +else +{ +lean_object* x_2696; lean_object* x_2697; lean_object* x_2698; lean_object* x_2699; lean_object* x_2700; lean_object* x_2701; lean_object* x_2702; lean_object* x_2703; lean_object* x_2704; lean_object* x_2705; lean_object* x_2706; lean_object* x_2707; lean_object* x_2708; lean_object* x_2709; lean_object* x_2710; lean_object* x_2711; uint8_t x_2712; lean_object* x_2713; +lean_dec(x_19); +x_2696 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2696, 0, x_2667); +lean_ctor_set(x_2696, 1, x_2675); +x_2697 = lean_array_push(x_2665, x_2696); +x_2698 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2699 = lean_array_push(x_2697, x_2698); +x_2700 = lean_array_push(x_2699, x_2654); +x_2701 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2702 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2702, 0, x_2701); +lean_ctor_set(x_2702, 1, x_2700); +x_2703 = lean_array_push(x_2665, x_2702); +x_2704 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2704, 0, x_2667); +lean_ctor_set(x_2704, 1, x_2703); +x_2705 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2706 = lean_array_push(x_2705, x_2704); +x_2707 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2708 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2708, 0, x_2707); +lean_ctor_set(x_2708, 1, x_2706); +x_2709 = lean_array_push(x_2674, x_2708); +x_2710 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2711 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2711, 0, x_2710); +lean_ctor_set(x_2711, 1, x_2709); +x_2712 = 1; +x_2713 = lean_box(x_2712); +lean_ctor_set(x_2649, 1, x_2713); +lean_ctor_set(x_2649, 0, x_2711); +lean_ctor_set(x_2658, 0, x_2648); +return x_2658; +} +} +else +{ +lean_object* x_2714; lean_object* x_2715; lean_object* x_2716; lean_object* x_2717; lean_object* x_2718; lean_object* x_2719; lean_object* x_2720; lean_object* x_2721; lean_object* x_2722; lean_object* x_2723; lean_object* x_2724; lean_object* x_2725; lean_object* x_2726; lean_object* x_2727; lean_object* x_2728; lean_object* x_2729; lean_object* x_2730; lean_object* x_2731; lean_object* x_2732; lean_object* x_2733; lean_object* x_2734; lean_object* x_2735; lean_object* x_2736; lean_object* x_2737; lean_object* x_2738; lean_object* x_2739; lean_object* x_2740; lean_object* x_2741; lean_object* x_2742; lean_object* x_2743; lean_object* x_2744; lean_object* x_2745; lean_object* x_2746; uint8_t x_2747; lean_object* x_2748; lean_object* x_2749; +x_2714 = lean_ctor_get(x_2658, 1); +lean_inc(x_2714); +lean_dec(x_2658); +x_2715 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2716 = lean_array_push(x_2715, x_2640); +x_2717 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2718 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2718, 0, x_2717); +lean_ctor_set(x_2718, 1, x_2716); +x_2719 = l_Array_empty___closed__1; +x_2720 = lean_array_push(x_2719, x_2718); +x_2721 = l_Lean_nullKind___closed__2; +x_2722 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2722, 0, x_2721); +lean_ctor_set(x_2722, 1, x_2720); +x_2723 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2724 = lean_array_push(x_2723, x_2722); +x_2725 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2726 = lean_array_push(x_2724, x_2725); +x_2727 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2728 = lean_array_push(x_2726, x_2727); +lean_inc(x_19); +x_2729 = lean_array_push(x_2719, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2655 = x_19; + x_2730 = x_19; } else { lean_dec_ref(x_19); - x_2655 = lean_box(0); + x_2730 = lean_box(0); } -if (lean_is_scalar(x_2655)) { - x_2656 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2730)) { + x_2731 = lean_alloc_ctor(1, 2, 0); } else { - x_2656 = x_2655; + x_2731 = x_2730; } -lean_ctor_set(x_2656, 0, x_2644); -lean_ctor_set(x_2656, 1, x_2654); -x_2657 = lean_array_push(x_2642, x_2656); -x_2658 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2659 = lean_array_push(x_2657, x_2658); -x_2660 = lean_array_push(x_2659, x_2631); -x_2661 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2662 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2662, 0, x_2661); -lean_ctor_set(x_2662, 1, x_2660); -x_2663 = lean_array_push(x_2642, x_2662); -x_2664 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2664, 0, x_2644); -lean_ctor_set(x_2664, 1, x_2663); -x_2665 = lean_array_push(x_2653, x_2664); -x_2666 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2667 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2667, 0, x_2666); -lean_ctor_set(x_2667, 1, x_2665); -x_2668 = 1; -x_2669 = lean_box(x_2668); -if (lean_is_scalar(x_2632)) { - x_2670 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2731, 0, x_2721); +lean_ctor_set(x_2731, 1, x_2729); +x_2732 = lean_array_push(x_2719, x_2731); +x_2733 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2734 = lean_array_push(x_2732, x_2733); +x_2735 = lean_array_push(x_2734, x_2654); +x_2736 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2737 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2737, 0, x_2736); +lean_ctor_set(x_2737, 1, x_2735); +x_2738 = lean_array_push(x_2719, x_2737); +x_2739 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2739, 0, x_2721); +lean_ctor_set(x_2739, 1, x_2738); +x_2740 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2741 = lean_array_push(x_2740, x_2739); +x_2742 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2743 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2743, 0, x_2742); +lean_ctor_set(x_2743, 1, x_2741); +x_2744 = lean_array_push(x_2728, x_2743); +x_2745 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2746 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2746, 0, x_2745); +lean_ctor_set(x_2746, 1, x_2744); +x_2747 = 1; +x_2748 = lean_box(x_2747); +lean_ctor_set(x_2649, 1, x_2748); +lean_ctor_set(x_2649, 0, x_2746); +x_2749 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2749, 0, x_2648); +lean_ctor_set(x_2749, 1, x_2714); +return x_2749; +} +} +else +{ +lean_object* x_2750; lean_object* x_2751; lean_object* x_2752; lean_object* x_2753; lean_object* x_2754; lean_object* x_2755; lean_object* x_2756; lean_object* x_2757; lean_object* x_2758; lean_object* x_2759; lean_object* x_2760; lean_object* x_2761; lean_object* x_2762; lean_object* x_2763; lean_object* x_2764; lean_object* x_2765; lean_object* x_2766; lean_object* x_2767; lean_object* x_2768; lean_object* x_2769; lean_object* x_2770; lean_object* x_2771; lean_object* x_2772; lean_object* x_2773; lean_object* x_2774; lean_object* x_2775; lean_object* x_2776; lean_object* x_2777; lean_object* x_2778; lean_object* x_2779; lean_object* x_2780; lean_object* x_2781; lean_object* x_2782; lean_object* x_2783; lean_object* x_2784; lean_object* x_2785; lean_object* x_2786; lean_object* x_2787; uint8_t x_2788; lean_object* x_2789; lean_object* x_2790; lean_object* x_2791; +x_2750 = lean_ctor_get(x_2649, 0); +lean_inc(x_2750); +lean_dec(x_2649); +x_2751 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2650); +x_2752 = lean_ctor_get(x_2751, 1); +lean_inc(x_2752); +lean_dec(x_2751); +x_2753 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2752); +x_2754 = lean_ctor_get(x_2753, 1); +lean_inc(x_2754); +if (lean_is_exclusive(x_2753)) { + lean_ctor_release(x_2753, 0); + lean_ctor_release(x_2753, 1); + x_2755 = x_2753; } else { - x_2670 = x_2632; + lean_dec_ref(x_2753); + x_2755 = lean_box(0); } -lean_ctor_set(x_2670, 0, x_2667); -lean_ctor_set(x_2670, 1, x_2669); -x_2671 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2671, 0, x_2630); -lean_ctor_set(x_2671, 1, x_2670); -if (lean_is_scalar(x_2637)) { - x_2672 = lean_alloc_ctor(0, 2, 0); +x_2756 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2757 = lean_array_push(x_2756, x_2640); +x_2758 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2759 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2759, 0, x_2758); +lean_ctor_set(x_2759, 1, x_2757); +x_2760 = l_Array_empty___closed__1; +x_2761 = lean_array_push(x_2760, x_2759); +x_2762 = l_Lean_nullKind___closed__2; +x_2763 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2763, 0, x_2762); +lean_ctor_set(x_2763, 1, x_2761); +x_2764 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2765 = lean_array_push(x_2764, x_2763); +x_2766 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2767 = lean_array_push(x_2765, x_2766); +x_2768 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2769 = lean_array_push(x_2767, x_2768); +lean_inc(x_19); +x_2770 = lean_array_push(x_2760, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_2771 = x_19; } else { - x_2672 = x_2637; + lean_dec_ref(x_19); + x_2771 = lean_box(0); } -lean_ctor_set(x_2672, 0, x_2671); -lean_ctor_set(x_2672, 1, x_2636); -return x_2672; +if (lean_is_scalar(x_2771)) { + x_2772 = lean_alloc_ctor(1, 2, 0); +} else { + x_2772 = x_2771; +} +lean_ctor_set(x_2772, 0, x_2762); +lean_ctor_set(x_2772, 1, x_2770); +x_2773 = lean_array_push(x_2760, x_2772); +x_2774 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2775 = lean_array_push(x_2773, x_2774); +x_2776 = lean_array_push(x_2775, x_2750); +x_2777 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2778 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2778, 0, x_2777); +lean_ctor_set(x_2778, 1, x_2776); +x_2779 = lean_array_push(x_2760, x_2778); +x_2780 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2780, 0, x_2762); +lean_ctor_set(x_2780, 1, x_2779); +x_2781 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2782 = lean_array_push(x_2781, x_2780); +x_2783 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2784 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2784, 0, x_2783); +lean_ctor_set(x_2784, 1, x_2782); +x_2785 = lean_array_push(x_2769, x_2784); +x_2786 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2787 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2787, 0, x_2786); +lean_ctor_set(x_2787, 1, x_2785); +x_2788 = 1; +x_2789 = lean_box(x_2788); +x_2790 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2790, 0, x_2787); +lean_ctor_set(x_2790, 1, x_2789); +lean_ctor_set(x_2648, 1, x_2790); +if (lean_is_scalar(x_2755)) { + x_2791 = lean_alloc_ctor(0, 2, 0); +} else { + x_2791 = x_2755; +} +lean_ctor_set(x_2791, 0, x_2648); +lean_ctor_set(x_2791, 1, x_2754); +return x_2791; +} +} +else +{ +lean_object* x_2792; lean_object* x_2793; lean_object* x_2794; lean_object* x_2795; lean_object* x_2796; lean_object* x_2797; lean_object* x_2798; lean_object* x_2799; lean_object* x_2800; lean_object* x_2801; lean_object* x_2802; lean_object* x_2803; lean_object* x_2804; lean_object* x_2805; lean_object* x_2806; lean_object* x_2807; lean_object* x_2808; lean_object* x_2809; lean_object* x_2810; lean_object* x_2811; lean_object* x_2812; lean_object* x_2813; lean_object* x_2814; lean_object* x_2815; lean_object* x_2816; lean_object* x_2817; lean_object* x_2818; lean_object* x_2819; lean_object* x_2820; lean_object* x_2821; lean_object* x_2822; lean_object* x_2823; lean_object* x_2824; lean_object* x_2825; lean_object* x_2826; lean_object* x_2827; lean_object* x_2828; lean_object* x_2829; lean_object* x_2830; lean_object* x_2831; uint8_t x_2832; lean_object* x_2833; lean_object* x_2834; lean_object* x_2835; lean_object* x_2836; +x_2792 = lean_ctor_get(x_2648, 0); +lean_inc(x_2792); +lean_dec(x_2648); +x_2793 = lean_ctor_get(x_2649, 0); +lean_inc(x_2793); +if (lean_is_exclusive(x_2649)) { + lean_ctor_release(x_2649, 0); + lean_ctor_release(x_2649, 1); + x_2794 = x_2649; +} else { + lean_dec_ref(x_2649); + x_2794 = lean_box(0); +} +x_2795 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2650); +x_2796 = lean_ctor_get(x_2795, 1); +lean_inc(x_2796); +lean_dec(x_2795); +x_2797 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2796); +x_2798 = lean_ctor_get(x_2797, 1); +lean_inc(x_2798); +if (lean_is_exclusive(x_2797)) { + lean_ctor_release(x_2797, 0); + lean_ctor_release(x_2797, 1); + x_2799 = x_2797; +} else { + lean_dec_ref(x_2797); + x_2799 = lean_box(0); +} +x_2800 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2801 = lean_array_push(x_2800, x_2640); +x_2802 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2803 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2803, 0, x_2802); +lean_ctor_set(x_2803, 1, x_2801); +x_2804 = l_Array_empty___closed__1; +x_2805 = lean_array_push(x_2804, x_2803); +x_2806 = l_Lean_nullKind___closed__2; +x_2807 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2807, 0, x_2806); +lean_ctor_set(x_2807, 1, x_2805); +x_2808 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2809 = lean_array_push(x_2808, x_2807); +x_2810 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2811 = lean_array_push(x_2809, x_2810); +x_2812 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2813 = lean_array_push(x_2811, x_2812); +lean_inc(x_19); +x_2814 = lean_array_push(x_2804, x_19); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_2815 = x_19; +} else { + lean_dec_ref(x_19); + x_2815 = lean_box(0); +} +if (lean_is_scalar(x_2815)) { + x_2816 = lean_alloc_ctor(1, 2, 0); +} else { + x_2816 = x_2815; +} +lean_ctor_set(x_2816, 0, x_2806); +lean_ctor_set(x_2816, 1, x_2814); +x_2817 = lean_array_push(x_2804, x_2816); +x_2818 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2819 = lean_array_push(x_2817, x_2818); +x_2820 = lean_array_push(x_2819, x_2793); +x_2821 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2822 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2822, 0, x_2821); +lean_ctor_set(x_2822, 1, x_2820); +x_2823 = lean_array_push(x_2804, x_2822); +x_2824 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2824, 0, x_2806); +lean_ctor_set(x_2824, 1, x_2823); +x_2825 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2826 = lean_array_push(x_2825, x_2824); +x_2827 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2828 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2828, 0, x_2827); +lean_ctor_set(x_2828, 1, x_2826); +x_2829 = lean_array_push(x_2813, x_2828); +x_2830 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2831 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2831, 0, x_2830); +lean_ctor_set(x_2831, 1, x_2829); +x_2832 = 1; +x_2833 = lean_box(x_2832); +if (lean_is_scalar(x_2794)) { + x_2834 = lean_alloc_ctor(0, 2, 0); +} else { + x_2834 = x_2794; +} +lean_ctor_set(x_2834, 0, x_2831); +lean_ctor_set(x_2834, 1, x_2833); +x_2835 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2835, 0, x_2792); +lean_ctor_set(x_2835, 1, x_2834); +if (lean_is_scalar(x_2799)) { + x_2836 = lean_alloc_ctor(0, 2, 0); +} else { + x_2836 = x_2799; +} +lean_ctor_set(x_2836, 0, x_2835); +lean_ctor_set(x_2836, 1, x_2798); +return x_2836; } } } case 2: { -lean_object* x_2673; lean_object* x_2674; lean_object* x_2675; lean_object* x_2676; lean_object* x_2677; lean_object* x_2678; lean_object* x_2679; lean_object* x_2680; lean_object* x_2681; lean_object* x_2682; lean_object* x_2683; lean_object* x_2684; uint8_t x_2685; -x_2673 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_2674 = lean_ctor_get(x_2673, 0); -lean_inc(x_2674); -x_2675 = lean_ctor_get(x_2673, 1); -lean_inc(x_2675); -lean_dec(x_2673); -x_2676 = lean_unsigned_to_nat(1u); -x_2677 = lean_nat_add(x_3, x_2676); +lean_object* x_2837; lean_object* x_2838; lean_object* x_2839; lean_object* x_2840; lean_object* x_2841; lean_object* x_2842; lean_object* x_2843; lean_object* x_2844; lean_object* x_2845; lean_object* x_2846; lean_object* x_2847; lean_object* x_2848; uint8_t x_2849; +x_2837 = l_Lean_Elab_Term_mkFreshAnonymousIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_2838 = lean_ctor_get(x_2837, 0); +lean_inc(x_2838); +x_2839 = lean_ctor_get(x_2837, 1); +lean_inc(x_2839); +lean_dec(x_2837); +x_2840 = lean_unsigned_to_nat(1u); +x_2841 = lean_nat_add(x_3, x_2840); lean_dec(x_3); -x_2678 = l_Lean_mkHole(x_19); -lean_inc(x_2674); -x_2679 = l_Lean_Elab_Term_mkExplicitBinder(x_2674, x_2678); -x_2680 = lean_array_push(x_4, x_2679); -x_2681 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2677, x_2680, x_5, x_6, x_7, x_8, x_9, x_10, x_2675); -x_2682 = lean_ctor_get(x_2681, 0); -lean_inc(x_2682); -x_2683 = lean_ctor_get(x_2682, 1); -lean_inc(x_2683); -x_2684 = lean_ctor_get(x_2681, 1); -lean_inc(x_2684); -lean_dec(x_2681); -x_2685 = !lean_is_exclusive(x_2682); -if (x_2685 == 0) +x_2842 = l_Lean_mkHole(x_19); +lean_inc(x_2838); +x_2843 = l_Lean_Elab_Term_mkExplicitBinder(x_2838, x_2842); +x_2844 = lean_array_push(x_4, x_2843); +x_2845 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2841, x_2844, x_5, x_6, x_7, x_8, x_9, x_10, x_2839); +x_2846 = lean_ctor_get(x_2845, 0); +lean_inc(x_2846); +x_2847 = lean_ctor_get(x_2846, 1); +lean_inc(x_2847); +x_2848 = lean_ctor_get(x_2845, 1); +lean_inc(x_2848); +lean_dec(x_2845); +x_2849 = !lean_is_exclusive(x_2846); +if (x_2849 == 0) { -lean_object* x_2686; uint8_t x_2687; -x_2686 = lean_ctor_get(x_2682, 1); -lean_dec(x_2686); -x_2687 = !lean_is_exclusive(x_2683); -if (x_2687 == 0) +lean_object* x_2850; uint8_t x_2851; +x_2850 = lean_ctor_get(x_2846, 1); +lean_dec(x_2850); +x_2851 = !lean_is_exclusive(x_2847); +if (x_2851 == 0) { -lean_object* x_2688; lean_object* x_2689; lean_object* x_2690; lean_object* x_2691; lean_object* x_2692; uint8_t x_2693; -x_2688 = lean_ctor_get(x_2683, 0); -x_2689 = lean_ctor_get(x_2683, 1); -lean_dec(x_2689); -x_2690 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2684); -x_2691 = lean_ctor_get(x_2690, 1); -lean_inc(x_2691); -lean_dec(x_2690); -x_2692 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2691); -x_2693 = !lean_is_exclusive(x_2692); -if (x_2693 == 0) +lean_object* x_2852; lean_object* x_2853; lean_object* x_2854; lean_object* x_2855; lean_object* x_2856; uint8_t x_2857; +x_2852 = lean_ctor_get(x_2847, 0); +x_2853 = lean_ctor_get(x_2847, 1); +lean_dec(x_2853); +x_2854 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2848); +x_2855 = lean_ctor_get(x_2854, 1); +lean_inc(x_2855); +lean_dec(x_2854); +x_2856 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2855); +x_2857 = !lean_is_exclusive(x_2856); +if (x_2857 == 0) { -lean_object* x_2694; lean_object* x_2695; lean_object* x_2696; lean_object* x_2697; lean_object* x_2698; lean_object* x_2699; lean_object* x_2700; lean_object* x_2701; lean_object* x_2702; lean_object* x_2703; lean_object* x_2704; lean_object* x_2705; lean_object* x_2706; lean_object* x_2707; lean_object* x_2708; lean_object* x_2709; lean_object* x_2710; lean_object* x_2711; uint8_t x_2712; -x_2694 = lean_ctor_get(x_2692, 0); -lean_dec(x_2694); -x_2695 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2696 = lean_array_push(x_2695, x_2674); -x_2697 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2698 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2698, 0, x_2697); -lean_ctor_set(x_2698, 1, x_2696); -x_2699 = l_Array_empty___closed__1; -x_2700 = lean_array_push(x_2699, x_2698); -x_2701 = l_Lean_nullKind___closed__2; -x_2702 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2702, 0, x_2701); -lean_ctor_set(x_2702, 1, x_2700); -x_2703 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2704 = lean_array_push(x_2703, x_2702); -x_2705 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2706 = lean_array_push(x_2704, x_2705); -x_2707 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2708 = lean_array_push(x_2706, x_2707); -x_2709 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2710 = lean_array_push(x_2708, x_2709); +lean_object* x_2858; lean_object* x_2859; lean_object* x_2860; lean_object* x_2861; lean_object* x_2862; lean_object* x_2863; lean_object* x_2864; lean_object* x_2865; lean_object* x_2866; lean_object* x_2867; lean_object* x_2868; lean_object* x_2869; lean_object* x_2870; lean_object* x_2871; lean_object* x_2872; lean_object* x_2873; uint8_t x_2874; +x_2858 = lean_ctor_get(x_2856, 0); +lean_dec(x_2858); +x_2859 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2860 = lean_array_push(x_2859, x_2838); +x_2861 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2862 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2862, 0, x_2861); +lean_ctor_set(x_2862, 1, x_2860); +x_2863 = l_Array_empty___closed__1; +x_2864 = lean_array_push(x_2863, x_2862); +x_2865 = l_Lean_nullKind___closed__2; +x_2866 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2866, 0, x_2865); +lean_ctor_set(x_2866, 1, x_2864); +x_2867 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2868 = lean_array_push(x_2867, x_2866); +x_2869 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2870 = lean_array_push(x_2868, x_2869); +x_2871 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2872 = lean_array_push(x_2870, x_2871); lean_inc(x_19); -x_2711 = lean_array_push(x_2699, x_19); -x_2712 = !lean_is_exclusive(x_19); -if (x_2712 == 0) +x_2873 = lean_array_push(x_2863, x_19); +x_2874 = !lean_is_exclusive(x_19); +if (x_2874 == 0) { -lean_object* x_2713; lean_object* x_2714; lean_object* x_2715; lean_object* x_2716; lean_object* x_2717; lean_object* x_2718; lean_object* x_2719; lean_object* x_2720; lean_object* x_2721; lean_object* x_2722; lean_object* x_2723; lean_object* x_2724; lean_object* x_2725; uint8_t x_2726; lean_object* x_2727; -x_2713 = lean_ctor_get(x_19, 1); -lean_dec(x_2713); -x_2714 = lean_ctor_get(x_19, 0); -lean_dec(x_2714); +lean_object* x_2875; lean_object* x_2876; lean_object* x_2877; lean_object* x_2878; lean_object* x_2879; lean_object* x_2880; lean_object* x_2881; lean_object* x_2882; lean_object* x_2883; lean_object* x_2884; lean_object* x_2885; lean_object* x_2886; lean_object* x_2887; lean_object* x_2888; lean_object* x_2889; lean_object* x_2890; lean_object* x_2891; uint8_t x_2892; lean_object* x_2893; +x_2875 = lean_ctor_get(x_19, 1); +lean_dec(x_2875); +x_2876 = lean_ctor_get(x_19, 0); +lean_dec(x_2876); lean_ctor_set_tag(x_19, 1); -lean_ctor_set(x_19, 1, x_2711); -lean_ctor_set(x_19, 0, x_2701); -x_2715 = lean_array_push(x_2699, x_19); -x_2716 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2717 = lean_array_push(x_2715, x_2716); -x_2718 = lean_array_push(x_2717, x_2688); -x_2719 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2720 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2720, 0, x_2719); -lean_ctor_set(x_2720, 1, x_2718); -x_2721 = lean_array_push(x_2699, x_2720); -x_2722 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2722, 0, x_2701); -lean_ctor_set(x_2722, 1, x_2721); -x_2723 = lean_array_push(x_2710, x_2722); -x_2724 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2725 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2725, 0, x_2724); -lean_ctor_set(x_2725, 1, x_2723); -x_2726 = 1; -x_2727 = lean_box(x_2726); -lean_ctor_set(x_2683, 1, x_2727); -lean_ctor_set(x_2683, 0, x_2725); -lean_ctor_set(x_2692, 0, x_2682); -return x_2692; +lean_ctor_set(x_19, 1, x_2873); +lean_ctor_set(x_19, 0, x_2865); +x_2877 = lean_array_push(x_2863, x_19); +x_2878 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2879 = lean_array_push(x_2877, x_2878); +x_2880 = lean_array_push(x_2879, x_2852); +x_2881 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2882 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2882, 0, x_2881); +lean_ctor_set(x_2882, 1, x_2880); +x_2883 = lean_array_push(x_2863, x_2882); +x_2884 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2884, 0, x_2865); +lean_ctor_set(x_2884, 1, x_2883); +x_2885 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2886 = lean_array_push(x_2885, x_2884); +x_2887 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2888 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2888, 0, x_2887); +lean_ctor_set(x_2888, 1, x_2886); +x_2889 = lean_array_push(x_2872, x_2888); +x_2890 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2891 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2891, 0, x_2890); +lean_ctor_set(x_2891, 1, x_2889); +x_2892 = 1; +x_2893 = lean_box(x_2892); +lean_ctor_set(x_2847, 1, x_2893); +lean_ctor_set(x_2847, 0, x_2891); +lean_ctor_set(x_2856, 0, x_2846); +return x_2856; } else { -lean_object* x_2728; lean_object* x_2729; lean_object* x_2730; lean_object* x_2731; lean_object* x_2732; lean_object* x_2733; lean_object* x_2734; lean_object* x_2735; lean_object* x_2736; lean_object* x_2737; lean_object* x_2738; lean_object* x_2739; uint8_t x_2740; lean_object* x_2741; +lean_object* x_2894; lean_object* x_2895; lean_object* x_2896; lean_object* x_2897; lean_object* x_2898; lean_object* x_2899; lean_object* x_2900; lean_object* x_2901; lean_object* x_2902; lean_object* x_2903; lean_object* x_2904; lean_object* x_2905; lean_object* x_2906; lean_object* x_2907; lean_object* x_2908; lean_object* x_2909; uint8_t x_2910; lean_object* x_2911; lean_dec(x_19); -x_2728 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2728, 0, x_2701); -lean_ctor_set(x_2728, 1, x_2711); -x_2729 = lean_array_push(x_2699, x_2728); -x_2730 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2731 = lean_array_push(x_2729, x_2730); -x_2732 = lean_array_push(x_2731, x_2688); -x_2733 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2734 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2734, 0, x_2733); -lean_ctor_set(x_2734, 1, x_2732); -x_2735 = lean_array_push(x_2699, x_2734); -x_2736 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2736, 0, x_2701); -lean_ctor_set(x_2736, 1, x_2735); -x_2737 = lean_array_push(x_2710, x_2736); -x_2738 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2739 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2739, 0, x_2738); -lean_ctor_set(x_2739, 1, x_2737); -x_2740 = 1; -x_2741 = lean_box(x_2740); -lean_ctor_set(x_2683, 1, x_2741); -lean_ctor_set(x_2683, 0, x_2739); -lean_ctor_set(x_2692, 0, x_2682); -return x_2692; +x_2894 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2894, 0, x_2865); +lean_ctor_set(x_2894, 1, x_2873); +x_2895 = lean_array_push(x_2863, x_2894); +x_2896 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2897 = lean_array_push(x_2895, x_2896); +x_2898 = lean_array_push(x_2897, x_2852); +x_2899 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2900 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2900, 0, x_2899); +lean_ctor_set(x_2900, 1, x_2898); +x_2901 = lean_array_push(x_2863, x_2900); +x_2902 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2902, 0, x_2865); +lean_ctor_set(x_2902, 1, x_2901); +x_2903 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2904 = lean_array_push(x_2903, x_2902); +x_2905 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2906 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2906, 0, x_2905); +lean_ctor_set(x_2906, 1, x_2904); +x_2907 = lean_array_push(x_2872, x_2906); +x_2908 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2909 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2909, 0, x_2908); +lean_ctor_set(x_2909, 1, x_2907); +x_2910 = 1; +x_2911 = lean_box(x_2910); +lean_ctor_set(x_2847, 1, x_2911); +lean_ctor_set(x_2847, 0, x_2909); +lean_ctor_set(x_2856, 0, x_2846); +return x_2856; } } else { -lean_object* x_2742; lean_object* x_2743; lean_object* x_2744; lean_object* x_2745; lean_object* x_2746; lean_object* x_2747; lean_object* x_2748; lean_object* x_2749; lean_object* x_2750; lean_object* x_2751; lean_object* x_2752; lean_object* x_2753; lean_object* x_2754; lean_object* x_2755; lean_object* x_2756; lean_object* x_2757; lean_object* x_2758; lean_object* x_2759; lean_object* x_2760; lean_object* x_2761; lean_object* x_2762; lean_object* x_2763; lean_object* x_2764; lean_object* x_2765; lean_object* x_2766; lean_object* x_2767; lean_object* x_2768; lean_object* x_2769; lean_object* x_2770; lean_object* x_2771; lean_object* x_2772; uint8_t x_2773; lean_object* x_2774; lean_object* x_2775; -x_2742 = lean_ctor_get(x_2692, 1); -lean_inc(x_2742); -lean_dec(x_2692); -x_2743 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2744 = lean_array_push(x_2743, x_2674); -x_2745 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2746 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2746, 0, x_2745); -lean_ctor_set(x_2746, 1, x_2744); -x_2747 = l_Array_empty___closed__1; -x_2748 = lean_array_push(x_2747, x_2746); -x_2749 = l_Lean_nullKind___closed__2; -x_2750 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2750, 0, x_2749); -lean_ctor_set(x_2750, 1, x_2748); -x_2751 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2752 = lean_array_push(x_2751, x_2750); -x_2753 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2754 = lean_array_push(x_2752, x_2753); -x_2755 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2756 = lean_array_push(x_2754, x_2755); -x_2757 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2758 = lean_array_push(x_2756, x_2757); +lean_object* x_2912; lean_object* x_2913; lean_object* x_2914; lean_object* x_2915; lean_object* x_2916; lean_object* x_2917; lean_object* x_2918; lean_object* x_2919; lean_object* x_2920; lean_object* x_2921; lean_object* x_2922; lean_object* x_2923; lean_object* x_2924; lean_object* x_2925; lean_object* x_2926; lean_object* x_2927; lean_object* x_2928; lean_object* x_2929; lean_object* x_2930; lean_object* x_2931; lean_object* x_2932; lean_object* x_2933; lean_object* x_2934; lean_object* x_2935; lean_object* x_2936; lean_object* x_2937; lean_object* x_2938; lean_object* x_2939; lean_object* x_2940; lean_object* x_2941; lean_object* x_2942; lean_object* x_2943; lean_object* x_2944; uint8_t x_2945; lean_object* x_2946; lean_object* x_2947; +x_2912 = lean_ctor_get(x_2856, 1); +lean_inc(x_2912); +lean_dec(x_2856); +x_2913 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2914 = lean_array_push(x_2913, x_2838); +x_2915 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2916 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2916, 0, x_2915); +lean_ctor_set(x_2916, 1, x_2914); +x_2917 = l_Array_empty___closed__1; +x_2918 = lean_array_push(x_2917, x_2916); +x_2919 = l_Lean_nullKind___closed__2; +x_2920 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2920, 0, x_2919); +lean_ctor_set(x_2920, 1, x_2918); +x_2921 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2922 = lean_array_push(x_2921, x_2920); +x_2923 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2924 = lean_array_push(x_2922, x_2923); +x_2925 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2926 = lean_array_push(x_2924, x_2925); lean_inc(x_19); -x_2759 = lean_array_push(x_2747, x_19); +x_2927 = lean_array_push(x_2917, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2760 = x_19; + x_2928 = x_19; } else { lean_dec_ref(x_19); - x_2760 = lean_box(0); + x_2928 = lean_box(0); } -if (lean_is_scalar(x_2760)) { - x_2761 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2928)) { + x_2929 = lean_alloc_ctor(1, 2, 0); } else { - x_2761 = x_2760; - lean_ctor_set_tag(x_2761, 1); + x_2929 = x_2928; + lean_ctor_set_tag(x_2929, 1); } -lean_ctor_set(x_2761, 0, x_2749); -lean_ctor_set(x_2761, 1, x_2759); -x_2762 = lean_array_push(x_2747, x_2761); -x_2763 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2764 = lean_array_push(x_2762, x_2763); -x_2765 = lean_array_push(x_2764, x_2688); -x_2766 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2767 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2767, 0, x_2766); -lean_ctor_set(x_2767, 1, x_2765); -x_2768 = lean_array_push(x_2747, x_2767); -x_2769 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2769, 0, x_2749); -lean_ctor_set(x_2769, 1, x_2768); -x_2770 = lean_array_push(x_2758, x_2769); -x_2771 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2772 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2772, 0, x_2771); -lean_ctor_set(x_2772, 1, x_2770); -x_2773 = 1; -x_2774 = lean_box(x_2773); -lean_ctor_set(x_2683, 1, x_2774); -lean_ctor_set(x_2683, 0, x_2772); -x_2775 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2775, 0, x_2682); -lean_ctor_set(x_2775, 1, x_2742); -return x_2775; +lean_ctor_set(x_2929, 0, x_2919); +lean_ctor_set(x_2929, 1, x_2927); +x_2930 = lean_array_push(x_2917, x_2929); +x_2931 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2932 = lean_array_push(x_2930, x_2931); +x_2933 = lean_array_push(x_2932, x_2852); +x_2934 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2935 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2935, 0, x_2934); +lean_ctor_set(x_2935, 1, x_2933); +x_2936 = lean_array_push(x_2917, x_2935); +x_2937 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2937, 0, x_2919); +lean_ctor_set(x_2937, 1, x_2936); +x_2938 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2939 = lean_array_push(x_2938, x_2937); +x_2940 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2941 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2941, 0, x_2940); +lean_ctor_set(x_2941, 1, x_2939); +x_2942 = lean_array_push(x_2926, x_2941); +x_2943 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2944 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2944, 0, x_2943); +lean_ctor_set(x_2944, 1, x_2942); +x_2945 = 1; +x_2946 = lean_box(x_2945); +lean_ctor_set(x_2847, 1, x_2946); +lean_ctor_set(x_2847, 0, x_2944); +x_2947 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2947, 0, x_2846); +lean_ctor_set(x_2947, 1, x_2912); +return x_2947; } } else { -lean_object* x_2776; lean_object* x_2777; lean_object* x_2778; lean_object* x_2779; lean_object* x_2780; lean_object* x_2781; lean_object* x_2782; lean_object* x_2783; lean_object* x_2784; lean_object* x_2785; lean_object* x_2786; lean_object* x_2787; lean_object* x_2788; lean_object* x_2789; lean_object* x_2790; lean_object* x_2791; lean_object* x_2792; lean_object* x_2793; lean_object* x_2794; lean_object* x_2795; lean_object* x_2796; lean_object* x_2797; lean_object* x_2798; lean_object* x_2799; lean_object* x_2800; lean_object* x_2801; lean_object* x_2802; lean_object* x_2803; lean_object* x_2804; lean_object* x_2805; lean_object* x_2806; lean_object* x_2807; lean_object* x_2808; lean_object* x_2809; lean_object* x_2810; lean_object* x_2811; uint8_t x_2812; lean_object* x_2813; lean_object* x_2814; lean_object* x_2815; -x_2776 = lean_ctor_get(x_2683, 0); -lean_inc(x_2776); -lean_dec(x_2683); -x_2777 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2684); -x_2778 = lean_ctor_get(x_2777, 1); -lean_inc(x_2778); -lean_dec(x_2777); -x_2779 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2778); -x_2780 = lean_ctor_get(x_2779, 1); -lean_inc(x_2780); -if (lean_is_exclusive(x_2779)) { - lean_ctor_release(x_2779, 0); - lean_ctor_release(x_2779, 1); - x_2781 = x_2779; +lean_object* x_2948; lean_object* x_2949; lean_object* x_2950; lean_object* x_2951; lean_object* x_2952; lean_object* x_2953; lean_object* x_2954; lean_object* x_2955; lean_object* x_2956; lean_object* x_2957; lean_object* x_2958; lean_object* x_2959; lean_object* x_2960; lean_object* x_2961; lean_object* x_2962; lean_object* x_2963; lean_object* x_2964; lean_object* x_2965; lean_object* x_2966; lean_object* x_2967; lean_object* x_2968; lean_object* x_2969; lean_object* x_2970; lean_object* x_2971; lean_object* x_2972; lean_object* x_2973; lean_object* x_2974; lean_object* x_2975; lean_object* x_2976; lean_object* x_2977; lean_object* x_2978; lean_object* x_2979; lean_object* x_2980; lean_object* x_2981; lean_object* x_2982; lean_object* x_2983; lean_object* x_2984; lean_object* x_2985; uint8_t x_2986; lean_object* x_2987; lean_object* x_2988; lean_object* x_2989; +x_2948 = lean_ctor_get(x_2847, 0); +lean_inc(x_2948); +lean_dec(x_2847); +x_2949 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2848); +x_2950 = lean_ctor_get(x_2949, 1); +lean_inc(x_2950); +lean_dec(x_2949); +x_2951 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2950); +x_2952 = lean_ctor_get(x_2951, 1); +lean_inc(x_2952); +if (lean_is_exclusive(x_2951)) { + lean_ctor_release(x_2951, 0); + lean_ctor_release(x_2951, 1); + x_2953 = x_2951; } else { - lean_dec_ref(x_2779); - x_2781 = lean_box(0); + lean_dec_ref(x_2951); + x_2953 = lean_box(0); } -x_2782 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2783 = lean_array_push(x_2782, x_2674); -x_2784 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2785 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2785, 0, x_2784); -lean_ctor_set(x_2785, 1, x_2783); -x_2786 = l_Array_empty___closed__1; -x_2787 = lean_array_push(x_2786, x_2785); -x_2788 = l_Lean_nullKind___closed__2; -x_2789 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2789, 0, x_2788); -lean_ctor_set(x_2789, 1, x_2787); -x_2790 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2791 = lean_array_push(x_2790, x_2789); -x_2792 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2793 = lean_array_push(x_2791, x_2792); -x_2794 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2795 = lean_array_push(x_2793, x_2794); -x_2796 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2797 = lean_array_push(x_2795, x_2796); +x_2954 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2955 = lean_array_push(x_2954, x_2838); +x_2956 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2957 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2957, 0, x_2956); +lean_ctor_set(x_2957, 1, x_2955); +x_2958 = l_Array_empty___closed__1; +x_2959 = lean_array_push(x_2958, x_2957); +x_2960 = l_Lean_nullKind___closed__2; +x_2961 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2961, 0, x_2960); +lean_ctor_set(x_2961, 1, x_2959); +x_2962 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2963 = lean_array_push(x_2962, x_2961); +x_2964 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_2965 = lean_array_push(x_2963, x_2964); +x_2966 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2967 = lean_array_push(x_2965, x_2966); lean_inc(x_19); -x_2798 = lean_array_push(x_2786, x_19); +x_2968 = lean_array_push(x_2958, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2799 = x_19; + x_2969 = x_19; } else { lean_dec_ref(x_19); - x_2799 = lean_box(0); + x_2969 = lean_box(0); } -if (lean_is_scalar(x_2799)) { - x_2800 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2969)) { + x_2970 = lean_alloc_ctor(1, 2, 0); } else { - x_2800 = x_2799; - lean_ctor_set_tag(x_2800, 1); + x_2970 = x_2969; + lean_ctor_set_tag(x_2970, 1); } -lean_ctor_set(x_2800, 0, x_2788); -lean_ctor_set(x_2800, 1, x_2798); -x_2801 = lean_array_push(x_2786, x_2800); -x_2802 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2803 = lean_array_push(x_2801, x_2802); -x_2804 = lean_array_push(x_2803, x_2776); -x_2805 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2806 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2806, 0, x_2805); -lean_ctor_set(x_2806, 1, x_2804); -x_2807 = lean_array_push(x_2786, x_2806); -x_2808 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2808, 0, x_2788); -lean_ctor_set(x_2808, 1, x_2807); -x_2809 = lean_array_push(x_2797, x_2808); -x_2810 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2811 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2811, 0, x_2810); -lean_ctor_set(x_2811, 1, x_2809); -x_2812 = 1; -x_2813 = lean_box(x_2812); -x_2814 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2814, 0, x_2811); -lean_ctor_set(x_2814, 1, x_2813); -lean_ctor_set(x_2682, 1, x_2814); -if (lean_is_scalar(x_2781)) { - x_2815 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2970, 0, x_2960); +lean_ctor_set(x_2970, 1, x_2968); +x_2971 = lean_array_push(x_2958, x_2970); +x_2972 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_2973 = lean_array_push(x_2971, x_2972); +x_2974 = lean_array_push(x_2973, x_2948); +x_2975 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_2976 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2976, 0, x_2975); +lean_ctor_set(x_2976, 1, x_2974); +x_2977 = lean_array_push(x_2958, x_2976); +x_2978 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2978, 0, x_2960); +lean_ctor_set(x_2978, 1, x_2977); +x_2979 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_2980 = lean_array_push(x_2979, x_2978); +x_2981 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_2982 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2982, 0, x_2981); +lean_ctor_set(x_2982, 1, x_2980); +x_2983 = lean_array_push(x_2967, x_2982); +x_2984 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2985 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2985, 0, x_2984); +lean_ctor_set(x_2985, 1, x_2983); +x_2986 = 1; +x_2987 = lean_box(x_2986); +x_2988 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2988, 0, x_2985); +lean_ctor_set(x_2988, 1, x_2987); +lean_ctor_set(x_2846, 1, x_2988); +if (lean_is_scalar(x_2953)) { + x_2989 = lean_alloc_ctor(0, 2, 0); } else { - x_2815 = x_2781; + x_2989 = x_2953; } -lean_ctor_set(x_2815, 0, x_2682); -lean_ctor_set(x_2815, 1, x_2780); -return x_2815; +lean_ctor_set(x_2989, 0, x_2846); +lean_ctor_set(x_2989, 1, x_2952); +return x_2989; } } else { -lean_object* x_2816; lean_object* x_2817; lean_object* x_2818; lean_object* x_2819; lean_object* x_2820; lean_object* x_2821; lean_object* x_2822; lean_object* x_2823; lean_object* x_2824; lean_object* x_2825; lean_object* x_2826; lean_object* x_2827; lean_object* x_2828; lean_object* x_2829; lean_object* x_2830; lean_object* x_2831; lean_object* x_2832; lean_object* x_2833; lean_object* x_2834; lean_object* x_2835; lean_object* x_2836; lean_object* x_2837; lean_object* x_2838; lean_object* x_2839; lean_object* x_2840; lean_object* x_2841; lean_object* x_2842; lean_object* x_2843; lean_object* x_2844; lean_object* x_2845; lean_object* x_2846; lean_object* x_2847; lean_object* x_2848; lean_object* x_2849; lean_object* x_2850; lean_object* x_2851; lean_object* x_2852; lean_object* x_2853; uint8_t x_2854; lean_object* x_2855; lean_object* x_2856; lean_object* x_2857; lean_object* x_2858; -x_2816 = lean_ctor_get(x_2682, 0); -lean_inc(x_2816); -lean_dec(x_2682); -x_2817 = lean_ctor_get(x_2683, 0); -lean_inc(x_2817); -if (lean_is_exclusive(x_2683)) { - lean_ctor_release(x_2683, 0); - lean_ctor_release(x_2683, 1); - x_2818 = x_2683; +lean_object* x_2990; lean_object* x_2991; lean_object* x_2992; lean_object* x_2993; lean_object* x_2994; lean_object* x_2995; lean_object* x_2996; lean_object* x_2997; lean_object* x_2998; lean_object* x_2999; lean_object* x_3000; lean_object* x_3001; lean_object* x_3002; lean_object* x_3003; lean_object* x_3004; lean_object* x_3005; lean_object* x_3006; lean_object* x_3007; lean_object* x_3008; lean_object* x_3009; lean_object* x_3010; lean_object* x_3011; lean_object* x_3012; lean_object* x_3013; lean_object* x_3014; lean_object* x_3015; lean_object* x_3016; lean_object* x_3017; lean_object* x_3018; lean_object* x_3019; lean_object* x_3020; lean_object* x_3021; lean_object* x_3022; lean_object* x_3023; lean_object* x_3024; lean_object* x_3025; lean_object* x_3026; lean_object* x_3027; lean_object* x_3028; lean_object* x_3029; uint8_t x_3030; lean_object* x_3031; lean_object* x_3032; lean_object* x_3033; lean_object* x_3034; +x_2990 = lean_ctor_get(x_2846, 0); +lean_inc(x_2990); +lean_dec(x_2846); +x_2991 = lean_ctor_get(x_2847, 0); +lean_inc(x_2991); +if (lean_is_exclusive(x_2847)) { + lean_ctor_release(x_2847, 0); + lean_ctor_release(x_2847, 1); + x_2992 = x_2847; } else { - lean_dec_ref(x_2683); - x_2818 = lean_box(0); + lean_dec_ref(x_2847); + x_2992 = lean_box(0); } -x_2819 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2684); -x_2820 = lean_ctor_get(x_2819, 1); -lean_inc(x_2820); -lean_dec(x_2819); -x_2821 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2820); -x_2822 = lean_ctor_get(x_2821, 1); -lean_inc(x_2822); -if (lean_is_exclusive(x_2821)) { - lean_ctor_release(x_2821, 0); - lean_ctor_release(x_2821, 1); - x_2823 = x_2821; +x_2993 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2848); +x_2994 = lean_ctor_get(x_2993, 1); +lean_inc(x_2994); +lean_dec(x_2993); +x_2995 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2994); +x_2996 = lean_ctor_get(x_2995, 1); +lean_inc(x_2996); +if (lean_is_exclusive(x_2995)) { + lean_ctor_release(x_2995, 0); + lean_ctor_release(x_2995, 1); + x_2997 = x_2995; } else { - lean_dec_ref(x_2821); - x_2823 = lean_box(0); + lean_dec_ref(x_2995); + x_2997 = lean_box(0); } -x_2824 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_2825 = lean_array_push(x_2824, x_2674); -x_2826 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_2827 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2827, 0, x_2826); -lean_ctor_set(x_2827, 1, x_2825); -x_2828 = l_Array_empty___closed__1; -x_2829 = lean_array_push(x_2828, x_2827); -x_2830 = l_Lean_nullKind___closed__2; -x_2831 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2831, 0, x_2830); -lean_ctor_set(x_2831, 1, x_2829); -x_2832 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_2833 = lean_array_push(x_2832, x_2831); -x_2834 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_2835 = lean_array_push(x_2833, x_2834); -x_2836 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_2837 = lean_array_push(x_2835, x_2836); -x_2838 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_2839 = lean_array_push(x_2837, x_2838); +x_2998 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_2999 = lean_array_push(x_2998, x_2838); +x_3000 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3001 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3001, 0, x_3000); +lean_ctor_set(x_3001, 1, x_2999); +x_3002 = l_Array_empty___closed__1; +x_3003 = lean_array_push(x_3002, x_3001); +x_3004 = l_Lean_nullKind___closed__2; +x_3005 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3005, 0, x_3004); +lean_ctor_set(x_3005, 1, x_3003); +x_3006 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_3007 = lean_array_push(x_3006, x_3005); +x_3008 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_3009 = lean_array_push(x_3007, x_3008); +x_3010 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_3011 = lean_array_push(x_3009, x_3010); lean_inc(x_19); -x_2840 = lean_array_push(x_2828, x_19); +x_3012 = lean_array_push(x_3002, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2841 = x_19; + x_3013 = x_19; } else { lean_dec_ref(x_19); - x_2841 = lean_box(0); + x_3013 = lean_box(0); } -if (lean_is_scalar(x_2841)) { - x_2842 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_3013)) { + x_3014 = lean_alloc_ctor(1, 2, 0); } else { - x_2842 = x_2841; - lean_ctor_set_tag(x_2842, 1); + x_3014 = x_3013; + lean_ctor_set_tag(x_3014, 1); } -lean_ctor_set(x_2842, 0, x_2830); -lean_ctor_set(x_2842, 1, x_2840); -x_2843 = lean_array_push(x_2828, x_2842); -x_2844 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_2845 = lean_array_push(x_2843, x_2844); -x_2846 = lean_array_push(x_2845, x_2817); -x_2847 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_2848 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2848, 0, x_2847); -lean_ctor_set(x_2848, 1, x_2846); -x_2849 = lean_array_push(x_2828, x_2848); -x_2850 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2850, 0, x_2830); -lean_ctor_set(x_2850, 1, x_2849); -x_2851 = lean_array_push(x_2839, x_2850); -x_2852 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_2853 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2853, 0, x_2852); -lean_ctor_set(x_2853, 1, x_2851); -x_2854 = 1; -x_2855 = lean_box(x_2854); -if (lean_is_scalar(x_2818)) { - x_2856 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3014, 0, x_3004); +lean_ctor_set(x_3014, 1, x_3012); +x_3015 = lean_array_push(x_3002, x_3014); +x_3016 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_3017 = lean_array_push(x_3015, x_3016); +x_3018 = lean_array_push(x_3017, x_2991); +x_3019 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_3020 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3020, 0, x_3019); +lean_ctor_set(x_3020, 1, x_3018); +x_3021 = lean_array_push(x_3002, x_3020); +x_3022 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3022, 0, x_3004); +lean_ctor_set(x_3022, 1, x_3021); +x_3023 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_3024 = lean_array_push(x_3023, x_3022); +x_3025 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_3026 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3026, 0, x_3025); +lean_ctor_set(x_3026, 1, x_3024); +x_3027 = lean_array_push(x_3011, x_3026); +x_3028 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3029 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3029, 0, x_3028); +lean_ctor_set(x_3029, 1, x_3027); +x_3030 = 1; +x_3031 = lean_box(x_3030); +if (lean_is_scalar(x_2992)) { + x_3032 = lean_alloc_ctor(0, 2, 0); } else { - x_2856 = x_2818; + x_3032 = x_2992; } -lean_ctor_set(x_2856, 0, x_2853); -lean_ctor_set(x_2856, 1, x_2855); -x_2857 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2857, 0, x_2816); -lean_ctor_set(x_2857, 1, x_2856); -if (lean_is_scalar(x_2823)) { - x_2858 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3032, 0, x_3029); +lean_ctor_set(x_3032, 1, x_3031); +x_3033 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3033, 0, x_2990); +lean_ctor_set(x_3033, 1, x_3032); +if (lean_is_scalar(x_2997)) { + x_3034 = lean_alloc_ctor(0, 2, 0); } else { - x_2858 = x_2823; + x_3034 = x_2997; } -lean_ctor_set(x_2858, 0, x_2857); -lean_ctor_set(x_2858, 1, x_2822); -return x_2858; +lean_ctor_set(x_3034, 0, x_3033); +lean_ctor_set(x_3034, 1, x_2996); +return x_3034; } } default: { -lean_object* x_2859; lean_object* x_2860; lean_object* x_2861; lean_object* x_2862; lean_object* x_2863; -x_2859 = l_Lean_mkHole(x_19); -x_2860 = lean_unsigned_to_nat(1u); -x_2861 = lean_nat_add(x_3, x_2860); +lean_object* x_3035; lean_object* x_3036; lean_object* x_3037; lean_object* x_3038; lean_object* x_3039; +x_3035 = l_Lean_mkHole(x_19); +x_3036 = lean_unsigned_to_nat(1u); +x_3037 = lean_nat_add(x_3, x_3036); lean_dec(x_3); -x_2862 = l_Lean_Elab_Term_mkExplicitBinder(x_19, x_2859); -x_2863 = lean_array_push(x_4, x_2862); -x_3 = x_2861; -x_4 = x_2863; +x_3038 = l_Lean_Elab_Term_mkExplicitBinder(x_19, x_3035); +x_3039 = lean_array_push(x_4, x_3038); +x_3 = x_3037; +x_4 = x_3039; goto _start; } } @@ -15668,31 +16020,13 @@ return x_19; } } } -lean_object* _init_l_Lean_Elab_Term_elabFun___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("funMatchAlts"); -return x_1; -} -} -lean_object* _init_l_Lean_Elab_Term_elabFun___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_mkAppStx___closed__6; -x_2 = l_Lean_Elab_Term_elabFun___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} lean_object* l_Lean_Elab_Term_elabFun(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; lean_object* x_11; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; x_35 = lean_unsigned_to_nat(1u); x_36 = l_Lean_Syntax_getArg(x_1, x_35); -x_37 = l_Lean_Elab_Term_elabFun___closed__2; +x_37 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; lean_inc(x_36); x_38 = l_Lean_Syntax_isOfKind(x_36, x_37); if (x_38 == 0) @@ -15835,102 +16169,99 @@ return x_92; } else { -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; uint8_t 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; uint8_t x_117; -x_93 = lean_unsigned_to_nat(0u); -x_94 = l_Lean_Syntax_getArg(x_36, x_93); -lean_dec(x_36); -x_95 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_96 = lean_ctor_get(x_95, 0); -lean_inc(x_96); -x_97 = lean_ctor_get(x_95, 1); +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; 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; uint8_t x_115; +x_93 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_94 = lean_ctor_get(x_93, 0); +lean_inc(x_94); +x_95 = lean_ctor_get(x_93, 1); +lean_inc(x_95); +lean_dec(x_93); +x_96 = lean_st_ref_get(x_8, x_95); +x_97 = lean_ctor_get(x_96, 0); lean_inc(x_97); -lean_dec(x_95); -x_98 = lean_st_ref_get(x_8, x_97); -x_99 = lean_ctor_get(x_98, 0); +x_98 = lean_ctor_get(x_96, 1); +lean_inc(x_98); +lean_dec(x_96); +x_99 = lean_ctor_get(x_97, 0); lean_inc(x_99); -x_100 = lean_ctor_get(x_98, 1); -lean_inc(x_100); -lean_dec(x_98); -x_101 = lean_ctor_get(x_99, 0); +lean_dec(x_97); +x_100 = lean_st_ref_get(x_4, x_98); +x_101 = lean_ctor_get(x_100, 0); lean_inc(x_101); -lean_dec(x_99); -x_102 = lean_st_ref_get(x_4, x_100); -x_103 = lean_ctor_get(x_102, 0); +x_102 = lean_ctor_get(x_100, 1); +lean_inc(x_102); +lean_dec(x_100); +x_103 = lean_ctor_get(x_101, 5); lean_inc(x_103); -x_104 = lean_ctor_get(x_102, 1); +lean_dec(x_101); +x_104 = lean_ctor_get(x_7, 1); lean_inc(x_104); -lean_dec(x_102); -x_105 = lean_ctor_get(x_103, 5); +x_105 = lean_ctor_get(x_7, 2); lean_inc(x_105); -lean_dec(x_103); -x_106 = lean_ctor_get(x_7, 1); -lean_inc(x_106); -x_107 = lean_ctor_get(x_7, 2); -lean_inc(x_107); -x_108 = lean_environment_main_module(x_101); -x_109 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_109, 0, x_108); -lean_ctor_set(x_109, 1, x_96); -lean_ctor_set(x_109, 2, x_106); -lean_ctor_set(x_109, 3, x_107); -x_110 = 0; -x_111 = l_Lean_Elab_Term_expandMatchAltsIntoMatch(x_1, x_94, x_110, x_109, x_105); -x_112 = lean_ctor_get(x_111, 0); -lean_inc(x_112); -x_113 = lean_ctor_get(x_111, 1); +x_106 = lean_environment_main_module(x_99); +x_107 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_94); +lean_ctor_set(x_107, 2, x_104); +lean_ctor_set(x_107, 3, x_105); +x_108 = 0; +x_109 = l_Lean_Elab_Term_expandMatchAltsIntoMatch(x_1, x_36, x_108, x_107, x_103); +x_110 = lean_ctor_get(x_109, 0); +lean_inc(x_110); +x_111 = lean_ctor_get(x_109, 1); +lean_inc(x_111); +lean_dec(x_109); +x_112 = lean_st_ref_take(x_4, x_102); +x_113 = lean_ctor_get(x_112, 0); lean_inc(x_113); -lean_dec(x_111); -x_114 = lean_st_ref_take(x_4, x_104); -x_115 = lean_ctor_get(x_114, 0); -lean_inc(x_115); -x_116 = lean_ctor_get(x_114, 1); -lean_inc(x_116); -lean_dec(x_114); -x_117 = !lean_is_exclusive(x_115); -if (x_117 == 0) +x_114 = lean_ctor_get(x_112, 1); +lean_inc(x_114); +lean_dec(x_112); +x_115 = !lean_is_exclusive(x_113); +if (x_115 == 0) { -lean_object* x_118; lean_object* x_119; lean_object* x_120; -x_118 = lean_ctor_get(x_115, 5); -lean_dec(x_118); -lean_ctor_set(x_115, 5, x_113); -x_119 = lean_st_ref_set(x_4, x_115, x_116); -x_120 = lean_ctor_get(x_119, 1); -lean_inc(x_120); -lean_dec(x_119); -x_10 = x_112; -x_11 = x_120; +lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_116 = lean_ctor_get(x_113, 5); +lean_dec(x_116); +lean_ctor_set(x_113, 5, x_111); +x_117 = lean_st_ref_set(x_4, x_113, x_114); +x_118 = lean_ctor_get(x_117, 1); +lean_inc(x_118); +lean_dec(x_117); +x_10 = x_110; +x_11 = x_118; goto block_34; } else { -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; -x_121 = lean_ctor_get(x_115, 0); -x_122 = lean_ctor_get(x_115, 1); -x_123 = lean_ctor_get(x_115, 2); -x_124 = lean_ctor_get(x_115, 3); -x_125 = lean_ctor_get(x_115, 4); -x_126 = lean_ctor_get(x_115, 6); -lean_inc(x_126); -lean_inc(x_125); +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; +x_119 = lean_ctor_get(x_113, 0); +x_120 = lean_ctor_get(x_113, 1); +x_121 = lean_ctor_get(x_113, 2); +x_122 = lean_ctor_get(x_113, 3); +x_123 = lean_ctor_get(x_113, 4); +x_124 = lean_ctor_get(x_113, 6); lean_inc(x_124); lean_inc(x_123); lean_inc(x_122); lean_inc(x_121); -lean_dec(x_115); -x_127 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_127, 0, x_121); -lean_ctor_set(x_127, 1, x_122); -lean_ctor_set(x_127, 2, x_123); -lean_ctor_set(x_127, 3, x_124); -lean_ctor_set(x_127, 4, x_125); -lean_ctor_set(x_127, 5, x_113); -lean_ctor_set(x_127, 6, x_126); -x_128 = lean_st_ref_set(x_4, x_127, x_116); -x_129 = lean_ctor_get(x_128, 1); -lean_inc(x_129); -lean_dec(x_128); -x_10 = x_112; -x_11 = x_129; +lean_inc(x_120); +lean_inc(x_119); +lean_dec(x_113); +x_125 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_125, 0, x_119); +lean_ctor_set(x_125, 1, x_120); +lean_ctor_set(x_125, 2, x_121); +lean_ctor_set(x_125, 3, x_122); +lean_ctor_set(x_125, 4, x_123); +lean_ctor_set(x_125, 5, x_111); +lean_ctor_set(x_125, 6, x_124); +x_126 = lean_st_ref_set(x_4, x_125, x_114); +x_127 = lean_ctor_get(x_126, 1); +lean_inc(x_127); +lean_dec(x_126); +x_10 = x_110; +x_11 = x_127; goto block_34; } } @@ -16874,7 +17205,7 @@ 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; 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_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_dec(x_5); x_139 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__8; x_140 = l_Lean_mkAtomFrom(x_1, x_139); @@ -16884,22 +17215,21 @@ lean_ctor_set(x_142, 0, x_141); lean_ctor_set(x_142, 1, x_4); x_143 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__9; x_144 = l_Lean_mkAtomFrom(x_1, x_143); -x_145 = l___private_Lean_Meta_AppBuilder_22__mkEqNDRecImp___closed__6; +x_145 = l_Lean_Elab_Term_mkExplicitBinder___closed__7; x_146 = lean_array_push(x_145, x_140); x_147 = lean_array_push(x_146, x_142); x_148 = l_Lean_mkOptionalNode___closed__1; x_149 = lean_array_push(x_147, x_148); x_150 = lean_array_push(x_149, x_144); -x_151 = lean_array_push(x_150, x_148); -x_152 = lean_array_push(x_151, x_2); -x_153 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_154 = lean_alloc_ctor(1, 2, 0); +x_151 = lean_array_push(x_150, x_2); +x_152 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_153 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_153, 0, x_152); +lean_ctor_set(x_153, 1, x_151); +x_154 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_154, 0, x_153); -lean_ctor_set(x_154, 1, x_152); -x_155 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_155, 0, x_154); -lean_ctor_set(x_155, 1, x_6); -return x_155; +lean_ctor_set(x_154, 1, x_6); +return x_154; } } } @@ -16935,7 +17265,7 @@ lean_object* l_Lean_Elab_Term_expandLetEqnsDecl(lean_object* x_1, lean_object* x _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; uint8_t x_8; -x_4 = lean_unsigned_to_nat(4u); +x_4 = lean_unsigned_to_nat(3u); x_5 = l_Lean_Syntax_getArg(x_1, x_4); x_6 = 0; x_7 = l_Lean_Elab_Term_expandMatchAltsIntoMatch(x_1, x_5, x_6, x_2, x_3); @@ -17222,7 +17552,7 @@ goto block_40; } 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_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; 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_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; 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; lean_object* x_158; lean_dec(x_45); lean_dec(x_12); x_87 = l_Lean_Syntax_getArg(x_42, x_41); @@ -17302,193 +17632,198 @@ x_135 = lean_array_push(x_134, x_133); x_136 = lean_array_push(x_135, x_107); x_137 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_138 = lean_array_push(x_136, x_137); -x_139 = lean_array_push(x_138, x_107); -x_140 = lean_array_push(x_105, x_87); -x_141 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_141, 0, x_114); -lean_ctor_set(x_141, 1, x_140); -x_142 = lean_array_push(x_105, x_141); -x_143 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_144 = lean_array_push(x_142, x_143); -x_145 = lean_array_push(x_144, x_44); -x_146 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_147 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_147, 0, x_146); -lean_ctor_set(x_147, 1, x_145); -x_148 = lean_array_push(x_105, x_147); -x_149 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_149, 0, x_114); -lean_ctor_set(x_149, 1, x_148); -x_150 = lean_array_push(x_139, x_149); -x_151 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_139 = lean_array_push(x_105, x_87); +x_140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_140, 0, x_114); +lean_ctor_set(x_140, 1, x_139); +x_141 = lean_array_push(x_105, x_140); +x_142 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_143 = lean_array_push(x_141, x_142); +x_144 = lean_array_push(x_143, x_44); +x_145 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_145); +lean_ctor_set(x_146, 1, x_144); +x_147 = lean_array_push(x_105, x_146); +x_148 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_148, 0, x_114); +lean_ctor_set(x_148, 1, x_147); +x_149 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_150 = lean_array_push(x_149, x_148); +x_151 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_152 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_152, 0, x_151); lean_ctor_set(x_152, 1, x_150); -x_153 = lean_array_push(x_127, x_152); -x_154 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_153 = lean_array_push(x_138, x_152); +x_154 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_155 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_155, 0, x_154); lean_ctor_set(x_155, 1, x_153); +x_156 = lean_array_push(x_127, x_155); +x_157 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_158 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_158, 0, x_157); +lean_ctor_set(x_158, 1, x_156); if (x_3 == 0) { -uint8_t x_156; -x_156 = !lean_is_exclusive(x_4); -if (x_156 == 0) +uint8_t x_159; +x_159 = !lean_is_exclusive(x_4); +if (x_159 == 0) { -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_object* x_163; -x_157 = lean_ctor_get(x_4, 6); -x_158 = l_Lean_Elab_Term_elabLetDeclCore___closed__8; -x_159 = l_Lean_Syntax_updateKind(x_155, x_158); -lean_inc(x_159); -x_160 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_160, 0, x_1); -lean_ctor_set(x_160, 1, x_159); -x_161 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_161, 0, x_160); -lean_ctor_set(x_161, 1, x_157); -lean_ctor_set(x_4, 6, x_161); -x_162 = 1; -x_163 = l_Lean_Elab_Term_elabTerm(x_159, x_2, x_162, x_4, x_5, x_6, x_7, x_8, x_9, x_98); -return x_163; +lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; lean_object* x_166; +x_160 = lean_ctor_get(x_4, 6); +x_161 = l_Lean_Elab_Term_elabLetDeclCore___closed__8; +x_162 = l_Lean_Syntax_updateKind(x_158, x_161); +lean_inc(x_162); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_1); +lean_ctor_set(x_163, 1, x_162); +x_164 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_164, 0, x_163); +lean_ctor_set(x_164, 1, x_160); +lean_ctor_set(x_4, 6, x_164); +x_165 = 1; +x_166 = l_Lean_Elab_Term_elabTerm(x_162, x_2, x_165, x_4, x_5, x_6, x_7, x_8, x_9, x_98); +return x_166; } 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; uint8_t 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; uint8_t x_180; lean_object* x_181; -x_164 = lean_ctor_get(x_4, 0); -x_165 = lean_ctor_get(x_4, 1); -x_166 = lean_ctor_get(x_4, 2); -x_167 = lean_ctor_get(x_4, 3); -x_168 = lean_ctor_get(x_4, 4); -x_169 = lean_ctor_get(x_4, 5); -x_170 = lean_ctor_get(x_4, 6); -x_171 = lean_ctor_get(x_4, 7); -x_172 = lean_ctor_get_uint8(x_4, sizeof(void*)*8); -x_173 = lean_ctor_get_uint8(x_4, sizeof(void*)*8 + 1); -x_174 = lean_ctor_get_uint8(x_4, sizeof(void*)*8 + 2); +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; uint8_t x_175; uint8_t x_176; uint8_t x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; +x_167 = lean_ctor_get(x_4, 0); +x_168 = lean_ctor_get(x_4, 1); +x_169 = lean_ctor_get(x_4, 2); +x_170 = lean_ctor_get(x_4, 3); +x_171 = lean_ctor_get(x_4, 4); +x_172 = lean_ctor_get(x_4, 5); +x_173 = lean_ctor_get(x_4, 6); +x_174 = lean_ctor_get(x_4, 7); +x_175 = lean_ctor_get_uint8(x_4, sizeof(void*)*8); +x_176 = lean_ctor_get_uint8(x_4, sizeof(void*)*8 + 1); +x_177 = lean_ctor_get_uint8(x_4, sizeof(void*)*8 + 2); +lean_inc(x_174); +lean_inc(x_173); +lean_inc(x_172); lean_inc(x_171); lean_inc(x_170); lean_inc(x_169); lean_inc(x_168); lean_inc(x_167); -lean_inc(x_166); -lean_inc(x_165); -lean_inc(x_164); lean_dec(x_4); -x_175 = l_Lean_Elab_Term_elabLetDeclCore___closed__8; -x_176 = l_Lean_Syntax_updateKind(x_155, x_175); -lean_inc(x_176); -x_177 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_177, 0, x_1); -lean_ctor_set(x_177, 1, x_176); -x_178 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_178, 0, x_177); -lean_ctor_set(x_178, 1, x_170); -x_179 = lean_alloc_ctor(0, 8, 3); -lean_ctor_set(x_179, 0, x_164); -lean_ctor_set(x_179, 1, x_165); -lean_ctor_set(x_179, 2, x_166); -lean_ctor_set(x_179, 3, x_167); -lean_ctor_set(x_179, 4, x_168); -lean_ctor_set(x_179, 5, x_169); -lean_ctor_set(x_179, 6, x_178); -lean_ctor_set(x_179, 7, x_171); -lean_ctor_set_uint8(x_179, sizeof(void*)*8, x_172); -lean_ctor_set_uint8(x_179, sizeof(void*)*8 + 1, x_173); -lean_ctor_set_uint8(x_179, sizeof(void*)*8 + 2, x_174); -x_180 = 1; -x_181 = l_Lean_Elab_Term_elabTerm(x_176, x_2, x_180, x_179, x_5, x_6, x_7, x_8, x_9, x_98); -return x_181; +x_178 = l_Lean_Elab_Term_elabLetDeclCore___closed__8; +x_179 = l_Lean_Syntax_updateKind(x_158, x_178); +lean_inc(x_179); +x_180 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_180, 0, x_1); +lean_ctor_set(x_180, 1, x_179); +x_181 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_181, 0, x_180); +lean_ctor_set(x_181, 1, x_173); +x_182 = lean_alloc_ctor(0, 8, 3); +lean_ctor_set(x_182, 0, x_167); +lean_ctor_set(x_182, 1, x_168); +lean_ctor_set(x_182, 2, x_169); +lean_ctor_set(x_182, 3, x_170); +lean_ctor_set(x_182, 4, x_171); +lean_ctor_set(x_182, 5, x_172); +lean_ctor_set(x_182, 6, x_181); +lean_ctor_set(x_182, 7, x_174); +lean_ctor_set_uint8(x_182, sizeof(void*)*8, x_175); +lean_ctor_set_uint8(x_182, sizeof(void*)*8 + 1, x_176); +lean_ctor_set_uint8(x_182, sizeof(void*)*8 + 2, x_177); +x_183 = 1; +x_184 = l_Lean_Elab_Term_elabTerm(x_179, x_2, x_183, x_182, x_5, x_6, x_7, x_8, x_9, x_98); +return x_184; } } else { -uint8_t x_182; -x_182 = !lean_is_exclusive(x_4); -if (x_182 == 0) +uint8_t x_185; +x_185 = !lean_is_exclusive(x_4); +if (x_185 == 0) { -lean_object* x_183; lean_object* x_184; lean_object* x_185; uint8_t x_186; lean_object* x_187; -x_183 = lean_ctor_get(x_4, 6); -lean_inc(x_155); -x_184 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_184, 0, x_1); -lean_ctor_set(x_184, 1, x_155); -x_185 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_185, 0, x_184); -lean_ctor_set(x_185, 1, x_183); -lean_ctor_set(x_4, 6, x_185); -x_186 = 1; -x_187 = l_Lean_Elab_Term_elabTerm(x_155, x_2, x_186, x_4, x_5, x_6, x_7, x_8, x_9, x_98); -return x_187; +lean_object* x_186; lean_object* x_187; lean_object* x_188; uint8_t x_189; lean_object* x_190; +x_186 = lean_ctor_get(x_4, 6); +lean_inc(x_158); +x_187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_187, 0, x_1); +lean_ctor_set(x_187, 1, x_158); +x_188 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_188, 0, x_187); +lean_ctor_set(x_188, 1, x_186); +lean_ctor_set(x_4, 6, x_188); +x_189 = 1; +x_190 = l_Lean_Elab_Term_elabTerm(x_158, x_2, x_189, x_4, x_5, x_6, x_7, x_8, x_9, x_98); +return x_190; } else { -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; uint8_t x_196; uint8_t x_197; uint8_t x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; uint8_t x_202; lean_object* x_203; -x_188 = lean_ctor_get(x_4, 0); -x_189 = lean_ctor_get(x_4, 1); -x_190 = lean_ctor_get(x_4, 2); -x_191 = lean_ctor_get(x_4, 3); -x_192 = lean_ctor_get(x_4, 4); -x_193 = lean_ctor_get(x_4, 5); -x_194 = lean_ctor_get(x_4, 6); -x_195 = lean_ctor_get(x_4, 7); -x_196 = lean_ctor_get_uint8(x_4, sizeof(void*)*8); -x_197 = lean_ctor_get_uint8(x_4, sizeof(void*)*8 + 1); -x_198 = lean_ctor_get_uint8(x_4, sizeof(void*)*8 + 2); +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; uint8_t x_199; uint8_t x_200; uint8_t x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; uint8_t x_205; lean_object* x_206; +x_191 = lean_ctor_get(x_4, 0); +x_192 = lean_ctor_get(x_4, 1); +x_193 = lean_ctor_get(x_4, 2); +x_194 = lean_ctor_get(x_4, 3); +x_195 = lean_ctor_get(x_4, 4); +x_196 = lean_ctor_get(x_4, 5); +x_197 = lean_ctor_get(x_4, 6); +x_198 = lean_ctor_get(x_4, 7); +x_199 = lean_ctor_get_uint8(x_4, sizeof(void*)*8); +x_200 = lean_ctor_get_uint8(x_4, sizeof(void*)*8 + 1); +x_201 = lean_ctor_get_uint8(x_4, sizeof(void*)*8 + 2); +lean_inc(x_198); +lean_inc(x_197); +lean_inc(x_196); lean_inc(x_195); lean_inc(x_194); lean_inc(x_193); lean_inc(x_192); lean_inc(x_191); -lean_inc(x_190); -lean_inc(x_189); -lean_inc(x_188); lean_dec(x_4); -lean_inc(x_155); -x_199 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_199, 0, x_1); -lean_ctor_set(x_199, 1, x_155); -x_200 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_200, 0, x_199); -lean_ctor_set(x_200, 1, x_194); -x_201 = lean_alloc_ctor(0, 8, 3); -lean_ctor_set(x_201, 0, x_188); -lean_ctor_set(x_201, 1, x_189); -lean_ctor_set(x_201, 2, x_190); -lean_ctor_set(x_201, 3, x_191); -lean_ctor_set(x_201, 4, x_192); -lean_ctor_set(x_201, 5, x_193); -lean_ctor_set(x_201, 6, x_200); -lean_ctor_set(x_201, 7, x_195); -lean_ctor_set_uint8(x_201, sizeof(void*)*8, x_196); -lean_ctor_set_uint8(x_201, sizeof(void*)*8 + 1, x_197); -lean_ctor_set_uint8(x_201, sizeof(void*)*8 + 2, x_198); -x_202 = 1; -x_203 = l_Lean_Elab_Term_elabTerm(x_155, x_2, x_202, x_201, x_5, x_6, x_7, x_8, x_9, x_98); -return x_203; +lean_inc(x_158); +x_202 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_202, 0, x_1); +lean_ctor_set(x_202, 1, x_158); +x_203 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_203, 0, x_202); +lean_ctor_set(x_203, 1, x_197); +x_204 = lean_alloc_ctor(0, 8, 3); +lean_ctor_set(x_204, 0, x_191); +lean_ctor_set(x_204, 1, x_192); +lean_ctor_set(x_204, 2, x_193); +lean_ctor_set(x_204, 3, x_194); +lean_ctor_set(x_204, 4, x_195); +lean_ctor_set(x_204, 5, x_196); +lean_ctor_set(x_204, 6, x_203); +lean_ctor_set(x_204, 7, x_198); +lean_ctor_set_uint8(x_204, sizeof(void*)*8, x_199); +lean_ctor_set_uint8(x_204, sizeof(void*)*8 + 1, x_200); +lean_ctor_set_uint8(x_204, sizeof(void*)*8 + 2, x_201); +x_205 = 1; +x_206 = l_Lean_Elab_Term_elabTerm(x_158, x_2, x_205, x_204, x_5, x_6, x_7, x_8, x_9, x_98); +return x_206; } } } } else { -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_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_dec(x_45); lean_dec(x_12); lean_dec(x_1); -x_204 = l_Lean_Elab_Term_mkLetIdDeclView(x_42); +x_207 = l_Lean_Elab_Term_mkLetIdDeclView(x_42); lean_dec(x_42); -x_205 = lean_ctor_get(x_204, 0); -lean_inc(x_205); -x_206 = lean_ctor_get(x_204, 1); -lean_inc(x_206); -x_207 = lean_ctor_get(x_204, 2); -lean_inc(x_207); -x_208 = lean_ctor_get(x_204, 3); +x_208 = lean_ctor_get(x_207, 0); lean_inc(x_208); -lean_dec(x_204); -x_209 = l_Lean_Elab_Term_elabLetDeclAux(x_205, x_206, x_207, x_208, x_44, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_206); -return x_209; +x_209 = lean_ctor_get(x_207, 1); +lean_inc(x_209); +x_210 = lean_ctor_get(x_207, 2); +lean_inc(x_210); +x_211 = lean_ctor_get(x_207, 3); +lean_inc(x_211); +lean_dec(x_207); +x_212 = l_Lean_Elab_Term_elabLetDeclAux(x_208, x_209, x_210, x_211, x_44, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_209); +return x_212; } block_40: { @@ -17855,6 +18190,12 @@ l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__14 = _ini lean_mark_persistent(l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__14); l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15 = _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15(); lean_mark_persistent(l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15); +l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16 = _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16(); +lean_mark_persistent(l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16); +l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__17 = _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__17(); +lean_mark_persistent(l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__17); +l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18 = _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18(); +lean_mark_persistent(l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18); l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1 = _init_l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1); l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__2 = _init_l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__2(); @@ -17887,10 +18228,6 @@ l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__9 lean_mark_persistent(l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__9); l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__10 = _init_l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__10(); lean_mark_persistent(l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__10); -l_Lean_Elab_Term_elabFun___closed__1 = _init_l_Lean_Elab_Term_elabFun___closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_elabFun___closed__1); -l_Lean_Elab_Term_elabFun___closed__2 = _init_l_Lean_Elab_Term_elabFun___closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_elabFun___closed__2); l___regBuiltin_Lean_Elab_Term_elabFun___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabFun___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabFun___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabFun(lean_io_mk_world()); diff --git a/stage0/stdlib/Lean/Elab/DoNotation.c b/stage0/stdlib/Lean/Elab/DoNotation.c index 706ab7ce12..92f5f14edd 100644 --- a/stage0/stdlib/Lean/Elab/DoNotation.c +++ b/stage0/stdlib/Lean/Elab/DoNotation.c @@ -61,6 +61,7 @@ lean_object* l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__3; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_Elab_DoNotation_10__mkBind___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* l___private_Lean_Elab_DoNotation_1__mkIdBindFor(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__3; @@ -83,10 +84,10 @@ lean_object* l_Lean_Meta_getDecLevel___at_Lean_Elab_Term_tryLiftAndCoe___spec__1 extern lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__9; lean_object* l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__5; -extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; lean_object* l_Lean_Elab_Term_elabTerm(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; lean_object* l___private_Lean_Elab_DoNotation_10__mkBind(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_Elab_Term_Quotation_stxQuot_expand___closed__6; lean_object* l___private_Lean_Meta_Basic_23__withLocalDeclImpl___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2297,7 +2298,7 @@ lean_ctor_set(x_142, 1, x_140); x_143 = l_Lean_Syntax_isNone(x_121); if (x_143 == 0) { -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; 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_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; 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; x_144 = l_Lean_Syntax_getArg(x_121, x_125); lean_dec(x_121); x_145 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; @@ -2339,98 +2340,100 @@ x_169 = lean_array_push(x_168, x_167); x_170 = lean_array_push(x_169, x_152); x_171 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_172 = lean_array_push(x_170, x_171); -x_173 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_174 = lean_array_push(x_172, x_173); -x_175 = lean_array_push(x_129, x_117); -x_176 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_176, 0, x_131); -lean_ctor_set(x_176, 1, x_175); -x_177 = lean_array_push(x_129, x_176); -x_178 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_179 = lean_array_push(x_177, x_178); -x_180 = lean_array_push(x_179, x_142); -x_181 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_182 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_182, 0, x_181); -lean_ctor_set(x_182, 1, x_180); -x_183 = lean_array_push(x_129, x_182); -x_184 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; -x_185 = lean_array_push(x_183, x_184); -x_186 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__8; -x_187 = lean_array_push(x_186, x_144); +x_173 = lean_array_push(x_129, x_117); +x_174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_174, 0, x_131); +lean_ctor_set(x_174, 1, x_173); +x_175 = lean_array_push(x_129, x_174); +x_176 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_177 = lean_array_push(x_175, x_176); +x_178 = lean_array_push(x_177, x_142); +x_179 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_180 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_180, 0, x_179); +lean_ctor_set(x_180, 1, x_178); +x_181 = lean_array_push(x_129, x_180); +x_182 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_183 = lean_array_push(x_181, x_182); +x_184 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__8; +x_185 = lean_array_push(x_184, x_144); +x_186 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_186, 0, x_179); +lean_ctor_set(x_186, 1, x_185); +x_187 = lean_array_push(x_183, x_186); x_188 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_188, 0, x_181); +lean_ctor_set(x_188, 0, x_131); lean_ctor_set(x_188, 1, x_187); -x_189 = lean_array_push(x_185, x_188); -x_190 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_190, 0, x_131); -lean_ctor_set(x_190, 1, x_189); -x_191 = lean_array_push(x_174, x_190); -x_192 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_193 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_193, 0, x_192); -lean_ctor_set(x_193, 1, x_191); -x_194 = lean_array_push(x_129, x_193); -x_195 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; -x_196 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_196, 0, x_195); -lean_ctor_set(x_196, 1, x_194); -x_197 = lean_array_push(x_161, x_196); +x_189 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_190 = lean_array_push(x_189, x_188); +x_191 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_192 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_192, 0, x_191); +lean_ctor_set(x_192, 1, x_190); +x_193 = lean_array_push(x_172, x_192); +x_194 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_195, 0, x_194); +lean_ctor_set(x_195, 1, x_193); +x_196 = lean_array_push(x_129, x_195); +x_197 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; x_198 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_198, 0, x_131); -lean_ctor_set(x_198, 1, x_197); -x_199 = lean_array_push(x_139, x_198); +lean_ctor_set(x_198, 0, x_197); +lean_ctor_set(x_198, 1, x_196); +x_199 = lean_array_push(x_161, x_198); x_200 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_200, 0, x_141); +lean_ctor_set(x_200, 0, x_131); lean_ctor_set(x_200, 1, x_199); -x_6 = x_200; +x_201 = lean_array_push(x_139, x_200); +x_202 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_202, 0, x_141); +lean_ctor_set(x_202, 1, x_201); +x_6 = x_202; x_7 = x_127; goto block_34; } 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; 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_object* x_222; 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_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_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_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_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_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; lean_object* x_253; lean_object* x_254; lean_dec(x_121); -x_201 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; -x_202 = l_Lean_addMacroScope(x_128, x_201, x_60); -x_203 = lean_box(0); -x_204 = l_Lean_SourceInfo_inhabited___closed__1; -x_205 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; -x_206 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_206, 0, x_204); -lean_ctor_set(x_206, 1, x_205); -lean_ctor_set(x_206, 2, x_202); -lean_ctor_set(x_206, 3, x_203); -lean_inc(x_206); -x_207 = lean_array_push(x_129, x_206); -x_208 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_209 = lean_array_push(x_207, x_208); -x_210 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; +x_203 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_204 = l_Lean_addMacroScope(x_128, x_203, x_60); +x_205 = lean_box(0); +x_206 = l_Lean_SourceInfo_inhabited___closed__1; +x_207 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; +x_208 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_208, 0, x_206); +lean_ctor_set(x_208, 1, x_207); +lean_ctor_set(x_208, 2, x_204); +lean_ctor_set(x_208, 3, x_205); +lean_inc(x_208); +x_209 = lean_array_push(x_129, x_208); +x_210 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_211 = lean_array_push(x_209, x_210); -x_212 = lean_array_push(x_211, x_119); -x_213 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; -x_214 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_214, 0, x_213); -lean_ctor_set(x_214, 1, x_212); -x_215 = lean_array_push(x_129, x_214); -x_216 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; -x_217 = lean_array_push(x_215, x_216); -x_218 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_219 = lean_array_push(x_218, x_206); -x_220 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_221 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_221, 0, x_220); -lean_ctor_set(x_221, 1, x_219); -x_222 = lean_array_push(x_129, x_221); +x_212 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; +x_213 = lean_array_push(x_211, x_212); +x_214 = lean_array_push(x_213, x_119); +x_215 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_216 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_216, 0, x_215); +lean_ctor_set(x_216, 1, x_214); +x_217 = lean_array_push(x_129, x_216); +x_218 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; +x_219 = lean_array_push(x_217, x_218); +x_220 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_221 = lean_array_push(x_220, x_208); +x_222 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_223, 0, x_131); -lean_ctor_set(x_223, 1, x_222); -x_224 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_225 = lean_array_push(x_224, x_223); -x_226 = lean_array_push(x_225, x_208); -x_227 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_228 = lean_array_push(x_226, x_227); -x_229 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +lean_ctor_set(x_223, 0, x_222); +lean_ctor_set(x_223, 1, x_221); +x_224 = lean_array_push(x_129, x_223); +x_225 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_225, 0, x_131); +lean_ctor_set(x_225, 1, x_224); +x_226 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_227 = lean_array_push(x_226, x_225); +x_228 = lean_array_push(x_227, x_210); +x_229 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_230 = lean_array_push(x_228, x_229); x_231 = lean_array_push(x_129, x_117); x_232 = lean_alloc_ctor(1, 2, 0); @@ -2440,7 +2443,7 @@ x_233 = lean_array_push(x_129, x_232); x_234 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; x_235 = lean_array_push(x_233, x_234); x_236 = lean_array_push(x_235, x_142); -x_237 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +x_237 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_238 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_238, 0, x_237); lean_ctor_set(x_238, 1, x_236); @@ -2448,223 +2451,237 @@ x_239 = lean_array_push(x_129, x_238); x_240 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_240, 0, x_131); lean_ctor_set(x_240, 1, x_239); -x_241 = lean_array_push(x_230, x_240); -x_242 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_243 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_243, 0, x_242); -lean_ctor_set(x_243, 1, x_241); -x_244 = lean_array_push(x_129, x_243); -x_245 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; -x_246 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_246, 0, x_245); -lean_ctor_set(x_246, 1, x_244); -x_247 = lean_array_push(x_217, x_246); -x_248 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_248, 0, x_131); -lean_ctor_set(x_248, 1, x_247); -x_249 = lean_array_push(x_139, x_248); +x_241 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_242 = lean_array_push(x_241, x_240); +x_243 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_244 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_244, 0, x_243); +lean_ctor_set(x_244, 1, x_242); +x_245 = lean_array_push(x_230, x_244); +x_246 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_247 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_247, 0, x_246); +lean_ctor_set(x_247, 1, x_245); +x_248 = lean_array_push(x_129, x_247); +x_249 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; x_250 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_250, 0, x_141); -lean_ctor_set(x_250, 1, x_249); -x_6 = x_250; +lean_ctor_set(x_250, 0, x_249); +lean_ctor_set(x_250, 1, x_248); +x_251 = lean_array_push(x_219, x_250); +x_252 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_252, 0, x_131); +lean_ctor_set(x_252, 1, x_251); +x_253 = lean_array_push(x_139, x_252); +x_254 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_254, 0, x_141); +lean_ctor_set(x_254, 1, x_253); +x_6 = x_254; x_7 = x_127; goto block_34; } } else { -lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint8_t x_256; -x_251 = l_Lean_Syntax_inhabited; -x_252 = lean_array_get(x_251, x_123, x_116); +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint8_t x_260; +x_255 = l_Lean_Syntax_inhabited; +x_256 = lean_array_get(x_255, x_123, x_116); lean_dec(x_123); -x_253 = l_Lean_Syntax_getArg(x_252, x_116); -lean_dec(x_252); -x_254 = lean_nat_add(x_60, x_125); -x_255 = lean_ctor_get(x_4, 0); -lean_inc(x_255); +x_257 = l_Lean_Syntax_getArg(x_256, x_116); +lean_dec(x_256); +x_258 = lean_nat_add(x_60, x_125); +x_259 = lean_ctor_get(x_4, 0); +lean_inc(x_259); lean_dec(x_4); -x_256 = l_Lean_Syntax_isNone(x_121); -if (x_256 == 0) +x_260 = l_Lean_Syntax_isNone(x_121); +if (x_260 == 0) { -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; 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; 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_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_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; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; -x_257 = l_Lean_Syntax_getArg(x_121, x_125); +lean_object* x_261; lean_object* 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; 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_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_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; lean_object* x_311; 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; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; +x_261 = l_Lean_Syntax_getArg(x_121, x_125); lean_dec(x_121); -x_258 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; -x_259 = l_Lean_addMacroScope(x_255, x_258, x_60); -x_260 = lean_box(0); -x_261 = l_Lean_SourceInfo_inhabited___closed__1; -x_262 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; -x_263 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_263, 0, x_261); -lean_ctor_set(x_263, 1, x_262); -lean_ctor_set(x_263, 2, x_259); -lean_ctor_set(x_263, 3, x_260); -x_264 = l_Array_empty___closed__1; -lean_inc(x_263); -x_265 = lean_array_push(x_264, x_263); -x_266 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_267 = lean_array_push(x_265, x_266); -x_268 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; -x_269 = lean_array_push(x_267, x_268); -x_270 = lean_array_push(x_269, x_119); -x_271 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; -x_272 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_272, 0, x_271); -lean_ctor_set(x_272, 1, x_270); -x_273 = lean_array_push(x_264, x_272); -x_274 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; -x_275 = lean_array_push(x_273, x_274); -x_276 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_277 = lean_array_push(x_276, x_263); -x_278 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_279 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_279, 0, x_278); -lean_ctor_set(x_279, 1, x_277); -x_280 = lean_array_push(x_264, x_279); -x_281 = l_Lean_nullKind___closed__2; -x_282 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_282, 0, x_281); -lean_ctor_set(x_282, 1, x_280); -x_283 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_284 = lean_array_push(x_283, x_282); -x_285 = lean_array_push(x_284, x_266); -x_286 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_287 = lean_array_push(x_285, x_286); -x_288 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_289 = lean_array_push(x_287, x_288); -x_290 = lean_array_push(x_264, x_117); -x_291 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_291, 0, x_281); -lean_ctor_set(x_291, 1, x_290); -x_292 = lean_array_push(x_264, x_291); -x_293 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_294 = lean_array_push(x_292, x_293); -x_295 = lean_array_push(x_294, x_253); -x_296 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_297 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_297, 0, x_296); -lean_ctor_set(x_297, 1, x_295); -x_298 = lean_array_push(x_264, x_297); -x_299 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; -x_300 = lean_array_push(x_298, x_299); -x_301 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__8; -x_302 = lean_array_push(x_301, x_257); -x_303 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_303, 0, x_296); -lean_ctor_set(x_303, 1, x_302); -x_304 = lean_array_push(x_300, x_303); +x_262 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_263 = l_Lean_addMacroScope(x_259, x_262, x_60); +x_264 = lean_box(0); +x_265 = l_Lean_SourceInfo_inhabited___closed__1; +x_266 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; +x_267 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_267, 0, x_265); +lean_ctor_set(x_267, 1, x_266); +lean_ctor_set(x_267, 2, x_263); +lean_ctor_set(x_267, 3, x_264); +x_268 = l_Array_empty___closed__1; +lean_inc(x_267); +x_269 = lean_array_push(x_268, x_267); +x_270 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_271 = lean_array_push(x_269, x_270); +x_272 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; +x_273 = lean_array_push(x_271, x_272); +x_274 = lean_array_push(x_273, x_119); +x_275 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_276 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_276, 0, x_275); +lean_ctor_set(x_276, 1, x_274); +x_277 = lean_array_push(x_268, x_276); +x_278 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; +x_279 = lean_array_push(x_277, x_278); +x_280 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_281 = lean_array_push(x_280, x_267); +x_282 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_283 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_283, 0, x_282); +lean_ctor_set(x_283, 1, x_281); +x_284 = lean_array_push(x_268, x_283); +x_285 = l_Lean_nullKind___closed__2; +x_286 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_286, 0, x_285); +lean_ctor_set(x_286, 1, x_284); +x_287 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_288 = lean_array_push(x_287, x_286); +x_289 = lean_array_push(x_288, x_270); +x_290 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_291 = lean_array_push(x_289, x_290); +x_292 = lean_array_push(x_268, x_117); +x_293 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_293, 0, x_285); +lean_ctor_set(x_293, 1, x_292); +x_294 = lean_array_push(x_268, x_293); +x_295 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_296 = lean_array_push(x_294, x_295); +x_297 = lean_array_push(x_296, x_257); +x_298 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_299 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_299, 0, x_298); +lean_ctor_set(x_299, 1, x_297); +x_300 = lean_array_push(x_268, x_299); +x_301 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_302 = lean_array_push(x_300, x_301); +x_303 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__8; +x_304 = lean_array_push(x_303, x_261); x_305 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_305, 0, x_281); +lean_ctor_set(x_305, 0, x_298); lean_ctor_set(x_305, 1, x_304); -x_306 = lean_array_push(x_289, x_305); -x_307 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_308 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_308, 0, x_307); -lean_ctor_set(x_308, 1, x_306); -x_309 = lean_array_push(x_264, x_308); -x_310 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_306 = lean_array_push(x_302, x_305); +x_307 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_307, 0, x_285); +lean_ctor_set(x_307, 1, x_306); +x_308 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_309 = lean_array_push(x_308, x_307); +x_310 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_311 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_311, 0, x_310); lean_ctor_set(x_311, 1, x_309); -x_312 = lean_array_push(x_275, x_311); -x_313 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_313, 0, x_281); -lean_ctor_set(x_313, 1, x_312); -x_314 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; -x_315 = lean_array_push(x_314, x_313); -x_316 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; +x_312 = lean_array_push(x_291, x_311); +x_313 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_314 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_314, 0, x_313); +lean_ctor_set(x_314, 1, x_312); +x_315 = lean_array_push(x_268, x_314); +x_316 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; x_317 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_317, 0, x_316); lean_ctor_set(x_317, 1, x_315); -x_6 = x_317; -x_7 = x_254; +x_318 = lean_array_push(x_279, x_317); +x_319 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_319, 0, x_285); +lean_ctor_set(x_319, 1, x_318); +x_320 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_321 = lean_array_push(x_320, x_319); +x_322 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; +x_323 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_323, 0, x_322); +lean_ctor_set(x_323, 1, x_321); +x_6 = x_323; +x_7 = x_258; goto block_34; } 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; lean_object* 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_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; 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; 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_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; +lean_object* 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_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; 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; 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_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_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_dec(x_121); -x_318 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; -x_319 = l_Lean_addMacroScope(x_255, x_318, x_60); -x_320 = lean_box(0); -x_321 = l_Lean_SourceInfo_inhabited___closed__1; -x_322 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; -x_323 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_323, 0, x_321); -lean_ctor_set(x_323, 1, x_322); -lean_ctor_set(x_323, 2, x_319); -lean_ctor_set(x_323, 3, x_320); -x_324 = l_Array_empty___closed__1; -lean_inc(x_323); -x_325 = lean_array_push(x_324, x_323); -x_326 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_327 = lean_array_push(x_325, x_326); -x_328 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; -x_329 = lean_array_push(x_327, x_328); -x_330 = lean_array_push(x_329, x_119); -x_331 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; -x_332 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_332, 0, x_331); -lean_ctor_set(x_332, 1, x_330); -x_333 = lean_array_push(x_324, x_332); -x_334 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; +x_324 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_325 = l_Lean_addMacroScope(x_259, x_324, x_60); +x_326 = lean_box(0); +x_327 = l_Lean_SourceInfo_inhabited___closed__1; +x_328 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; +x_329 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_329, 2, x_325); +lean_ctor_set(x_329, 3, x_326); +x_330 = l_Array_empty___closed__1; +lean_inc(x_329); +x_331 = lean_array_push(x_330, x_329); +x_332 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_333 = lean_array_push(x_331, x_332); +x_334 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; x_335 = lean_array_push(x_333, x_334); -x_336 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_337 = lean_array_push(x_336, x_323); -x_338 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_339 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_339, 0, x_338); -lean_ctor_set(x_339, 1, x_337); -x_340 = lean_array_push(x_324, x_339); -x_341 = l_Lean_nullKind___closed__2; -x_342 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_342, 0, x_341); -lean_ctor_set(x_342, 1, x_340); -x_343 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_344 = lean_array_push(x_343, x_342); -x_345 = lean_array_push(x_344, x_326); -x_346 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_347 = lean_array_push(x_345, x_346); -x_348 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_349 = lean_array_push(x_347, x_348); -x_350 = lean_array_push(x_324, x_117); -x_351 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_351, 0, x_341); -lean_ctor_set(x_351, 1, x_350); -x_352 = lean_array_push(x_324, x_351); -x_353 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_354 = lean_array_push(x_352, x_353); -x_355 = lean_array_push(x_354, x_253); -x_356 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_357 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_357, 0, x_356); -lean_ctor_set(x_357, 1, x_355); -x_358 = lean_array_push(x_324, x_357); -x_359 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_359, 0, x_341); -lean_ctor_set(x_359, 1, x_358); -x_360 = lean_array_push(x_349, x_359); -x_361 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_362 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_362, 0, x_361); -lean_ctor_set(x_362, 1, x_360); -x_363 = lean_array_push(x_324, x_362); -x_364 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; -x_365 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_365, 0, x_364); -lean_ctor_set(x_365, 1, x_363); -x_366 = lean_array_push(x_335, x_365); +x_336 = lean_array_push(x_335, x_119); +x_337 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_338 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_338, 0, x_337); +lean_ctor_set(x_338, 1, x_336); +x_339 = lean_array_push(x_330, x_338); +x_340 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; +x_341 = lean_array_push(x_339, x_340); +x_342 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_343 = lean_array_push(x_342, x_329); +x_344 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_345 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_345, 0, x_344); +lean_ctor_set(x_345, 1, x_343); +x_346 = lean_array_push(x_330, x_345); +x_347 = l_Lean_nullKind___closed__2; +x_348 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_348, 0, x_347); +lean_ctor_set(x_348, 1, x_346); +x_349 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_350 = lean_array_push(x_349, x_348); +x_351 = lean_array_push(x_350, x_332); +x_352 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_353 = lean_array_push(x_351, x_352); +x_354 = lean_array_push(x_330, x_117); +x_355 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_355, 0, x_347); +lean_ctor_set(x_355, 1, x_354); +x_356 = lean_array_push(x_330, x_355); +x_357 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_358 = lean_array_push(x_356, x_357); +x_359 = lean_array_push(x_358, x_257); +x_360 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_361 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_361, 0, x_360); +lean_ctor_set(x_361, 1, x_359); +x_362 = lean_array_push(x_330, x_361); +x_363 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_363, 0, x_347); +lean_ctor_set(x_363, 1, x_362); +x_364 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_365 = lean_array_push(x_364, x_363); +x_366 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_367 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_367, 0, x_341); -lean_ctor_set(x_367, 1, x_366); -x_368 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; -x_369 = lean_array_push(x_368, x_367); -x_370 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; -x_371 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_371, 0, x_370); -lean_ctor_set(x_371, 1, x_369); -x_6 = x_371; -x_7 = x_254; +lean_ctor_set(x_367, 0, x_366); +lean_ctor_set(x_367, 1, x_365); +x_368 = lean_array_push(x_353, x_367); +x_369 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_370 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_370, 0, x_369); +lean_ctor_set(x_370, 1, x_368); +x_371 = lean_array_push(x_330, x_370); +x_372 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_373 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_373, 0, x_372); +lean_ctor_set(x_373, 1, x_371); +x_374 = lean_array_push(x_341, x_373); +x_375 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_375, 0, x_347); +lean_ctor_set(x_375, 1, x_374); +x_376 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_377 = lean_array_push(x_376, x_375); +x_378 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; +x_379 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_379, 0, x_378); +lean_ctor_set(x_379, 1, x_377); +x_6 = x_379; +x_7 = x_258; goto block_34; } } @@ -2672,163 +2689,163 @@ goto block_34; } else { -lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; uint8_t x_378; +lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; uint8_t x_386; lean_dec(x_62); lean_dec(x_4); -x_372 = lean_unsigned_to_nat(1u); -x_373 = l_Lean_Syntax_getArg(x_56, x_372); +x_380 = lean_unsigned_to_nat(1u); +x_381 = l_Lean_Syntax_getArg(x_56, x_380); lean_dec(x_56); -x_374 = lean_unsigned_to_nat(2u); -x_375 = lean_nat_add(x_3, x_374); -x_376 = l_Array_extract___rarg(x_2, x_375, x_35); +x_382 = lean_unsigned_to_nat(2u); +x_383 = lean_nat_add(x_3, x_382); +x_384 = l_Array_extract___rarg(x_2, x_383, x_35); lean_dec(x_35); -x_377 = lean_array_get_size(x_376); -x_378 = lean_nat_dec_eq(x_377, x_372); -lean_dec(x_377); -if (x_378 == 0) +x_385 = lean_array_get_size(x_384); +x_386 = lean_nat_dec_eq(x_385, x_380); +lean_dec(x_385); +if (x_386 == 0) { -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; 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; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; uint8_t x_401; -x_379 = lean_unsigned_to_nat(0u); -x_380 = l_Array_empty___closed__1; -x_381 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_376, x_376, x_379, x_380); -lean_dec(x_376); -x_382 = l_Lean_nullKind___closed__2; -x_383 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_383, 0, x_382); -lean_ctor_set(x_383, 1, x_381); -x_384 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__4; -x_385 = lean_array_push(x_384, x_383); -x_386 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__9; -x_387 = lean_array_push(x_385, x_386); -x_388 = l___private_Lean_Elab_DoNotation_3__getDoElems___closed__2; -x_389 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_389, 0, x_388); -lean_ctor_set(x_389, 1, x_387); -x_390 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; -x_391 = lean_array_push(x_390, x_389); -x_392 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; -x_393 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_393, 0, x_392); -lean_ctor_set(x_393, 1, x_391); -x_394 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; -x_395 = lean_array_push(x_394, x_373); -x_396 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; -x_397 = lean_array_push(x_395, x_396); -x_398 = lean_array_push(x_397, x_393); -x_399 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; -x_400 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_400, 0, x_399); -lean_ctor_set(x_400, 1, x_398); -x_401 = lean_nat_dec_eq(x_3, x_379); -if (x_401 == 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; 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_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; uint8_t x_409; +x_387 = lean_unsigned_to_nat(0u); +x_388 = l_Array_empty___closed__1; +x_389 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_384, x_384, x_387, x_388); +lean_dec(x_384); +x_390 = l_Lean_nullKind___closed__2; +x_391 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_391, 0, x_390); +lean_ctor_set(x_391, 1, x_389); +x_392 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__4; +x_393 = lean_array_push(x_392, x_391); +x_394 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__9; +x_395 = lean_array_push(x_393, x_394); +x_396 = l___private_Lean_Elab_DoNotation_3__getDoElems___closed__2; +x_397 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_397, 0, x_396); +lean_ctor_set(x_397, 1, x_395); +x_398 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_399 = lean_array_push(x_398, x_397); +x_400 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; +x_401 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_401, 0, x_400); +lean_ctor_set(x_401, 1, x_399); +x_402 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_403 = lean_array_push(x_402, x_381); +x_404 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; +x_405 = lean_array_push(x_403, x_404); +x_406 = lean_array_push(x_405, x_401); +x_407 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_408 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_408, 0, x_407); +lean_ctor_set(x_408, 1, x_406); +x_409 = lean_nat_dec_eq(x_3, x_387); +if (x_409 == 0) { -lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; 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_413; lean_object* x_414; lean_object* x_415; -x_402 = l_Array_extract___rarg(x_2, x_379, x_3); +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_410 = l_Array_extract___rarg(x_2, x_387, x_3); lean_dec(x_3); lean_dec(x_2); -x_403 = l_Lean_mkOptionalNode___closed__2; -x_404 = lean_array_push(x_403, x_400); -x_405 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; -x_406 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_406, 0, x_405); -lean_ctor_set(x_406, 1, x_404); -x_407 = lean_array_push(x_402, x_406); -x_408 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_407, x_407, x_379, x_380); -lean_dec(x_407); -x_409 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_409, 0, x_382); -lean_ctor_set(x_409, 1, x_408); -x_410 = lean_array_push(x_384, x_409); -x_411 = lean_array_push(x_410, x_386); -x_412 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_412, 0, x_388); -lean_ctor_set(x_412, 1, x_411); -x_413 = lean_array_push(x_390, x_412); +x_411 = l_Lean_mkOptionalNode___closed__2; +x_412 = lean_array_push(x_411, x_408); +x_413 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; x_414 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_414, 0, x_392); -lean_ctor_set(x_414, 1, x_413); -x_415 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_415, 0, x_414); -lean_ctor_set(x_57, 0, x_415); +lean_ctor_set(x_414, 0, x_413); +lean_ctor_set(x_414, 1, x_412); +x_415 = lean_array_push(x_410, x_414); +x_416 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_415, x_415, x_387, x_388); +lean_dec(x_415); +x_417 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_417, 0, x_390); +lean_ctor_set(x_417, 1, x_416); +x_418 = lean_array_push(x_392, x_417); +x_419 = lean_array_push(x_418, x_394); +x_420 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_420, 0, x_396); +lean_ctor_set(x_420, 1, x_419); +x_421 = lean_array_push(x_398, x_420); +x_422 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_422, 0, x_400); +lean_ctor_set(x_422, 1, x_421); +x_423 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_423, 0, x_422); +lean_ctor_set(x_57, 0, x_423); return x_57; } else { -lean_object* x_416; +lean_object* x_424; lean_dec(x_3); lean_dec(x_2); -x_416 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_416, 0, x_400); -lean_ctor_set(x_57, 0, x_416); +x_424 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_424, 0, x_408); +lean_ctor_set(x_57, 0, x_424); return x_57; } } 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; lean_object* x_426; lean_object* x_427; uint8_t x_428; -x_417 = l_Lean_Syntax_inhabited; -x_418 = lean_unsigned_to_nat(0u); -x_419 = lean_array_get(x_417, x_376, x_418); -lean_dec(x_376); -x_420 = l_Lean_Syntax_getArg(x_419, x_418); -lean_dec(x_419); -x_421 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; -x_422 = lean_array_push(x_421, x_373); -x_423 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; -x_424 = lean_array_push(x_422, x_423); -x_425 = lean_array_push(x_424, x_420); -x_426 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; -x_427 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_427, 0, x_426); -lean_ctor_set(x_427, 1, x_425); -x_428 = lean_nat_dec_eq(x_3, x_418); -if (x_428 == 0) +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_object* x_435; uint8_t x_436; +x_425 = l_Lean_Syntax_inhabited; +x_426 = lean_unsigned_to_nat(0u); +x_427 = lean_array_get(x_425, x_384, x_426); +lean_dec(x_384); +x_428 = l_Lean_Syntax_getArg(x_427, x_426); +lean_dec(x_427); +x_429 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_430 = lean_array_push(x_429, x_381); +x_431 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; +x_432 = lean_array_push(x_430, x_431); +x_433 = lean_array_push(x_432, x_428); +x_434 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_435 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_435, 0, x_434); +lean_ctor_set(x_435, 1, x_433); +x_436 = lean_nat_dec_eq(x_3, x_426); +if (x_436 == 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_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_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; -x_429 = l_Array_extract___rarg(x_2, x_418, x_3); +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_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; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; +x_437 = l_Array_extract___rarg(x_2, x_426, x_3); lean_dec(x_3); lean_dec(x_2); -x_430 = l_Lean_mkOptionalNode___closed__2; -x_431 = lean_array_push(x_430, x_427); -x_432 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; -x_433 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_433, 0, x_432); -lean_ctor_set(x_433, 1, x_431); -x_434 = lean_array_push(x_429, x_433); -x_435 = l_Array_empty___closed__1; -x_436 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_434, x_434, x_418, x_435); -lean_dec(x_434); -x_437 = l_Lean_nullKind___closed__2; -x_438 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_438, 0, x_437); -lean_ctor_set(x_438, 1, x_436); -x_439 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__4; -x_440 = lean_array_push(x_439, x_438); -x_441 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__9; -x_442 = lean_array_push(x_440, x_441); -x_443 = l___private_Lean_Elab_DoNotation_3__getDoElems___closed__2; -x_444 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_444, 0, x_443); -lean_ctor_set(x_444, 1, x_442); -x_445 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; -x_446 = lean_array_push(x_445, x_444); -x_447 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; -x_448 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_448, 0, x_447); -lean_ctor_set(x_448, 1, x_446); -x_449 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_449, 0, x_448); -lean_ctor_set(x_57, 0, x_449); +x_438 = l_Lean_mkOptionalNode___closed__2; +x_439 = lean_array_push(x_438, x_435); +x_440 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_441 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_441, 0, x_440); +lean_ctor_set(x_441, 1, x_439); +x_442 = lean_array_push(x_437, x_441); +x_443 = l_Array_empty___closed__1; +x_444 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_442, x_442, x_426, x_443); +lean_dec(x_442); +x_445 = l_Lean_nullKind___closed__2; +x_446 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_446, 0, x_445); +lean_ctor_set(x_446, 1, x_444); +x_447 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__4; +x_448 = lean_array_push(x_447, x_446); +x_449 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__9; +x_450 = lean_array_push(x_448, x_449); +x_451 = l___private_Lean_Elab_DoNotation_3__getDoElems___closed__2; +x_452 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_452, 0, x_451); +lean_ctor_set(x_452, 1, x_450); +x_453 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_454 = lean_array_push(x_453, x_452); +x_455 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; +x_456 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_456, 0, x_455); +lean_ctor_set(x_456, 1, x_454); +x_457 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_457, 0, x_456); +lean_ctor_set(x_57, 0, x_457); return x_57; } else { -lean_object* x_450; +lean_object* x_458; lean_dec(x_3); lean_dec(x_2); -x_450 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_450, 0, x_427); -lean_ctor_set(x_57, 0, x_450); +x_458 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_458, 0, x_435); +lean_ctor_set(x_57, 0, x_458); return x_57; } } @@ -2836,537 +2853,553 @@ return x_57; } else { -lean_object* x_451; lean_object* x_452; lean_object* x_453; uint8_t x_454; -x_451 = lean_ctor_get(x_57, 1); -lean_inc(x_451); +lean_object* x_459; lean_object* x_460; lean_object* x_461; uint8_t x_462; +x_459 = lean_ctor_get(x_57, 1); +lean_inc(x_459); lean_dec(x_57); lean_inc(x_56); -x_452 = l_Lean_Syntax_getKind(x_56); -x_453 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__4; -x_454 = lean_name_eq(x_452, x_453); -if (x_454 == 0) -{ -lean_object* x_455; uint8_t x_456; -x_455 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__6; -x_456 = lean_name_eq(x_452, x_455); -if (x_456 == 0) -{ -lean_object* x_457; lean_object* x_458; uint8_t x_459; -x_457 = lean_unsigned_to_nat(1u); -x_458 = lean_nat_sub(x_35, x_457); -lean_dec(x_35); -x_459 = lean_nat_dec_lt(x_3, x_458); -lean_dec(x_458); -if (x_459 == 0) -{ -lean_object* x_460; lean_object* x_461; -lean_dec(x_452); -lean_dec(x_56); -x_460 = lean_unsigned_to_nat(2u); -x_461 = lean_nat_add(x_3, x_460); -lean_dec(x_3); -x_3 = x_461; -x_5 = x_451; -goto _start; -} -else +x_460 = l_Lean_Syntax_getKind(x_56); +x_461 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__4; +x_462 = lean_name_eq(x_460, x_461); +if (x_462 == 0) { lean_object* x_463; uint8_t x_464; -x_463 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; -x_464 = lean_name_eq(x_452, x_463); -lean_dec(x_452); +x_463 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__6; +x_464 = lean_name_eq(x_460, x_463); if (x_464 == 0) { -lean_object* x_465; lean_object* x_466; -lean_dec(x_56); -x_465 = lean_unsigned_to_nat(2u); -x_466 = lean_nat_add(x_3, x_465); -lean_dec(x_3); -x_3 = x_466; -x_5 = x_451; -goto _start; -} -else -{ -lean_object* x_468; 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_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; 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_object* x_486; lean_object* x_487; lean_object* 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_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; uint8_t x_504; -x_468 = lean_unsigned_to_nat(0u); -x_469 = l_Lean_Syntax_getArg(x_56, x_468); -lean_dec(x_56); -x_470 = lean_ctor_get(x_4, 1); -lean_inc(x_470); -x_471 = lean_ctor_get(x_4, 0); -lean_inc(x_471); -x_472 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; -x_473 = l_Lean_addMacroScope(x_471, x_472, x_470); -x_474 = lean_box(0); -x_475 = l_Lean_SourceInfo_inhabited___closed__1; -x_476 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; -x_477 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_477, 0, x_475); -lean_ctor_set(x_477, 1, x_476); -lean_ctor_set(x_477, 2, x_473); -lean_ctor_set(x_477, 3, x_474); -x_478 = l_Array_empty___closed__1; -x_479 = lean_array_push(x_478, x_477); -x_480 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_481 = lean_array_push(x_479, x_480); -x_482 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; -x_483 = lean_array_push(x_481, x_482); -x_484 = lean_array_push(x_483, x_469); -x_485 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; -x_486 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_486, 0, x_485); -lean_ctor_set(x_486, 1, x_484); -x_487 = lean_array_push(x_478, x_486); -x_488 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; -x_489 = lean_array_push(x_487, x_488); -x_490 = lean_box(0); -x_491 = lean_array_push(x_489, x_490); -x_492 = l_Lean_nullKind___closed__2; -x_493 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_493, 0, x_492); -lean_ctor_set(x_493, 1, x_491); -x_494 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; -x_495 = lean_array_push(x_494, x_493); -x_496 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; -x_497 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_497, 0, x_496); -lean_ctor_set(x_497, 1, x_495); -x_498 = l___private_Lean_Elab_DoNotation_3__getDoElems(x_497); -lean_dec(x_497); -x_499 = l_Lean_Syntax_inhabited; -x_500 = lean_array_get(x_499, x_498, x_468); -lean_dec(x_498); -x_501 = lean_array_set(x_2, x_3, x_500); -x_502 = lean_unsigned_to_nat(2u); -x_503 = lean_nat_add(x_3, x_502); -lean_dec(x_3); -x_504 = 1; -x_1 = x_504; -x_2 = x_501; -x_3 = x_503; -x_5 = x_451; -goto _start; -} -} -} -else -{ -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; uint8_t x_516; -lean_dec(x_452); -x_506 = lean_unsigned_to_nat(0u); -x_507 = l_Lean_Syntax_getArg(x_56, x_506); -x_508 = lean_unsigned_to_nat(2u); -x_509 = l_Lean_Syntax_getArg(x_56, x_508); -x_510 = lean_unsigned_to_nat(3u); -x_511 = l_Lean_Syntax_getArg(x_56, x_510); -lean_dec(x_56); -x_512 = lean_nat_add(x_3, x_508); -x_513 = l_Array_extract___rarg(x_2, x_512, x_35); +lean_object* x_465; lean_object* x_466; uint8_t x_467; +x_465 = lean_unsigned_to_nat(1u); +x_466 = lean_nat_sub(x_35, x_465); lean_dec(x_35); -x_514 = lean_array_get_size(x_513); -x_515 = lean_unsigned_to_nat(1u); -x_516 = lean_nat_dec_eq(x_514, x_515); -lean_dec(x_514); -if (x_516 == 0) +x_467 = lean_nat_dec_lt(x_3, x_466); +lean_dec(x_466); +if (x_467 == 0) { -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_object* x_531; lean_object* x_532; uint8_t x_533; -x_517 = lean_nat_add(x_451, x_515); -x_518 = lean_ctor_get(x_4, 0); -lean_inc(x_518); +lean_object* x_468; lean_object* x_469; +lean_dec(x_460); +lean_dec(x_56); +x_468 = lean_unsigned_to_nat(2u); +x_469 = lean_nat_add(x_3, x_468); +lean_dec(x_3); +x_3 = x_469; +x_5 = x_459; +goto _start; +} +else +{ +lean_object* x_471; uint8_t x_472; +x_471 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_472 = lean_name_eq(x_460, x_471); +lean_dec(x_460); +if (x_472 == 0) +{ +lean_object* x_473; lean_object* x_474; +lean_dec(x_56); +x_473 = lean_unsigned_to_nat(2u); +x_474 = lean_nat_add(x_3, x_473); +lean_dec(x_3); +x_3 = x_474; +x_5 = x_459; +goto _start; +} +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; 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_object* 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_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; lean_object* x_510; lean_object* x_511; uint8_t x_512; +x_476 = lean_unsigned_to_nat(0u); +x_477 = l_Lean_Syntax_getArg(x_56, x_476); +lean_dec(x_56); +x_478 = lean_ctor_get(x_4, 1); +lean_inc(x_478); +x_479 = lean_ctor_get(x_4, 0); +lean_inc(x_479); +x_480 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_481 = l_Lean_addMacroScope(x_479, x_480, x_478); +x_482 = lean_box(0); +x_483 = l_Lean_SourceInfo_inhabited___closed__1; +x_484 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; +x_485 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_485, 0, x_483); +lean_ctor_set(x_485, 1, x_484); +lean_ctor_set(x_485, 2, x_481); +lean_ctor_set(x_485, 3, x_482); +x_486 = l_Array_empty___closed__1; +x_487 = lean_array_push(x_486, x_485); +x_488 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_489 = lean_array_push(x_487, x_488); +x_490 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; +x_491 = lean_array_push(x_489, x_490); +x_492 = lean_array_push(x_491, x_477); +x_493 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_494 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_494, 0, x_493); +lean_ctor_set(x_494, 1, x_492); +x_495 = lean_array_push(x_486, x_494); +x_496 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; +x_497 = lean_array_push(x_495, x_496); +x_498 = lean_box(0); +x_499 = lean_array_push(x_497, x_498); +x_500 = l_Lean_nullKind___closed__2; +x_501 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_501, 0, x_500); +lean_ctor_set(x_501, 1, x_499); +x_502 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_503 = lean_array_push(x_502, x_501); +x_504 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; +x_505 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_505, 0, x_504); +lean_ctor_set(x_505, 1, x_503); +x_506 = l___private_Lean_Elab_DoNotation_3__getDoElems(x_505); +lean_dec(x_505); +x_507 = l_Lean_Syntax_inhabited; +x_508 = lean_array_get(x_507, x_506, x_476); +lean_dec(x_506); +x_509 = lean_array_set(x_2, x_3, x_508); +x_510 = lean_unsigned_to_nat(2u); +x_511 = lean_nat_add(x_3, x_510); +lean_dec(x_3); +x_512 = 1; +x_1 = x_512; +x_2 = x_509; +x_3 = x_511; +x_5 = x_459; +goto _start; +} +} +} +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; uint8_t x_524; +lean_dec(x_460); +x_514 = lean_unsigned_to_nat(0u); +x_515 = l_Lean_Syntax_getArg(x_56, x_514); +x_516 = lean_unsigned_to_nat(2u); +x_517 = l_Lean_Syntax_getArg(x_56, x_516); +x_518 = lean_unsigned_to_nat(3u); +x_519 = l_Lean_Syntax_getArg(x_56, x_518); +lean_dec(x_56); +x_520 = lean_nat_add(x_3, x_516); +x_521 = l_Array_extract___rarg(x_2, x_520, x_35); +lean_dec(x_35); +x_522 = lean_array_get_size(x_521); +x_523 = lean_unsigned_to_nat(1u); +x_524 = lean_nat_dec_eq(x_522, x_523); +lean_dec(x_522); +if (x_524 == 0) +{ +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; 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_525 = lean_nat_add(x_459, x_523); +x_526 = lean_ctor_get(x_4, 0); +lean_inc(x_526); lean_dec(x_4); -x_519 = l_Array_empty___closed__1; -x_520 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_513, x_513, x_506, x_519); -lean_dec(x_513); -x_521 = l_Lean_nullKind___closed__2; -x_522 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_522, 0, x_521); -lean_ctor_set(x_522, 1, x_520); -x_523 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__4; -x_524 = lean_array_push(x_523, x_522); -x_525 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__9; -x_526 = lean_array_push(x_524, x_525); -x_527 = l___private_Lean_Elab_DoNotation_3__getDoElems___closed__2; -x_528 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_528, 0, x_527); -lean_ctor_set(x_528, 1, x_526); -x_529 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; -x_530 = lean_array_push(x_529, x_528); -x_531 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; -x_532 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_532, 0, x_531); -lean_ctor_set(x_532, 1, x_530); -x_533 = l_Lean_Syntax_isNone(x_511); -if (x_533 == 0) +x_527 = l_Array_empty___closed__1; +x_528 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_521, x_521, x_514, x_527); +lean_dec(x_521); +x_529 = l_Lean_nullKind___closed__2; +x_530 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_530, 0, x_529); +lean_ctor_set(x_530, 1, x_528); +x_531 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__4; +x_532 = lean_array_push(x_531, x_530); +x_533 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__9; +x_534 = lean_array_push(x_532, x_533); +x_535 = l___private_Lean_Elab_DoNotation_3__getDoElems___closed__2; +x_536 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_536, 0, x_535); +lean_ctor_set(x_536, 1, x_534); +x_537 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_538 = lean_array_push(x_537, x_536); +x_539 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; +x_540 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_540, 0, x_539); +lean_ctor_set(x_540, 1, x_538); +x_541 = l_Lean_Syntax_isNone(x_519); +if (x_541 == 0) { -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; 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_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; lean_object* x_556; 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_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; 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_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; -x_534 = l_Lean_Syntax_getArg(x_511, x_515); -lean_dec(x_511); -x_535 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; -x_536 = l_Lean_addMacroScope(x_518, x_535, x_451); -x_537 = lean_box(0); -x_538 = l_Lean_SourceInfo_inhabited___closed__1; -x_539 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; -x_540 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_540, 0, x_538); -lean_ctor_set(x_540, 1, x_539); -lean_ctor_set(x_540, 2, x_536); -lean_ctor_set(x_540, 3, x_537); -lean_inc(x_540); -x_541 = lean_array_push(x_519, x_540); -x_542 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_543 = lean_array_push(x_541, x_542); -x_544 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; -x_545 = lean_array_push(x_543, x_544); -x_546 = lean_array_push(x_545, x_509); -x_547 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; -x_548 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_548, 0, x_547); -lean_ctor_set(x_548, 1, x_546); -x_549 = lean_array_push(x_519, x_548); -x_550 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; +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_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; lean_object* x_556; 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_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; 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_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; 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_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_542 = l_Lean_Syntax_getArg(x_519, x_523); +lean_dec(x_519); +x_543 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_544 = l_Lean_addMacroScope(x_526, x_543, x_459); +x_545 = lean_box(0); +x_546 = l_Lean_SourceInfo_inhabited___closed__1; +x_547 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; +x_548 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_548, 0, x_546); +lean_ctor_set(x_548, 1, x_547); +lean_ctor_set(x_548, 2, x_544); +lean_ctor_set(x_548, 3, x_545); +lean_inc(x_548); +x_549 = lean_array_push(x_527, x_548); +x_550 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_551 = lean_array_push(x_549, x_550); -x_552 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_553 = lean_array_push(x_552, x_540); -x_554 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_555 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_555, 0, x_554); -lean_ctor_set(x_555, 1, x_553); -x_556 = lean_array_push(x_519, x_555); -x_557 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_557, 0, x_521); -lean_ctor_set(x_557, 1, x_556); -x_558 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_559 = lean_array_push(x_558, x_557); -x_560 = lean_array_push(x_559, x_542); -x_561 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_562 = lean_array_push(x_560, x_561); -x_563 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_564 = lean_array_push(x_562, x_563); -x_565 = lean_array_push(x_519, x_507); -x_566 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_566, 0, x_521); -lean_ctor_set(x_566, 1, x_565); -x_567 = lean_array_push(x_519, x_566); -x_568 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_569 = lean_array_push(x_567, x_568); -x_570 = lean_array_push(x_569, x_532); -x_571 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +x_552 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; +x_553 = lean_array_push(x_551, x_552); +x_554 = lean_array_push(x_553, x_517); +x_555 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_556 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_556, 0, x_555); +lean_ctor_set(x_556, 1, x_554); +x_557 = lean_array_push(x_527, x_556); +x_558 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; +x_559 = lean_array_push(x_557, x_558); +x_560 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_561 = lean_array_push(x_560, x_548); +x_562 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_563 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_563, 0, x_562); +lean_ctor_set(x_563, 1, x_561); +x_564 = lean_array_push(x_527, x_563); +x_565 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_565, 0, x_529); +lean_ctor_set(x_565, 1, x_564); +x_566 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_567 = lean_array_push(x_566, x_565); +x_568 = lean_array_push(x_567, x_550); +x_569 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_570 = lean_array_push(x_568, x_569); +x_571 = lean_array_push(x_527, x_515); x_572 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_572, 0, x_571); -lean_ctor_set(x_572, 1, x_570); -x_573 = lean_array_push(x_519, x_572); -x_574 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +lean_ctor_set(x_572, 0, x_529); +lean_ctor_set(x_572, 1, x_571); +x_573 = lean_array_push(x_527, x_572); +x_574 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; x_575 = lean_array_push(x_573, x_574); -x_576 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__8; -x_577 = lean_array_push(x_576, x_534); +x_576 = lean_array_push(x_575, x_540); +x_577 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_578 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_578, 0, x_571); -lean_ctor_set(x_578, 1, x_577); -x_579 = lean_array_push(x_575, x_578); -x_580 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_580, 0, x_521); -lean_ctor_set(x_580, 1, x_579); -x_581 = lean_array_push(x_564, x_580); -x_582 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_583 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_583, 0, x_582); -lean_ctor_set(x_583, 1, x_581); -x_584 = lean_array_push(x_519, x_583); -x_585 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +lean_ctor_set(x_578, 0, x_577); +lean_ctor_set(x_578, 1, x_576); +x_579 = lean_array_push(x_527, x_578); +x_580 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_581 = lean_array_push(x_579, x_580); +x_582 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__8; +x_583 = lean_array_push(x_582, x_542); +x_584 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_584, 0, x_577); +lean_ctor_set(x_584, 1, x_583); +x_585 = lean_array_push(x_581, x_584); x_586 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_586, 0, x_585); -lean_ctor_set(x_586, 1, x_584); -x_587 = lean_array_push(x_551, x_586); -x_588 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_588, 0, x_521); -lean_ctor_set(x_588, 1, x_587); -x_589 = lean_array_push(x_529, x_588); +lean_ctor_set(x_586, 0, x_529); +lean_ctor_set(x_586, 1, x_585); +x_587 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_588 = lean_array_push(x_587, x_586); +x_589 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_590 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_590, 0, x_531); -lean_ctor_set(x_590, 1, x_589); -x_6 = x_590; -x_7 = x_517; +lean_ctor_set(x_590, 0, x_589); +lean_ctor_set(x_590, 1, x_588); +x_591 = lean_array_push(x_570, x_590); +x_592 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_593 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_593, 0, x_592); +lean_ctor_set(x_593, 1, x_591); +x_594 = lean_array_push(x_527, x_593); +x_595 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_596 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_596, 0, x_595); +lean_ctor_set(x_596, 1, x_594); +x_597 = lean_array_push(x_559, x_596); +x_598 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_598, 0, x_529); +lean_ctor_set(x_598, 1, x_597); +x_599 = lean_array_push(x_537, x_598); +x_600 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_600, 0, x_539); +lean_ctor_set(x_600, 1, x_599); +x_6 = x_600; +x_7 = x_525; goto block_34; } 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; 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_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_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; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; -lean_dec(x_511); -x_591 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; -x_592 = l_Lean_addMacroScope(x_518, x_591, x_451); -x_593 = lean_box(0); -x_594 = l_Lean_SourceInfo_inhabited___closed__1; -x_595 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; -x_596 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_596, 0, x_594); -lean_ctor_set(x_596, 1, x_595); -lean_ctor_set(x_596, 2, x_592); -lean_ctor_set(x_596, 3, x_593); -lean_inc(x_596); -x_597 = lean_array_push(x_519, x_596); -x_598 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_599 = lean_array_push(x_597, x_598); -x_600 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; -x_601 = lean_array_push(x_599, x_600); -x_602 = lean_array_push(x_601, x_509); -x_603 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; -x_604 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_604, 0, x_603); -lean_ctor_set(x_604, 1, x_602); -x_605 = lean_array_push(x_519, x_604); -x_606 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; -x_607 = lean_array_push(x_605, x_606); -x_608 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_609 = lean_array_push(x_608, x_596); -x_610 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_611 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_611, 0, x_610); -lean_ctor_set(x_611, 1, x_609); -x_612 = lean_array_push(x_519, x_611); -x_613 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_613, 0, x_521); -lean_ctor_set(x_613, 1, x_612); -x_614 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_615 = lean_array_push(x_614, x_613); -x_616 = lean_array_push(x_615, x_598); -x_617 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_618 = lean_array_push(x_616, x_617); -x_619 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_620 = lean_array_push(x_618, x_619); -x_621 = lean_array_push(x_519, x_507); -x_622 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_622, 0, x_521); -lean_ctor_set(x_622, 1, x_621); -x_623 = lean_array_push(x_519, x_622); -x_624 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_625 = lean_array_push(x_623, x_624); -x_626 = lean_array_push(x_625, x_532); -x_627 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_628 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_628, 0, x_627); -lean_ctor_set(x_628, 1, x_626); -x_629 = lean_array_push(x_519, x_628); +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_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_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; lean_object* x_635; 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_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; lean_object* x_651; lean_object* x_652; +lean_dec(x_519); +x_601 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_602 = l_Lean_addMacroScope(x_526, x_601, x_459); +x_603 = lean_box(0); +x_604 = l_Lean_SourceInfo_inhabited___closed__1; +x_605 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; +x_606 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_606, 0, x_604); +lean_ctor_set(x_606, 1, x_605); +lean_ctor_set(x_606, 2, x_602); +lean_ctor_set(x_606, 3, x_603); +lean_inc(x_606); +x_607 = lean_array_push(x_527, x_606); +x_608 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_609 = lean_array_push(x_607, x_608); +x_610 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; +x_611 = lean_array_push(x_609, x_610); +x_612 = lean_array_push(x_611, x_517); +x_613 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_614 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_614, 0, x_613); +lean_ctor_set(x_614, 1, x_612); +x_615 = lean_array_push(x_527, x_614); +x_616 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; +x_617 = lean_array_push(x_615, x_616); +x_618 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_619 = lean_array_push(x_618, x_606); +x_620 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_621 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_621, 0, x_620); +lean_ctor_set(x_621, 1, x_619); +x_622 = lean_array_push(x_527, x_621); +x_623 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_623, 0, x_529); +lean_ctor_set(x_623, 1, x_622); +x_624 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_625 = lean_array_push(x_624, x_623); +x_626 = lean_array_push(x_625, x_608); +x_627 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_628 = lean_array_push(x_626, x_627); +x_629 = lean_array_push(x_527, x_515); x_630 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_630, 0, x_521); +lean_ctor_set(x_630, 0, x_529); lean_ctor_set(x_630, 1, x_629); -x_631 = lean_array_push(x_620, x_630); -x_632 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_633 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_633, 0, x_632); -lean_ctor_set(x_633, 1, x_631); -x_634 = lean_array_push(x_519, x_633); -x_635 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_631 = lean_array_push(x_527, x_630); +x_632 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_633 = lean_array_push(x_631, x_632); +x_634 = lean_array_push(x_633, x_540); +x_635 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_636 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_636, 0, x_635); lean_ctor_set(x_636, 1, x_634); -x_637 = lean_array_push(x_607, x_636); +x_637 = lean_array_push(x_527, x_636); x_638 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_638, 0, x_521); +lean_ctor_set(x_638, 0, x_529); lean_ctor_set(x_638, 1, x_637); -x_639 = lean_array_push(x_529, x_638); -x_640 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_640, 0, x_531); -lean_ctor_set(x_640, 1, x_639); -x_6 = x_640; -x_7 = x_517; +x_639 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_640 = lean_array_push(x_639, x_638); +x_641 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_642 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_642, 0, x_641); +lean_ctor_set(x_642, 1, x_640); +x_643 = lean_array_push(x_628, x_642); +x_644 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_645 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_645, 0, x_644); +lean_ctor_set(x_645, 1, x_643); +x_646 = lean_array_push(x_527, x_645); +x_647 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_648 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_648, 0, x_647); +lean_ctor_set(x_648, 1, x_646); +x_649 = lean_array_push(x_617, x_648); +x_650 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_650, 0, x_529); +lean_ctor_set(x_650, 1, x_649); +x_651 = lean_array_push(x_537, x_650); +x_652 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_652, 0, x_539); +lean_ctor_set(x_652, 1, x_651); +x_6 = x_652; +x_7 = x_525; goto block_34; } } else { -lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; uint8_t x_646; -x_641 = l_Lean_Syntax_inhabited; -x_642 = lean_array_get(x_641, x_513, x_506); -lean_dec(x_513); -x_643 = l_Lean_Syntax_getArg(x_642, x_506); -lean_dec(x_642); -x_644 = lean_nat_add(x_451, x_515); -x_645 = lean_ctor_get(x_4, 0); -lean_inc(x_645); +lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; uint8_t x_658; +x_653 = l_Lean_Syntax_inhabited; +x_654 = lean_array_get(x_653, x_521, x_514); +lean_dec(x_521); +x_655 = l_Lean_Syntax_getArg(x_654, x_514); +lean_dec(x_654); +x_656 = lean_nat_add(x_459, x_523); +x_657 = lean_ctor_get(x_4, 0); +lean_inc(x_657); lean_dec(x_4); -x_646 = l_Lean_Syntax_isNone(x_511); -if (x_646 == 0) +x_658 = l_Lean_Syntax_isNone(x_519); +if (x_658 == 0) { -lean_object* x_647; lean_object* x_648; lean_object* x_649; 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_object* x_656; 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_object* x_664; 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_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_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; 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_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; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; -x_647 = l_Lean_Syntax_getArg(x_511, x_515); -lean_dec(x_511); -x_648 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; -x_649 = l_Lean_addMacroScope(x_645, x_648, x_451); -x_650 = lean_box(0); -x_651 = l_Lean_SourceInfo_inhabited___closed__1; -x_652 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; -x_653 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_653, 0, x_651); -lean_ctor_set(x_653, 1, x_652); -lean_ctor_set(x_653, 2, x_649); -lean_ctor_set(x_653, 3, x_650); -x_654 = l_Array_empty___closed__1; -lean_inc(x_653); -x_655 = lean_array_push(x_654, x_653); -x_656 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_657 = lean_array_push(x_655, x_656); -x_658 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; -x_659 = lean_array_push(x_657, x_658); -x_660 = lean_array_push(x_659, x_509); -x_661 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; -x_662 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_662, 0, x_661); -lean_ctor_set(x_662, 1, x_660); -x_663 = lean_array_push(x_654, x_662); -x_664 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; -x_665 = lean_array_push(x_663, x_664); -x_666 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_667 = lean_array_push(x_666, x_653); -x_668 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_669 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_669, 0, x_668); -lean_ctor_set(x_669, 1, x_667); -x_670 = lean_array_push(x_654, x_669); -x_671 = l_Lean_nullKind___closed__2; -x_672 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_672, 0, x_671); -lean_ctor_set(x_672, 1, x_670); -x_673 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_674 = lean_array_push(x_673, x_672); -x_675 = lean_array_push(x_674, x_656); -x_676 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; 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_object* x_669; lean_object* x_670; 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_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; 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_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; 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; 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; +x_659 = l_Lean_Syntax_getArg(x_519, x_523); +lean_dec(x_519); +x_660 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_661 = l_Lean_addMacroScope(x_657, x_660, x_459); +x_662 = lean_box(0); +x_663 = l_Lean_SourceInfo_inhabited___closed__1; +x_664 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; +x_665 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_665, 0, x_663); +lean_ctor_set(x_665, 1, x_664); +lean_ctor_set(x_665, 2, x_661); +lean_ctor_set(x_665, 3, x_662); +x_666 = l_Array_empty___closed__1; +lean_inc(x_665); +x_667 = lean_array_push(x_666, x_665); +x_668 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_669 = lean_array_push(x_667, x_668); +x_670 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; +x_671 = lean_array_push(x_669, x_670); +x_672 = lean_array_push(x_671, x_517); +x_673 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_674 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_674, 0, x_673); +lean_ctor_set(x_674, 1, x_672); +x_675 = lean_array_push(x_666, x_674); +x_676 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; x_677 = lean_array_push(x_675, x_676); -x_678 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_679 = lean_array_push(x_677, x_678); -x_680 = lean_array_push(x_654, x_507); +x_678 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_679 = lean_array_push(x_678, x_665); +x_680 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_681 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_681, 0, x_671); -lean_ctor_set(x_681, 1, x_680); -x_682 = lean_array_push(x_654, x_681); -x_683 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_684 = lean_array_push(x_682, x_683); -x_685 = lean_array_push(x_684, x_643); -x_686 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_687 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_687, 0, x_686); -lean_ctor_set(x_687, 1, x_685); -x_688 = lean_array_push(x_654, x_687); -x_689 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; -x_690 = lean_array_push(x_688, x_689); -x_691 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__8; -x_692 = lean_array_push(x_691, x_647); -x_693 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_693, 0, x_686); -lean_ctor_set(x_693, 1, x_692); -x_694 = lean_array_push(x_690, x_693); -x_695 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_695, 0, x_671); -lean_ctor_set(x_695, 1, x_694); -x_696 = lean_array_push(x_679, x_695); -x_697 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_698 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_698, 0, x_697); -lean_ctor_set(x_698, 1, x_696); -x_699 = lean_array_push(x_654, x_698); -x_700 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; -x_701 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_701, 0, x_700); -lean_ctor_set(x_701, 1, x_699); -x_702 = lean_array_push(x_665, x_701); +lean_ctor_set(x_681, 0, x_680); +lean_ctor_set(x_681, 1, x_679); +x_682 = lean_array_push(x_666, x_681); +x_683 = l_Lean_nullKind___closed__2; +x_684 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_684, 0, x_683); +lean_ctor_set(x_684, 1, x_682); +x_685 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_686 = lean_array_push(x_685, x_684); +x_687 = lean_array_push(x_686, x_668); +x_688 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_689 = lean_array_push(x_687, x_688); +x_690 = lean_array_push(x_666, x_515); +x_691 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_691, 0, x_683); +lean_ctor_set(x_691, 1, x_690); +x_692 = lean_array_push(x_666, x_691); +x_693 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_694 = lean_array_push(x_692, x_693); +x_695 = lean_array_push(x_694, x_655); +x_696 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_697 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_697, 0, x_696); +lean_ctor_set(x_697, 1, x_695); +x_698 = lean_array_push(x_666, x_697); +x_699 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_700 = lean_array_push(x_698, x_699); +x_701 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__8; +x_702 = lean_array_push(x_701, x_659); x_703 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_703, 0, x_671); +lean_ctor_set(x_703, 0, x_696); lean_ctor_set(x_703, 1, x_702); -x_704 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; -x_705 = lean_array_push(x_704, x_703); -x_706 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; -x_707 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_707, 0, x_706); -lean_ctor_set(x_707, 1, x_705); -x_6 = x_707; -x_7 = x_644; +x_704 = lean_array_push(x_700, x_703); +x_705 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_705, 0, x_683); +lean_ctor_set(x_705, 1, x_704); +x_706 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_707 = lean_array_push(x_706, x_705); +x_708 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_709 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_709, 0, x_708); +lean_ctor_set(x_709, 1, x_707); +x_710 = lean_array_push(x_689, x_709); +x_711 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_712 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_712, 0, x_711); +lean_ctor_set(x_712, 1, x_710); +x_713 = lean_array_push(x_666, x_712); +x_714 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_715 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_715, 0, x_714); +lean_ctor_set(x_715, 1, x_713); +x_716 = lean_array_push(x_677, x_715); +x_717 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_717, 0, x_683); +lean_ctor_set(x_717, 1, x_716); +x_718 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_719 = lean_array_push(x_718, x_717); +x_720 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; +x_721 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_721, 0, x_720); +lean_ctor_set(x_721, 1, x_719); +x_6 = x_721; +x_7 = x_656; goto block_34; } else { -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_object* x_722; 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_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; 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_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; 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_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; -lean_dec(x_511); -x_708 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; -x_709 = l_Lean_addMacroScope(x_645, x_708, x_451); -x_710 = lean_box(0); -x_711 = l_Lean_SourceInfo_inhabited___closed__1; -x_712 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; -x_713 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_713, 0, x_711); -lean_ctor_set(x_713, 1, x_712); -lean_ctor_set(x_713, 2, x_709); -lean_ctor_set(x_713, 3, x_710); -x_714 = l_Array_empty___closed__1; -lean_inc(x_713); -x_715 = lean_array_push(x_714, x_713); -x_716 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_717 = lean_array_push(x_715, x_716); -x_718 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; -x_719 = lean_array_push(x_717, x_718); -x_720 = lean_array_push(x_719, x_509); -x_721 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; -x_722 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_722, 0, x_721); -lean_ctor_set(x_722, 1, x_720); -x_723 = lean_array_push(x_714, x_722); -x_724 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; -x_725 = lean_array_push(x_723, x_724); -x_726 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_727 = lean_array_push(x_726, x_713); -x_728 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -x_729 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_729, 0, x_728); -lean_ctor_set(x_729, 1, x_727); -x_730 = lean_array_push(x_714, x_729); -x_731 = l_Lean_nullKind___closed__2; -x_732 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_732, 0, x_731); -lean_ctor_set(x_732, 1, x_730); -x_733 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; -x_734 = lean_array_push(x_733, x_732); -x_735 = lean_array_push(x_734, x_716); -x_736 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_737 = lean_array_push(x_735, x_736); -x_738 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +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_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; 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_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; 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_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; 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_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; +lean_dec(x_519); +x_722 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_723 = l_Lean_addMacroScope(x_657, x_722, x_459); +x_724 = lean_box(0); +x_725 = l_Lean_SourceInfo_inhabited___closed__1; +x_726 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__2; +x_727 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_727, 0, x_725); +lean_ctor_set(x_727, 1, x_726); +lean_ctor_set(x_727, 2, x_723); +lean_ctor_set(x_727, 3, x_724); +x_728 = l_Array_empty___closed__1; +lean_inc(x_727); +x_729 = lean_array_push(x_728, x_727); +x_730 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_731 = lean_array_push(x_729, x_730); +x_732 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__6; +x_733 = lean_array_push(x_731, x_732); +x_734 = lean_array_push(x_733, x_517); +x_735 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_736 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_736, 0, x_735); +lean_ctor_set(x_736, 1, x_734); +x_737 = lean_array_push(x_728, x_736); +x_738 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; x_739 = lean_array_push(x_737, x_738); -x_740 = lean_array_push(x_714, x_507); -x_741 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_741, 0, x_731); -lean_ctor_set(x_741, 1, x_740); -x_742 = lean_array_push(x_714, x_741); -x_743 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_744 = lean_array_push(x_742, x_743); -x_745 = lean_array_push(x_744, x_643); -x_746 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_747 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_747, 0, x_746); -lean_ctor_set(x_747, 1, x_745); -x_748 = lean_array_push(x_714, x_747); -x_749 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_749, 0, x_731); -lean_ctor_set(x_749, 1, x_748); -x_750 = lean_array_push(x_739, x_749); -x_751 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; -x_752 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_752, 0, x_751); -lean_ctor_set(x_752, 1, x_750); -x_753 = lean_array_push(x_714, x_752); -x_754 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; -x_755 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_755, 0, x_754); -lean_ctor_set(x_755, 1, x_753); -x_756 = lean_array_push(x_725, x_755); -x_757 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_757, 0, x_731); -lean_ctor_set(x_757, 1, x_756); -x_758 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; -x_759 = lean_array_push(x_758, x_757); -x_760 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; +x_740 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_741 = lean_array_push(x_740, x_727); +x_742 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_743 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_743, 0, x_742); +lean_ctor_set(x_743, 1, x_741); +x_744 = lean_array_push(x_728, x_743); +x_745 = l_Lean_nullKind___closed__2; +x_746 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_746, 0, x_745); +lean_ctor_set(x_746, 1, x_744); +x_747 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_748 = lean_array_push(x_747, x_746); +x_749 = lean_array_push(x_748, x_730); +x_750 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_751 = lean_array_push(x_749, x_750); +x_752 = lean_array_push(x_728, x_515); +x_753 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_753, 0, x_745); +lean_ctor_set(x_753, 1, x_752); +x_754 = lean_array_push(x_728, x_753); +x_755 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_756 = lean_array_push(x_754, x_755); +x_757 = lean_array_push(x_756, x_655); +x_758 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_759 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_759, 0, x_758); +lean_ctor_set(x_759, 1, x_757); +x_760 = lean_array_push(x_728, x_759); x_761 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_761, 0, x_760); -lean_ctor_set(x_761, 1, x_759); -x_6 = x_761; -x_7 = x_644; +lean_ctor_set(x_761, 0, x_745); +lean_ctor_set(x_761, 1, x_760); +x_762 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_763 = lean_array_push(x_762, x_761); +x_764 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_765 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_765, 0, x_764); +lean_ctor_set(x_765, 1, x_763); +x_766 = lean_array_push(x_751, x_765); +x_767 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_768 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_768, 0, x_767); +lean_ctor_set(x_768, 1, x_766); +x_769 = lean_array_push(x_728, x_768); +x_770 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_771 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_771, 0, x_770); +lean_ctor_set(x_771, 1, x_769); +x_772 = lean_array_push(x_739, x_771); +x_773 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_773, 0, x_745); +lean_ctor_set(x_773, 1, x_772); +x_774 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_775 = lean_array_push(x_774, x_773); +x_776 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; +x_777 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_777, 0, x_776); +lean_ctor_set(x_777, 1, x_775); +x_6 = x_777; +x_7 = x_656; goto block_34; } } @@ -3374,172 +3407,172 @@ goto block_34; } else { -lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; uint8_t x_768; -lean_dec(x_452); +lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; uint8_t x_784; +lean_dec(x_460); lean_dec(x_4); -x_762 = lean_unsigned_to_nat(1u); -x_763 = l_Lean_Syntax_getArg(x_56, x_762); +x_778 = lean_unsigned_to_nat(1u); +x_779 = l_Lean_Syntax_getArg(x_56, x_778); lean_dec(x_56); -x_764 = lean_unsigned_to_nat(2u); -x_765 = lean_nat_add(x_3, x_764); -x_766 = l_Array_extract___rarg(x_2, x_765, x_35); +x_780 = lean_unsigned_to_nat(2u); +x_781 = lean_nat_add(x_3, x_780); +x_782 = l_Array_extract___rarg(x_2, x_781, x_35); lean_dec(x_35); -x_767 = lean_array_get_size(x_766); -x_768 = lean_nat_dec_eq(x_767, x_762); -lean_dec(x_767); -if (x_768 == 0) +x_783 = lean_array_get_size(x_782); +x_784 = lean_nat_dec_eq(x_783, x_778); +lean_dec(x_783); +if (x_784 == 0) { -lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; 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_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; uint8_t x_791; -x_769 = lean_unsigned_to_nat(0u); -x_770 = l_Array_empty___closed__1; -x_771 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_766, x_766, x_769, x_770); -lean_dec(x_766); -x_772 = l_Lean_nullKind___closed__2; -x_773 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_773, 0, x_772); -lean_ctor_set(x_773, 1, x_771); -x_774 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__4; -x_775 = lean_array_push(x_774, x_773); -x_776 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__9; -x_777 = lean_array_push(x_775, x_776); -x_778 = l___private_Lean_Elab_DoNotation_3__getDoElems___closed__2; -x_779 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_779, 0, x_778); -lean_ctor_set(x_779, 1, x_777); -x_780 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; -x_781 = lean_array_push(x_780, x_779); -x_782 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; -x_783 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_783, 0, x_782); -lean_ctor_set(x_783, 1, x_781); -x_784 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; -x_785 = lean_array_push(x_784, x_763); -x_786 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; -x_787 = lean_array_push(x_785, x_786); -x_788 = lean_array_push(x_787, x_783); -x_789 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; -x_790 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_790, 0, x_789); -lean_ctor_set(x_790, 1, x_788); -x_791 = lean_nat_dec_eq(x_3, x_769); -if (x_791 == 0) -{ -lean_object* x_792; lean_object* x_793; lean_object* x_794; 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; -x_792 = l_Array_extract___rarg(x_2, x_769, x_3); -lean_dec(x_3); -lean_dec(x_2); -x_793 = l_Lean_mkOptionalNode___closed__2; -x_794 = lean_array_push(x_793, x_790); -x_795 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; -x_796 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_796, 0, x_795); -lean_ctor_set(x_796, 1, x_794); -x_797 = lean_array_push(x_792, x_796); -x_798 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_797, x_797, x_769, x_770); -lean_dec(x_797); +lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; 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; uint8_t x_807; +x_785 = lean_unsigned_to_nat(0u); +x_786 = l_Array_empty___closed__1; +x_787 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_782, x_782, x_785, x_786); +lean_dec(x_782); +x_788 = l_Lean_nullKind___closed__2; +x_789 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_789, 0, x_788); +lean_ctor_set(x_789, 1, x_787); +x_790 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__4; +x_791 = lean_array_push(x_790, x_789); +x_792 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__9; +x_793 = lean_array_push(x_791, x_792); +x_794 = l___private_Lean_Elab_DoNotation_3__getDoElems___closed__2; +x_795 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_795, 0, x_794); +lean_ctor_set(x_795, 1, x_793); +x_796 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_797 = lean_array_push(x_796, x_795); +x_798 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; x_799 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_799, 0, x_772); -lean_ctor_set(x_799, 1, x_798); -x_800 = lean_array_push(x_774, x_799); -x_801 = lean_array_push(x_800, x_776); -x_802 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_802, 0, x_778); -lean_ctor_set(x_802, 1, x_801); -x_803 = lean_array_push(x_780, x_802); -x_804 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_804, 0, x_782); -lean_ctor_set(x_804, 1, x_803); -x_805 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_805, 0, x_804); -x_806 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_799, 0, x_798); +lean_ctor_set(x_799, 1, x_797); +x_800 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_801 = lean_array_push(x_800, x_779); +x_802 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; +x_803 = lean_array_push(x_801, x_802); +x_804 = lean_array_push(x_803, x_799); +x_805 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_806 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_806, 0, x_805); -lean_ctor_set(x_806, 1, x_451); -return x_806; +lean_ctor_set(x_806, 1, x_804); +x_807 = lean_nat_dec_eq(x_3, x_785); +if (x_807 == 0) +{ +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; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; +x_808 = l_Array_extract___rarg(x_2, x_785, x_3); +lean_dec(x_3); +lean_dec(x_2); +x_809 = l_Lean_mkOptionalNode___closed__2; +x_810 = lean_array_push(x_809, x_806); +x_811 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_812 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_812, 0, x_811); +lean_ctor_set(x_812, 1, x_810); +x_813 = lean_array_push(x_808, x_812); +x_814 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_813, x_813, x_785, x_786); +lean_dec(x_813); +x_815 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_815, 0, x_788); +lean_ctor_set(x_815, 1, x_814); +x_816 = lean_array_push(x_790, x_815); +x_817 = lean_array_push(x_816, x_792); +x_818 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_818, 0, x_794); +lean_ctor_set(x_818, 1, x_817); +x_819 = lean_array_push(x_796, x_818); +x_820 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_820, 0, x_798); +lean_ctor_set(x_820, 1, x_819); +x_821 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_821, 0, x_820); +x_822 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_822, 0, x_821); +lean_ctor_set(x_822, 1, x_459); +return x_822; } else { -lean_object* x_807; lean_object* x_808; +lean_object* x_823; lean_object* x_824; lean_dec(x_3); lean_dec(x_2); -x_807 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_807, 0, x_790); -x_808 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_808, 0, x_807); -lean_ctor_set(x_808, 1, x_451); -return x_808; +x_823 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_823, 0, x_806); +x_824 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_824, 0, x_823); +lean_ctor_set(x_824, 1, x_459); +return x_824; } } else { -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; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; uint8_t x_820; -x_809 = l_Lean_Syntax_inhabited; -x_810 = lean_unsigned_to_nat(0u); -x_811 = lean_array_get(x_809, x_766, x_810); -lean_dec(x_766); -x_812 = l_Lean_Syntax_getArg(x_811, x_810); -lean_dec(x_811); -x_813 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; -x_814 = lean_array_push(x_813, x_763); -x_815 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; -x_816 = lean_array_push(x_814, x_815); -x_817 = lean_array_push(x_816, x_812); -x_818 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; -x_819 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_819, 0, x_818); -lean_ctor_set(x_819, 1, x_817); -x_820 = lean_nat_dec_eq(x_3, x_810); -if (x_820 == 0) +lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; uint8_t x_836; +x_825 = l_Lean_Syntax_inhabited; +x_826 = lean_unsigned_to_nat(0u); +x_827 = lean_array_get(x_825, x_782, x_826); +lean_dec(x_782); +x_828 = l_Lean_Syntax_getArg(x_827, x_826); +lean_dec(x_827); +x_829 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_830 = lean_array_push(x_829, x_779); +x_831 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__16; +x_832 = lean_array_push(x_830, x_831); +x_833 = lean_array_push(x_832, x_828); +x_834 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_835 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_835, 0, x_834); +lean_ctor_set(x_835, 1, x_833); +x_836 = lean_nat_dec_eq(x_3, x_826); +if (x_836 == 0) { -lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; -x_821 = l_Array_extract___rarg(x_2, x_810, x_3); +lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; +x_837 = l_Array_extract___rarg(x_2, x_826, x_3); lean_dec(x_3); lean_dec(x_2); -x_822 = l_Lean_mkOptionalNode___closed__2; -x_823 = lean_array_push(x_822, x_819); -x_824 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; -x_825 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_825, 0, x_824); -lean_ctor_set(x_825, 1, x_823); -x_826 = lean_array_push(x_821, x_825); -x_827 = l_Array_empty___closed__1; -x_828 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_826, x_826, x_810, x_827); -lean_dec(x_826); -x_829 = l_Lean_nullKind___closed__2; -x_830 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_830, 0, x_829); -lean_ctor_set(x_830, 1, x_828); -x_831 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__4; -x_832 = lean_array_push(x_831, x_830); -x_833 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__9; -x_834 = lean_array_push(x_832, x_833); -x_835 = l___private_Lean_Elab_DoNotation_3__getDoElems___closed__2; -x_836 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_836, 0, x_835); -lean_ctor_set(x_836, 1, x_834); -x_837 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; -x_838 = lean_array_push(x_837, x_836); -x_839 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; -x_840 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_840, 0, x_839); -lean_ctor_set(x_840, 1, x_838); -x_841 = lean_alloc_ctor(1, 1, 0); +x_838 = l_Lean_mkOptionalNode___closed__2; +x_839 = lean_array_push(x_838, x_835); +x_840 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_841 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_841, 0, x_840); -x_842 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_842, 0, x_841); -lean_ctor_set(x_842, 1, x_451); -return x_842; +lean_ctor_set(x_841, 1, x_839); +x_842 = lean_array_push(x_837, x_841); +x_843 = l_Array_empty___closed__1; +x_844 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_842, x_842, x_826, x_843); +lean_dec(x_842); +x_845 = l_Lean_nullKind___closed__2; +x_846 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_846, 0, x_845); +lean_ctor_set(x_846, 1, x_844); +x_847 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__4; +x_848 = lean_array_push(x_847, x_846); +x_849 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__9; +x_850 = lean_array_push(x_848, x_849); +x_851 = l___private_Lean_Elab_DoNotation_3__getDoElems___closed__2; +x_852 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_852, 0, x_851); +lean_ctor_set(x_852, 1, x_850); +x_853 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_854 = lean_array_push(x_853, x_852); +x_855 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___closed__2; +x_856 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_856, 0, x_855); +lean_ctor_set(x_856, 1, x_854); +x_857 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_857, 0, x_856); +x_858 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_858, 0, x_857); +lean_ctor_set(x_858, 1, x_459); +return x_858; } else { -lean_object* x_843; lean_object* x_844; +lean_object* x_859; lean_object* x_860; lean_dec(x_3); lean_dec(x_2); -x_843 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_843, 0, x_819); -x_844 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_844, 0, x_843); -lean_ctor_set(x_844, 1, x_451); -return x_844; +x_859 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_859, 0, x_835); +x_860 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_860, 0, x_859); +lean_ctor_set(x_860, 1, x_459); +return x_860; } } } @@ -3547,57 +3580,57 @@ return x_844; } else { -lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; uint8_t x_854; +lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; uint8_t x_870; lean_dec(x_56); -x_845 = lean_ctor_get(x_57, 1); -lean_inc(x_845); +x_861 = lean_ctor_get(x_57, 1); +lean_inc(x_861); lean_dec(x_57); -x_846 = lean_ctor_get(x_58, 0); -lean_inc(x_846); +x_862 = lean_ctor_get(x_58, 0); +lean_inc(x_862); lean_dec(x_58); -x_847 = lean_unsigned_to_nat(1u); -x_848 = lean_nat_add(x_3, x_847); -x_849 = l_Array_extract___rarg(x_2, x_848, x_35); +x_863 = lean_unsigned_to_nat(1u); +x_864 = lean_nat_add(x_3, x_863); +x_865 = l_Array_extract___rarg(x_2, x_864, x_35); lean_dec(x_35); -x_850 = lean_unsigned_to_nat(0u); -x_851 = l_Array_extract___rarg(x_2, x_850, x_3); +x_866 = lean_unsigned_to_nat(0u); +x_867 = l_Array_extract___rarg(x_2, x_866, x_3); lean_dec(x_2); -x_852 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_846, x_846, x_850, x_851); -lean_dec(x_846); -x_853 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_849, x_849, x_850, x_852); -lean_dec(x_849); -x_854 = 1; -x_1 = x_854; -x_2 = x_853; -x_5 = x_845; +x_868 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_862, x_862, x_866, x_867); +lean_dec(x_862); +x_869 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_865, x_865, x_866, x_868); +lean_dec(x_865); +x_870 = 1; +x_1 = x_870; +x_2 = x_869; +x_5 = x_861; goto _start; } } else { -uint8_t x_856; +uint8_t x_872; lean_dec(x_56); lean_dec(x_35); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_856 = !lean_is_exclusive(x_57); -if (x_856 == 0) +x_872 = !lean_is_exclusive(x_57); +if (x_872 == 0) { return x_57; } else { -lean_object* x_857; lean_object* x_858; lean_object* x_859; -x_857 = lean_ctor_get(x_57, 0); -x_858 = lean_ctor_get(x_57, 1); -lean_inc(x_858); -lean_inc(x_857); +lean_object* x_873; lean_object* x_874; lean_object* x_875; +x_873 = lean_ctor_get(x_57, 0); +x_874 = lean_ctor_get(x_57, 1); +lean_inc(x_874); +lean_inc(x_873); lean_dec(x_57); -x_859 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_859, 0, x_857); -lean_ctor_set(x_859, 1, x_858); -return x_859; +x_875 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_875, 0, x_873); +lean_ctor_set(x_875, 1, x_874); +return x_875; } } } diff --git a/stage0/stdlib/Lean/Elab/LetRec.c b/stage0/stdlib/Lean/Elab/LetRec.c index e90bc41424..317c6143d6 100644 --- a/stage0/stdlib/Lean/Elab/LetRec.c +++ b/stage0/stdlib/Lean/Elab/LetRec.c @@ -1278,7 +1278,7 @@ lean_inc(x_64); x_65 = lean_ctor_get(x_63, 1); lean_inc(x_65); lean_dec(x_63); -x_66 = lean_unsigned_to_nat(4u); +x_66 = lean_unsigned_to_nat(3u); x_67 = l_Lean_Syntax_getArg(x_32, x_66); x_68 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_65); x_69 = lean_ctor_get(x_68, 0); diff --git a/stage0/stdlib/Lean/Elab/Match.c b/stage0/stdlib/Lean/Elab/Match.c index 7c4dec0b52..db6a941087 100644 --- a/stage0/stdlib/Lean/Elab/Match.c +++ b/stage0/stdlib/Lean/Elab/Match.c @@ -262,7 +262,6 @@ extern lean_object* l_Lean_EqnCompiler_matchPatternAttr; lean_object* l___private_Lean_Elab_Match_20__collect___main___closed__11; lean_object* l___private_Lean_Elab_Match_32__elabMatchAux___closed__6; lean_object* l___private_Lean_Meta_Basic_12__withNewLocalInstancesImpl___main___at_Lean_Elab_Term_mkMotiveType___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*); -extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; lean_object* l___private_Lean_Elab_Match_16__processIdAux___closed__1; lean_object* l___private_Lean_Elab_Match_26__markAsVisited___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTerm(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -274,6 +273,7 @@ lean_object* l___private_Lean_Elab_Match_33__waitExpectedType(lean_object*, lean lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_13__getNumExplicitCtorParams___closed__1; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; lean_object* l___private_Lean_Elab_Match_14__throwAmbiguous(lean_object*); lean_object* l_Lean_Elab_log___at_Lean_Elab_Term_CollectPatternVars_main___spec__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_reportElimResultErrors___closed__5; @@ -382,6 +382,7 @@ lean_object* l___private_Lean_Elab_Match_28__getFieldsBinderInfoAux(lean_object* lean_object* l_List_redLength___main___rarg(lean_object*); lean_object* l___private_Lean_Elab_Match_22__withPatternVarsAux___rarg(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_Elab_Match_20__collect___main___closed__16; +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; lean_object* l_Lean_Elab_Term_inaccessible_x3f(lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_Elab_Term_ToDepElimPattern_main___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; @@ -2431,7 +2432,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_array_fget(x_1, x_2); x_8 = l_Lean_Syntax_getKind(x_7); -x_9 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +x_9 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_10 = lean_name_eq(x_8, x_9); lean_dec(x_8); if (x_10 == 0) @@ -28174,7 +28175,7 @@ return x_19; } else { -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_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_dec(x_15); lean_inc(x_2); x_20 = l___private_Lean_Elab_Match_35__mkMatchType___main(x_6, x_8, x_2, x_3); @@ -28198,70 +28199,74 @@ x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_27); x_31 = l_Lean_Syntax_setArg(x_25, x_4, x_30); -x_32 = lean_unsigned_to_nat(5u); +x_32 = lean_unsigned_to_nat(4u); x_33 = l_Lean_Syntax_getArg(x_31, x_32); -x_34 = l_Lean_Syntax_getArgs(x_33); -lean_dec(x_33); -x_35 = l___private_Lean_Elab_Match_40__mkNewAlts(x_6, x_34, x_2, x_28); +x_34 = l_Lean_Syntax_getArg(x_33, x_4); +x_35 = l_Lean_Syntax_getArgs(x_34); lean_dec(x_34); -if (lean_obj_tag(x_35) == 0) -{ -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_38, 0, x_29); -lean_ctor_set(x_38, 1, x_37); -x_39 = l_Lean_Syntax_setArg(x_31, x_32, x_38); -x_40 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_40, 0, x_39); -lean_ctor_set(x_35, 0, x_40); -return x_35; -} -else -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_41 = lean_ctor_get(x_35, 0); -x_42 = lean_ctor_get(x_35, 1); -lean_inc(x_42); -lean_inc(x_41); +x_36 = l___private_Lean_Elab_Match_40__mkNewAlts(x_6, x_35, x_2, x_28); lean_dec(x_35); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_29); -lean_ctor_set(x_43, 1, x_41); -x_44 = l_Lean_Syntax_setArg(x_31, x_32, x_43); -x_45 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_45, 0, x_44); -x_46 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_46, 1, x_42); -return x_46; +if (lean_obj_tag(x_36) == 0) +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_36); +if (x_37 == 0) +{ +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_36, 0); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_29); +lean_ctor_set(x_39, 1, x_38); +x_40 = l_Lean_Syntax_setArg(x_33, x_4, x_39); +x_41 = l_Lean_Syntax_setArg(x_31, x_32, x_40); +x_42 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_36, 0, x_42); +return x_36; +} +else +{ +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; +x_43 = lean_ctor_get(x_36, 0); +x_44 = lean_ctor_get(x_36, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_36); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_29); +lean_ctor_set(x_45, 1, x_43); +x_46 = l_Lean_Syntax_setArg(x_33, x_4, x_45); +x_47 = l_Lean_Syntax_setArg(x_31, x_32, x_46); +x_48 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_48, 0, x_47); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_44); +return x_49; } } else { -uint8_t x_47; +uint8_t x_50; +lean_dec(x_33); lean_dec(x_31); -x_47 = !lean_is_exclusive(x_35); -if (x_47 == 0) +x_50 = !lean_is_exclusive(x_36); +if (x_50 == 0) { -return x_35; +return x_36; } else { -lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = lean_ctor_get(x_35, 0); -x_49 = lean_ctor_get(x_35, 1); -lean_inc(x_49); -lean_inc(x_48); -lean_dec(x_35); -x_50 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_50, 0, x_48); -lean_ctor_set(x_50, 1, x_49); -return x_50; +lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_51 = lean_ctor_get(x_36, 0); +x_52 = lean_ctor_get(x_36, 1); +lean_inc(x_52); +lean_inc(x_51); +lean_dec(x_36); +x_53 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +return x_53; } } } @@ -28283,28 +28288,28 @@ return x_6; lean_object* l_Lean_Elab_Term_elabMatch(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; lean_object* x_11; uint8_t x_37; lean_object* x_1433; uint8_t x_1434; -x_1433 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +lean_object* x_10; lean_object* x_11; uint8_t x_37; lean_object* x_1545; uint8_t x_1546; +x_1545 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; lean_inc(x_1); -x_1434 = l_Lean_Syntax_isOfKind(x_1, x_1433); -if (x_1434 == 0) +x_1546 = l_Lean_Syntax_isOfKind(x_1, x_1545); +if (x_1546 == 0) { -uint8_t x_1435; -x_1435 = 0; -x_37 = x_1435; -goto block_1432; +uint8_t x_1547; +x_1547 = 0; +x_37 = x_1547; +goto block_1544; } else { -lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; uint8_t x_1439; -x_1436 = l_Lean_Syntax_getArgs(x_1); -x_1437 = lean_array_get_size(x_1436); -lean_dec(x_1436); -x_1438 = lean_unsigned_to_nat(6u); -x_1439 = lean_nat_dec_eq(x_1437, x_1438); -lean_dec(x_1437); -x_37 = x_1439; -goto block_1432; +lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; uint8_t x_1551; +x_1548 = l_Lean_Syntax_getArgs(x_1); +x_1549 = lean_array_get_size(x_1548); +lean_dec(x_1548); +x_1550 = lean_unsigned_to_nat(5u); +x_1551 = lean_nat_dec_eq(x_1549, x_1550); +lean_dec(x_1549); +x_37 = x_1551; +goto block_1544; } block_36: { @@ -28386,7 +28391,7 @@ return x_35; } } } -block_1432: +block_1544: { if (x_37 == 0) { @@ -28568,31 +28573,31 @@ return x_86; } else { -lean_object* x_87; lean_object* x_88; uint8_t x_89; lean_object* x_1426; uint8_t x_1427; +lean_object* x_87; lean_object* x_88; uint8_t x_89; lean_object* x_1538; uint8_t x_1539; x_87 = lean_unsigned_to_nat(1u); x_88 = l_Lean_Syntax_getArg(x_1, x_87); -x_1426 = l_Lean_nullKind___closed__2; +x_1538 = l_Lean_nullKind___closed__2; lean_inc(x_88); -x_1427 = l_Lean_Syntax_isOfKind(x_88, x_1426); -if (x_1427 == 0) +x_1539 = l_Lean_Syntax_isOfKind(x_88, x_1538); +if (x_1539 == 0) { -uint8_t x_1428; -x_1428 = 0; -x_89 = x_1428; -goto block_1425; +uint8_t x_1540; +x_1540 = 0; +x_89 = x_1540; +goto block_1537; } else { -lean_object* x_1429; lean_object* x_1430; uint8_t x_1431; -x_1429 = l_Lean_Syntax_getArgs(x_88); -x_1430 = lean_array_get_size(x_1429); -lean_dec(x_1429); -x_1431 = lean_nat_dec_eq(x_1430, x_87); -lean_dec(x_1430); -x_89 = x_1431; -goto block_1425; +lean_object* x_1541; lean_object* x_1542; uint8_t x_1543; +x_1541 = l_Lean_Syntax_getArgs(x_88); +x_1542 = lean_array_get_size(x_1541); +lean_dec(x_1541); +x_1543 = lean_nat_dec_eq(x_1542, x_87); +lean_dec(x_1542); +x_89 = x_1543; +goto block_1537; } -block_1425: +block_1537: { if (x_89 == 0) { @@ -28775,33 +28780,33 @@ return x_138; } else { -lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_1418; uint8_t x_1419; +lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_1530; uint8_t x_1531; x_139 = lean_unsigned_to_nat(0u); x_140 = l_Lean_Syntax_getArg(x_88, x_139); lean_dec(x_88); -x_1418 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1530 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; lean_inc(x_140); -x_1419 = l_Lean_Syntax_isOfKind(x_140, x_1418); -if (x_1419 == 0) +x_1531 = l_Lean_Syntax_isOfKind(x_140, x_1530); +if (x_1531 == 0) { -uint8_t x_1420; -x_1420 = 0; -x_141 = x_1420; -goto block_1417; +uint8_t x_1532; +x_1532 = 0; +x_141 = x_1532; +goto block_1529; } else { -lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; uint8_t x_1424; -x_1421 = l_Lean_Syntax_getArgs(x_140); -x_1422 = lean_array_get_size(x_1421); -lean_dec(x_1421); -x_1423 = lean_unsigned_to_nat(2u); -x_1424 = lean_nat_dec_eq(x_1422, x_1423); -lean_dec(x_1422); -x_141 = x_1424; -goto block_1417; +lean_object* x_1533; lean_object* x_1534; lean_object* x_1535; uint8_t x_1536; +x_1533 = l_Lean_Syntax_getArgs(x_140); +x_1534 = lean_array_get_size(x_1533); +lean_dec(x_1533); +x_1535 = lean_unsigned_to_nat(2u); +x_1536 = lean_nat_dec_eq(x_1534, x_1535); +lean_dec(x_1534); +x_141 = x_1536; +goto block_1529; } -block_1417: +block_1529: { if (x_141 == 0) { @@ -28984,32 +28989,32 @@ return x_190; } else { -lean_object* x_191; uint8_t x_192; lean_object* x_1411; uint8_t x_1412; +lean_object* x_191; uint8_t x_192; lean_object* x_1523; uint8_t x_1524; x_191 = l_Lean_Syntax_getArg(x_140, x_139); -x_1411 = l_Lean_nullKind___closed__2; +x_1523 = l_Lean_nullKind___closed__2; lean_inc(x_191); -x_1412 = l_Lean_Syntax_isOfKind(x_191, x_1411); -if (x_1412 == 0) +x_1524 = l_Lean_Syntax_isOfKind(x_191, x_1523); +if (x_1524 == 0) { -uint8_t x_1413; +uint8_t x_1525; lean_dec(x_191); -x_1413 = 0; -x_192 = x_1413; -goto block_1410; +x_1525 = 0; +x_192 = x_1525; +goto block_1522; } else { -lean_object* x_1414; lean_object* x_1415; uint8_t x_1416; -x_1414 = l_Lean_Syntax_getArgs(x_191); +lean_object* x_1526; lean_object* x_1527; uint8_t x_1528; +x_1526 = l_Lean_Syntax_getArgs(x_191); lean_dec(x_191); -x_1415 = lean_array_get_size(x_1414); -lean_dec(x_1414); -x_1416 = lean_nat_dec_eq(x_1415, x_139); -lean_dec(x_1415); -x_192 = x_1416; -goto block_1410; +x_1527 = lean_array_get_size(x_1526); +lean_dec(x_1526); +x_1528 = lean_nat_dec_eq(x_1527, x_139); +lean_dec(x_1527); +x_192 = x_1528; +goto block_1522; } -block_1410: +block_1522: { if (x_192 == 0) { @@ -29192,33 +29197,33 @@ return x_241; } else { -lean_object* x_242; lean_object* x_243; lean_object* x_244; uint8_t x_245; lean_object* x_878; uint8_t x_879; uint8_t x_880; +lean_object* x_242; lean_object* x_243; lean_object* x_244; uint8_t x_245; lean_object* x_934; uint8_t x_935; uint8_t x_936; x_242 = l_Lean_Syntax_getArg(x_140, x_87); lean_dec(x_140); x_243 = lean_unsigned_to_nat(2u); x_244 = l_Lean_Syntax_getArg(x_1, x_243); -x_878 = l_Lean_nullKind___closed__2; +x_934 = l_Lean_nullKind___closed__2; lean_inc(x_244); -x_879 = l_Lean_Syntax_isOfKind(x_244, x_878); -if (x_879 == 0) +x_935 = l_Lean_Syntax_isOfKind(x_244, x_934); +if (x_935 == 0) { -uint8_t x_1406; -x_1406 = 0; -x_880 = x_1406; -goto block_1405; +uint8_t x_1518; +x_1518 = 0; +x_936 = x_1518; +goto block_1517; } else { -lean_object* x_1407; lean_object* x_1408; uint8_t x_1409; -x_1407 = l_Lean_Syntax_getArgs(x_244); -x_1408 = lean_array_get_size(x_1407); -lean_dec(x_1407); -x_1409 = lean_nat_dec_eq(x_1408, x_139); -lean_dec(x_1408); -x_880 = x_1409; -goto block_1405; +lean_object* x_1519; lean_object* x_1520; uint8_t x_1521; +x_1519 = l_Lean_Syntax_getArgs(x_244); +x_1520 = lean_array_get_size(x_1519); +lean_dec(x_1519); +x_1521 = lean_nat_dec_eq(x_1520, x_139); +lean_dec(x_1520); +x_936 = x_1521; +goto block_1517; } -block_877: +block_933: { if (x_245 == 0) { @@ -29402,31 +29407,31 @@ return x_294; } else { -lean_object* x_295; uint8_t x_296; lean_object* x_871; uint8_t x_872; +lean_object* x_295; uint8_t x_296; lean_object* x_927; uint8_t x_928; x_295 = l_Lean_Syntax_getArg(x_244, x_139); lean_dec(x_244); -x_871 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; +x_927 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; lean_inc(x_295); -x_872 = l_Lean_Syntax_isOfKind(x_295, x_871); -if (x_872 == 0) +x_928 = l_Lean_Syntax_isOfKind(x_295, x_927); +if (x_928 == 0) { -uint8_t x_873; -x_873 = 0; -x_296 = x_873; -goto block_870; +uint8_t x_929; +x_929 = 0; +x_296 = x_929; +goto block_926; } else { -lean_object* x_874; lean_object* x_875; uint8_t x_876; -x_874 = l_Lean_Syntax_getArgs(x_295); -x_875 = lean_array_get_size(x_874); -lean_dec(x_874); -x_876 = lean_nat_dec_eq(x_875, x_243); -lean_dec(x_875); -x_296 = x_876; -goto block_870; +lean_object* x_930; lean_object* x_931; uint8_t x_932; +x_930 = l_Lean_Syntax_getArgs(x_295); +x_931 = lean_array_get_size(x_930); +lean_dec(x_930); +x_932 = lean_nat_dec_eq(x_931, x_243); +lean_dec(x_931); +x_296 = x_932; +goto block_926; } -block_870: +block_926: { if (x_296 == 0) { @@ -29610,37 +29615,38 @@ return x_345; } else { -lean_object* x_346; lean_object* x_347; lean_object* x_348; uint8_t x_349; lean_object* x_630; uint8_t x_631; uint8_t x_632; +lean_object* x_346; lean_object* x_347; lean_object* x_348; uint8_t x_349; lean_object* x_920; uint8_t x_921; x_346 = l_Lean_Syntax_getArg(x_295, x_87); lean_dec(x_295); x_347 = lean_unsigned_to_nat(4u); x_348 = l_Lean_Syntax_getArg(x_1, x_347); -x_630 = l_Lean_nullKind___closed__2; +x_920 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; lean_inc(x_348); -x_631 = l_Lean_Syntax_isOfKind(x_348, x_630); -if (x_631 == 0) +x_921 = l_Lean_Syntax_isOfKind(x_348, x_920); +if (x_921 == 0) { -uint8_t x_866; -x_866 = 0; -x_632 = x_866; -goto block_865; +uint8_t x_922; +x_922 = 0; +x_349 = x_922; +goto block_919; } else { -lean_object* x_867; lean_object* x_868; uint8_t x_869; -x_867 = l_Lean_Syntax_getArgs(x_348); -x_868 = lean_array_get_size(x_867); -lean_dec(x_867); -x_869 = lean_nat_dec_eq(x_868, x_139); -lean_dec(x_868); -x_632 = x_869; -goto block_865; +lean_object* x_923; lean_object* x_924; uint8_t x_925; +x_923 = l_Lean_Syntax_getArgs(x_348); +x_924 = lean_array_get_size(x_923); +lean_dec(x_923); +x_925 = lean_nat_dec_eq(x_924, x_243); +lean_dec(x_924); +x_349 = x_925; +goto block_919; } -block_629: +block_919: { if (x_349 == 0) { 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_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; +lean_dec(x_348); lean_dec(x_346); lean_dec(x_242); x_350 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); @@ -29820,3607 +29826,4027 @@ return x_398; } else { -lean_object* x_399; lean_object* x_400; uint8_t x_401; lean_object* x_623; uint8_t x_624; -x_399 = lean_unsigned_to_nat(5u); -x_400 = l_Lean_Syntax_getArg(x_1, x_399); -x_623 = l_Lean_nullKind___closed__2; -lean_inc(x_400); -x_624 = l_Lean_Syntax_isOfKind(x_400, x_623); -if (x_624 == 0) +lean_object* x_399; uint8_t x_400; lean_object* x_680; uint8_t x_681; uint8_t x_682; +x_399 = l_Lean_Syntax_getArg(x_348, x_139); +x_680 = l_Lean_nullKind___closed__2; +lean_inc(x_399); +x_681 = l_Lean_Syntax_isOfKind(x_399, x_680); +if (x_681 == 0) { -uint8_t x_625; -x_625 = 0; -x_401 = x_625; -goto block_622; +uint8_t x_915; +x_915 = 0; +x_682 = x_915; +goto block_914; } else { -lean_object* x_626; lean_object* x_627; uint8_t x_628; -x_626 = l_Lean_Syntax_getArgs(x_400); -x_627 = lean_array_get_size(x_626); -lean_dec(x_626); -x_628 = lean_nat_dec_eq(x_627, x_87); -lean_dec(x_627); -x_401 = x_628; -goto block_622; +lean_object* x_916; lean_object* x_917; uint8_t x_918; +x_916 = l_Lean_Syntax_getArgs(x_399); +x_917 = lean_array_get_size(x_916); +lean_dec(x_916); +x_918 = lean_nat_dec_eq(x_917, x_139); +lean_dec(x_917); +x_682 = x_918; +goto block_914; } -block_622: +block_679: { -if (x_401 == 0) +if (x_400 == 0) { -lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; 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_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; -lean_dec(x_400); +lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; 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_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; +lean_dec(x_348); lean_dec(x_346); lean_dec(x_242); -x_402 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_403 = lean_ctor_get(x_402, 0); +x_401 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_402 = lean_ctor_get(x_401, 0); +lean_inc(x_402); +x_403 = lean_ctor_get(x_401, 1); lean_inc(x_403); -x_404 = lean_ctor_get(x_402, 1); -lean_inc(x_404); -lean_dec(x_402); -x_405 = lean_st_ref_get(x_8, x_404); -x_406 = lean_ctor_get(x_405, 0); +lean_dec(x_401); +x_404 = lean_st_ref_get(x_8, x_403); +x_405 = lean_ctor_get(x_404, 0); +lean_inc(x_405); +x_406 = lean_ctor_get(x_404, 1); lean_inc(x_406); -x_407 = lean_ctor_get(x_405, 1); +lean_dec(x_404); +x_407 = lean_ctor_get(x_405, 0); lean_inc(x_407); lean_dec(x_405); -x_408 = lean_ctor_get(x_406, 0); -lean_inc(x_408); -lean_dec(x_406); -x_409 = lean_st_ref_get(x_4, x_407); -x_410 = lean_ctor_get(x_409, 0); +x_408 = lean_st_ref_get(x_4, x_406); +x_409 = lean_ctor_get(x_408, 0); +lean_inc(x_409); +x_410 = lean_ctor_get(x_408, 1); lean_inc(x_410); -x_411 = lean_ctor_get(x_409, 1); +lean_dec(x_408); +x_411 = lean_ctor_get(x_409, 5); lean_inc(x_411); lean_dec(x_409); -x_412 = lean_ctor_get(x_410, 5); +x_412 = lean_ctor_get(x_7, 1); lean_inc(x_412); -lean_dec(x_410); -x_413 = lean_ctor_get(x_7, 1); +x_413 = lean_ctor_get(x_7, 2); lean_inc(x_413); -x_414 = lean_ctor_get(x_7, 2); -lean_inc(x_414); -x_415 = lean_environment_main_module(x_408); -x_416 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_416, 0, x_415); -lean_ctor_set(x_416, 1, x_403); -lean_ctor_set(x_416, 2, x_413); -lean_ctor_set(x_416, 3, x_414); +x_414 = lean_environment_main_module(x_407); +x_415 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_415, 0, x_414); +lean_ctor_set(x_415, 1, x_402); +lean_ctor_set(x_415, 2, x_412); +lean_ctor_set(x_415, 3, x_413); lean_inc(x_1); -x_417 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_416, x_412); -if (lean_obj_tag(x_417) == 0) +x_416 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_415, x_411); +if (lean_obj_tag(x_416) == 0) { -lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; uint8_t x_423; -x_418 = lean_ctor_get(x_417, 0); +lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; uint8_t x_422; +x_417 = lean_ctor_get(x_416, 0); +lean_inc(x_417); +x_418 = lean_ctor_get(x_416, 1); lean_inc(x_418); -x_419 = lean_ctor_get(x_417, 1); -lean_inc(x_419); -lean_dec(x_417); -x_420 = lean_st_ref_take(x_4, x_411); -x_421 = lean_ctor_get(x_420, 0); +lean_dec(x_416); +x_419 = lean_st_ref_take(x_4, x_410); +x_420 = lean_ctor_get(x_419, 0); +lean_inc(x_420); +x_421 = lean_ctor_get(x_419, 1); lean_inc(x_421); -x_422 = lean_ctor_get(x_420, 1); -lean_inc(x_422); -lean_dec(x_420); -x_423 = !lean_is_exclusive(x_421); -if (x_423 == 0) +lean_dec(x_419); +x_422 = !lean_is_exclusive(x_420); +if (x_422 == 0) { -lean_object* x_424; lean_object* x_425; lean_object* x_426; -x_424 = lean_ctor_get(x_421, 5); +lean_object* x_423; lean_object* x_424; lean_object* x_425; +x_423 = lean_ctor_get(x_420, 5); +lean_dec(x_423); +lean_ctor_set(x_420, 5, x_418); +x_424 = lean_st_ref_set(x_4, x_420, x_421); +x_425 = lean_ctor_get(x_424, 1); +lean_inc(x_425); lean_dec(x_424); -lean_ctor_set(x_421, 5, x_419); -x_425 = lean_st_ref_set(x_4, x_421, x_422); -x_426 = lean_ctor_get(x_425, 1); -lean_inc(x_426); -lean_dec(x_425); -x_10 = x_418; -x_11 = x_426; +x_10 = x_417; +x_11 = x_425; goto block_36; } else { -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; -x_427 = lean_ctor_get(x_421, 0); -x_428 = lean_ctor_get(x_421, 1); -x_429 = lean_ctor_get(x_421, 2); -x_430 = lean_ctor_get(x_421, 3); -x_431 = lean_ctor_get(x_421, 4); -x_432 = lean_ctor_get(x_421, 6); -lean_inc(x_432); +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; +x_426 = lean_ctor_get(x_420, 0); +x_427 = lean_ctor_get(x_420, 1); +x_428 = lean_ctor_get(x_420, 2); +x_429 = lean_ctor_get(x_420, 3); +x_430 = lean_ctor_get(x_420, 4); +x_431 = lean_ctor_get(x_420, 6); lean_inc(x_431); lean_inc(x_430); lean_inc(x_429); lean_inc(x_428); lean_inc(x_427); -lean_dec(x_421); -x_433 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_433, 0, x_427); -lean_ctor_set(x_433, 1, x_428); -lean_ctor_set(x_433, 2, x_429); -lean_ctor_set(x_433, 3, x_430); -lean_ctor_set(x_433, 4, x_431); -lean_ctor_set(x_433, 5, x_419); -lean_ctor_set(x_433, 6, x_432); -x_434 = lean_st_ref_set(x_4, x_433, x_422); -x_435 = lean_ctor_get(x_434, 1); -lean_inc(x_435); -lean_dec(x_434); -x_10 = x_418; -x_11 = x_435; +lean_inc(x_426); +lean_dec(x_420); +x_432 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_432, 0, x_426); +lean_ctor_set(x_432, 1, x_427); +lean_ctor_set(x_432, 2, x_428); +lean_ctor_set(x_432, 3, x_429); +lean_ctor_set(x_432, 4, x_430); +lean_ctor_set(x_432, 5, x_418); +lean_ctor_set(x_432, 6, x_431); +x_433 = lean_st_ref_set(x_4, x_432, x_421); +x_434 = lean_ctor_get(x_433, 1); +lean_inc(x_434); +lean_dec(x_433); +x_10 = x_417; +x_11 = x_434; goto block_36; } } else { -lean_object* x_436; +lean_object* x_435; lean_dec(x_2); lean_dec(x_1); -x_436 = lean_ctor_get(x_417, 0); -lean_inc(x_436); -lean_dec(x_417); -if (lean_obj_tag(x_436) == 0) +x_435 = lean_ctor_get(x_416, 0); +lean_inc(x_435); +lean_dec(x_416); +if (lean_obj_tag(x_435) == 0) { -lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; uint8_t x_442; -x_437 = lean_ctor_get(x_436, 0); +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_436 = lean_ctor_get(x_435, 0); +lean_inc(x_436); +x_437 = lean_ctor_get(x_435, 1); lean_inc(x_437); -x_438 = lean_ctor_get(x_436, 1); -lean_inc(x_438); -lean_dec(x_436); -x_439 = lean_alloc_ctor(2, 1, 0); +lean_dec(x_435); +x_438 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_438, 0, x_437); +x_439 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_439, 0, x_438); -x_440 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_440, 0, x_439); -x_441 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_437, x_440, x_3, x_4, x_5, x_6, x_7, x_8, x_411); +x_440 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_436, x_439, x_3, x_4, x_5, x_6, x_7, x_8, x_410); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_437); -x_442 = !lean_is_exclusive(x_441); -if (x_442 == 0) +lean_dec(x_436); +x_441 = !lean_is_exclusive(x_440); +if (x_441 == 0) { -return x_441; +return x_440; } else { -lean_object* x_443; lean_object* x_444; lean_object* x_445; -x_443 = lean_ctor_get(x_441, 0); -x_444 = lean_ctor_get(x_441, 1); -lean_inc(x_444); +lean_object* x_442; lean_object* x_443; lean_object* x_444; +x_442 = lean_ctor_get(x_440, 0); +x_443 = lean_ctor_get(x_440, 1); lean_inc(x_443); -lean_dec(x_441); -x_445 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_445, 0, x_443); -lean_ctor_set(x_445, 1, x_444); -return x_445; +lean_inc(x_442); +lean_dec(x_440); +x_444 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_444, 0, x_442); +lean_ctor_set(x_444, 1, x_443); +return x_444; } } else { -lean_object* x_446; uint8_t x_447; +lean_object* x_445; uint8_t x_446; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_446 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_411); -x_447 = !lean_is_exclusive(x_446); -if (x_447 == 0) +x_445 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_410); +x_446 = !lean_is_exclusive(x_445); +if (x_446 == 0) { -return x_446; +return x_445; } else { -lean_object* x_448; lean_object* x_449; lean_object* x_450; -x_448 = lean_ctor_get(x_446, 0); -x_449 = lean_ctor_get(x_446, 1); -lean_inc(x_449); +lean_object* x_447; lean_object* x_448; lean_object* x_449; +x_447 = lean_ctor_get(x_445, 0); +x_448 = lean_ctor_get(x_445, 1); lean_inc(x_448); -lean_dec(x_446); -x_450 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_450, 0, x_448); -lean_ctor_set(x_450, 1, x_449); -return x_450; +lean_inc(x_447); +lean_dec(x_445); +x_449 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_449, 0, x_447); +lean_ctor_set(x_449, 1, x_448); +return x_449; } } } } else { -lean_object* x_451; uint8_t x_452; lean_object* x_615; uint8_t x_616; -x_451 = l_Lean_Syntax_getArg(x_400, x_139); -lean_dec(x_400); -x_615 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -lean_inc(x_451); -x_616 = l_Lean_Syntax_isOfKind(x_451, x_615); -if (x_616 == 0) +lean_object* x_450; uint8_t x_451; lean_object* x_673; uint8_t x_674; +x_450 = l_Lean_Syntax_getArg(x_348, x_87); +lean_dec(x_348); +x_673 = l_Lean_nullKind___closed__2; +lean_inc(x_450); +x_674 = l_Lean_Syntax_isOfKind(x_450, x_673); +if (x_674 == 0) { -uint8_t x_617; -x_617 = 0; -x_452 = x_617; -goto block_614; +uint8_t x_675; +x_675 = 0; +x_451 = x_675; +goto block_672; } else { -lean_object* x_618; lean_object* x_619; lean_object* x_620; uint8_t x_621; -x_618 = l_Lean_Syntax_getArgs(x_451); -x_619 = lean_array_get_size(x_618); -lean_dec(x_618); -x_620 = lean_unsigned_to_nat(3u); -x_621 = lean_nat_dec_eq(x_619, x_620); -lean_dec(x_619); -x_452 = x_621; -goto block_614; +lean_object* x_676; lean_object* x_677; uint8_t x_678; +x_676 = l_Lean_Syntax_getArgs(x_450); +x_677 = lean_array_get_size(x_676); +lean_dec(x_676); +x_678 = lean_nat_dec_eq(x_677, x_87); +lean_dec(x_677); +x_451 = x_678; +goto block_672; } -block_614: +block_672: { -if (x_452 == 0) +if (x_451 == 0) { -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; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; -lean_dec(x_451); +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; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; +lean_dec(x_450); lean_dec(x_346); lean_dec(x_242); -x_453 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_454 = lean_ctor_get(x_453, 0); +x_452 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_453 = lean_ctor_get(x_452, 0); +lean_inc(x_453); +x_454 = lean_ctor_get(x_452, 1); lean_inc(x_454); -x_455 = lean_ctor_get(x_453, 1); -lean_inc(x_455); -lean_dec(x_453); -x_456 = lean_st_ref_get(x_8, x_455); -x_457 = lean_ctor_get(x_456, 0); +lean_dec(x_452); +x_455 = lean_st_ref_get(x_8, x_454); +x_456 = lean_ctor_get(x_455, 0); +lean_inc(x_456); +x_457 = lean_ctor_get(x_455, 1); lean_inc(x_457); -x_458 = lean_ctor_get(x_456, 1); +lean_dec(x_455); +x_458 = lean_ctor_get(x_456, 0); lean_inc(x_458); lean_dec(x_456); -x_459 = lean_ctor_get(x_457, 0); -lean_inc(x_459); -lean_dec(x_457); -x_460 = lean_st_ref_get(x_4, x_458); -x_461 = lean_ctor_get(x_460, 0); +x_459 = lean_st_ref_get(x_4, x_457); +x_460 = lean_ctor_get(x_459, 0); +lean_inc(x_460); +x_461 = lean_ctor_get(x_459, 1); lean_inc(x_461); -x_462 = lean_ctor_get(x_460, 1); +lean_dec(x_459); +x_462 = lean_ctor_get(x_460, 5); lean_inc(x_462); lean_dec(x_460); -x_463 = lean_ctor_get(x_461, 5); +x_463 = lean_ctor_get(x_7, 1); lean_inc(x_463); -lean_dec(x_461); -x_464 = lean_ctor_get(x_7, 1); +x_464 = lean_ctor_get(x_7, 2); lean_inc(x_464); -x_465 = lean_ctor_get(x_7, 2); -lean_inc(x_465); -x_466 = lean_environment_main_module(x_459); -x_467 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_467, 0, x_466); -lean_ctor_set(x_467, 1, x_454); -lean_ctor_set(x_467, 2, x_464); -lean_ctor_set(x_467, 3, x_465); +x_465 = lean_environment_main_module(x_458); +x_466 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_466, 0, x_465); +lean_ctor_set(x_466, 1, x_453); +lean_ctor_set(x_466, 2, x_463); +lean_ctor_set(x_466, 3, x_464); lean_inc(x_1); -x_468 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_467, x_463); -if (lean_obj_tag(x_468) == 0) +x_467 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_466, x_462); +if (lean_obj_tag(x_467) == 0) { -lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; uint8_t x_474; -x_469 = lean_ctor_get(x_468, 0); +lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; uint8_t x_473; +x_468 = lean_ctor_get(x_467, 0); +lean_inc(x_468); +x_469 = lean_ctor_get(x_467, 1); lean_inc(x_469); -x_470 = lean_ctor_get(x_468, 1); -lean_inc(x_470); -lean_dec(x_468); -x_471 = lean_st_ref_take(x_4, x_462); -x_472 = lean_ctor_get(x_471, 0); +lean_dec(x_467); +x_470 = lean_st_ref_take(x_4, x_461); +x_471 = lean_ctor_get(x_470, 0); +lean_inc(x_471); +x_472 = lean_ctor_get(x_470, 1); lean_inc(x_472); -x_473 = lean_ctor_get(x_471, 1); -lean_inc(x_473); -lean_dec(x_471); -x_474 = !lean_is_exclusive(x_472); -if (x_474 == 0) +lean_dec(x_470); +x_473 = !lean_is_exclusive(x_471); +if (x_473 == 0) { -lean_object* x_475; lean_object* x_476; lean_object* x_477; -x_475 = lean_ctor_get(x_472, 5); +lean_object* x_474; lean_object* x_475; lean_object* x_476; +x_474 = lean_ctor_get(x_471, 5); +lean_dec(x_474); +lean_ctor_set(x_471, 5, x_469); +x_475 = lean_st_ref_set(x_4, x_471, x_472); +x_476 = lean_ctor_get(x_475, 1); +lean_inc(x_476); lean_dec(x_475); -lean_ctor_set(x_472, 5, x_470); -x_476 = lean_st_ref_set(x_4, x_472, x_473); -x_477 = lean_ctor_get(x_476, 1); -lean_inc(x_477); -lean_dec(x_476); -x_10 = x_469; -x_11 = x_477; +x_10 = x_468; +x_11 = x_476; goto block_36; } else { -lean_object* x_478; lean_object* x_479; 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_object* x_486; -x_478 = lean_ctor_get(x_472, 0); -x_479 = lean_ctor_get(x_472, 1); -x_480 = lean_ctor_get(x_472, 2); -x_481 = lean_ctor_get(x_472, 3); -x_482 = lean_ctor_get(x_472, 4); -x_483 = lean_ctor_get(x_472, 6); -lean_inc(x_483); +lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; +x_477 = lean_ctor_get(x_471, 0); +x_478 = lean_ctor_get(x_471, 1); +x_479 = lean_ctor_get(x_471, 2); +x_480 = lean_ctor_get(x_471, 3); +x_481 = lean_ctor_get(x_471, 4); +x_482 = lean_ctor_get(x_471, 6); lean_inc(x_482); lean_inc(x_481); lean_inc(x_480); lean_inc(x_479); lean_inc(x_478); -lean_dec(x_472); -x_484 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_484, 0, x_478); -lean_ctor_set(x_484, 1, x_479); -lean_ctor_set(x_484, 2, x_480); -lean_ctor_set(x_484, 3, x_481); -lean_ctor_set(x_484, 4, x_482); -lean_ctor_set(x_484, 5, x_470); -lean_ctor_set(x_484, 6, x_483); -x_485 = lean_st_ref_set(x_4, x_484, x_473); -x_486 = lean_ctor_get(x_485, 1); -lean_inc(x_486); -lean_dec(x_485); -x_10 = x_469; -x_11 = x_486; +lean_inc(x_477); +lean_dec(x_471); +x_483 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_483, 0, x_477); +lean_ctor_set(x_483, 1, x_478); +lean_ctor_set(x_483, 2, x_479); +lean_ctor_set(x_483, 3, x_480); +lean_ctor_set(x_483, 4, x_481); +lean_ctor_set(x_483, 5, x_469); +lean_ctor_set(x_483, 6, x_482); +x_484 = lean_st_ref_set(x_4, x_483, x_472); +x_485 = lean_ctor_get(x_484, 1); +lean_inc(x_485); +lean_dec(x_484); +x_10 = x_468; +x_11 = x_485; goto block_36; } } else { -lean_object* x_487; +lean_object* x_486; lean_dec(x_2); lean_dec(x_1); -x_487 = lean_ctor_get(x_468, 0); -lean_inc(x_487); -lean_dec(x_468); -if (lean_obj_tag(x_487) == 0) +x_486 = lean_ctor_get(x_467, 0); +lean_inc(x_486); +lean_dec(x_467); +if (lean_obj_tag(x_486) == 0) { -lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; uint8_t x_493; -x_488 = lean_ctor_get(x_487, 0); +lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; uint8_t x_492; +x_487 = lean_ctor_get(x_486, 0); +lean_inc(x_487); +x_488 = lean_ctor_get(x_486, 1); lean_inc(x_488); -x_489 = lean_ctor_get(x_487, 1); -lean_inc(x_489); -lean_dec(x_487); -x_490 = lean_alloc_ctor(2, 1, 0); +lean_dec(x_486); +x_489 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_489, 0, x_488); +x_490 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_490, 0, x_489); -x_491 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_491, 0, x_490); -x_492 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_488, x_491, x_3, x_4, x_5, x_6, x_7, x_8, x_462); +x_491 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_487, x_490, x_3, x_4, x_5, x_6, x_7, x_8, x_461); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_488); -x_493 = !lean_is_exclusive(x_492); -if (x_493 == 0) +lean_dec(x_487); +x_492 = !lean_is_exclusive(x_491); +if (x_492 == 0) { -return x_492; +return x_491; } else { -lean_object* x_494; lean_object* x_495; lean_object* x_496; -x_494 = lean_ctor_get(x_492, 0); -x_495 = lean_ctor_get(x_492, 1); -lean_inc(x_495); +lean_object* x_493; lean_object* x_494; lean_object* x_495; +x_493 = lean_ctor_get(x_491, 0); +x_494 = lean_ctor_get(x_491, 1); lean_inc(x_494); -lean_dec(x_492); -x_496 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_496, 0, x_494); -lean_ctor_set(x_496, 1, x_495); -return x_496; +lean_inc(x_493); +lean_dec(x_491); +x_495 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_495, 0, x_493); +lean_ctor_set(x_495, 1, x_494); +return x_495; } } else { -lean_object* x_497; uint8_t x_498; +lean_object* x_496; uint8_t x_497; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_497 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_462); -x_498 = !lean_is_exclusive(x_497); -if (x_498 == 0) +x_496 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_461); +x_497 = !lean_is_exclusive(x_496); +if (x_497 == 0) { -return x_497; +return x_496; } else { -lean_object* x_499; lean_object* x_500; lean_object* x_501; -x_499 = lean_ctor_get(x_497, 0); -x_500 = lean_ctor_get(x_497, 1); -lean_inc(x_500); +lean_object* x_498; lean_object* x_499; lean_object* x_500; +x_498 = lean_ctor_get(x_496, 0); +x_499 = lean_ctor_get(x_496, 1); lean_inc(x_499); -lean_dec(x_497); -x_501 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_501, 0, x_499); -lean_ctor_set(x_501, 1, x_500); -return x_501; +lean_inc(x_498); +lean_dec(x_496); +x_500 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_500, 0, x_498); +lean_ctor_set(x_500, 1, x_499); +return x_500; } } } } else { -lean_object* x_502; uint8_t x_503; lean_object* x_608; uint8_t x_609; -x_502 = l_Lean_Syntax_getArg(x_451, x_139); -x_608 = l_Lean_nullKind___closed__2; -lean_inc(x_502); -x_609 = l_Lean_Syntax_isOfKind(x_502, x_608); -if (x_609 == 0) +lean_object* x_501; uint8_t x_502; lean_object* x_665; uint8_t x_666; +x_501 = l_Lean_Syntax_getArg(x_450, x_139); +lean_dec(x_450); +x_665 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +lean_inc(x_501); +x_666 = l_Lean_Syntax_isOfKind(x_501, x_665); +if (x_666 == 0) { -uint8_t x_610; -x_610 = 0; -x_503 = x_610; -goto block_607; +uint8_t x_667; +x_667 = 0; +x_502 = x_667; +goto block_664; } else { -lean_object* x_611; lean_object* x_612; uint8_t x_613; -x_611 = l_Lean_Syntax_getArgs(x_502); -x_612 = lean_array_get_size(x_611); -lean_dec(x_611); -x_613 = lean_nat_dec_eq(x_612, x_87); -lean_dec(x_612); -x_503 = x_613; -goto block_607; +lean_object* x_668; lean_object* x_669; lean_object* x_670; uint8_t x_671; +x_668 = l_Lean_Syntax_getArgs(x_501); +x_669 = lean_array_get_size(x_668); +lean_dec(x_668); +x_670 = lean_unsigned_to_nat(3u); +x_671 = lean_nat_dec_eq(x_669, x_670); +lean_dec(x_669); +x_502 = x_671; +goto block_664; } -block_607: +block_664: { -if (x_503 == 0) +if (x_502 == 0) { -lean_object* x_504; 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_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; -lean_dec(x_502); -lean_dec(x_451); +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; 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_object* x_518; +lean_dec(x_501); lean_dec(x_346); lean_dec(x_242); -x_504 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_505 = lean_ctor_get(x_504, 0); +x_503 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_504 = lean_ctor_get(x_503, 0); +lean_inc(x_504); +x_505 = lean_ctor_get(x_503, 1); lean_inc(x_505); -x_506 = lean_ctor_get(x_504, 1); -lean_inc(x_506); -lean_dec(x_504); -x_507 = lean_st_ref_get(x_8, x_506); -x_508 = lean_ctor_get(x_507, 0); +lean_dec(x_503); +x_506 = lean_st_ref_get(x_8, x_505); +x_507 = lean_ctor_get(x_506, 0); +lean_inc(x_507); +x_508 = lean_ctor_get(x_506, 1); lean_inc(x_508); -x_509 = lean_ctor_get(x_507, 1); +lean_dec(x_506); +x_509 = lean_ctor_get(x_507, 0); lean_inc(x_509); lean_dec(x_507); -x_510 = lean_ctor_get(x_508, 0); -lean_inc(x_510); -lean_dec(x_508); -x_511 = lean_st_ref_get(x_4, x_509); -x_512 = lean_ctor_get(x_511, 0); +x_510 = lean_st_ref_get(x_4, x_508); +x_511 = lean_ctor_get(x_510, 0); +lean_inc(x_511); +x_512 = lean_ctor_get(x_510, 1); lean_inc(x_512); -x_513 = lean_ctor_get(x_511, 1); +lean_dec(x_510); +x_513 = lean_ctor_get(x_511, 5); lean_inc(x_513); lean_dec(x_511); -x_514 = lean_ctor_get(x_512, 5); +x_514 = lean_ctor_get(x_7, 1); lean_inc(x_514); -lean_dec(x_512); -x_515 = lean_ctor_get(x_7, 1); +x_515 = lean_ctor_get(x_7, 2); lean_inc(x_515); -x_516 = lean_ctor_get(x_7, 2); -lean_inc(x_516); -x_517 = lean_environment_main_module(x_510); -x_518 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_518, 0, x_517); -lean_ctor_set(x_518, 1, x_505); -lean_ctor_set(x_518, 2, x_515); -lean_ctor_set(x_518, 3, x_516); +x_516 = lean_environment_main_module(x_509); +x_517 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_517, 0, x_516); +lean_ctor_set(x_517, 1, x_504); +lean_ctor_set(x_517, 2, x_514); +lean_ctor_set(x_517, 3, x_515); lean_inc(x_1); -x_519 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_518, x_514); -if (lean_obj_tag(x_519) == 0) +x_518 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_517, x_513); +if (lean_obj_tag(x_518) == 0) { -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_520 = lean_ctor_get(x_519, 0); +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_519 = lean_ctor_get(x_518, 0); +lean_inc(x_519); +x_520 = lean_ctor_get(x_518, 1); lean_inc(x_520); -x_521 = lean_ctor_get(x_519, 1); -lean_inc(x_521); -lean_dec(x_519); -x_522 = lean_st_ref_take(x_4, x_513); -x_523 = lean_ctor_get(x_522, 0); +lean_dec(x_518); +x_521 = lean_st_ref_take(x_4, x_512); +x_522 = lean_ctor_get(x_521, 0); +lean_inc(x_522); +x_523 = lean_ctor_get(x_521, 1); lean_inc(x_523); -x_524 = lean_ctor_get(x_522, 1); -lean_inc(x_524); -lean_dec(x_522); -x_525 = !lean_is_exclusive(x_523); -if (x_525 == 0) +lean_dec(x_521); +x_524 = !lean_is_exclusive(x_522); +if (x_524 == 0) { -lean_object* x_526; lean_object* x_527; lean_object* x_528; -x_526 = lean_ctor_get(x_523, 5); +lean_object* x_525; lean_object* x_526; lean_object* x_527; +x_525 = lean_ctor_get(x_522, 5); +lean_dec(x_525); +lean_ctor_set(x_522, 5, x_520); +x_526 = lean_st_ref_set(x_4, x_522, x_523); +x_527 = lean_ctor_get(x_526, 1); +lean_inc(x_527); lean_dec(x_526); -lean_ctor_set(x_523, 5, x_521); -x_527 = lean_st_ref_set(x_4, x_523, x_524); -x_528 = lean_ctor_get(x_527, 1); -lean_inc(x_528); -lean_dec(x_527); -x_10 = x_520; -x_11 = x_528; +x_10 = x_519; +x_11 = x_527; goto block_36; } 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; lean_object* x_536; lean_object* x_537; -x_529 = lean_ctor_get(x_523, 0); -x_530 = lean_ctor_get(x_523, 1); -x_531 = lean_ctor_get(x_523, 2); -x_532 = lean_ctor_get(x_523, 3); -x_533 = lean_ctor_get(x_523, 4); -x_534 = lean_ctor_get(x_523, 6); -lean_inc(x_534); +lean_object* x_528; 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; lean_object* x_536; +x_528 = lean_ctor_get(x_522, 0); +x_529 = lean_ctor_get(x_522, 1); +x_530 = lean_ctor_get(x_522, 2); +x_531 = lean_ctor_get(x_522, 3); +x_532 = lean_ctor_get(x_522, 4); +x_533 = lean_ctor_get(x_522, 6); lean_inc(x_533); lean_inc(x_532); lean_inc(x_531); lean_inc(x_530); lean_inc(x_529); -lean_dec(x_523); -x_535 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_535, 0, x_529); -lean_ctor_set(x_535, 1, x_530); -lean_ctor_set(x_535, 2, x_531); -lean_ctor_set(x_535, 3, x_532); -lean_ctor_set(x_535, 4, x_533); -lean_ctor_set(x_535, 5, x_521); -lean_ctor_set(x_535, 6, x_534); -x_536 = lean_st_ref_set(x_4, x_535, x_524); -x_537 = lean_ctor_get(x_536, 1); -lean_inc(x_537); -lean_dec(x_536); -x_10 = x_520; -x_11 = x_537; +lean_inc(x_528); +lean_dec(x_522); +x_534 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_534, 0, x_528); +lean_ctor_set(x_534, 1, x_529); +lean_ctor_set(x_534, 2, x_530); +lean_ctor_set(x_534, 3, x_531); +lean_ctor_set(x_534, 4, x_532); +lean_ctor_set(x_534, 5, x_520); +lean_ctor_set(x_534, 6, x_533); +x_535 = lean_st_ref_set(x_4, x_534, x_523); +x_536 = lean_ctor_get(x_535, 1); +lean_inc(x_536); +lean_dec(x_535); +x_10 = x_519; +x_11 = x_536; goto block_36; } } else { -lean_object* x_538; +lean_object* x_537; lean_dec(x_2); lean_dec(x_1); -x_538 = lean_ctor_get(x_519, 0); -lean_inc(x_538); -lean_dec(x_519); -if (lean_obj_tag(x_538) == 0) +x_537 = lean_ctor_get(x_518, 0); +lean_inc(x_537); +lean_dec(x_518); +if (lean_obj_tag(x_537) == 0) { -lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; uint8_t x_544; -x_539 = lean_ctor_get(x_538, 0); +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_538 = lean_ctor_get(x_537, 0); +lean_inc(x_538); +x_539 = lean_ctor_get(x_537, 1); lean_inc(x_539); -x_540 = lean_ctor_get(x_538, 1); -lean_inc(x_540); -lean_dec(x_538); -x_541 = lean_alloc_ctor(2, 1, 0); +lean_dec(x_537); +x_540 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_540, 0, x_539); +x_541 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_541, 0, x_540); -x_542 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_542, 0, x_541); -x_543 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_539, x_542, x_3, x_4, x_5, x_6, x_7, x_8, x_513); +x_542 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_538, x_541, x_3, x_4, x_5, x_6, x_7, x_8, x_512); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_539); -x_544 = !lean_is_exclusive(x_543); -if (x_544 == 0) +lean_dec(x_538); +x_543 = !lean_is_exclusive(x_542); +if (x_543 == 0) { -return x_543; +return x_542; } else { -lean_object* x_545; lean_object* x_546; lean_object* x_547; -x_545 = lean_ctor_get(x_543, 0); -x_546 = lean_ctor_get(x_543, 1); -lean_inc(x_546); +lean_object* x_544; lean_object* x_545; lean_object* x_546; +x_544 = lean_ctor_get(x_542, 0); +x_545 = lean_ctor_get(x_542, 1); lean_inc(x_545); -lean_dec(x_543); -x_547 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_547, 0, x_545); -lean_ctor_set(x_547, 1, x_546); -return x_547; +lean_inc(x_544); +lean_dec(x_542); +x_546 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_546, 0, x_544); +lean_ctor_set(x_546, 1, x_545); +return x_546; } } else { -lean_object* x_548; uint8_t x_549; +lean_object* x_547; uint8_t x_548; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_548 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_513); -x_549 = !lean_is_exclusive(x_548); -if (x_549 == 0) +x_547 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_512); +x_548 = !lean_is_exclusive(x_547); +if (x_548 == 0) { -return x_548; +return x_547; } else { -lean_object* x_550; lean_object* x_551; lean_object* x_552; -x_550 = lean_ctor_get(x_548, 0); -x_551 = lean_ctor_get(x_548, 1); -lean_inc(x_551); +lean_object* x_549; lean_object* x_550; lean_object* x_551; +x_549 = lean_ctor_get(x_547, 0); +x_550 = lean_ctor_get(x_547, 1); lean_inc(x_550); -lean_dec(x_548); -x_552 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_552, 0, x_550); -lean_ctor_set(x_552, 1, x_551); -return x_552; +lean_inc(x_549); +lean_dec(x_547); +x_551 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_551, 0, x_549); +lean_ctor_set(x_551, 1, x_550); +return x_551; } } } } else { -lean_object* x_553; lean_object* x_554; uint8_t x_555; -x_553 = l_Lean_Syntax_getArg(x_502, x_139); -lean_dec(x_502); -x_554 = l_Lean_identKind___closed__2; -lean_inc(x_553); -x_555 = l_Lean_Syntax_isOfKind(x_553, x_554); -if (x_555 == 0) +lean_object* x_552; uint8_t x_553; lean_object* x_658; uint8_t x_659; +x_552 = l_Lean_Syntax_getArg(x_501, x_139); +x_658 = l_Lean_nullKind___closed__2; +lean_inc(x_552); +x_659 = l_Lean_Syntax_isOfKind(x_552, x_658); +if (x_659 == 0) { -lean_object* x_556; 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_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; -lean_dec(x_553); -lean_dec(x_451); +uint8_t x_660; +x_660 = 0; +x_553 = x_660; +goto block_657; +} +else +{ +lean_object* x_661; lean_object* x_662; uint8_t x_663; +x_661 = l_Lean_Syntax_getArgs(x_552); +x_662 = lean_array_get_size(x_661); +lean_dec(x_661); +x_663 = lean_nat_dec_eq(x_662, x_87); +lean_dec(x_662); +x_553 = x_663; +goto block_657; +} +block_657: +{ +if (x_553 == 0) +{ +lean_object* x_554; lean_object* x_555; lean_object* x_556; 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_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; +lean_dec(x_552); +lean_dec(x_501); lean_dec(x_346); lean_dec(x_242); -x_556 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_557 = lean_ctor_get(x_556, 0); -lean_inc(x_557); -x_558 = lean_ctor_get(x_556, 1); +x_554 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_555 = lean_ctor_get(x_554, 0); +lean_inc(x_555); +x_556 = lean_ctor_get(x_554, 1); +lean_inc(x_556); +lean_dec(x_554); +x_557 = lean_st_ref_get(x_8, x_556); +x_558 = lean_ctor_get(x_557, 0); lean_inc(x_558); -lean_dec(x_556); -x_559 = lean_st_ref_get(x_8, x_558); -x_560 = lean_ctor_get(x_559, 0); +x_559 = lean_ctor_get(x_557, 1); +lean_inc(x_559); +lean_dec(x_557); +x_560 = lean_ctor_get(x_558, 0); lean_inc(x_560); -x_561 = lean_ctor_get(x_559, 1); -lean_inc(x_561); -lean_dec(x_559); -x_562 = lean_ctor_get(x_560, 0); +lean_dec(x_558); +x_561 = lean_st_ref_get(x_4, x_559); +x_562 = lean_ctor_get(x_561, 0); lean_inc(x_562); -lean_dec(x_560); -x_563 = lean_st_ref_get(x_4, x_561); -x_564 = lean_ctor_get(x_563, 0); +x_563 = lean_ctor_get(x_561, 1); +lean_inc(x_563); +lean_dec(x_561); +x_564 = lean_ctor_get(x_562, 5); lean_inc(x_564); -x_565 = lean_ctor_get(x_563, 1); +lean_dec(x_562); +x_565 = lean_ctor_get(x_7, 1); lean_inc(x_565); -lean_dec(x_563); -x_566 = lean_ctor_get(x_564, 5); +x_566 = lean_ctor_get(x_7, 2); lean_inc(x_566); -lean_dec(x_564); -x_567 = lean_ctor_get(x_7, 1); -lean_inc(x_567); -x_568 = lean_ctor_get(x_7, 2); -lean_inc(x_568); -x_569 = lean_environment_main_module(x_562); -x_570 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_570, 0, x_569); -lean_ctor_set(x_570, 1, x_557); -lean_ctor_set(x_570, 2, x_567); -lean_ctor_set(x_570, 3, x_568); +x_567 = lean_environment_main_module(x_560); +x_568 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_568, 0, x_567); +lean_ctor_set(x_568, 1, x_555); +lean_ctor_set(x_568, 2, x_565); +lean_ctor_set(x_568, 3, x_566); lean_inc(x_1); -x_571 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_570, x_566); -if (lean_obj_tag(x_571) == 0) +x_569 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_568, x_564); +if (lean_obj_tag(x_569) == 0) { -lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; uint8_t x_577; -x_572 = lean_ctor_get(x_571, 0); -lean_inc(x_572); -x_573 = lean_ctor_get(x_571, 1); +lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; uint8_t x_575; +x_570 = lean_ctor_get(x_569, 0); +lean_inc(x_570); +x_571 = lean_ctor_get(x_569, 1); +lean_inc(x_571); +lean_dec(x_569); +x_572 = lean_st_ref_take(x_4, x_563); +x_573 = lean_ctor_get(x_572, 0); lean_inc(x_573); -lean_dec(x_571); -x_574 = lean_st_ref_take(x_4, x_565); -x_575 = lean_ctor_get(x_574, 0); -lean_inc(x_575); -x_576 = lean_ctor_get(x_574, 1); -lean_inc(x_576); -lean_dec(x_574); -x_577 = !lean_is_exclusive(x_575); -if (x_577 == 0) +x_574 = lean_ctor_get(x_572, 1); +lean_inc(x_574); +lean_dec(x_572); +x_575 = !lean_is_exclusive(x_573); +if (x_575 == 0) { -lean_object* x_578; lean_object* x_579; lean_object* x_580; -x_578 = lean_ctor_get(x_575, 5); -lean_dec(x_578); -lean_ctor_set(x_575, 5, x_573); -x_579 = lean_st_ref_set(x_4, x_575, x_576); -x_580 = lean_ctor_get(x_579, 1); -lean_inc(x_580); -lean_dec(x_579); -x_10 = x_572; -x_11 = x_580; +lean_object* x_576; lean_object* x_577; lean_object* x_578; +x_576 = lean_ctor_get(x_573, 5); +lean_dec(x_576); +lean_ctor_set(x_573, 5, x_571); +x_577 = lean_st_ref_set(x_4, x_573, x_574); +x_578 = lean_ctor_get(x_577, 1); +lean_inc(x_578); +lean_dec(x_577); +x_10 = x_570; +x_11 = x_578; goto block_36; } else { -lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; -x_581 = lean_ctor_get(x_575, 0); -x_582 = lean_ctor_get(x_575, 1); -x_583 = lean_ctor_get(x_575, 2); -x_584 = lean_ctor_get(x_575, 3); -x_585 = lean_ctor_get(x_575, 4); -x_586 = lean_ctor_get(x_575, 6); -lean_inc(x_586); -lean_inc(x_585); +lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; +x_579 = lean_ctor_get(x_573, 0); +x_580 = lean_ctor_get(x_573, 1); +x_581 = lean_ctor_get(x_573, 2); +x_582 = lean_ctor_get(x_573, 3); +x_583 = lean_ctor_get(x_573, 4); +x_584 = lean_ctor_get(x_573, 6); lean_inc(x_584); lean_inc(x_583); lean_inc(x_582); lean_inc(x_581); -lean_dec(x_575); -x_587 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_587, 0, x_581); -lean_ctor_set(x_587, 1, x_582); -lean_ctor_set(x_587, 2, x_583); -lean_ctor_set(x_587, 3, x_584); -lean_ctor_set(x_587, 4, x_585); -lean_ctor_set(x_587, 5, x_573); -lean_ctor_set(x_587, 6, x_586); -x_588 = lean_st_ref_set(x_4, x_587, x_576); -x_589 = lean_ctor_get(x_588, 1); -lean_inc(x_589); -lean_dec(x_588); -x_10 = x_572; -x_11 = x_589; +lean_inc(x_580); +lean_inc(x_579); +lean_dec(x_573); +x_585 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_585, 0, x_579); +lean_ctor_set(x_585, 1, x_580); +lean_ctor_set(x_585, 2, x_581); +lean_ctor_set(x_585, 3, x_582); +lean_ctor_set(x_585, 4, x_583); +lean_ctor_set(x_585, 5, x_571); +lean_ctor_set(x_585, 6, x_584); +x_586 = lean_st_ref_set(x_4, x_585, x_574); +x_587 = lean_ctor_get(x_586, 1); +lean_inc(x_587); +lean_dec(x_586); +x_10 = x_570; +x_11 = x_587; goto block_36; } } else { -lean_object* x_590; +lean_object* x_588; lean_dec(x_2); lean_dec(x_1); -x_590 = lean_ctor_get(x_571, 0); -lean_inc(x_590); -lean_dec(x_571); -if (lean_obj_tag(x_590) == 0) +x_588 = lean_ctor_get(x_569, 0); +lean_inc(x_588); +lean_dec(x_569); +if (lean_obj_tag(x_588) == 0) { -lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; uint8_t x_596; -x_591 = lean_ctor_get(x_590, 0); -lean_inc(x_591); -x_592 = lean_ctor_get(x_590, 1); -lean_inc(x_592); -lean_dec(x_590); -x_593 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_593, 0, x_592); -x_594 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_594, 0, x_593); -x_595 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_591, x_594, x_3, x_4, x_5, x_6, x_7, x_8, x_565); +lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; uint8_t x_594; +x_589 = lean_ctor_get(x_588, 0); +lean_inc(x_589); +x_590 = lean_ctor_get(x_588, 1); +lean_inc(x_590); +lean_dec(x_588); +x_591 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_591, 0, x_590); +x_592 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_592, 0, x_591); +x_593 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_589, x_592, x_3, x_4, x_5, x_6, x_7, x_8, x_563); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_591); -x_596 = !lean_is_exclusive(x_595); -if (x_596 == 0) +lean_dec(x_589); +x_594 = !lean_is_exclusive(x_593); +if (x_594 == 0) { -return x_595; +return x_593; } else { -lean_object* x_597; lean_object* x_598; lean_object* x_599; -x_597 = lean_ctor_get(x_595, 0); -x_598 = lean_ctor_get(x_595, 1); -lean_inc(x_598); -lean_inc(x_597); -lean_dec(x_595); -x_599 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_599, 0, x_597); -lean_ctor_set(x_599, 1, x_598); -return x_599; +lean_object* x_595; lean_object* x_596; lean_object* x_597; +x_595 = lean_ctor_get(x_593, 0); +x_596 = lean_ctor_get(x_593, 1); +lean_inc(x_596); +lean_inc(x_595); +lean_dec(x_593); +x_597 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_597, 0, x_595); +lean_ctor_set(x_597, 1, x_596); +return x_597; } } else { -lean_object* x_600; uint8_t x_601; +lean_object* x_598; uint8_t x_599; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_600 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_565); -x_601 = !lean_is_exclusive(x_600); -if (x_601 == 0) +x_598 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_563); +x_599 = !lean_is_exclusive(x_598); +if (x_599 == 0) { -return x_600; +return x_598; } else { -lean_object* x_602; lean_object* x_603; lean_object* x_604; -x_602 = lean_ctor_get(x_600, 0); -x_603 = lean_ctor_get(x_600, 1); +lean_object* x_600; lean_object* x_601; lean_object* x_602; +x_600 = lean_ctor_get(x_598, 0); +x_601 = lean_ctor_get(x_598, 1); +lean_inc(x_601); +lean_inc(x_600); +lean_dec(x_598); +x_602 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_602, 0, x_600); +lean_ctor_set(x_602, 1, x_601); +return x_602; +} +} +} +} +else +{ +lean_object* x_603; lean_object* x_604; uint8_t x_605; +x_603 = l_Lean_Syntax_getArg(x_552, x_139); +lean_dec(x_552); +x_604 = l_Lean_identKind___closed__2; lean_inc(x_603); -lean_inc(x_602); -lean_dec(x_600); -x_604 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_604, 0, x_602); -lean_ctor_set(x_604, 1, x_603); -return x_604; -} -} -} -} -else +x_605 = l_Lean_Syntax_isOfKind(x_603, x_604); +if (x_605 == 0) { -lean_object* x_605; lean_object* x_606; -x_605 = l_Lean_Syntax_getArg(x_451, x_243); -lean_dec(x_451); -x_606 = l___private_Lean_Elab_Match_2__expandSimpleMatchWithType(x_1, x_242, x_553, x_346, x_605, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_606; -} -} -} -} -} -} -} -} -} -block_865: -{ -if (x_632 == 0) -{ -if (x_631 == 0) -{ -uint8_t x_633; -lean_dec(x_348); -x_633 = 0; -x_349 = x_633; -goto block_629; -} -else -{ -lean_object* x_634; lean_object* x_635; uint8_t x_636; -x_634 = l_Lean_Syntax_getArgs(x_348); -lean_dec(x_348); -x_635 = lean_array_get_size(x_634); -lean_dec(x_634); -x_636 = lean_nat_dec_eq(x_635, x_87); -lean_dec(x_635); -x_349 = x_636; -goto block_629; -} -} -else -{ -lean_object* x_637; lean_object* x_638; uint8_t x_639; uint8_t x_860; -lean_dec(x_348); -x_637 = lean_unsigned_to_nat(5u); -x_638 = l_Lean_Syntax_getArg(x_1, x_637); -lean_inc(x_638); -x_860 = l_Lean_Syntax_isOfKind(x_638, x_630); -if (x_860 == 0) -{ -uint8_t x_861; -x_861 = 0; -x_639 = x_861; -goto block_859; -} -else -{ -lean_object* x_862; lean_object* x_863; uint8_t x_864; -x_862 = l_Lean_Syntax_getArgs(x_638); -x_863 = lean_array_get_size(x_862); -lean_dec(x_862); -x_864 = lean_nat_dec_eq(x_863, x_87); -lean_dec(x_863); -x_639 = x_864; -goto block_859; -} -block_859: -{ -if (x_639 == 0) -{ -lean_object* x_640; lean_object* x_641; 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; lean_object* x_649; 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_638); +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_dec(x_603); +lean_dec(x_501); lean_dec(x_346); lean_dec(x_242); -x_640 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_606 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_607 = lean_ctor_get(x_606, 0); +lean_inc(x_607); +x_608 = lean_ctor_get(x_606, 1); +lean_inc(x_608); +lean_dec(x_606); +x_609 = lean_st_ref_get(x_8, x_608); +x_610 = lean_ctor_get(x_609, 0); +lean_inc(x_610); +x_611 = lean_ctor_get(x_609, 1); +lean_inc(x_611); +lean_dec(x_609); +x_612 = lean_ctor_get(x_610, 0); +lean_inc(x_612); +lean_dec(x_610); +x_613 = lean_st_ref_get(x_4, x_611); +x_614 = lean_ctor_get(x_613, 0); +lean_inc(x_614); +x_615 = lean_ctor_get(x_613, 1); +lean_inc(x_615); +lean_dec(x_613); +x_616 = lean_ctor_get(x_614, 5); +lean_inc(x_616); +lean_dec(x_614); +x_617 = lean_ctor_get(x_7, 1); +lean_inc(x_617); +x_618 = lean_ctor_get(x_7, 2); +lean_inc(x_618); +x_619 = lean_environment_main_module(x_612); +x_620 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_620, 0, x_619); +lean_ctor_set(x_620, 1, x_607); +lean_ctor_set(x_620, 2, x_617); +lean_ctor_set(x_620, 3, x_618); +lean_inc(x_1); +x_621 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_620, x_616); +if (lean_obj_tag(x_621) == 0) +{ +lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; uint8_t x_627; +x_622 = lean_ctor_get(x_621, 0); +lean_inc(x_622); +x_623 = lean_ctor_get(x_621, 1); +lean_inc(x_623); +lean_dec(x_621); +x_624 = lean_st_ref_take(x_4, x_615); +x_625 = lean_ctor_get(x_624, 0); +lean_inc(x_625); +x_626 = lean_ctor_get(x_624, 1); +lean_inc(x_626); +lean_dec(x_624); +x_627 = !lean_is_exclusive(x_625); +if (x_627 == 0) +{ +lean_object* x_628; lean_object* x_629; lean_object* x_630; +x_628 = lean_ctor_get(x_625, 5); +lean_dec(x_628); +lean_ctor_set(x_625, 5, x_623); +x_629 = lean_st_ref_set(x_4, x_625, x_626); +x_630 = lean_ctor_get(x_629, 1); +lean_inc(x_630); +lean_dec(x_629); +x_10 = x_622; +x_11 = x_630; +goto block_36; +} +else +{ +lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; +x_631 = lean_ctor_get(x_625, 0); +x_632 = lean_ctor_get(x_625, 1); +x_633 = lean_ctor_get(x_625, 2); +x_634 = lean_ctor_get(x_625, 3); +x_635 = lean_ctor_get(x_625, 4); +x_636 = lean_ctor_get(x_625, 6); +lean_inc(x_636); +lean_inc(x_635); +lean_inc(x_634); +lean_inc(x_633); +lean_inc(x_632); +lean_inc(x_631); +lean_dec(x_625); +x_637 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_637, 0, x_631); +lean_ctor_set(x_637, 1, x_632); +lean_ctor_set(x_637, 2, x_633); +lean_ctor_set(x_637, 3, x_634); +lean_ctor_set(x_637, 4, x_635); +lean_ctor_set(x_637, 5, x_623); +lean_ctor_set(x_637, 6, x_636); +x_638 = lean_st_ref_set(x_4, x_637, x_626); +x_639 = lean_ctor_get(x_638, 1); +lean_inc(x_639); +lean_dec(x_638); +x_10 = x_622; +x_11 = x_639; +goto block_36; +} +} +else +{ +lean_object* x_640; +lean_dec(x_2); +lean_dec(x_1); +x_640 = lean_ctor_get(x_621, 0); +lean_inc(x_640); +lean_dec(x_621); +if (lean_obj_tag(x_640) == 0) +{ +lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; uint8_t x_646; x_641 = lean_ctor_get(x_640, 0); lean_inc(x_641); x_642 = lean_ctor_get(x_640, 1); lean_inc(x_642); lean_dec(x_640); -x_643 = lean_st_ref_get(x_8, x_642); -x_644 = lean_ctor_get(x_643, 0); -lean_inc(x_644); -x_645 = lean_ctor_get(x_643, 1); -lean_inc(x_645); -lean_dec(x_643); -x_646 = lean_ctor_get(x_644, 0); -lean_inc(x_646); -lean_dec(x_644); -x_647 = lean_st_ref_get(x_4, x_645); -x_648 = lean_ctor_get(x_647, 0); -lean_inc(x_648); -x_649 = lean_ctor_get(x_647, 1); -lean_inc(x_649); -lean_dec(x_647); -x_650 = lean_ctor_get(x_648, 5); -lean_inc(x_650); -lean_dec(x_648); -x_651 = lean_ctor_get(x_7, 1); -lean_inc(x_651); -x_652 = lean_ctor_get(x_7, 2); -lean_inc(x_652); -x_653 = lean_environment_main_module(x_646); -x_654 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_654, 0, x_653); -lean_ctor_set(x_654, 1, x_641); -lean_ctor_set(x_654, 2, x_651); -lean_ctor_set(x_654, 3, x_652); -lean_inc(x_1); -x_655 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_654, x_650); -if (lean_obj_tag(x_655) == 0) -{ -lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; uint8_t x_661; -x_656 = lean_ctor_get(x_655, 0); -lean_inc(x_656); -x_657 = lean_ctor_get(x_655, 1); -lean_inc(x_657); -lean_dec(x_655); -x_658 = lean_st_ref_take(x_4, x_649); -x_659 = lean_ctor_get(x_658, 0); -lean_inc(x_659); -x_660 = lean_ctor_get(x_658, 1); -lean_inc(x_660); -lean_dec(x_658); -x_661 = !lean_is_exclusive(x_659); -if (x_661 == 0) -{ -lean_object* x_662; lean_object* x_663; lean_object* x_664; -x_662 = lean_ctor_get(x_659, 5); -lean_dec(x_662); -lean_ctor_set(x_659, 5, x_657); -x_663 = lean_st_ref_set(x_4, x_659, x_660); -x_664 = lean_ctor_get(x_663, 1); -lean_inc(x_664); -lean_dec(x_663); -x_10 = x_656; -x_11 = x_664; -goto block_36; -} -else -{ -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_object* x_671; lean_object* x_672; lean_object* x_673; -x_665 = lean_ctor_get(x_659, 0); -x_666 = lean_ctor_get(x_659, 1); -x_667 = lean_ctor_get(x_659, 2); -x_668 = lean_ctor_get(x_659, 3); -x_669 = lean_ctor_get(x_659, 4); -x_670 = lean_ctor_get(x_659, 6); -lean_inc(x_670); -lean_inc(x_669); -lean_inc(x_668); -lean_inc(x_667); -lean_inc(x_666); -lean_inc(x_665); -lean_dec(x_659); -x_671 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_671, 0, x_665); -lean_ctor_set(x_671, 1, x_666); -lean_ctor_set(x_671, 2, x_667); -lean_ctor_set(x_671, 3, x_668); -lean_ctor_set(x_671, 4, x_669); -lean_ctor_set(x_671, 5, x_657); -lean_ctor_set(x_671, 6, x_670); -x_672 = lean_st_ref_set(x_4, x_671, x_660); -x_673 = lean_ctor_get(x_672, 1); -lean_inc(x_673); -lean_dec(x_672); -x_10 = x_656; -x_11 = x_673; -goto block_36; -} -} -else -{ -lean_object* x_674; -lean_dec(x_2); -lean_dec(x_1); -x_674 = lean_ctor_get(x_655, 0); -lean_inc(x_674); -lean_dec(x_655); -if (lean_obj_tag(x_674) == 0) -{ -lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; uint8_t x_680; -x_675 = lean_ctor_get(x_674, 0); -lean_inc(x_675); -x_676 = lean_ctor_get(x_674, 1); -lean_inc(x_676); -lean_dec(x_674); -x_677 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_677, 0, x_676); -x_678 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_678, 0, x_677); -x_679 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_675, x_678, x_3, x_4, x_5, x_6, x_7, x_8, x_649); +x_643 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_643, 0, x_642); +x_644 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_644, 0, x_643); +x_645 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_641, x_644, x_3, x_4, x_5, x_6, x_7, x_8, x_615); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_675); -x_680 = !lean_is_exclusive(x_679); -if (x_680 == 0) +lean_dec(x_641); +x_646 = !lean_is_exclusive(x_645); +if (x_646 == 0) { -return x_679; +return x_645; } else { -lean_object* x_681; lean_object* x_682; lean_object* x_683; -x_681 = lean_ctor_get(x_679, 0); -x_682 = lean_ctor_get(x_679, 1); -lean_inc(x_682); -lean_inc(x_681); -lean_dec(x_679); -x_683 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_683, 0, x_681); -lean_ctor_set(x_683, 1, x_682); -return x_683; +lean_object* x_647; lean_object* x_648; lean_object* x_649; +x_647 = lean_ctor_get(x_645, 0); +x_648 = lean_ctor_get(x_645, 1); +lean_inc(x_648); +lean_inc(x_647); +lean_dec(x_645); +x_649 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_649, 0, x_647); +lean_ctor_set(x_649, 1, x_648); +return x_649; } } else { -lean_object* x_684; uint8_t x_685; +lean_object* x_650; uint8_t x_651; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_684 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_649); -x_685 = !lean_is_exclusive(x_684); -if (x_685 == 0) +x_650 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_615); +x_651 = !lean_is_exclusive(x_650); +if (x_651 == 0) { -return x_684; +return x_650; } else { -lean_object* x_686; lean_object* x_687; lean_object* x_688; -x_686 = lean_ctor_get(x_684, 0); -x_687 = lean_ctor_get(x_684, 1); -lean_inc(x_687); -lean_inc(x_686); +lean_object* x_652; lean_object* x_653; lean_object* x_654; +x_652 = lean_ctor_get(x_650, 0); +x_653 = lean_ctor_get(x_650, 1); +lean_inc(x_653); +lean_inc(x_652); +lean_dec(x_650); +x_654 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_654, 0, x_652); +lean_ctor_set(x_654, 1, x_653); +return x_654; +} +} +} +} +else +{ +lean_object* x_655; lean_object* x_656; +x_655 = l_Lean_Syntax_getArg(x_501, x_243); +lean_dec(x_501); +x_656 = l___private_Lean_Elab_Match_2__expandSimpleMatchWithType(x_1, x_242, x_603, x_346, x_655, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_656; +} +} +} +} +} +} +} +} +} +block_914: +{ +if (x_682 == 0) +{ +if (x_681 == 0) +{ +uint8_t x_683; +lean_dec(x_399); +x_683 = 0; +x_400 = x_683; +goto block_679; +} +else +{ +lean_object* x_684; lean_object* x_685; uint8_t x_686; +x_684 = l_Lean_Syntax_getArgs(x_399); +lean_dec(x_399); +x_685 = lean_array_get_size(x_684); lean_dec(x_684); -x_688 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_688, 0, x_686); -lean_ctor_set(x_688, 1, x_687); -return x_688; -} -} +x_686 = lean_nat_dec_eq(x_685, x_87); +lean_dec(x_685); +x_400 = x_686; +goto block_679; } } else { -lean_object* x_689; uint8_t x_690; lean_object* x_852; uint8_t x_853; -x_689 = l_Lean_Syntax_getArg(x_638, x_139); -lean_dec(x_638); -x_852 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -lean_inc(x_689); -x_853 = l_Lean_Syntax_isOfKind(x_689, x_852); -if (x_853 == 0) +lean_object* x_687; uint8_t x_688; uint8_t x_909; +lean_dec(x_399); +x_687 = l_Lean_Syntax_getArg(x_348, x_87); +lean_dec(x_348); +lean_inc(x_687); +x_909 = l_Lean_Syntax_isOfKind(x_687, x_680); +if (x_909 == 0) { -uint8_t x_854; -x_854 = 0; -x_690 = x_854; -goto block_851; +uint8_t x_910; +x_910 = 0; +x_688 = x_910; +goto block_908; } else { -lean_object* x_855; lean_object* x_856; lean_object* x_857; uint8_t x_858; -x_855 = l_Lean_Syntax_getArgs(x_689); -x_856 = lean_array_get_size(x_855); -lean_dec(x_855); -x_857 = lean_unsigned_to_nat(3u); -x_858 = lean_nat_dec_eq(x_856, x_857); -lean_dec(x_856); -x_690 = x_858; -goto block_851; +lean_object* x_911; lean_object* x_912; uint8_t x_913; +x_911 = l_Lean_Syntax_getArgs(x_687); +x_912 = lean_array_get_size(x_911); +lean_dec(x_911); +x_913 = lean_nat_dec_eq(x_912, x_87); +lean_dec(x_912); +x_688 = x_913; +goto block_908; } -block_851: +block_908: { -if (x_690 == 0) +if (x_688 == 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_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_dec(x_689); +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; lean_object* x_703; lean_object* x_704; +lean_dec(x_687); lean_dec(x_346); lean_dec(x_242); -x_691 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_692 = lean_ctor_get(x_691, 0); -lean_inc(x_692); -x_693 = lean_ctor_get(x_691, 1); +x_689 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_690 = lean_ctor_get(x_689, 0); +lean_inc(x_690); +x_691 = lean_ctor_get(x_689, 1); +lean_inc(x_691); +lean_dec(x_689); +x_692 = lean_st_ref_get(x_8, x_691); +x_693 = lean_ctor_get(x_692, 0); lean_inc(x_693); -lean_dec(x_691); -x_694 = lean_st_ref_get(x_8, x_693); -x_695 = lean_ctor_get(x_694, 0); +x_694 = lean_ctor_get(x_692, 1); +lean_inc(x_694); +lean_dec(x_692); +x_695 = lean_ctor_get(x_693, 0); lean_inc(x_695); -x_696 = lean_ctor_get(x_694, 1); -lean_inc(x_696); -lean_dec(x_694); -x_697 = lean_ctor_get(x_695, 0); +lean_dec(x_693); +x_696 = lean_st_ref_get(x_4, x_694); +x_697 = lean_ctor_get(x_696, 0); lean_inc(x_697); -lean_dec(x_695); -x_698 = lean_st_ref_get(x_4, x_696); -x_699 = lean_ctor_get(x_698, 0); +x_698 = lean_ctor_get(x_696, 1); +lean_inc(x_698); +lean_dec(x_696); +x_699 = lean_ctor_get(x_697, 5); lean_inc(x_699); -x_700 = lean_ctor_get(x_698, 1); +lean_dec(x_697); +x_700 = lean_ctor_get(x_7, 1); lean_inc(x_700); -lean_dec(x_698); -x_701 = lean_ctor_get(x_699, 5); +x_701 = lean_ctor_get(x_7, 2); lean_inc(x_701); -lean_dec(x_699); -x_702 = lean_ctor_get(x_7, 1); -lean_inc(x_702); -x_703 = lean_ctor_get(x_7, 2); -lean_inc(x_703); -x_704 = lean_environment_main_module(x_697); -x_705 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_705, 0, x_704); -lean_ctor_set(x_705, 1, x_692); -lean_ctor_set(x_705, 2, x_702); -lean_ctor_set(x_705, 3, x_703); +x_702 = lean_environment_main_module(x_695); +x_703 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_703, 0, x_702); +lean_ctor_set(x_703, 1, x_690); +lean_ctor_set(x_703, 2, x_700); +lean_ctor_set(x_703, 3, x_701); lean_inc(x_1); -x_706 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_705, x_701); -if (lean_obj_tag(x_706) == 0) +x_704 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_703, x_699); +if (lean_obj_tag(x_704) == 0) { -lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; uint8_t x_712; -x_707 = lean_ctor_get(x_706, 0); -lean_inc(x_707); -x_708 = lean_ctor_get(x_706, 1); +lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; uint8_t x_710; +x_705 = lean_ctor_get(x_704, 0); +lean_inc(x_705); +x_706 = lean_ctor_get(x_704, 1); +lean_inc(x_706); +lean_dec(x_704); +x_707 = lean_st_ref_take(x_4, x_698); +x_708 = lean_ctor_get(x_707, 0); lean_inc(x_708); -lean_dec(x_706); -x_709 = lean_st_ref_take(x_4, x_700); -x_710 = lean_ctor_get(x_709, 0); -lean_inc(x_710); -x_711 = lean_ctor_get(x_709, 1); -lean_inc(x_711); -lean_dec(x_709); -x_712 = !lean_is_exclusive(x_710); -if (x_712 == 0) +x_709 = lean_ctor_get(x_707, 1); +lean_inc(x_709); +lean_dec(x_707); +x_710 = !lean_is_exclusive(x_708); +if (x_710 == 0) { -lean_object* x_713; lean_object* x_714; lean_object* x_715; -x_713 = lean_ctor_get(x_710, 5); -lean_dec(x_713); -lean_ctor_set(x_710, 5, x_708); -x_714 = lean_st_ref_set(x_4, x_710, x_711); -x_715 = lean_ctor_get(x_714, 1); -lean_inc(x_715); -lean_dec(x_714); -x_10 = x_707; -x_11 = x_715; +lean_object* x_711; lean_object* x_712; lean_object* x_713; +x_711 = lean_ctor_get(x_708, 5); +lean_dec(x_711); +lean_ctor_set(x_708, 5, x_706); +x_712 = lean_st_ref_set(x_4, x_708, x_709); +x_713 = lean_ctor_get(x_712, 1); +lean_inc(x_713); +lean_dec(x_712); +x_10 = x_705; +x_11 = x_713; goto block_36; } else { -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_object* x_724; -x_716 = lean_ctor_get(x_710, 0); -x_717 = lean_ctor_get(x_710, 1); -x_718 = lean_ctor_get(x_710, 2); -x_719 = lean_ctor_get(x_710, 3); -x_720 = lean_ctor_get(x_710, 4); -x_721 = lean_ctor_get(x_710, 6); -lean_inc(x_721); -lean_inc(x_720); +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; +x_714 = lean_ctor_get(x_708, 0); +x_715 = lean_ctor_get(x_708, 1); +x_716 = lean_ctor_get(x_708, 2); +x_717 = lean_ctor_get(x_708, 3); +x_718 = lean_ctor_get(x_708, 4); +x_719 = lean_ctor_get(x_708, 6); lean_inc(x_719); lean_inc(x_718); lean_inc(x_717); lean_inc(x_716); -lean_dec(x_710); -x_722 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_722, 0, x_716); -lean_ctor_set(x_722, 1, x_717); -lean_ctor_set(x_722, 2, x_718); -lean_ctor_set(x_722, 3, x_719); -lean_ctor_set(x_722, 4, x_720); -lean_ctor_set(x_722, 5, x_708); -lean_ctor_set(x_722, 6, x_721); -x_723 = lean_st_ref_set(x_4, x_722, x_711); -x_724 = lean_ctor_get(x_723, 1); -lean_inc(x_724); -lean_dec(x_723); -x_10 = x_707; -x_11 = x_724; +lean_inc(x_715); +lean_inc(x_714); +lean_dec(x_708); +x_720 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_720, 0, x_714); +lean_ctor_set(x_720, 1, x_715); +lean_ctor_set(x_720, 2, x_716); +lean_ctor_set(x_720, 3, x_717); +lean_ctor_set(x_720, 4, x_718); +lean_ctor_set(x_720, 5, x_706); +lean_ctor_set(x_720, 6, x_719); +x_721 = lean_st_ref_set(x_4, x_720, x_709); +x_722 = lean_ctor_get(x_721, 1); +lean_inc(x_722); +lean_dec(x_721); +x_10 = x_705; +x_11 = x_722; goto block_36; } } else { -lean_object* x_725; +lean_object* x_723; lean_dec(x_2); lean_dec(x_1); -x_725 = lean_ctor_get(x_706, 0); -lean_inc(x_725); -lean_dec(x_706); -if (lean_obj_tag(x_725) == 0) +x_723 = lean_ctor_get(x_704, 0); +lean_inc(x_723); +lean_dec(x_704); +if (lean_obj_tag(x_723) == 0) { -lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; uint8_t x_731; -x_726 = lean_ctor_get(x_725, 0); -lean_inc(x_726); -x_727 = lean_ctor_get(x_725, 1); -lean_inc(x_727); -lean_dec(x_725); -x_728 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_728, 0, x_727); -x_729 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_729, 0, x_728); -x_730 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_726, x_729, x_3, x_4, x_5, x_6, x_7, x_8, x_700); +lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; uint8_t x_729; +x_724 = lean_ctor_get(x_723, 0); +lean_inc(x_724); +x_725 = lean_ctor_get(x_723, 1); +lean_inc(x_725); +lean_dec(x_723); +x_726 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_726, 0, x_725); +x_727 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_727, 0, x_726); +x_728 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_724, x_727, x_3, x_4, x_5, x_6, x_7, x_8, x_698); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_726); -x_731 = !lean_is_exclusive(x_730); -if (x_731 == 0) +lean_dec(x_724); +x_729 = !lean_is_exclusive(x_728); +if (x_729 == 0) { -return x_730; +return x_728; } else { -lean_object* x_732; lean_object* x_733; lean_object* x_734; -x_732 = lean_ctor_get(x_730, 0); -x_733 = lean_ctor_get(x_730, 1); -lean_inc(x_733); -lean_inc(x_732); -lean_dec(x_730); -x_734 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_734, 0, x_732); -lean_ctor_set(x_734, 1, x_733); -return x_734; +lean_object* x_730; lean_object* x_731; lean_object* x_732; +x_730 = lean_ctor_get(x_728, 0); +x_731 = lean_ctor_get(x_728, 1); +lean_inc(x_731); +lean_inc(x_730); +lean_dec(x_728); +x_732 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_732, 0, x_730); +lean_ctor_set(x_732, 1, x_731); +return x_732; } } else { -lean_object* x_735; uint8_t x_736; +lean_object* x_733; uint8_t x_734; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_735 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_700); -x_736 = !lean_is_exclusive(x_735); -if (x_736 == 0) +x_733 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_698); +x_734 = !lean_is_exclusive(x_733); +if (x_734 == 0) { -return x_735; +return x_733; } else { -lean_object* x_737; lean_object* x_738; lean_object* x_739; -x_737 = lean_ctor_get(x_735, 0); -x_738 = lean_ctor_get(x_735, 1); +lean_object* x_735; lean_object* x_736; lean_object* x_737; +x_735 = lean_ctor_get(x_733, 0); +x_736 = lean_ctor_get(x_733, 1); +lean_inc(x_736); +lean_inc(x_735); +lean_dec(x_733); +x_737 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_737, 0, x_735); +lean_ctor_set(x_737, 1, x_736); +return x_737; +} +} +} +} +else +{ +lean_object* x_738; uint8_t x_739; lean_object* x_901; uint8_t x_902; +x_738 = l_Lean_Syntax_getArg(x_687, x_139); +lean_dec(x_687); +x_901 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; lean_inc(x_738); -lean_inc(x_737); -lean_dec(x_735); -x_739 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_739, 0, x_737); -lean_ctor_set(x_739, 1, x_738); -return x_739; -} -} -} +x_902 = l_Lean_Syntax_isOfKind(x_738, x_901); +if (x_902 == 0) +{ +uint8_t x_903; +x_903 = 0; +x_739 = x_903; +goto block_900; } else { -lean_object* x_740; uint8_t x_741; uint8_t x_846; -x_740 = l_Lean_Syntax_getArg(x_689, x_139); -lean_inc(x_740); -x_846 = l_Lean_Syntax_isOfKind(x_740, x_630); -if (x_846 == 0) -{ -uint8_t x_847; -x_847 = 0; -x_741 = x_847; -goto block_845; +lean_object* x_904; lean_object* x_905; lean_object* x_906; uint8_t x_907; +x_904 = l_Lean_Syntax_getArgs(x_738); +x_905 = lean_array_get_size(x_904); +lean_dec(x_904); +x_906 = lean_unsigned_to_nat(3u); +x_907 = lean_nat_dec_eq(x_905, x_906); +lean_dec(x_905); +x_739 = x_907; +goto block_900; } -else +block_900: { -lean_object* x_848; lean_object* x_849; uint8_t x_850; -x_848 = l_Lean_Syntax_getArgs(x_740); -x_849 = lean_array_get_size(x_848); -lean_dec(x_848); -x_850 = lean_nat_dec_eq(x_849, x_87); -lean_dec(x_849); -x_741 = x_850; -goto block_845; -} -block_845: +if (x_739 == 0) { -if (x_741 == 0) -{ -lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; 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_object* x_755; lean_object* x_756; lean_object* x_757; -lean_dec(x_740); -lean_dec(x_689); +lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; 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_object* x_755; +lean_dec(x_738); lean_dec(x_346); lean_dec(x_242); -x_742 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_743 = lean_ctor_get(x_742, 0); -lean_inc(x_743); -x_744 = lean_ctor_get(x_742, 1); +x_740 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_741 = lean_ctor_get(x_740, 0); +lean_inc(x_741); +x_742 = lean_ctor_get(x_740, 1); +lean_inc(x_742); +lean_dec(x_740); +x_743 = lean_st_ref_get(x_8, x_742); +x_744 = lean_ctor_get(x_743, 0); lean_inc(x_744); -lean_dec(x_742); -x_745 = lean_st_ref_get(x_8, x_744); -x_746 = lean_ctor_get(x_745, 0); +x_745 = lean_ctor_get(x_743, 1); +lean_inc(x_745); +lean_dec(x_743); +x_746 = lean_ctor_get(x_744, 0); lean_inc(x_746); -x_747 = lean_ctor_get(x_745, 1); -lean_inc(x_747); -lean_dec(x_745); -x_748 = lean_ctor_get(x_746, 0); +lean_dec(x_744); +x_747 = lean_st_ref_get(x_4, x_745); +x_748 = lean_ctor_get(x_747, 0); lean_inc(x_748); -lean_dec(x_746); -x_749 = lean_st_ref_get(x_4, x_747); -x_750 = lean_ctor_get(x_749, 0); +x_749 = lean_ctor_get(x_747, 1); +lean_inc(x_749); +lean_dec(x_747); +x_750 = lean_ctor_get(x_748, 5); lean_inc(x_750); -x_751 = lean_ctor_get(x_749, 1); +lean_dec(x_748); +x_751 = lean_ctor_get(x_7, 1); lean_inc(x_751); -lean_dec(x_749); -x_752 = lean_ctor_get(x_750, 5); +x_752 = lean_ctor_get(x_7, 2); lean_inc(x_752); -lean_dec(x_750); -x_753 = lean_ctor_get(x_7, 1); -lean_inc(x_753); -x_754 = lean_ctor_get(x_7, 2); -lean_inc(x_754); -x_755 = lean_environment_main_module(x_748); -x_756 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_756, 0, x_755); -lean_ctor_set(x_756, 1, x_743); -lean_ctor_set(x_756, 2, x_753); -lean_ctor_set(x_756, 3, x_754); +x_753 = lean_environment_main_module(x_746); +x_754 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_754, 0, x_753); +lean_ctor_set(x_754, 1, x_741); +lean_ctor_set(x_754, 2, x_751); +lean_ctor_set(x_754, 3, x_752); lean_inc(x_1); -x_757 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_756, x_752); -if (lean_obj_tag(x_757) == 0) +x_755 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_754, x_750); +if (lean_obj_tag(x_755) == 0) { -lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; uint8_t x_763; -x_758 = lean_ctor_get(x_757, 0); -lean_inc(x_758); -x_759 = lean_ctor_get(x_757, 1); +lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; uint8_t x_761; +x_756 = lean_ctor_get(x_755, 0); +lean_inc(x_756); +x_757 = lean_ctor_get(x_755, 1); +lean_inc(x_757); +lean_dec(x_755); +x_758 = lean_st_ref_take(x_4, x_749); +x_759 = lean_ctor_get(x_758, 0); lean_inc(x_759); -lean_dec(x_757); -x_760 = lean_st_ref_take(x_4, x_751); -x_761 = lean_ctor_get(x_760, 0); -lean_inc(x_761); -x_762 = lean_ctor_get(x_760, 1); -lean_inc(x_762); -lean_dec(x_760); -x_763 = !lean_is_exclusive(x_761); -if (x_763 == 0) +x_760 = lean_ctor_get(x_758, 1); +lean_inc(x_760); +lean_dec(x_758); +x_761 = !lean_is_exclusive(x_759); +if (x_761 == 0) { -lean_object* x_764; lean_object* x_765; lean_object* x_766; -x_764 = lean_ctor_get(x_761, 5); -lean_dec(x_764); -lean_ctor_set(x_761, 5, x_759); -x_765 = lean_st_ref_set(x_4, x_761, x_762); -x_766 = lean_ctor_get(x_765, 1); -lean_inc(x_766); -lean_dec(x_765); -x_10 = x_758; -x_11 = x_766; +lean_object* x_762; lean_object* x_763; lean_object* x_764; +x_762 = lean_ctor_get(x_759, 5); +lean_dec(x_762); +lean_ctor_set(x_759, 5, x_757); +x_763 = lean_st_ref_set(x_4, x_759, x_760); +x_764 = lean_ctor_get(x_763, 1); +lean_inc(x_764); +lean_dec(x_763); +x_10 = x_756; +x_11 = x_764; goto block_36; } else { -lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; -x_767 = lean_ctor_get(x_761, 0); -x_768 = lean_ctor_get(x_761, 1); -x_769 = lean_ctor_get(x_761, 2); -x_770 = lean_ctor_get(x_761, 3); -x_771 = lean_ctor_get(x_761, 4); -x_772 = lean_ctor_get(x_761, 6); -lean_inc(x_772); -lean_inc(x_771); +lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; +x_765 = lean_ctor_get(x_759, 0); +x_766 = lean_ctor_get(x_759, 1); +x_767 = lean_ctor_get(x_759, 2); +x_768 = lean_ctor_get(x_759, 3); +x_769 = lean_ctor_get(x_759, 4); +x_770 = lean_ctor_get(x_759, 6); lean_inc(x_770); lean_inc(x_769); lean_inc(x_768); lean_inc(x_767); -lean_dec(x_761); -x_773 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_773, 0, x_767); -lean_ctor_set(x_773, 1, x_768); -lean_ctor_set(x_773, 2, x_769); -lean_ctor_set(x_773, 3, x_770); -lean_ctor_set(x_773, 4, x_771); -lean_ctor_set(x_773, 5, x_759); -lean_ctor_set(x_773, 6, x_772); -x_774 = lean_st_ref_set(x_4, x_773, x_762); -x_775 = lean_ctor_get(x_774, 1); -lean_inc(x_775); -lean_dec(x_774); -x_10 = x_758; -x_11 = x_775; +lean_inc(x_766); +lean_inc(x_765); +lean_dec(x_759); +x_771 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_771, 0, x_765); +lean_ctor_set(x_771, 1, x_766); +lean_ctor_set(x_771, 2, x_767); +lean_ctor_set(x_771, 3, x_768); +lean_ctor_set(x_771, 4, x_769); +lean_ctor_set(x_771, 5, x_757); +lean_ctor_set(x_771, 6, x_770); +x_772 = lean_st_ref_set(x_4, x_771, x_760); +x_773 = lean_ctor_get(x_772, 1); +lean_inc(x_773); +lean_dec(x_772); +x_10 = x_756; +x_11 = x_773; goto block_36; } } else { -lean_object* x_776; +lean_object* x_774; lean_dec(x_2); lean_dec(x_1); -x_776 = lean_ctor_get(x_757, 0); -lean_inc(x_776); -lean_dec(x_757); -if (lean_obj_tag(x_776) == 0) +x_774 = lean_ctor_get(x_755, 0); +lean_inc(x_774); +lean_dec(x_755); +if (lean_obj_tag(x_774) == 0) { -lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; uint8_t x_782; -x_777 = lean_ctor_get(x_776, 0); -lean_inc(x_777); -x_778 = lean_ctor_get(x_776, 1); -lean_inc(x_778); -lean_dec(x_776); -x_779 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_779, 0, x_778); -x_780 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_780, 0, x_779); -x_781 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_777, x_780, x_3, x_4, x_5, x_6, x_7, x_8, x_751); +lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; uint8_t x_780; +x_775 = lean_ctor_get(x_774, 0); +lean_inc(x_775); +x_776 = lean_ctor_get(x_774, 1); +lean_inc(x_776); +lean_dec(x_774); +x_777 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_777, 0, x_776); +x_778 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_778, 0, x_777); +x_779 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_775, x_778, x_3, x_4, x_5, x_6, x_7, x_8, x_749); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_777); -x_782 = !lean_is_exclusive(x_781); -if (x_782 == 0) +lean_dec(x_775); +x_780 = !lean_is_exclusive(x_779); +if (x_780 == 0) { -return x_781; +return x_779; } else { -lean_object* x_783; lean_object* x_784; lean_object* x_785; -x_783 = lean_ctor_get(x_781, 0); -x_784 = lean_ctor_get(x_781, 1); -lean_inc(x_784); -lean_inc(x_783); -lean_dec(x_781); -x_785 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_785, 0, x_783); -lean_ctor_set(x_785, 1, x_784); -return x_785; +lean_object* x_781; lean_object* x_782; lean_object* x_783; +x_781 = lean_ctor_get(x_779, 0); +x_782 = lean_ctor_get(x_779, 1); +lean_inc(x_782); +lean_inc(x_781); +lean_dec(x_779); +x_783 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_783, 0, x_781); +lean_ctor_set(x_783, 1, x_782); +return x_783; } } else { -lean_object* x_786; uint8_t x_787; +lean_object* x_784; uint8_t x_785; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_786 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_751); -x_787 = !lean_is_exclusive(x_786); -if (x_787 == 0) +x_784 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_749); +x_785 = !lean_is_exclusive(x_784); +if (x_785 == 0) { -return x_786; +return x_784; } else { -lean_object* x_788; lean_object* x_789; lean_object* x_790; -x_788 = lean_ctor_get(x_786, 0); -x_789 = lean_ctor_get(x_786, 1); +lean_object* x_786; lean_object* x_787; lean_object* x_788; +x_786 = lean_ctor_get(x_784, 0); +x_787 = lean_ctor_get(x_784, 1); +lean_inc(x_787); +lean_inc(x_786); +lean_dec(x_784); +x_788 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_788, 0, x_786); +lean_ctor_set(x_788, 1, x_787); +return x_788; +} +} +} +} +else +{ +lean_object* x_789; uint8_t x_790; uint8_t x_895; +x_789 = l_Lean_Syntax_getArg(x_738, x_139); lean_inc(x_789); -lean_inc(x_788); -lean_dec(x_786); -x_790 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_790, 0, x_788); -lean_ctor_set(x_790, 1, x_789); -return x_790; -} -} -} +x_895 = l_Lean_Syntax_isOfKind(x_789, x_680); +if (x_895 == 0) +{ +uint8_t x_896; +x_896 = 0; +x_790 = x_896; +goto block_894; } else { -lean_object* x_791; lean_object* x_792; uint8_t x_793; -x_791 = l_Lean_Syntax_getArg(x_740, x_139); -lean_dec(x_740); -x_792 = l_Lean_identKind___closed__2; -lean_inc(x_791); -x_793 = l_Lean_Syntax_isOfKind(x_791, x_792); -if (x_793 == 0) +lean_object* x_897; lean_object* x_898; uint8_t x_899; +x_897 = l_Lean_Syntax_getArgs(x_789); +x_898 = lean_array_get_size(x_897); +lean_dec(x_897); +x_899 = lean_nat_dec_eq(x_898, x_87); +lean_dec(x_898); +x_790 = x_899; +goto block_894; +} +block_894: { -lean_object* x_794; 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; -lean_dec(x_791); -lean_dec(x_689); +if (x_790 == 0) +{ +lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; 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_dec(x_789); +lean_dec(x_738); lean_dec(x_346); lean_dec(x_242); -x_794 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_791 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_792 = lean_ctor_get(x_791, 0); +lean_inc(x_792); +x_793 = lean_ctor_get(x_791, 1); +lean_inc(x_793); +lean_dec(x_791); +x_794 = lean_st_ref_get(x_8, x_793); x_795 = lean_ctor_get(x_794, 0); lean_inc(x_795); x_796 = lean_ctor_get(x_794, 1); lean_inc(x_796); lean_dec(x_794); -x_797 = lean_st_ref_get(x_8, x_796); -x_798 = lean_ctor_get(x_797, 0); -lean_inc(x_798); -x_799 = lean_ctor_get(x_797, 1); +x_797 = lean_ctor_get(x_795, 0); +lean_inc(x_797); +lean_dec(x_795); +x_798 = lean_st_ref_get(x_4, x_796); +x_799 = lean_ctor_get(x_798, 0); lean_inc(x_799); -lean_dec(x_797); -x_800 = lean_ctor_get(x_798, 0); +x_800 = lean_ctor_get(x_798, 1); lean_inc(x_800); lean_dec(x_798); -x_801 = lean_st_ref_get(x_4, x_799); -x_802 = lean_ctor_get(x_801, 0); +x_801 = lean_ctor_get(x_799, 5); +lean_inc(x_801); +lean_dec(x_799); +x_802 = lean_ctor_get(x_7, 1); lean_inc(x_802); -x_803 = lean_ctor_get(x_801, 1); +x_803 = lean_ctor_get(x_7, 2); lean_inc(x_803); -lean_dec(x_801); -x_804 = lean_ctor_get(x_802, 5); -lean_inc(x_804); -lean_dec(x_802); -x_805 = lean_ctor_get(x_7, 1); -lean_inc(x_805); -x_806 = lean_ctor_get(x_7, 2); -lean_inc(x_806); -x_807 = lean_environment_main_module(x_800); -x_808 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_808, 0, x_807); -lean_ctor_set(x_808, 1, x_795); -lean_ctor_set(x_808, 2, x_805); -lean_ctor_set(x_808, 3, x_806); +x_804 = lean_environment_main_module(x_797); +x_805 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_805, 0, x_804); +lean_ctor_set(x_805, 1, x_792); +lean_ctor_set(x_805, 2, x_802); +lean_ctor_set(x_805, 3, x_803); lean_inc(x_1); -x_809 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_808, x_804); -if (lean_obj_tag(x_809) == 0) +x_806 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_805, x_801); +if (lean_obj_tag(x_806) == 0) { -lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; uint8_t x_815; +lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; uint8_t x_812; +x_807 = lean_ctor_get(x_806, 0); +lean_inc(x_807); +x_808 = lean_ctor_get(x_806, 1); +lean_inc(x_808); +lean_dec(x_806); +x_809 = lean_st_ref_take(x_4, x_800); x_810 = lean_ctor_get(x_809, 0); lean_inc(x_810); x_811 = lean_ctor_get(x_809, 1); lean_inc(x_811); lean_dec(x_809); -x_812 = lean_st_ref_take(x_4, x_803); -x_813 = lean_ctor_get(x_812, 0); -lean_inc(x_813); -x_814 = lean_ctor_get(x_812, 1); -lean_inc(x_814); -lean_dec(x_812); -x_815 = !lean_is_exclusive(x_813); -if (x_815 == 0) +x_812 = !lean_is_exclusive(x_810); +if (x_812 == 0) { -lean_object* x_816; lean_object* x_817; lean_object* x_818; -x_816 = lean_ctor_get(x_813, 5); -lean_dec(x_816); -lean_ctor_set(x_813, 5, x_811); -x_817 = lean_st_ref_set(x_4, x_813, x_814); -x_818 = lean_ctor_get(x_817, 1); -lean_inc(x_818); -lean_dec(x_817); -x_10 = x_810; -x_11 = x_818; +lean_object* x_813; lean_object* x_814; lean_object* x_815; +x_813 = lean_ctor_get(x_810, 5); +lean_dec(x_813); +lean_ctor_set(x_810, 5, x_808); +x_814 = lean_st_ref_set(x_4, x_810, x_811); +x_815 = lean_ctor_get(x_814, 1); +lean_inc(x_815); +lean_dec(x_814); +x_10 = x_807; +x_11 = x_815; goto block_36; } else { -lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; -x_819 = lean_ctor_get(x_813, 0); -x_820 = lean_ctor_get(x_813, 1); -x_821 = lean_ctor_get(x_813, 2); -x_822 = lean_ctor_get(x_813, 3); -x_823 = lean_ctor_get(x_813, 4); -x_824 = lean_ctor_get(x_813, 6); -lean_inc(x_824); -lean_inc(x_823); -lean_inc(x_822); +lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; +x_816 = lean_ctor_get(x_810, 0); +x_817 = lean_ctor_get(x_810, 1); +x_818 = lean_ctor_get(x_810, 2); +x_819 = lean_ctor_get(x_810, 3); +x_820 = lean_ctor_get(x_810, 4); +x_821 = lean_ctor_get(x_810, 6); lean_inc(x_821); lean_inc(x_820); lean_inc(x_819); -lean_dec(x_813); -x_825 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_825, 0, x_819); -lean_ctor_set(x_825, 1, x_820); -lean_ctor_set(x_825, 2, x_821); -lean_ctor_set(x_825, 3, x_822); -lean_ctor_set(x_825, 4, x_823); -lean_ctor_set(x_825, 5, x_811); -lean_ctor_set(x_825, 6, x_824); -x_826 = lean_st_ref_set(x_4, x_825, x_814); -x_827 = lean_ctor_get(x_826, 1); +lean_inc(x_818); +lean_inc(x_817); +lean_inc(x_816); +lean_dec(x_810); +x_822 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_822, 0, x_816); +lean_ctor_set(x_822, 1, x_817); +lean_ctor_set(x_822, 2, x_818); +lean_ctor_set(x_822, 3, x_819); +lean_ctor_set(x_822, 4, x_820); +lean_ctor_set(x_822, 5, x_808); +lean_ctor_set(x_822, 6, x_821); +x_823 = lean_st_ref_set(x_4, x_822, x_811); +x_824 = lean_ctor_get(x_823, 1); +lean_inc(x_824); +lean_dec(x_823); +x_10 = x_807; +x_11 = x_824; +goto block_36; +} +} +else +{ +lean_object* x_825; +lean_dec(x_2); +lean_dec(x_1); +x_825 = lean_ctor_get(x_806, 0); +lean_inc(x_825); +lean_dec(x_806); +if (lean_obj_tag(x_825) == 0) +{ +lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; uint8_t x_831; +x_826 = lean_ctor_get(x_825, 0); +lean_inc(x_826); +x_827 = lean_ctor_get(x_825, 1); lean_inc(x_827); +lean_dec(x_825); +x_828 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_828, 0, x_827); +x_829 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_829, 0, x_828); +x_830 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_826, x_829, x_3, x_4, x_5, x_6, x_7, x_8, x_800); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); lean_dec(x_826); -x_10 = x_810; -x_11 = x_827; -goto block_36; +x_831 = !lean_is_exclusive(x_830); +if (x_831 == 0) +{ +return x_830; +} +else +{ +lean_object* x_832; lean_object* x_833; lean_object* x_834; +x_832 = lean_ctor_get(x_830, 0); +x_833 = lean_ctor_get(x_830, 1); +lean_inc(x_833); +lean_inc(x_832); +lean_dec(x_830); +x_834 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_834, 0, x_832); +lean_ctor_set(x_834, 1, x_833); +return x_834; } } else { -lean_object* x_828; -lean_dec(x_2); -lean_dec(x_1); -x_828 = lean_ctor_get(x_809, 0); -lean_inc(x_828); -lean_dec(x_809); -if (lean_obj_tag(x_828) == 0) -{ -lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; uint8_t x_834; -x_829 = lean_ctor_get(x_828, 0); -lean_inc(x_829); -x_830 = lean_ctor_get(x_828, 1); -lean_inc(x_830); -lean_dec(x_828); -x_831 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_831, 0, x_830); -x_832 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_832, 0, x_831); -x_833 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_829, x_832, x_3, x_4, x_5, x_6, x_7, x_8, x_803); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_829); -x_834 = !lean_is_exclusive(x_833); -if (x_834 == 0) -{ -return x_833; -} -else -{ -lean_object* x_835; lean_object* x_836; lean_object* x_837; -x_835 = lean_ctor_get(x_833, 0); -x_836 = lean_ctor_get(x_833, 1); -lean_inc(x_836); -lean_inc(x_835); -lean_dec(x_833); -x_837 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_837, 0, x_835); -lean_ctor_set(x_837, 1, x_836); -return x_837; -} -} -else -{ -lean_object* x_838; uint8_t x_839; +lean_object* x_835; uint8_t x_836; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_838 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_803); -x_839 = !lean_is_exclusive(x_838); -if (x_839 == 0) +x_835 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_800); +x_836 = !lean_is_exclusive(x_835); +if (x_836 == 0) { -return x_838; +return x_835; } else { -lean_object* x_840; lean_object* x_841; lean_object* x_842; -x_840 = lean_ctor_get(x_838, 0); -x_841 = lean_ctor_get(x_838, 1); -lean_inc(x_841); +lean_object* x_837; lean_object* x_838; lean_object* x_839; +x_837 = lean_ctor_get(x_835, 0); +x_838 = lean_ctor_get(x_835, 1); +lean_inc(x_838); +lean_inc(x_837); +lean_dec(x_835); +x_839 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_839, 0, x_837); +lean_ctor_set(x_839, 1, x_838); +return x_839; +} +} +} +} +else +{ +lean_object* x_840; lean_object* x_841; uint8_t x_842; +x_840 = l_Lean_Syntax_getArg(x_789, x_139); +lean_dec(x_789); +x_841 = l_Lean_identKind___closed__2; lean_inc(x_840); -lean_dec(x_838); -x_842 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_842, 0, x_840); -lean_ctor_set(x_842, 1, x_841); -return x_842; -} -} -} -} -else +x_842 = l_Lean_Syntax_isOfKind(x_840, x_841); +if (x_842 == 0) { -lean_object* x_843; lean_object* x_844; -x_843 = l_Lean_Syntax_getArg(x_689, x_243); -lean_dec(x_689); -x_844 = l___private_Lean_Elab_Match_2__expandSimpleMatchWithType(x_1, x_242, x_791, x_346, x_843, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_844; -} -} -} -} -} -} -} -} -} -} -} -} -} -block_1405: -{ -if (x_880 == 0) -{ -if (x_879 == 0) -{ -uint8_t x_881; -x_881 = 0; -x_245 = x_881; -goto block_877; -} -else -{ -lean_object* x_882; lean_object* x_883; uint8_t x_884; -x_882 = l_Lean_Syntax_getArgs(x_244); -x_883 = lean_array_get_size(x_882); -lean_dec(x_882); -x_884 = lean_nat_dec_eq(x_883, x_87); -lean_dec(x_883); -x_245 = x_884; -goto block_877; -} -} -else -{ -lean_object* x_885; lean_object* x_886; uint8_t x_887; uint8_t x_1166; uint8_t x_1167; -lean_dec(x_244); -x_885 = lean_unsigned_to_nat(4u); -x_886 = l_Lean_Syntax_getArg(x_1, x_885); -lean_inc(x_886); -x_1166 = l_Lean_Syntax_isOfKind(x_886, x_878); -if (x_1166 == 0) -{ -uint8_t x_1401; -x_1401 = 0; -x_1167 = x_1401; -goto block_1400; -} -else -{ -lean_object* x_1402; lean_object* x_1403; uint8_t x_1404; -x_1402 = l_Lean_Syntax_getArgs(x_886); -x_1403 = lean_array_get_size(x_1402); -lean_dec(x_1402); -x_1404 = lean_nat_dec_eq(x_1403, x_139); -lean_dec(x_1403); -x_1167 = x_1404; -goto block_1400; -} -block_1165: -{ -if (x_887 == 0) -{ -lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; +lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; +lean_dec(x_840); +lean_dec(x_738); +lean_dec(x_346); lean_dec(x_242); -x_888 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_889 = lean_ctor_get(x_888, 0); -lean_inc(x_889); -x_890 = lean_ctor_get(x_888, 1); -lean_inc(x_890); -lean_dec(x_888); -x_891 = lean_st_ref_get(x_8, x_890); -x_892 = lean_ctor_get(x_891, 0); -lean_inc(x_892); -x_893 = lean_ctor_get(x_891, 1); -lean_inc(x_893); -lean_dec(x_891); -x_894 = lean_ctor_get(x_892, 0); -lean_inc(x_894); -lean_dec(x_892); -x_895 = lean_st_ref_get(x_4, x_893); -x_896 = lean_ctor_get(x_895, 0); -lean_inc(x_896); -x_897 = lean_ctor_get(x_895, 1); -lean_inc(x_897); -lean_dec(x_895); -x_898 = lean_ctor_get(x_896, 5); -lean_inc(x_898); -lean_dec(x_896); -x_899 = lean_ctor_get(x_7, 1); -lean_inc(x_899); -x_900 = lean_ctor_get(x_7, 2); -lean_inc(x_900); -x_901 = lean_environment_main_module(x_894); -x_902 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_902, 0, x_901); -lean_ctor_set(x_902, 1, x_889); -lean_ctor_set(x_902, 2, x_899); -lean_ctor_set(x_902, 3, x_900); +x_843 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_844 = lean_ctor_get(x_843, 0); +lean_inc(x_844); +x_845 = lean_ctor_get(x_843, 1); +lean_inc(x_845); +lean_dec(x_843); +x_846 = lean_st_ref_get(x_8, x_845); +x_847 = lean_ctor_get(x_846, 0); +lean_inc(x_847); +x_848 = lean_ctor_get(x_846, 1); +lean_inc(x_848); +lean_dec(x_846); +x_849 = lean_ctor_get(x_847, 0); +lean_inc(x_849); +lean_dec(x_847); +x_850 = lean_st_ref_get(x_4, x_848); +x_851 = lean_ctor_get(x_850, 0); +lean_inc(x_851); +x_852 = lean_ctor_get(x_850, 1); +lean_inc(x_852); +lean_dec(x_850); +x_853 = lean_ctor_get(x_851, 5); +lean_inc(x_853); +lean_dec(x_851); +x_854 = lean_ctor_get(x_7, 1); +lean_inc(x_854); +x_855 = lean_ctor_get(x_7, 2); +lean_inc(x_855); +x_856 = lean_environment_main_module(x_849); +x_857 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_857, 0, x_856); +lean_ctor_set(x_857, 1, x_844); +lean_ctor_set(x_857, 2, x_854); +lean_ctor_set(x_857, 3, x_855); lean_inc(x_1); -x_903 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_902, x_898); -if (lean_obj_tag(x_903) == 0) +x_858 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_857, x_853); +if (lean_obj_tag(x_858) == 0) { -lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; uint8_t x_909; -x_904 = lean_ctor_get(x_903, 0); -lean_inc(x_904); -x_905 = lean_ctor_get(x_903, 1); -lean_inc(x_905); -lean_dec(x_903); -x_906 = lean_st_ref_take(x_4, x_897); -x_907 = lean_ctor_get(x_906, 0); -lean_inc(x_907); -x_908 = lean_ctor_get(x_906, 1); -lean_inc(x_908); -lean_dec(x_906); -x_909 = !lean_is_exclusive(x_907); -if (x_909 == 0) +lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; uint8_t x_864; +x_859 = lean_ctor_get(x_858, 0); +lean_inc(x_859); +x_860 = lean_ctor_get(x_858, 1); +lean_inc(x_860); +lean_dec(x_858); +x_861 = lean_st_ref_take(x_4, x_852); +x_862 = lean_ctor_get(x_861, 0); +lean_inc(x_862); +x_863 = lean_ctor_get(x_861, 1); +lean_inc(x_863); +lean_dec(x_861); +x_864 = !lean_is_exclusive(x_862); +if (x_864 == 0) { -lean_object* x_910; lean_object* x_911; lean_object* x_912; -x_910 = lean_ctor_get(x_907, 5); -lean_dec(x_910); -lean_ctor_set(x_907, 5, x_905); -x_911 = lean_st_ref_set(x_4, x_907, x_908); -x_912 = lean_ctor_get(x_911, 1); -lean_inc(x_912); -lean_dec(x_911); -x_10 = x_904; -x_11 = x_912; +lean_object* x_865; lean_object* x_866; lean_object* x_867; +x_865 = lean_ctor_get(x_862, 5); +lean_dec(x_865); +lean_ctor_set(x_862, 5, x_860); +x_866 = lean_st_ref_set(x_4, x_862, x_863); +x_867 = lean_ctor_get(x_866, 1); +lean_inc(x_867); +lean_dec(x_866); +x_10 = x_859; +x_11 = x_867; goto block_36; } else { -lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; -x_913 = lean_ctor_get(x_907, 0); -x_914 = lean_ctor_get(x_907, 1); -x_915 = lean_ctor_get(x_907, 2); -x_916 = lean_ctor_get(x_907, 3); -x_917 = lean_ctor_get(x_907, 4); -x_918 = lean_ctor_get(x_907, 6); -lean_inc(x_918); -lean_inc(x_917); -lean_inc(x_916); -lean_inc(x_915); -lean_inc(x_914); -lean_inc(x_913); -lean_dec(x_907); -x_919 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_919, 0, x_913); -lean_ctor_set(x_919, 1, x_914); -lean_ctor_set(x_919, 2, x_915); -lean_ctor_set(x_919, 3, x_916); -lean_ctor_set(x_919, 4, x_917); -lean_ctor_set(x_919, 5, x_905); -lean_ctor_set(x_919, 6, x_918); -x_920 = lean_st_ref_set(x_4, x_919, x_908); -x_921 = lean_ctor_get(x_920, 1); -lean_inc(x_921); -lean_dec(x_920); -x_10 = x_904; -x_11 = x_921; +lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; +x_868 = lean_ctor_get(x_862, 0); +x_869 = lean_ctor_get(x_862, 1); +x_870 = lean_ctor_get(x_862, 2); +x_871 = lean_ctor_get(x_862, 3); +x_872 = lean_ctor_get(x_862, 4); +x_873 = lean_ctor_get(x_862, 6); +lean_inc(x_873); +lean_inc(x_872); +lean_inc(x_871); +lean_inc(x_870); +lean_inc(x_869); +lean_inc(x_868); +lean_dec(x_862); +x_874 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_874, 0, x_868); +lean_ctor_set(x_874, 1, x_869); +lean_ctor_set(x_874, 2, x_870); +lean_ctor_set(x_874, 3, x_871); +lean_ctor_set(x_874, 4, x_872); +lean_ctor_set(x_874, 5, x_860); +lean_ctor_set(x_874, 6, x_873); +x_875 = lean_st_ref_set(x_4, x_874, x_863); +x_876 = lean_ctor_get(x_875, 1); +lean_inc(x_876); +lean_dec(x_875); +x_10 = x_859; +x_11 = x_876; goto block_36; } } else { -lean_object* x_922; +lean_object* x_877; lean_dec(x_2); lean_dec(x_1); -x_922 = lean_ctor_get(x_903, 0); -lean_inc(x_922); -lean_dec(x_903); -if (lean_obj_tag(x_922) == 0) +x_877 = lean_ctor_get(x_858, 0); +lean_inc(x_877); +lean_dec(x_858); +if (lean_obj_tag(x_877) == 0) { -lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; uint8_t x_928; -x_923 = lean_ctor_get(x_922, 0); -lean_inc(x_923); -x_924 = lean_ctor_get(x_922, 1); -lean_inc(x_924); -lean_dec(x_922); -x_925 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_925, 0, x_924); -x_926 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_926, 0, x_925); -x_927 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_923, x_926, x_3, x_4, x_5, x_6, x_7, x_8, x_897); +lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; uint8_t x_883; +x_878 = lean_ctor_get(x_877, 0); +lean_inc(x_878); +x_879 = lean_ctor_get(x_877, 1); +lean_inc(x_879); +lean_dec(x_877); +x_880 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_880, 0, x_879); +x_881 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_881, 0, x_880); +x_882 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_878, x_881, x_3, x_4, x_5, x_6, x_7, x_8, x_852); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_923); -x_928 = !lean_is_exclusive(x_927); -if (x_928 == 0) +lean_dec(x_878); +x_883 = !lean_is_exclusive(x_882); +if (x_883 == 0) { -return x_927; +return x_882; } else { -lean_object* x_929; lean_object* x_930; lean_object* x_931; -x_929 = lean_ctor_get(x_927, 0); -x_930 = lean_ctor_get(x_927, 1); -lean_inc(x_930); -lean_inc(x_929); -lean_dec(x_927); -x_931 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_931, 0, x_929); -lean_ctor_set(x_931, 1, x_930); -return x_931; +lean_object* x_884; lean_object* x_885; lean_object* x_886; +x_884 = lean_ctor_get(x_882, 0); +x_885 = lean_ctor_get(x_882, 1); +lean_inc(x_885); +lean_inc(x_884); +lean_dec(x_882); +x_886 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_886, 0, x_884); +lean_ctor_set(x_886, 1, x_885); +return x_886; } } else { -lean_object* x_932; uint8_t x_933; +lean_object* x_887; uint8_t x_888; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_932 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_897); -x_933 = !lean_is_exclusive(x_932); -if (x_933 == 0) +x_887 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_852); +x_888 = !lean_is_exclusive(x_887); +if (x_888 == 0) { -return x_932; +return x_887; } else { -lean_object* x_934; lean_object* x_935; lean_object* x_936; -x_934 = lean_ctor_get(x_932, 0); -x_935 = lean_ctor_get(x_932, 1); -lean_inc(x_935); -lean_inc(x_934); -lean_dec(x_932); -x_936 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_936, 0, x_934); -lean_ctor_set(x_936, 1, x_935); -return x_936; +lean_object* x_889; lean_object* x_890; lean_object* x_891; +x_889 = lean_ctor_get(x_887, 0); +x_890 = lean_ctor_get(x_887, 1); +lean_inc(x_890); +lean_inc(x_889); +lean_dec(x_887); +x_891 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_891, 0, x_889); +lean_ctor_set(x_891, 1, x_890); +return x_891; } } } } else { -lean_object* x_937; lean_object* x_938; uint8_t x_939; uint8_t x_1160; -x_937 = lean_unsigned_to_nat(5u); -x_938 = l_Lean_Syntax_getArg(x_1, x_937); -lean_inc(x_938); -x_1160 = l_Lean_Syntax_isOfKind(x_938, x_878); -if (x_1160 == 0) +lean_object* x_892; lean_object* x_893; +x_892 = l_Lean_Syntax_getArg(x_738, x_243); +lean_dec(x_738); +x_893 = l___private_Lean_Elab_Match_2__expandSimpleMatchWithType(x_1, x_242, x_840, x_346, x_892, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_893; +} +} +} +} +} +} +} +} +} +} +} +} +} +} +} +block_1517: { -uint8_t x_1161; -x_1161 = 0; -x_939 = x_1161; -goto block_1159; +if (x_936 == 0) +{ +if (x_935 == 0) +{ +uint8_t x_937; +x_937 = 0; +x_245 = x_937; +goto block_933; } else { -lean_object* x_1162; lean_object* x_1163; uint8_t x_1164; -x_1162 = l_Lean_Syntax_getArgs(x_938); -x_1163 = lean_array_get_size(x_1162); -lean_dec(x_1162); -x_1164 = lean_nat_dec_eq(x_1163, x_87); -lean_dec(x_1163); -x_939 = x_1164; -goto block_1159; -} -block_1159: -{ -if (x_939 == 0) -{ -lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; +lean_object* x_938; lean_object* x_939; uint8_t x_940; +x_938 = l_Lean_Syntax_getArgs(x_244); +x_939 = lean_array_get_size(x_938); lean_dec(x_938); -lean_dec(x_242); -x_940 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_941 = lean_ctor_get(x_940, 0); -lean_inc(x_941); -x_942 = lean_ctor_get(x_940, 1); +x_940 = lean_nat_dec_eq(x_939, x_87); +lean_dec(x_939); +x_245 = x_940; +goto block_933; +} +} +else +{ +lean_object* x_941; lean_object* x_942; uint8_t x_943; lean_object* x_1511; uint8_t x_1512; +lean_dec(x_244); +x_941 = lean_unsigned_to_nat(4u); +x_942 = l_Lean_Syntax_getArg(x_1, x_941); +x_1511 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; lean_inc(x_942); -lean_dec(x_940); -x_943 = lean_st_ref_get(x_8, x_942); -x_944 = lean_ctor_get(x_943, 0); -lean_inc(x_944); -x_945 = lean_ctor_get(x_943, 1); +x_1512 = l_Lean_Syntax_isOfKind(x_942, x_1511); +if (x_1512 == 0) +{ +uint8_t x_1513; +x_1513 = 0; +x_943 = x_1513; +goto block_1510; +} +else +{ +lean_object* x_1514; lean_object* x_1515; uint8_t x_1516; +x_1514 = l_Lean_Syntax_getArgs(x_942); +x_1515 = lean_array_get_size(x_1514); +lean_dec(x_1514); +x_1516 = lean_nat_dec_eq(x_1515, x_243); +lean_dec(x_1515); +x_943 = x_1516; +goto block_1510; +} +block_1510: +{ +if (x_943 == 0) +{ +lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; +lean_dec(x_942); +lean_dec(x_242); +x_944 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_945 = lean_ctor_get(x_944, 0); lean_inc(x_945); -lean_dec(x_943); -x_946 = lean_ctor_get(x_944, 0); +x_946 = lean_ctor_get(x_944, 1); lean_inc(x_946); lean_dec(x_944); -x_947 = lean_st_ref_get(x_4, x_945); +x_947 = lean_st_ref_get(x_8, x_946); x_948 = lean_ctor_get(x_947, 0); lean_inc(x_948); x_949 = lean_ctor_get(x_947, 1); lean_inc(x_949); lean_dec(x_947); -x_950 = lean_ctor_get(x_948, 5); +x_950 = lean_ctor_get(x_948, 0); lean_inc(x_950); lean_dec(x_948); -x_951 = lean_ctor_get(x_7, 1); -lean_inc(x_951); -x_952 = lean_ctor_get(x_7, 2); +x_951 = lean_st_ref_get(x_4, x_949); +x_952 = lean_ctor_get(x_951, 0); lean_inc(x_952); -x_953 = lean_environment_main_module(x_946); -x_954 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_954, 0, x_953); -lean_ctor_set(x_954, 1, x_941); -lean_ctor_set(x_954, 2, x_951); -lean_ctor_set(x_954, 3, x_952); -lean_inc(x_1); -x_955 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_954, x_950); -if (lean_obj_tag(x_955) == 0) -{ -lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; uint8_t x_961; -x_956 = lean_ctor_get(x_955, 0); +x_953 = lean_ctor_get(x_951, 1); +lean_inc(x_953); +lean_dec(x_951); +x_954 = lean_ctor_get(x_952, 5); +lean_inc(x_954); +lean_dec(x_952); +x_955 = lean_ctor_get(x_7, 1); +lean_inc(x_955); +x_956 = lean_ctor_get(x_7, 2); lean_inc(x_956); -x_957 = lean_ctor_get(x_955, 1); -lean_inc(x_957); -lean_dec(x_955); -x_958 = lean_st_ref_take(x_4, x_949); -x_959 = lean_ctor_get(x_958, 0); -lean_inc(x_959); -x_960 = lean_ctor_get(x_958, 1); -lean_inc(x_960); -lean_dec(x_958); -x_961 = !lean_is_exclusive(x_959); -if (x_961 == 0) +x_957 = lean_environment_main_module(x_950); +x_958 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_958, 0, x_957); +lean_ctor_set(x_958, 1, x_945); +lean_ctor_set(x_958, 2, x_955); +lean_ctor_set(x_958, 3, x_956); +lean_inc(x_1); +x_959 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_958, x_954); +if (lean_obj_tag(x_959) == 0) { -lean_object* x_962; lean_object* x_963; lean_object* x_964; -x_962 = lean_ctor_get(x_959, 5); -lean_dec(x_962); -lean_ctor_set(x_959, 5, x_957); -x_963 = lean_st_ref_set(x_4, x_959, x_960); -x_964 = lean_ctor_get(x_963, 1); +lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; uint8_t x_965; +x_960 = lean_ctor_get(x_959, 0); +lean_inc(x_960); +x_961 = lean_ctor_get(x_959, 1); +lean_inc(x_961); +lean_dec(x_959); +x_962 = lean_st_ref_take(x_4, x_953); +x_963 = lean_ctor_get(x_962, 0); +lean_inc(x_963); +x_964 = lean_ctor_get(x_962, 1); lean_inc(x_964); -lean_dec(x_963); -x_10 = x_956; -x_11 = x_964; +lean_dec(x_962); +x_965 = !lean_is_exclusive(x_963); +if (x_965 == 0) +{ +lean_object* x_966; lean_object* x_967; lean_object* x_968; +x_966 = lean_ctor_get(x_963, 5); +lean_dec(x_966); +lean_ctor_set(x_963, 5, x_961); +x_967 = lean_st_ref_set(x_4, x_963, x_964); +x_968 = lean_ctor_get(x_967, 1); +lean_inc(x_968); +lean_dec(x_967); +x_10 = x_960; +x_11 = x_968; goto block_36; } else { -lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; -x_965 = lean_ctor_get(x_959, 0); -x_966 = lean_ctor_get(x_959, 1); -x_967 = lean_ctor_get(x_959, 2); -x_968 = lean_ctor_get(x_959, 3); -x_969 = lean_ctor_get(x_959, 4); -x_970 = lean_ctor_get(x_959, 6); +lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; +x_969 = lean_ctor_get(x_963, 0); +x_970 = lean_ctor_get(x_963, 1); +x_971 = lean_ctor_get(x_963, 2); +x_972 = lean_ctor_get(x_963, 3); +x_973 = lean_ctor_get(x_963, 4); +x_974 = lean_ctor_get(x_963, 6); +lean_inc(x_974); +lean_inc(x_973); +lean_inc(x_972); +lean_inc(x_971); lean_inc(x_970); lean_inc(x_969); -lean_inc(x_968); -lean_inc(x_967); -lean_inc(x_966); -lean_inc(x_965); -lean_dec(x_959); -x_971 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_971, 0, x_965); -lean_ctor_set(x_971, 1, x_966); -lean_ctor_set(x_971, 2, x_967); -lean_ctor_set(x_971, 3, x_968); -lean_ctor_set(x_971, 4, x_969); -lean_ctor_set(x_971, 5, x_957); -lean_ctor_set(x_971, 6, x_970); -x_972 = lean_st_ref_set(x_4, x_971, x_960); -x_973 = lean_ctor_get(x_972, 1); -lean_inc(x_973); -lean_dec(x_972); -x_10 = x_956; -x_11 = x_973; +lean_dec(x_963); +x_975 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_975, 0, x_969); +lean_ctor_set(x_975, 1, x_970); +lean_ctor_set(x_975, 2, x_971); +lean_ctor_set(x_975, 3, x_972); +lean_ctor_set(x_975, 4, x_973); +lean_ctor_set(x_975, 5, x_961); +lean_ctor_set(x_975, 6, x_974); +x_976 = lean_st_ref_set(x_4, x_975, x_964); +x_977 = lean_ctor_get(x_976, 1); +lean_inc(x_977); +lean_dec(x_976); +x_10 = x_960; +x_11 = x_977; goto block_36; } } else { -lean_object* x_974; +lean_object* x_978; lean_dec(x_2); lean_dec(x_1); -x_974 = lean_ctor_get(x_955, 0); -lean_inc(x_974); -lean_dec(x_955); -if (lean_obj_tag(x_974) == 0) +x_978 = lean_ctor_get(x_959, 0); +lean_inc(x_978); +lean_dec(x_959); +if (lean_obj_tag(x_978) == 0) { -lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; uint8_t x_980; -x_975 = lean_ctor_get(x_974, 0); -lean_inc(x_975); -x_976 = lean_ctor_get(x_974, 1); -lean_inc(x_976); -lean_dec(x_974); -x_977 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_977, 0, x_976); -x_978 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_978, 0, x_977); -x_979 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_975, x_978, x_3, x_4, x_5, x_6, x_7, x_8, x_949); +lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; uint8_t x_984; +x_979 = lean_ctor_get(x_978, 0); +lean_inc(x_979); +x_980 = lean_ctor_get(x_978, 1); +lean_inc(x_980); +lean_dec(x_978); +x_981 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_981, 0, x_980); +x_982 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_982, 0, x_981); +x_983 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_979, x_982, x_3, x_4, x_5, x_6, x_7, x_8, x_953); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_975); -x_980 = !lean_is_exclusive(x_979); -if (x_980 == 0) -{ -return x_979; -} -else -{ -lean_object* x_981; lean_object* x_982; lean_object* x_983; -x_981 = lean_ctor_get(x_979, 0); -x_982 = lean_ctor_get(x_979, 1); -lean_inc(x_982); -lean_inc(x_981); lean_dec(x_979); -x_983 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_983, 0, x_981); -lean_ctor_set(x_983, 1, x_982); +x_984 = !lean_is_exclusive(x_983); +if (x_984 == 0) +{ return x_983; } +else +{ +lean_object* x_985; lean_object* x_986; lean_object* x_987; +x_985 = lean_ctor_get(x_983, 0); +x_986 = lean_ctor_get(x_983, 1); +lean_inc(x_986); +lean_inc(x_985); +lean_dec(x_983); +x_987 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_987, 0, x_985); +lean_ctor_set(x_987, 1, x_986); +return x_987; +} } else { -lean_object* x_984; uint8_t x_985; +lean_object* x_988; uint8_t x_989; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_984 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_949); -x_985 = !lean_is_exclusive(x_984); -if (x_985 == 0) +x_988 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_953); +x_989 = !lean_is_exclusive(x_988); +if (x_989 == 0) { -return x_984; -} -else -{ -lean_object* x_986; lean_object* x_987; lean_object* x_988; -x_986 = lean_ctor_get(x_984, 0); -x_987 = lean_ctor_get(x_984, 1); -lean_inc(x_987); -lean_inc(x_986); -lean_dec(x_984); -x_988 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_988, 0, x_986); -lean_ctor_set(x_988, 1, x_987); return x_988; } +else +{ +lean_object* x_990; lean_object* x_991; lean_object* x_992; +x_990 = lean_ctor_get(x_988, 0); +x_991 = lean_ctor_get(x_988, 1); +lean_inc(x_991); +lean_inc(x_990); +lean_dec(x_988); +x_992 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_992, 0, x_990); +lean_ctor_set(x_992, 1, x_991); +return x_992; +} } } } else { -lean_object* x_989; uint8_t x_990; lean_object* x_1152; uint8_t x_1153; -x_989 = l_Lean_Syntax_getArg(x_938, x_139); -lean_dec(x_938); -x_1152 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -lean_inc(x_989); -x_1153 = l_Lean_Syntax_isOfKind(x_989, x_1152); -if (x_1153 == 0) -{ -uint8_t x_1154; -x_1154 = 0; -x_990 = x_1154; -goto block_1151; -} -else -{ -lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; uint8_t x_1158; -x_1155 = l_Lean_Syntax_getArgs(x_989); -x_1156 = lean_array_get_size(x_1155); -lean_dec(x_1155); -x_1157 = lean_unsigned_to_nat(3u); -x_1158 = lean_nat_dec_eq(x_1156, x_1157); -lean_dec(x_1156); -x_990 = x_1158; -goto block_1151; -} -block_1151: -{ -if (x_990 == 0) -{ -lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; -lean_dec(x_989); -lean_dec(x_242); -x_991 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_992 = lean_ctor_get(x_991, 0); -lean_inc(x_992); -x_993 = lean_ctor_get(x_991, 1); +lean_object* x_993; uint8_t x_994; uint8_t x_1272; uint8_t x_1273; +x_993 = l_Lean_Syntax_getArg(x_942, x_139); lean_inc(x_993); -lean_dec(x_991); -x_994 = lean_st_ref_get(x_8, x_993); -x_995 = lean_ctor_get(x_994, 0); -lean_inc(x_995); -x_996 = lean_ctor_get(x_994, 1); +x_1272 = l_Lean_Syntax_isOfKind(x_993, x_934); +if (x_1272 == 0) +{ +uint8_t x_1506; +x_1506 = 0; +x_1273 = x_1506; +goto block_1505; +} +else +{ +lean_object* x_1507; lean_object* x_1508; uint8_t x_1509; +x_1507 = l_Lean_Syntax_getArgs(x_993); +x_1508 = lean_array_get_size(x_1507); +lean_dec(x_1507); +x_1509 = lean_nat_dec_eq(x_1508, x_139); +lean_dec(x_1508); +x_1273 = x_1509; +goto block_1505; +} +block_1271: +{ +if (x_994 == 0) +{ +lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; +lean_dec(x_942); +lean_dec(x_242); +x_995 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_996 = lean_ctor_get(x_995, 0); lean_inc(x_996); -lean_dec(x_994); -x_997 = lean_ctor_get(x_995, 0); +x_997 = lean_ctor_get(x_995, 1); lean_inc(x_997); lean_dec(x_995); -x_998 = lean_st_ref_get(x_4, x_996); +x_998 = lean_st_ref_get(x_8, x_997); x_999 = lean_ctor_get(x_998, 0); lean_inc(x_999); x_1000 = lean_ctor_get(x_998, 1); lean_inc(x_1000); lean_dec(x_998); -x_1001 = lean_ctor_get(x_999, 5); +x_1001 = lean_ctor_get(x_999, 0); lean_inc(x_1001); lean_dec(x_999); -x_1002 = lean_ctor_get(x_7, 1); -lean_inc(x_1002); -x_1003 = lean_ctor_get(x_7, 2); +x_1002 = lean_st_ref_get(x_4, x_1000); +x_1003 = lean_ctor_get(x_1002, 0); lean_inc(x_1003); -x_1004 = lean_environment_main_module(x_997); -x_1005 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_1005, 0, x_1004); -lean_ctor_set(x_1005, 1, x_992); -lean_ctor_set(x_1005, 2, x_1002); -lean_ctor_set(x_1005, 3, x_1003); -lean_inc(x_1); -x_1006 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1005, x_1001); -if (lean_obj_tag(x_1006) == 0) -{ -lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; uint8_t x_1012; -x_1007 = lean_ctor_get(x_1006, 0); +x_1004 = lean_ctor_get(x_1002, 1); +lean_inc(x_1004); +lean_dec(x_1002); +x_1005 = lean_ctor_get(x_1003, 5); +lean_inc(x_1005); +lean_dec(x_1003); +x_1006 = lean_ctor_get(x_7, 1); +lean_inc(x_1006); +x_1007 = lean_ctor_get(x_7, 2); lean_inc(x_1007); -x_1008 = lean_ctor_get(x_1006, 1); -lean_inc(x_1008); -lean_dec(x_1006); -x_1009 = lean_st_ref_take(x_4, x_1000); -x_1010 = lean_ctor_get(x_1009, 0); -lean_inc(x_1010); -x_1011 = lean_ctor_get(x_1009, 1); -lean_inc(x_1011); -lean_dec(x_1009); -x_1012 = !lean_is_exclusive(x_1010); -if (x_1012 == 0) +x_1008 = lean_environment_main_module(x_1001); +x_1009 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1009, 0, x_1008); +lean_ctor_set(x_1009, 1, x_996); +lean_ctor_set(x_1009, 2, x_1006); +lean_ctor_set(x_1009, 3, x_1007); +lean_inc(x_1); +x_1010 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1009, x_1005); +if (lean_obj_tag(x_1010) == 0) { -lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; -x_1013 = lean_ctor_get(x_1010, 5); -lean_dec(x_1013); -lean_ctor_set(x_1010, 5, x_1008); -x_1014 = lean_st_ref_set(x_4, x_1010, x_1011); -x_1015 = lean_ctor_get(x_1014, 1); +lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; uint8_t x_1016; +x_1011 = lean_ctor_get(x_1010, 0); +lean_inc(x_1011); +x_1012 = lean_ctor_get(x_1010, 1); +lean_inc(x_1012); +lean_dec(x_1010); +x_1013 = lean_st_ref_take(x_4, x_1004); +x_1014 = lean_ctor_get(x_1013, 0); +lean_inc(x_1014); +x_1015 = lean_ctor_get(x_1013, 1); lean_inc(x_1015); -lean_dec(x_1014); -x_10 = x_1007; -x_11 = x_1015; +lean_dec(x_1013); +x_1016 = !lean_is_exclusive(x_1014); +if (x_1016 == 0) +{ +lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; +x_1017 = lean_ctor_get(x_1014, 5); +lean_dec(x_1017); +lean_ctor_set(x_1014, 5, x_1012); +x_1018 = lean_st_ref_set(x_4, x_1014, x_1015); +x_1019 = lean_ctor_get(x_1018, 1); +lean_inc(x_1019); +lean_dec(x_1018); +x_10 = x_1011; +x_11 = x_1019; goto block_36; } else { -lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; -x_1016 = lean_ctor_get(x_1010, 0); -x_1017 = lean_ctor_get(x_1010, 1); -x_1018 = lean_ctor_get(x_1010, 2); -x_1019 = lean_ctor_get(x_1010, 3); -x_1020 = lean_ctor_get(x_1010, 4); -x_1021 = lean_ctor_get(x_1010, 6); +lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; +x_1020 = lean_ctor_get(x_1014, 0); +x_1021 = lean_ctor_get(x_1014, 1); +x_1022 = lean_ctor_get(x_1014, 2); +x_1023 = lean_ctor_get(x_1014, 3); +x_1024 = lean_ctor_get(x_1014, 4); +x_1025 = lean_ctor_get(x_1014, 6); +lean_inc(x_1025); +lean_inc(x_1024); +lean_inc(x_1023); +lean_inc(x_1022); lean_inc(x_1021); lean_inc(x_1020); -lean_inc(x_1019); -lean_inc(x_1018); -lean_inc(x_1017); -lean_inc(x_1016); -lean_dec(x_1010); -x_1022 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1022, 0, x_1016); -lean_ctor_set(x_1022, 1, x_1017); -lean_ctor_set(x_1022, 2, x_1018); -lean_ctor_set(x_1022, 3, x_1019); -lean_ctor_set(x_1022, 4, x_1020); -lean_ctor_set(x_1022, 5, x_1008); -lean_ctor_set(x_1022, 6, x_1021); -x_1023 = lean_st_ref_set(x_4, x_1022, x_1011); -x_1024 = lean_ctor_get(x_1023, 1); -lean_inc(x_1024); -lean_dec(x_1023); -x_10 = x_1007; -x_11 = x_1024; +lean_dec(x_1014); +x_1026 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1026, 0, x_1020); +lean_ctor_set(x_1026, 1, x_1021); +lean_ctor_set(x_1026, 2, x_1022); +lean_ctor_set(x_1026, 3, x_1023); +lean_ctor_set(x_1026, 4, x_1024); +lean_ctor_set(x_1026, 5, x_1012); +lean_ctor_set(x_1026, 6, x_1025); +x_1027 = lean_st_ref_set(x_4, x_1026, x_1015); +x_1028 = lean_ctor_get(x_1027, 1); +lean_inc(x_1028); +lean_dec(x_1027); +x_10 = x_1011; +x_11 = x_1028; goto block_36; } } else { -lean_object* x_1025; +lean_object* x_1029; lean_dec(x_2); lean_dec(x_1); -x_1025 = lean_ctor_get(x_1006, 0); -lean_inc(x_1025); -lean_dec(x_1006); -if (lean_obj_tag(x_1025) == 0) +x_1029 = lean_ctor_get(x_1010, 0); +lean_inc(x_1029); +lean_dec(x_1010); +if (lean_obj_tag(x_1029) == 0) { -lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; uint8_t x_1031; -x_1026 = lean_ctor_get(x_1025, 0); -lean_inc(x_1026); -x_1027 = lean_ctor_get(x_1025, 1); -lean_inc(x_1027); -lean_dec(x_1025); -x_1028 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1028, 0, x_1027); -x_1029 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1029, 0, x_1028); -x_1030 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1026, x_1029, x_3, x_4, x_5, x_6, x_7, x_8, x_1000); +lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; uint8_t x_1035; +x_1030 = lean_ctor_get(x_1029, 0); +lean_inc(x_1030); +x_1031 = lean_ctor_get(x_1029, 1); +lean_inc(x_1031); +lean_dec(x_1029); +x_1032 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1032, 0, x_1031); +x_1033 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1033, 0, x_1032); +x_1034 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1030, x_1033, x_3, x_4, x_5, x_6, x_7, x_8, x_1004); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_1026); -x_1031 = !lean_is_exclusive(x_1030); -if (x_1031 == 0) -{ -return x_1030; -} -else -{ -lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; -x_1032 = lean_ctor_get(x_1030, 0); -x_1033 = lean_ctor_get(x_1030, 1); -lean_inc(x_1033); -lean_inc(x_1032); lean_dec(x_1030); -x_1034 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1034, 0, x_1032); -lean_ctor_set(x_1034, 1, x_1033); +x_1035 = !lean_is_exclusive(x_1034); +if (x_1035 == 0) +{ return x_1034; } +else +{ +lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; +x_1036 = lean_ctor_get(x_1034, 0); +x_1037 = lean_ctor_get(x_1034, 1); +lean_inc(x_1037); +lean_inc(x_1036); +lean_dec(x_1034); +x_1038 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1038, 0, x_1036); +lean_ctor_set(x_1038, 1, x_1037); +return x_1038; +} } else { -lean_object* x_1035; uint8_t x_1036; +lean_object* x_1039; uint8_t x_1040; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_1035 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1000); -x_1036 = !lean_is_exclusive(x_1035); -if (x_1036 == 0) +x_1039 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1004); +x_1040 = !lean_is_exclusive(x_1039); +if (x_1040 == 0) { -return x_1035; -} -else -{ -lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; -x_1037 = lean_ctor_get(x_1035, 0); -x_1038 = lean_ctor_get(x_1035, 1); -lean_inc(x_1038); -lean_inc(x_1037); -lean_dec(x_1035); -x_1039 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1039, 0, x_1037); -lean_ctor_set(x_1039, 1, x_1038); return x_1039; } +else +{ +lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; +x_1041 = lean_ctor_get(x_1039, 0); +x_1042 = lean_ctor_get(x_1039, 1); +lean_inc(x_1042); +lean_inc(x_1041); +lean_dec(x_1039); +x_1043 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1043, 0, x_1041); +lean_ctor_set(x_1043, 1, x_1042); +return x_1043; +} } } } else { -lean_object* x_1040; uint8_t x_1041; uint8_t x_1146; -x_1040 = l_Lean_Syntax_getArg(x_989, x_139); -lean_inc(x_1040); -x_1146 = l_Lean_Syntax_isOfKind(x_1040, x_878); -if (x_1146 == 0) -{ -uint8_t x_1147; -x_1147 = 0; -x_1041 = x_1147; -goto block_1145; -} -else -{ -lean_object* x_1148; lean_object* x_1149; uint8_t x_1150; -x_1148 = l_Lean_Syntax_getArgs(x_1040); -x_1149 = lean_array_get_size(x_1148); -lean_dec(x_1148); -x_1150 = lean_nat_dec_eq(x_1149, x_87); -lean_dec(x_1149); -x_1041 = x_1150; -goto block_1145; -} -block_1145: -{ -if (x_1041 == 0) -{ -lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; -lean_dec(x_1040); -lean_dec(x_989); -lean_dec(x_242); -x_1042 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_1043 = lean_ctor_get(x_1042, 0); -lean_inc(x_1043); -x_1044 = lean_ctor_get(x_1042, 1); +lean_object* x_1044; uint8_t x_1045; uint8_t x_1266; +x_1044 = l_Lean_Syntax_getArg(x_942, x_87); +lean_dec(x_942); lean_inc(x_1044); -lean_dec(x_1042); -x_1045 = lean_st_ref_get(x_8, x_1044); -x_1046 = lean_ctor_get(x_1045, 0); -lean_inc(x_1046); -x_1047 = lean_ctor_get(x_1045, 1); +x_1266 = l_Lean_Syntax_isOfKind(x_1044, x_934); +if (x_1266 == 0) +{ +uint8_t x_1267; +x_1267 = 0; +x_1045 = x_1267; +goto block_1265; +} +else +{ +lean_object* x_1268; lean_object* x_1269; uint8_t x_1270; +x_1268 = l_Lean_Syntax_getArgs(x_1044); +x_1269 = lean_array_get_size(x_1268); +lean_dec(x_1268); +x_1270 = lean_nat_dec_eq(x_1269, x_87); +lean_dec(x_1269); +x_1045 = x_1270; +goto block_1265; +} +block_1265: +{ +if (x_1045 == 0) +{ +lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; +lean_dec(x_1044); +lean_dec(x_242); +x_1046 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_1047 = lean_ctor_get(x_1046, 0); lean_inc(x_1047); -lean_dec(x_1045); -x_1048 = lean_ctor_get(x_1046, 0); +x_1048 = lean_ctor_get(x_1046, 1); lean_inc(x_1048); lean_dec(x_1046); -x_1049 = lean_st_ref_get(x_4, x_1047); +x_1049 = lean_st_ref_get(x_8, x_1048); x_1050 = lean_ctor_get(x_1049, 0); lean_inc(x_1050); x_1051 = lean_ctor_get(x_1049, 1); lean_inc(x_1051); lean_dec(x_1049); -x_1052 = lean_ctor_get(x_1050, 5); +x_1052 = lean_ctor_get(x_1050, 0); lean_inc(x_1052); lean_dec(x_1050); -x_1053 = lean_ctor_get(x_7, 1); -lean_inc(x_1053); -x_1054 = lean_ctor_get(x_7, 2); +x_1053 = lean_st_ref_get(x_4, x_1051); +x_1054 = lean_ctor_get(x_1053, 0); lean_inc(x_1054); -x_1055 = lean_environment_main_module(x_1048); -x_1056 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_1056, 0, x_1055); -lean_ctor_set(x_1056, 1, x_1043); -lean_ctor_set(x_1056, 2, x_1053); -lean_ctor_set(x_1056, 3, x_1054); -lean_inc(x_1); -x_1057 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1056, x_1052); -if (lean_obj_tag(x_1057) == 0) -{ -lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; uint8_t x_1063; -x_1058 = lean_ctor_get(x_1057, 0); +x_1055 = lean_ctor_get(x_1053, 1); +lean_inc(x_1055); +lean_dec(x_1053); +x_1056 = lean_ctor_get(x_1054, 5); +lean_inc(x_1056); +lean_dec(x_1054); +x_1057 = lean_ctor_get(x_7, 1); +lean_inc(x_1057); +x_1058 = lean_ctor_get(x_7, 2); lean_inc(x_1058); -x_1059 = lean_ctor_get(x_1057, 1); -lean_inc(x_1059); -lean_dec(x_1057); -x_1060 = lean_st_ref_take(x_4, x_1051); -x_1061 = lean_ctor_get(x_1060, 0); -lean_inc(x_1061); -x_1062 = lean_ctor_get(x_1060, 1); -lean_inc(x_1062); -lean_dec(x_1060); -x_1063 = !lean_is_exclusive(x_1061); -if (x_1063 == 0) +x_1059 = lean_environment_main_module(x_1052); +x_1060 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1060, 0, x_1059); +lean_ctor_set(x_1060, 1, x_1047); +lean_ctor_set(x_1060, 2, x_1057); +lean_ctor_set(x_1060, 3, x_1058); +lean_inc(x_1); +x_1061 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1060, x_1056); +if (lean_obj_tag(x_1061) == 0) { -lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; -x_1064 = lean_ctor_get(x_1061, 5); -lean_dec(x_1064); -lean_ctor_set(x_1061, 5, x_1059); -x_1065 = lean_st_ref_set(x_4, x_1061, x_1062); -x_1066 = lean_ctor_get(x_1065, 1); +lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; uint8_t x_1067; +x_1062 = lean_ctor_get(x_1061, 0); +lean_inc(x_1062); +x_1063 = lean_ctor_get(x_1061, 1); +lean_inc(x_1063); +lean_dec(x_1061); +x_1064 = lean_st_ref_take(x_4, x_1055); +x_1065 = lean_ctor_get(x_1064, 0); +lean_inc(x_1065); +x_1066 = lean_ctor_get(x_1064, 1); lean_inc(x_1066); -lean_dec(x_1065); -x_10 = x_1058; -x_11 = x_1066; +lean_dec(x_1064); +x_1067 = !lean_is_exclusive(x_1065); +if (x_1067 == 0) +{ +lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; +x_1068 = lean_ctor_get(x_1065, 5); +lean_dec(x_1068); +lean_ctor_set(x_1065, 5, x_1063); +x_1069 = lean_st_ref_set(x_4, x_1065, x_1066); +x_1070 = lean_ctor_get(x_1069, 1); +lean_inc(x_1070); +lean_dec(x_1069); +x_10 = x_1062; +x_11 = x_1070; goto block_36; } else { -lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; -x_1067 = lean_ctor_get(x_1061, 0); -x_1068 = lean_ctor_get(x_1061, 1); -x_1069 = lean_ctor_get(x_1061, 2); -x_1070 = lean_ctor_get(x_1061, 3); -x_1071 = lean_ctor_get(x_1061, 4); -x_1072 = lean_ctor_get(x_1061, 6); +lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; +x_1071 = lean_ctor_get(x_1065, 0); +x_1072 = lean_ctor_get(x_1065, 1); +x_1073 = lean_ctor_get(x_1065, 2); +x_1074 = lean_ctor_get(x_1065, 3); +x_1075 = lean_ctor_get(x_1065, 4); +x_1076 = lean_ctor_get(x_1065, 6); +lean_inc(x_1076); +lean_inc(x_1075); +lean_inc(x_1074); +lean_inc(x_1073); lean_inc(x_1072); lean_inc(x_1071); -lean_inc(x_1070); -lean_inc(x_1069); -lean_inc(x_1068); -lean_inc(x_1067); -lean_dec(x_1061); -x_1073 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1073, 0, x_1067); -lean_ctor_set(x_1073, 1, x_1068); -lean_ctor_set(x_1073, 2, x_1069); -lean_ctor_set(x_1073, 3, x_1070); -lean_ctor_set(x_1073, 4, x_1071); -lean_ctor_set(x_1073, 5, x_1059); -lean_ctor_set(x_1073, 6, x_1072); -x_1074 = lean_st_ref_set(x_4, x_1073, x_1062); -x_1075 = lean_ctor_get(x_1074, 1); -lean_inc(x_1075); -lean_dec(x_1074); -x_10 = x_1058; -x_11 = x_1075; +lean_dec(x_1065); +x_1077 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1077, 0, x_1071); +lean_ctor_set(x_1077, 1, x_1072); +lean_ctor_set(x_1077, 2, x_1073); +lean_ctor_set(x_1077, 3, x_1074); +lean_ctor_set(x_1077, 4, x_1075); +lean_ctor_set(x_1077, 5, x_1063); +lean_ctor_set(x_1077, 6, x_1076); +x_1078 = lean_st_ref_set(x_4, x_1077, x_1066); +x_1079 = lean_ctor_get(x_1078, 1); +lean_inc(x_1079); +lean_dec(x_1078); +x_10 = x_1062; +x_11 = x_1079; goto block_36; } } else { -lean_object* x_1076; +lean_object* x_1080; lean_dec(x_2); lean_dec(x_1); -x_1076 = lean_ctor_get(x_1057, 0); -lean_inc(x_1076); -lean_dec(x_1057); -if (lean_obj_tag(x_1076) == 0) +x_1080 = lean_ctor_get(x_1061, 0); +lean_inc(x_1080); +lean_dec(x_1061); +if (lean_obj_tag(x_1080) == 0) { -lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; uint8_t x_1082; -x_1077 = lean_ctor_get(x_1076, 0); -lean_inc(x_1077); -x_1078 = lean_ctor_get(x_1076, 1); -lean_inc(x_1078); -lean_dec(x_1076); -x_1079 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1079, 0, x_1078); -x_1080 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1080, 0, x_1079); -x_1081 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1077, x_1080, x_3, x_4, x_5, x_6, x_7, x_8, x_1051); +lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; uint8_t x_1086; +x_1081 = lean_ctor_get(x_1080, 0); +lean_inc(x_1081); +x_1082 = lean_ctor_get(x_1080, 1); +lean_inc(x_1082); +lean_dec(x_1080); +x_1083 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1083, 0, x_1082); +x_1084 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1084, 0, x_1083); +x_1085 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1081, x_1084, x_3, x_4, x_5, x_6, x_7, x_8, x_1055); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_1077); -x_1082 = !lean_is_exclusive(x_1081); -if (x_1082 == 0) -{ -return x_1081; -} -else -{ -lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; -x_1083 = lean_ctor_get(x_1081, 0); -x_1084 = lean_ctor_get(x_1081, 1); -lean_inc(x_1084); -lean_inc(x_1083); lean_dec(x_1081); -x_1085 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1085, 0, x_1083); -lean_ctor_set(x_1085, 1, x_1084); +x_1086 = !lean_is_exclusive(x_1085); +if (x_1086 == 0) +{ return x_1085; } +else +{ +lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; +x_1087 = lean_ctor_get(x_1085, 0); +x_1088 = lean_ctor_get(x_1085, 1); +lean_inc(x_1088); +lean_inc(x_1087); +lean_dec(x_1085); +x_1089 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1089, 0, x_1087); +lean_ctor_set(x_1089, 1, x_1088); +return x_1089; +} } else { -lean_object* x_1086; uint8_t x_1087; +lean_object* x_1090; uint8_t x_1091; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_1086 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1051); -x_1087 = !lean_is_exclusive(x_1086); -if (x_1087 == 0) +x_1090 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1055); +x_1091 = !lean_is_exclusive(x_1090); +if (x_1091 == 0) { -return x_1086; -} -else -{ -lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; -x_1088 = lean_ctor_get(x_1086, 0); -x_1089 = lean_ctor_get(x_1086, 1); -lean_inc(x_1089); -lean_inc(x_1088); -lean_dec(x_1086); -x_1090 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1090, 0, x_1088); -lean_ctor_set(x_1090, 1, x_1089); return x_1090; } +else +{ +lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; +x_1092 = lean_ctor_get(x_1090, 0); +x_1093 = lean_ctor_get(x_1090, 1); +lean_inc(x_1093); +lean_inc(x_1092); +lean_dec(x_1090); +x_1094 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1094, 0, x_1092); +lean_ctor_set(x_1094, 1, x_1093); +return x_1094; +} } } } else { -lean_object* x_1091; lean_object* x_1092; uint8_t x_1093; -x_1091 = l_Lean_Syntax_getArg(x_1040, x_139); -lean_dec(x_1040); -x_1092 = l_Lean_identKind___closed__2; -lean_inc(x_1091); -x_1093 = l_Lean_Syntax_isOfKind(x_1091, x_1092); -if (x_1093 == 0) -{ -lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; -lean_dec(x_1091); -lean_dec(x_989); -lean_dec(x_242); -x_1094 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_1095 = lean_ctor_get(x_1094, 0); +lean_object* x_1095; uint8_t x_1096; lean_object* x_1258; uint8_t x_1259; +x_1095 = l_Lean_Syntax_getArg(x_1044, x_139); +lean_dec(x_1044); +x_1258 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; lean_inc(x_1095); -x_1096 = lean_ctor_get(x_1094, 1); -lean_inc(x_1096); -lean_dec(x_1094); -x_1097 = lean_st_ref_get(x_8, x_1096); +x_1259 = l_Lean_Syntax_isOfKind(x_1095, x_1258); +if (x_1259 == 0) +{ +uint8_t x_1260; +x_1260 = 0; +x_1096 = x_1260; +goto block_1257; +} +else +{ +lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; uint8_t x_1264; +x_1261 = l_Lean_Syntax_getArgs(x_1095); +x_1262 = lean_array_get_size(x_1261); +lean_dec(x_1261); +x_1263 = lean_unsigned_to_nat(3u); +x_1264 = lean_nat_dec_eq(x_1262, x_1263); +lean_dec(x_1262); +x_1096 = x_1264; +goto block_1257; +} +block_1257: +{ +if (x_1096 == 0) +{ +lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; +lean_dec(x_1095); +lean_dec(x_242); +x_1097 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); x_1098 = lean_ctor_get(x_1097, 0); lean_inc(x_1098); x_1099 = lean_ctor_get(x_1097, 1); lean_inc(x_1099); lean_dec(x_1097); -x_1100 = lean_ctor_get(x_1098, 0); -lean_inc(x_1100); -lean_dec(x_1098); -x_1101 = lean_st_ref_get(x_4, x_1099); -x_1102 = lean_ctor_get(x_1101, 0); +x_1100 = lean_st_ref_get(x_8, x_1099); +x_1101 = lean_ctor_get(x_1100, 0); +lean_inc(x_1101); +x_1102 = lean_ctor_get(x_1100, 1); lean_inc(x_1102); -x_1103 = lean_ctor_get(x_1101, 1); +lean_dec(x_1100); +x_1103 = lean_ctor_get(x_1101, 0); lean_inc(x_1103); lean_dec(x_1101); -x_1104 = lean_ctor_get(x_1102, 5); -lean_inc(x_1104); -lean_dec(x_1102); -x_1105 = lean_ctor_get(x_7, 1); +x_1104 = lean_st_ref_get(x_4, x_1102); +x_1105 = lean_ctor_get(x_1104, 0); lean_inc(x_1105); -x_1106 = lean_ctor_get(x_7, 2); +x_1106 = lean_ctor_get(x_1104, 1); lean_inc(x_1106); -x_1107 = lean_environment_main_module(x_1100); -x_1108 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_1108, 0, x_1107); -lean_ctor_set(x_1108, 1, x_1095); -lean_ctor_set(x_1108, 2, x_1105); -lean_ctor_set(x_1108, 3, x_1106); +lean_dec(x_1104); +x_1107 = lean_ctor_get(x_1105, 5); +lean_inc(x_1107); +lean_dec(x_1105); +x_1108 = lean_ctor_get(x_7, 1); +lean_inc(x_1108); +x_1109 = lean_ctor_get(x_7, 2); +lean_inc(x_1109); +x_1110 = lean_environment_main_module(x_1103); +x_1111 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1111, 0, x_1110); +lean_ctor_set(x_1111, 1, x_1098); +lean_ctor_set(x_1111, 2, x_1108); +lean_ctor_set(x_1111, 3, x_1109); lean_inc(x_1); -x_1109 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1108, x_1104); -if (lean_obj_tag(x_1109) == 0) +x_1112 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1111, x_1107); +if (lean_obj_tag(x_1112) == 0) { -lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; uint8_t x_1115; -x_1110 = lean_ctor_get(x_1109, 0); -lean_inc(x_1110); -x_1111 = lean_ctor_get(x_1109, 1); -lean_inc(x_1111); -lean_dec(x_1109); -x_1112 = lean_st_ref_take(x_4, x_1103); +lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; uint8_t x_1118; x_1113 = lean_ctor_get(x_1112, 0); lean_inc(x_1113); x_1114 = lean_ctor_get(x_1112, 1); lean_inc(x_1114); lean_dec(x_1112); -x_1115 = !lean_is_exclusive(x_1113); -if (x_1115 == 0) +x_1115 = lean_st_ref_take(x_4, x_1106); +x_1116 = lean_ctor_get(x_1115, 0); +lean_inc(x_1116); +x_1117 = lean_ctor_get(x_1115, 1); +lean_inc(x_1117); +lean_dec(x_1115); +x_1118 = !lean_is_exclusive(x_1116); +if (x_1118 == 0) { -lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; -x_1116 = lean_ctor_get(x_1113, 5); -lean_dec(x_1116); -lean_ctor_set(x_1113, 5, x_1111); -x_1117 = lean_st_ref_set(x_4, x_1113, x_1114); -x_1118 = lean_ctor_get(x_1117, 1); -lean_inc(x_1118); -lean_dec(x_1117); -x_10 = x_1110; -x_11 = x_1118; +lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; +x_1119 = lean_ctor_get(x_1116, 5); +lean_dec(x_1119); +lean_ctor_set(x_1116, 5, x_1114); +x_1120 = lean_st_ref_set(x_4, x_1116, x_1117); +x_1121 = lean_ctor_get(x_1120, 1); +lean_inc(x_1121); +lean_dec(x_1120); +x_10 = x_1113; +x_11 = x_1121; goto block_36; } else { -lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; -x_1119 = lean_ctor_get(x_1113, 0); -x_1120 = lean_ctor_get(x_1113, 1); -x_1121 = lean_ctor_get(x_1113, 2); -x_1122 = lean_ctor_get(x_1113, 3); -x_1123 = lean_ctor_get(x_1113, 4); -x_1124 = lean_ctor_get(x_1113, 6); +lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; +x_1122 = lean_ctor_get(x_1116, 0); +x_1123 = lean_ctor_get(x_1116, 1); +x_1124 = lean_ctor_get(x_1116, 2); +x_1125 = lean_ctor_get(x_1116, 3); +x_1126 = lean_ctor_get(x_1116, 4); +x_1127 = lean_ctor_get(x_1116, 6); +lean_inc(x_1127); +lean_inc(x_1126); +lean_inc(x_1125); lean_inc(x_1124); lean_inc(x_1123); lean_inc(x_1122); -lean_inc(x_1121); -lean_inc(x_1120); -lean_inc(x_1119); -lean_dec(x_1113); -x_1125 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1125, 0, x_1119); -lean_ctor_set(x_1125, 1, x_1120); -lean_ctor_set(x_1125, 2, x_1121); -lean_ctor_set(x_1125, 3, x_1122); -lean_ctor_set(x_1125, 4, x_1123); -lean_ctor_set(x_1125, 5, x_1111); -lean_ctor_set(x_1125, 6, x_1124); -x_1126 = lean_st_ref_set(x_4, x_1125, x_1114); -x_1127 = lean_ctor_get(x_1126, 1); -lean_inc(x_1127); -lean_dec(x_1126); -x_10 = x_1110; -x_11 = x_1127; +lean_dec(x_1116); +x_1128 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1128, 0, x_1122); +lean_ctor_set(x_1128, 1, x_1123); +lean_ctor_set(x_1128, 2, x_1124); +lean_ctor_set(x_1128, 3, x_1125); +lean_ctor_set(x_1128, 4, x_1126); +lean_ctor_set(x_1128, 5, x_1114); +lean_ctor_set(x_1128, 6, x_1127); +x_1129 = lean_st_ref_set(x_4, x_1128, x_1117); +x_1130 = lean_ctor_get(x_1129, 1); +lean_inc(x_1130); +lean_dec(x_1129); +x_10 = x_1113; +x_11 = x_1130; goto block_36; } } else { -lean_object* x_1128; +lean_object* x_1131; lean_dec(x_2); lean_dec(x_1); -x_1128 = lean_ctor_get(x_1109, 0); -lean_inc(x_1128); -lean_dec(x_1109); -if (lean_obj_tag(x_1128) == 0) +x_1131 = lean_ctor_get(x_1112, 0); +lean_inc(x_1131); +lean_dec(x_1112); +if (lean_obj_tag(x_1131) == 0) { -lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; uint8_t x_1134; -x_1129 = lean_ctor_get(x_1128, 0); -lean_inc(x_1129); -x_1130 = lean_ctor_get(x_1128, 1); -lean_inc(x_1130); -lean_dec(x_1128); -x_1131 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1131, 0, x_1130); -x_1132 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1132, 0, x_1131); -x_1133 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1129, x_1132, x_3, x_4, x_5, x_6, x_7, x_8, x_1103); +lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; uint8_t x_1137; +x_1132 = lean_ctor_get(x_1131, 0); +lean_inc(x_1132); +x_1133 = lean_ctor_get(x_1131, 1); +lean_inc(x_1133); +lean_dec(x_1131); +x_1134 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1134, 0, x_1133); +x_1135 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1135, 0, x_1134); +x_1136 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1132, x_1135, x_3, x_4, x_5, x_6, x_7, x_8, x_1106); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_1129); -x_1134 = !lean_is_exclusive(x_1133); -if (x_1134 == 0) +lean_dec(x_1132); +x_1137 = !lean_is_exclusive(x_1136); +if (x_1137 == 0) { -return x_1133; +return x_1136; } else { -lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; -x_1135 = lean_ctor_get(x_1133, 0); -x_1136 = lean_ctor_get(x_1133, 1); -lean_inc(x_1136); -lean_inc(x_1135); -lean_dec(x_1133); -x_1137 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1137, 0, x_1135); -lean_ctor_set(x_1137, 1, x_1136); -return x_1137; +lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; +x_1138 = lean_ctor_get(x_1136, 0); +x_1139 = lean_ctor_get(x_1136, 1); +lean_inc(x_1139); +lean_inc(x_1138); +lean_dec(x_1136); +x_1140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1140, 0, x_1138); +lean_ctor_set(x_1140, 1, x_1139); +return x_1140; } } else { -lean_object* x_1138; uint8_t x_1139; +lean_object* x_1141; uint8_t x_1142; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_1138 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1103); -x_1139 = !lean_is_exclusive(x_1138); -if (x_1139 == 0) +x_1141 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1106); +x_1142 = !lean_is_exclusive(x_1141); +if (x_1142 == 0) { -return x_1138; +return x_1141; } else { -lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; -x_1140 = lean_ctor_get(x_1138, 0); -x_1141 = lean_ctor_get(x_1138, 1); -lean_inc(x_1141); -lean_inc(x_1140); -lean_dec(x_1138); -x_1142 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1142, 0, x_1140); -lean_ctor_set(x_1142, 1, x_1141); -return x_1142; +lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; +x_1143 = lean_ctor_get(x_1141, 0); +x_1144 = lean_ctor_get(x_1141, 1); +lean_inc(x_1144); +lean_inc(x_1143); +lean_dec(x_1141); +x_1145 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1145, 0, x_1143); +lean_ctor_set(x_1145, 1, x_1144); +return x_1145; } } } } else { -lean_object* x_1143; lean_object* x_1144; -x_1143 = l_Lean_Syntax_getArg(x_989, x_243); -lean_dec(x_989); -x_1144 = l___private_Lean_Elab_Match_1__expandSimpleMatch(x_1, x_242, x_1091, x_1143, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_1144; -} -} -} -} -} -} -} -} -} -block_1400: +lean_object* x_1146; uint8_t x_1147; uint8_t x_1252; +x_1146 = l_Lean_Syntax_getArg(x_1095, x_139); +lean_inc(x_1146); +x_1252 = l_Lean_Syntax_isOfKind(x_1146, x_934); +if (x_1252 == 0) { -if (x_1167 == 0) -{ -if (x_1166 == 0) -{ -uint8_t x_1168; -lean_dec(x_886); -x_1168 = 0; -x_887 = x_1168; -goto block_1165; +uint8_t x_1253; +x_1253 = 0; +x_1147 = x_1253; +goto block_1251; } else { -lean_object* x_1169; lean_object* x_1170; uint8_t x_1171; -x_1169 = l_Lean_Syntax_getArgs(x_886); -lean_dec(x_886); -x_1170 = lean_array_get_size(x_1169); -lean_dec(x_1169); -x_1171 = lean_nat_dec_eq(x_1170, x_87); -lean_dec(x_1170); -x_887 = x_1171; -goto block_1165; +lean_object* x_1254; lean_object* x_1255; uint8_t x_1256; +x_1254 = l_Lean_Syntax_getArgs(x_1146); +x_1255 = lean_array_get_size(x_1254); +lean_dec(x_1254); +x_1256 = lean_nat_dec_eq(x_1255, x_87); +lean_dec(x_1255); +x_1147 = x_1256; +goto block_1251; } -} -else +block_1251: { -lean_object* x_1172; lean_object* x_1173; uint8_t x_1174; uint8_t x_1395; -lean_dec(x_886); -x_1172 = lean_unsigned_to_nat(5u); -x_1173 = l_Lean_Syntax_getArg(x_1, x_1172); -lean_inc(x_1173); -x_1395 = l_Lean_Syntax_isOfKind(x_1173, x_878); -if (x_1395 == 0) +if (x_1147 == 0) { -uint8_t x_1396; -x_1396 = 0; -x_1174 = x_1396; -goto block_1394; -} -else -{ -lean_object* x_1397; lean_object* x_1398; uint8_t x_1399; -x_1397 = l_Lean_Syntax_getArgs(x_1173); -x_1398 = lean_array_get_size(x_1397); -lean_dec(x_1397); -x_1399 = lean_nat_dec_eq(x_1398, x_87); -lean_dec(x_1398); -x_1174 = x_1399; -goto block_1394; -} -block_1394: -{ -if (x_1174 == 0) -{ -lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; -lean_dec(x_1173); +lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; +lean_dec(x_1146); +lean_dec(x_1095); lean_dec(x_242); -x_1175 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_1176 = lean_ctor_get(x_1175, 0); -lean_inc(x_1176); -x_1177 = lean_ctor_get(x_1175, 1); +x_1148 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_1149 = lean_ctor_get(x_1148, 0); +lean_inc(x_1149); +x_1150 = lean_ctor_get(x_1148, 1); +lean_inc(x_1150); +lean_dec(x_1148); +x_1151 = lean_st_ref_get(x_8, x_1150); +x_1152 = lean_ctor_get(x_1151, 0); +lean_inc(x_1152); +x_1153 = lean_ctor_get(x_1151, 1); +lean_inc(x_1153); +lean_dec(x_1151); +x_1154 = lean_ctor_get(x_1152, 0); +lean_inc(x_1154); +lean_dec(x_1152); +x_1155 = lean_st_ref_get(x_4, x_1153); +x_1156 = lean_ctor_get(x_1155, 0); +lean_inc(x_1156); +x_1157 = lean_ctor_get(x_1155, 1); +lean_inc(x_1157); +lean_dec(x_1155); +x_1158 = lean_ctor_get(x_1156, 5); +lean_inc(x_1158); +lean_dec(x_1156); +x_1159 = lean_ctor_get(x_7, 1); +lean_inc(x_1159); +x_1160 = lean_ctor_get(x_7, 2); +lean_inc(x_1160); +x_1161 = lean_environment_main_module(x_1154); +x_1162 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1162, 0, x_1161); +lean_ctor_set(x_1162, 1, x_1149); +lean_ctor_set(x_1162, 2, x_1159); +lean_ctor_set(x_1162, 3, x_1160); +lean_inc(x_1); +x_1163 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1162, x_1158); +if (lean_obj_tag(x_1163) == 0) +{ +lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; uint8_t x_1169; +x_1164 = lean_ctor_get(x_1163, 0); +lean_inc(x_1164); +x_1165 = lean_ctor_get(x_1163, 1); +lean_inc(x_1165); +lean_dec(x_1163); +x_1166 = lean_st_ref_take(x_4, x_1157); +x_1167 = lean_ctor_get(x_1166, 0); +lean_inc(x_1167); +x_1168 = lean_ctor_get(x_1166, 1); +lean_inc(x_1168); +lean_dec(x_1166); +x_1169 = !lean_is_exclusive(x_1167); +if (x_1169 == 0) +{ +lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; +x_1170 = lean_ctor_get(x_1167, 5); +lean_dec(x_1170); +lean_ctor_set(x_1167, 5, x_1165); +x_1171 = lean_st_ref_set(x_4, x_1167, x_1168); +x_1172 = lean_ctor_get(x_1171, 1); +lean_inc(x_1172); +lean_dec(x_1171); +x_10 = x_1164; +x_11 = x_1172; +goto block_36; +} +else +{ +lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; +x_1173 = lean_ctor_get(x_1167, 0); +x_1174 = lean_ctor_get(x_1167, 1); +x_1175 = lean_ctor_get(x_1167, 2); +x_1176 = lean_ctor_get(x_1167, 3); +x_1177 = lean_ctor_get(x_1167, 4); +x_1178 = lean_ctor_get(x_1167, 6); +lean_inc(x_1178); lean_inc(x_1177); -lean_dec(x_1175); -x_1178 = lean_st_ref_get(x_8, x_1177); -x_1179 = lean_ctor_get(x_1178, 0); -lean_inc(x_1179); -x_1180 = lean_ctor_get(x_1178, 1); -lean_inc(x_1180); -lean_dec(x_1178); -x_1181 = lean_ctor_get(x_1179, 0); +lean_inc(x_1176); +lean_inc(x_1175); +lean_inc(x_1174); +lean_inc(x_1173); +lean_dec(x_1167); +x_1179 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1179, 0, x_1173); +lean_ctor_set(x_1179, 1, x_1174); +lean_ctor_set(x_1179, 2, x_1175); +lean_ctor_set(x_1179, 3, x_1176); +lean_ctor_set(x_1179, 4, x_1177); +lean_ctor_set(x_1179, 5, x_1165); +lean_ctor_set(x_1179, 6, x_1178); +x_1180 = lean_st_ref_set(x_4, x_1179, x_1168); +x_1181 = lean_ctor_get(x_1180, 1); lean_inc(x_1181); -lean_dec(x_1179); -x_1182 = lean_st_ref_get(x_4, x_1180); +lean_dec(x_1180); +x_10 = x_1164; +x_11 = x_1181; +goto block_36; +} +} +else +{ +lean_object* x_1182; +lean_dec(x_2); +lean_dec(x_1); +x_1182 = lean_ctor_get(x_1163, 0); +lean_inc(x_1182); +lean_dec(x_1163); +if (lean_obj_tag(x_1182) == 0) +{ +lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; uint8_t x_1188; x_1183 = lean_ctor_get(x_1182, 0); lean_inc(x_1183); x_1184 = lean_ctor_get(x_1182, 1); lean_inc(x_1184); lean_dec(x_1182); -x_1185 = lean_ctor_get(x_1183, 5); -lean_inc(x_1185); -lean_dec(x_1183); -x_1186 = lean_ctor_get(x_7, 1); -lean_inc(x_1186); -x_1187 = lean_ctor_get(x_7, 2); -lean_inc(x_1187); -x_1188 = lean_environment_main_module(x_1181); -x_1189 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_1189, 0, x_1188); -lean_ctor_set(x_1189, 1, x_1176); -lean_ctor_set(x_1189, 2, x_1186); -lean_ctor_set(x_1189, 3, x_1187); -lean_inc(x_1); -x_1190 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1189, x_1185); -if (lean_obj_tag(x_1190) == 0) -{ -lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; uint8_t x_1196; -x_1191 = lean_ctor_get(x_1190, 0); -lean_inc(x_1191); -x_1192 = lean_ctor_get(x_1190, 1); -lean_inc(x_1192); -lean_dec(x_1190); -x_1193 = lean_st_ref_take(x_4, x_1184); -x_1194 = lean_ctor_get(x_1193, 0); -lean_inc(x_1194); -x_1195 = lean_ctor_get(x_1193, 1); -lean_inc(x_1195); -lean_dec(x_1193); -x_1196 = !lean_is_exclusive(x_1194); -if (x_1196 == 0) -{ -lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; -x_1197 = lean_ctor_get(x_1194, 5); -lean_dec(x_1197); -lean_ctor_set(x_1194, 5, x_1192); -x_1198 = lean_st_ref_set(x_4, x_1194, x_1195); -x_1199 = lean_ctor_get(x_1198, 1); -lean_inc(x_1199); -lean_dec(x_1198); -x_10 = x_1191; -x_11 = x_1199; -goto block_36; -} -else -{ -lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; -x_1200 = lean_ctor_get(x_1194, 0); -x_1201 = lean_ctor_get(x_1194, 1); -x_1202 = lean_ctor_get(x_1194, 2); -x_1203 = lean_ctor_get(x_1194, 3); -x_1204 = lean_ctor_get(x_1194, 4); -x_1205 = lean_ctor_get(x_1194, 6); -lean_inc(x_1205); -lean_inc(x_1204); -lean_inc(x_1203); -lean_inc(x_1202); -lean_inc(x_1201); -lean_inc(x_1200); -lean_dec(x_1194); -x_1206 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1206, 0, x_1200); -lean_ctor_set(x_1206, 1, x_1201); -lean_ctor_set(x_1206, 2, x_1202); -lean_ctor_set(x_1206, 3, x_1203); -lean_ctor_set(x_1206, 4, x_1204); -lean_ctor_set(x_1206, 5, x_1192); -lean_ctor_set(x_1206, 6, x_1205); -x_1207 = lean_st_ref_set(x_4, x_1206, x_1195); -x_1208 = lean_ctor_get(x_1207, 1); -lean_inc(x_1208); -lean_dec(x_1207); -x_10 = x_1191; -x_11 = x_1208; -goto block_36; -} -} -else -{ -lean_object* x_1209; -lean_dec(x_2); -lean_dec(x_1); -x_1209 = lean_ctor_get(x_1190, 0); -lean_inc(x_1209); -lean_dec(x_1190); -if (lean_obj_tag(x_1209) == 0) -{ -lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; uint8_t x_1215; -x_1210 = lean_ctor_get(x_1209, 0); -lean_inc(x_1210); -x_1211 = lean_ctor_get(x_1209, 1); -lean_inc(x_1211); -lean_dec(x_1209); -x_1212 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1212, 0, x_1211); -x_1213 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1213, 0, x_1212); -x_1214 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1210, x_1213, x_3, x_4, x_5, x_6, x_7, x_8, x_1184); +x_1185 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1185, 0, x_1184); +x_1186 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1186, 0, x_1185); +x_1187 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1183, x_1186, x_3, x_4, x_5, x_6, x_7, x_8, x_1157); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_1210); -x_1215 = !lean_is_exclusive(x_1214); -if (x_1215 == 0) +lean_dec(x_1183); +x_1188 = !lean_is_exclusive(x_1187); +if (x_1188 == 0) { -return x_1214; +return x_1187; } else { -lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; -x_1216 = lean_ctor_get(x_1214, 0); -x_1217 = lean_ctor_get(x_1214, 1); -lean_inc(x_1217); -lean_inc(x_1216); -lean_dec(x_1214); -x_1218 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1218, 0, x_1216); -lean_ctor_set(x_1218, 1, x_1217); -return x_1218; +lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; +x_1189 = lean_ctor_get(x_1187, 0); +x_1190 = lean_ctor_get(x_1187, 1); +lean_inc(x_1190); +lean_inc(x_1189); +lean_dec(x_1187); +x_1191 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1191, 0, x_1189); +lean_ctor_set(x_1191, 1, x_1190); +return x_1191; } } else { -lean_object* x_1219; uint8_t x_1220; +lean_object* x_1192; uint8_t x_1193; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_1219 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1184); -x_1220 = !lean_is_exclusive(x_1219); -if (x_1220 == 0) +x_1192 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1157); +x_1193 = !lean_is_exclusive(x_1192); +if (x_1193 == 0) { -return x_1219; +return x_1192; } else { -lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; -x_1221 = lean_ctor_get(x_1219, 0); -x_1222 = lean_ctor_get(x_1219, 1); -lean_inc(x_1222); -lean_inc(x_1221); -lean_dec(x_1219); -x_1223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1223, 0, x_1221); -lean_ctor_set(x_1223, 1, x_1222); -return x_1223; +lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; +x_1194 = lean_ctor_get(x_1192, 0); +x_1195 = lean_ctor_get(x_1192, 1); +lean_inc(x_1195); +lean_inc(x_1194); +lean_dec(x_1192); +x_1196 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1196, 0, x_1194); +lean_ctor_set(x_1196, 1, x_1195); +return x_1196; } } } } else { -lean_object* x_1224; uint8_t x_1225; lean_object* x_1387; uint8_t x_1388; -x_1224 = l_Lean_Syntax_getArg(x_1173, x_139); -lean_dec(x_1173); -x_1387 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -lean_inc(x_1224); -x_1388 = l_Lean_Syntax_isOfKind(x_1224, x_1387); -if (x_1388 == 0) +lean_object* x_1197; lean_object* x_1198; uint8_t x_1199; +x_1197 = l_Lean_Syntax_getArg(x_1146, x_139); +lean_dec(x_1146); +x_1198 = l_Lean_identKind___closed__2; +lean_inc(x_1197); +x_1199 = l_Lean_Syntax_isOfKind(x_1197, x_1198); +if (x_1199 == 0) { -uint8_t x_1389; -x_1389 = 0; -x_1225 = x_1389; -goto block_1386; -} -else -{ -lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; uint8_t x_1393; -x_1390 = l_Lean_Syntax_getArgs(x_1224); -x_1391 = lean_array_get_size(x_1390); -lean_dec(x_1390); -x_1392 = lean_unsigned_to_nat(3u); -x_1393 = lean_nat_dec_eq(x_1391, x_1392); -lean_dec(x_1391); -x_1225 = x_1393; -goto block_1386; -} -block_1386: -{ -if (x_1225 == 0) -{ -lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; -lean_dec(x_1224); +lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; +lean_dec(x_1197); +lean_dec(x_1095); lean_dec(x_242); -x_1226 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_1227 = lean_ctor_get(x_1226, 0); -lean_inc(x_1227); -x_1228 = lean_ctor_get(x_1226, 1); -lean_inc(x_1228); -lean_dec(x_1226); -x_1229 = lean_st_ref_get(x_8, x_1228); -x_1230 = lean_ctor_get(x_1229, 0); +x_1200 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_1201 = lean_ctor_get(x_1200, 0); +lean_inc(x_1201); +x_1202 = lean_ctor_get(x_1200, 1); +lean_inc(x_1202); +lean_dec(x_1200); +x_1203 = lean_st_ref_get(x_8, x_1202); +x_1204 = lean_ctor_get(x_1203, 0); +lean_inc(x_1204); +x_1205 = lean_ctor_get(x_1203, 1); +lean_inc(x_1205); +lean_dec(x_1203); +x_1206 = lean_ctor_get(x_1204, 0); +lean_inc(x_1206); +lean_dec(x_1204); +x_1207 = lean_st_ref_get(x_4, x_1205); +x_1208 = lean_ctor_get(x_1207, 0); +lean_inc(x_1208); +x_1209 = lean_ctor_get(x_1207, 1); +lean_inc(x_1209); +lean_dec(x_1207); +x_1210 = lean_ctor_get(x_1208, 5); +lean_inc(x_1210); +lean_dec(x_1208); +x_1211 = lean_ctor_get(x_7, 1); +lean_inc(x_1211); +x_1212 = lean_ctor_get(x_7, 2); +lean_inc(x_1212); +x_1213 = lean_environment_main_module(x_1206); +x_1214 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1214, 0, x_1213); +lean_ctor_set(x_1214, 1, x_1201); +lean_ctor_set(x_1214, 2, x_1211); +lean_ctor_set(x_1214, 3, x_1212); +lean_inc(x_1); +x_1215 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1214, x_1210); +if (lean_obj_tag(x_1215) == 0) +{ +lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; uint8_t x_1221; +x_1216 = lean_ctor_get(x_1215, 0); +lean_inc(x_1216); +x_1217 = lean_ctor_get(x_1215, 1); +lean_inc(x_1217); +lean_dec(x_1215); +x_1218 = lean_st_ref_take(x_4, x_1209); +x_1219 = lean_ctor_get(x_1218, 0); +lean_inc(x_1219); +x_1220 = lean_ctor_get(x_1218, 1); +lean_inc(x_1220); +lean_dec(x_1218); +x_1221 = !lean_is_exclusive(x_1219); +if (x_1221 == 0) +{ +lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; +x_1222 = lean_ctor_get(x_1219, 5); +lean_dec(x_1222); +lean_ctor_set(x_1219, 5, x_1217); +x_1223 = lean_st_ref_set(x_4, x_1219, x_1220); +x_1224 = lean_ctor_get(x_1223, 1); +lean_inc(x_1224); +lean_dec(x_1223); +x_10 = x_1216; +x_11 = x_1224; +goto block_36; +} +else +{ +lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; +x_1225 = lean_ctor_get(x_1219, 0); +x_1226 = lean_ctor_get(x_1219, 1); +x_1227 = lean_ctor_get(x_1219, 2); +x_1228 = lean_ctor_get(x_1219, 3); +x_1229 = lean_ctor_get(x_1219, 4); +x_1230 = lean_ctor_get(x_1219, 6); lean_inc(x_1230); -x_1231 = lean_ctor_get(x_1229, 1); -lean_inc(x_1231); -lean_dec(x_1229); -x_1232 = lean_ctor_get(x_1230, 0); -lean_inc(x_1232); -lean_dec(x_1230); -x_1233 = lean_st_ref_get(x_4, x_1231); -x_1234 = lean_ctor_get(x_1233, 0); +lean_inc(x_1229); +lean_inc(x_1228); +lean_inc(x_1227); +lean_inc(x_1226); +lean_inc(x_1225); +lean_dec(x_1219); +x_1231 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1231, 0, x_1225); +lean_ctor_set(x_1231, 1, x_1226); +lean_ctor_set(x_1231, 2, x_1227); +lean_ctor_set(x_1231, 3, x_1228); +lean_ctor_set(x_1231, 4, x_1229); +lean_ctor_set(x_1231, 5, x_1217); +lean_ctor_set(x_1231, 6, x_1230); +x_1232 = lean_st_ref_set(x_4, x_1231, x_1220); +x_1233 = lean_ctor_get(x_1232, 1); +lean_inc(x_1233); +lean_dec(x_1232); +x_10 = x_1216; +x_11 = x_1233; +goto block_36; +} +} +else +{ +lean_object* x_1234; +lean_dec(x_2); +lean_dec(x_1); +x_1234 = lean_ctor_get(x_1215, 0); lean_inc(x_1234); -x_1235 = lean_ctor_get(x_1233, 1); +lean_dec(x_1215); +if (lean_obj_tag(x_1234) == 0) +{ +lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; uint8_t x_1240; +x_1235 = lean_ctor_get(x_1234, 0); lean_inc(x_1235); -lean_dec(x_1233); -x_1236 = lean_ctor_get(x_1234, 5); +x_1236 = lean_ctor_get(x_1234, 1); lean_inc(x_1236); lean_dec(x_1234); -x_1237 = lean_ctor_get(x_7, 1); -lean_inc(x_1237); -x_1238 = lean_ctor_get(x_7, 2); -lean_inc(x_1238); -x_1239 = lean_environment_main_module(x_1232); -x_1240 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_1240, 0, x_1239); -lean_ctor_set(x_1240, 1, x_1227); -lean_ctor_set(x_1240, 2, x_1237); -lean_ctor_set(x_1240, 3, x_1238); -lean_inc(x_1); -x_1241 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1240, x_1236); -if (lean_obj_tag(x_1241) == 0) -{ -lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; uint8_t x_1247; -x_1242 = lean_ctor_get(x_1241, 0); -lean_inc(x_1242); -x_1243 = lean_ctor_get(x_1241, 1); -lean_inc(x_1243); -lean_dec(x_1241); -x_1244 = lean_st_ref_take(x_4, x_1235); -x_1245 = lean_ctor_get(x_1244, 0); -lean_inc(x_1245); -x_1246 = lean_ctor_get(x_1244, 1); -lean_inc(x_1246); -lean_dec(x_1244); -x_1247 = !lean_is_exclusive(x_1245); -if (x_1247 == 0) -{ -lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; -x_1248 = lean_ctor_get(x_1245, 5); -lean_dec(x_1248); -lean_ctor_set(x_1245, 5, x_1243); -x_1249 = lean_st_ref_set(x_4, x_1245, x_1246); -x_1250 = lean_ctor_get(x_1249, 1); -lean_inc(x_1250); -lean_dec(x_1249); -x_10 = x_1242; -x_11 = x_1250; -goto block_36; -} -else -{ -lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; -x_1251 = lean_ctor_get(x_1245, 0); -x_1252 = lean_ctor_get(x_1245, 1); -x_1253 = lean_ctor_get(x_1245, 2); -x_1254 = lean_ctor_get(x_1245, 3); -x_1255 = lean_ctor_get(x_1245, 4); -x_1256 = lean_ctor_get(x_1245, 6); -lean_inc(x_1256); -lean_inc(x_1255); -lean_inc(x_1254); -lean_inc(x_1253); -lean_inc(x_1252); -lean_inc(x_1251); -lean_dec(x_1245); -x_1257 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1257, 0, x_1251); -lean_ctor_set(x_1257, 1, x_1252); -lean_ctor_set(x_1257, 2, x_1253); -lean_ctor_set(x_1257, 3, x_1254); -lean_ctor_set(x_1257, 4, x_1255); -lean_ctor_set(x_1257, 5, x_1243); -lean_ctor_set(x_1257, 6, x_1256); -x_1258 = lean_st_ref_set(x_4, x_1257, x_1246); -x_1259 = lean_ctor_get(x_1258, 1); -lean_inc(x_1259); -lean_dec(x_1258); -x_10 = x_1242; -x_11 = x_1259; -goto block_36; -} -} -else -{ -lean_object* x_1260; -lean_dec(x_2); -lean_dec(x_1); -x_1260 = lean_ctor_get(x_1241, 0); -lean_inc(x_1260); -lean_dec(x_1241); -if (lean_obj_tag(x_1260) == 0) -{ -lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; uint8_t x_1266; -x_1261 = lean_ctor_get(x_1260, 0); -lean_inc(x_1261); -x_1262 = lean_ctor_get(x_1260, 1); -lean_inc(x_1262); -lean_dec(x_1260); -x_1263 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1263, 0, x_1262); -x_1264 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1264, 0, x_1263); -x_1265 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1261, x_1264, x_3, x_4, x_5, x_6, x_7, x_8, x_1235); +x_1237 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1237, 0, x_1236); +x_1238 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1238, 0, x_1237); +x_1239 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1235, x_1238, x_3, x_4, x_5, x_6, x_7, x_8, x_1209); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_1261); -x_1266 = !lean_is_exclusive(x_1265); -if (x_1266 == 0) +lean_dec(x_1235); +x_1240 = !lean_is_exclusive(x_1239); +if (x_1240 == 0) { -return x_1265; +return x_1239; } else { -lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; -x_1267 = lean_ctor_get(x_1265, 0); -x_1268 = lean_ctor_get(x_1265, 1); -lean_inc(x_1268); -lean_inc(x_1267); -lean_dec(x_1265); -x_1269 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1269, 0, x_1267); -lean_ctor_set(x_1269, 1, x_1268); -return x_1269; +lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; +x_1241 = lean_ctor_get(x_1239, 0); +x_1242 = lean_ctor_get(x_1239, 1); +lean_inc(x_1242); +lean_inc(x_1241); +lean_dec(x_1239); +x_1243 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1243, 0, x_1241); +lean_ctor_set(x_1243, 1, x_1242); +return x_1243; } } else { -lean_object* x_1270; uint8_t x_1271; +lean_object* x_1244; uint8_t x_1245; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_1270 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1235); -x_1271 = !lean_is_exclusive(x_1270); -if (x_1271 == 0) +x_1244 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1209); +x_1245 = !lean_is_exclusive(x_1244); +if (x_1245 == 0) { -return x_1270; +return x_1244; } else { -lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; -x_1272 = lean_ctor_get(x_1270, 0); -x_1273 = lean_ctor_get(x_1270, 1); -lean_inc(x_1273); -lean_inc(x_1272); -lean_dec(x_1270); -x_1274 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1274, 0, x_1272); -lean_ctor_set(x_1274, 1, x_1273); -return x_1274; +lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; +x_1246 = lean_ctor_get(x_1244, 0); +x_1247 = lean_ctor_get(x_1244, 1); +lean_inc(x_1247); +lean_inc(x_1246); +lean_dec(x_1244); +x_1248 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1248, 0, x_1246); +lean_ctor_set(x_1248, 1, x_1247); +return x_1248; } } } } else { -lean_object* x_1275; uint8_t x_1276; uint8_t x_1381; -x_1275 = l_Lean_Syntax_getArg(x_1224, x_139); -lean_inc(x_1275); -x_1381 = l_Lean_Syntax_isOfKind(x_1275, x_878); -if (x_1381 == 0) +lean_object* x_1249; lean_object* x_1250; +x_1249 = l_Lean_Syntax_getArg(x_1095, x_243); +lean_dec(x_1095); +x_1250 = l___private_Lean_Elab_Match_1__expandSimpleMatch(x_1, x_242, x_1197, x_1249, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_1250; +} +} +} +} +} +} +} +} +} +block_1505: { -uint8_t x_1382; -x_1382 = 0; -x_1276 = x_1382; -goto block_1380; +if (x_1273 == 0) +{ +if (x_1272 == 0) +{ +uint8_t x_1274; +lean_dec(x_993); +x_1274 = 0; +x_994 = x_1274; +goto block_1271; } else { -lean_object* x_1383; lean_object* x_1384; uint8_t x_1385; -x_1383 = l_Lean_Syntax_getArgs(x_1275); -x_1384 = lean_array_get_size(x_1383); -lean_dec(x_1383); -x_1385 = lean_nat_dec_eq(x_1384, x_87); -lean_dec(x_1384); -x_1276 = x_1385; -goto block_1380; -} -block_1380: -{ -if (x_1276 == 0) -{ -lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; +lean_object* x_1275; lean_object* x_1276; uint8_t x_1277; +x_1275 = l_Lean_Syntax_getArgs(x_993); +lean_dec(x_993); +x_1276 = lean_array_get_size(x_1275); lean_dec(x_1275); -lean_dec(x_1224); -lean_dec(x_242); -x_1277 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_1278 = lean_ctor_get(x_1277, 0); +x_1277 = lean_nat_dec_eq(x_1276, x_87); +lean_dec(x_1276); +x_994 = x_1277; +goto block_1271; +} +} +else +{ +lean_object* x_1278; uint8_t x_1279; uint8_t x_1500; +lean_dec(x_993); +x_1278 = l_Lean_Syntax_getArg(x_942, x_87); +lean_dec(x_942); lean_inc(x_1278); -x_1279 = lean_ctor_get(x_1277, 1); -lean_inc(x_1279); -lean_dec(x_1277); -x_1280 = lean_st_ref_get(x_8, x_1279); +x_1500 = l_Lean_Syntax_isOfKind(x_1278, x_934); +if (x_1500 == 0) +{ +uint8_t x_1501; +x_1501 = 0; +x_1279 = x_1501; +goto block_1499; +} +else +{ +lean_object* x_1502; lean_object* x_1503; uint8_t x_1504; +x_1502 = l_Lean_Syntax_getArgs(x_1278); +x_1503 = lean_array_get_size(x_1502); +lean_dec(x_1502); +x_1504 = lean_nat_dec_eq(x_1503, x_87); +lean_dec(x_1503); +x_1279 = x_1504; +goto block_1499; +} +block_1499: +{ +if (x_1279 == 0) +{ +lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; +lean_dec(x_1278); +lean_dec(x_242); +x_1280 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); x_1281 = lean_ctor_get(x_1280, 0); lean_inc(x_1281); x_1282 = lean_ctor_get(x_1280, 1); lean_inc(x_1282); lean_dec(x_1280); -x_1283 = lean_ctor_get(x_1281, 0); -lean_inc(x_1283); -lean_dec(x_1281); -x_1284 = lean_st_ref_get(x_4, x_1282); -x_1285 = lean_ctor_get(x_1284, 0); +x_1283 = lean_st_ref_get(x_8, x_1282); +x_1284 = lean_ctor_get(x_1283, 0); +lean_inc(x_1284); +x_1285 = lean_ctor_get(x_1283, 1); lean_inc(x_1285); -x_1286 = lean_ctor_get(x_1284, 1); +lean_dec(x_1283); +x_1286 = lean_ctor_get(x_1284, 0); lean_inc(x_1286); lean_dec(x_1284); -x_1287 = lean_ctor_get(x_1285, 5); -lean_inc(x_1287); -lean_dec(x_1285); -x_1288 = lean_ctor_get(x_7, 1); +x_1287 = lean_st_ref_get(x_4, x_1285); +x_1288 = lean_ctor_get(x_1287, 0); lean_inc(x_1288); -x_1289 = lean_ctor_get(x_7, 2); +x_1289 = lean_ctor_get(x_1287, 1); lean_inc(x_1289); -x_1290 = lean_environment_main_module(x_1283); -x_1291 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_1291, 0, x_1290); -lean_ctor_set(x_1291, 1, x_1278); -lean_ctor_set(x_1291, 2, x_1288); -lean_ctor_set(x_1291, 3, x_1289); +lean_dec(x_1287); +x_1290 = lean_ctor_get(x_1288, 5); +lean_inc(x_1290); +lean_dec(x_1288); +x_1291 = lean_ctor_get(x_7, 1); +lean_inc(x_1291); +x_1292 = lean_ctor_get(x_7, 2); +lean_inc(x_1292); +x_1293 = lean_environment_main_module(x_1286); +x_1294 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1294, 0, x_1293); +lean_ctor_set(x_1294, 1, x_1281); +lean_ctor_set(x_1294, 2, x_1291); +lean_ctor_set(x_1294, 3, x_1292); lean_inc(x_1); -x_1292 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1291, x_1287); -if (lean_obj_tag(x_1292) == 0) +x_1295 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1294, x_1290); +if (lean_obj_tag(x_1295) == 0) { -lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; uint8_t x_1298; -x_1293 = lean_ctor_get(x_1292, 0); -lean_inc(x_1293); -x_1294 = lean_ctor_get(x_1292, 1); -lean_inc(x_1294); -lean_dec(x_1292); -x_1295 = lean_st_ref_take(x_4, x_1286); +lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; uint8_t x_1301; x_1296 = lean_ctor_get(x_1295, 0); lean_inc(x_1296); x_1297 = lean_ctor_get(x_1295, 1); lean_inc(x_1297); lean_dec(x_1295); -x_1298 = !lean_is_exclusive(x_1296); -if (x_1298 == 0) +x_1298 = lean_st_ref_take(x_4, x_1289); +x_1299 = lean_ctor_get(x_1298, 0); +lean_inc(x_1299); +x_1300 = lean_ctor_get(x_1298, 1); +lean_inc(x_1300); +lean_dec(x_1298); +x_1301 = !lean_is_exclusive(x_1299); +if (x_1301 == 0) { -lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; -x_1299 = lean_ctor_get(x_1296, 5); -lean_dec(x_1299); -lean_ctor_set(x_1296, 5, x_1294); -x_1300 = lean_st_ref_set(x_4, x_1296, x_1297); -x_1301 = lean_ctor_get(x_1300, 1); -lean_inc(x_1301); -lean_dec(x_1300); -x_10 = x_1293; -x_11 = x_1301; +lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; +x_1302 = lean_ctor_get(x_1299, 5); +lean_dec(x_1302); +lean_ctor_set(x_1299, 5, x_1297); +x_1303 = lean_st_ref_set(x_4, x_1299, x_1300); +x_1304 = lean_ctor_get(x_1303, 1); +lean_inc(x_1304); +lean_dec(x_1303); +x_10 = x_1296; +x_11 = x_1304; goto block_36; } else { -lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; -x_1302 = lean_ctor_get(x_1296, 0); -x_1303 = lean_ctor_get(x_1296, 1); -x_1304 = lean_ctor_get(x_1296, 2); -x_1305 = lean_ctor_get(x_1296, 3); -x_1306 = lean_ctor_get(x_1296, 4); -x_1307 = lean_ctor_get(x_1296, 6); +lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; +x_1305 = lean_ctor_get(x_1299, 0); +x_1306 = lean_ctor_get(x_1299, 1); +x_1307 = lean_ctor_get(x_1299, 2); +x_1308 = lean_ctor_get(x_1299, 3); +x_1309 = lean_ctor_get(x_1299, 4); +x_1310 = lean_ctor_get(x_1299, 6); +lean_inc(x_1310); +lean_inc(x_1309); +lean_inc(x_1308); lean_inc(x_1307); lean_inc(x_1306); lean_inc(x_1305); -lean_inc(x_1304); -lean_inc(x_1303); -lean_inc(x_1302); -lean_dec(x_1296); -x_1308 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1308, 0, x_1302); -lean_ctor_set(x_1308, 1, x_1303); -lean_ctor_set(x_1308, 2, x_1304); -lean_ctor_set(x_1308, 3, x_1305); -lean_ctor_set(x_1308, 4, x_1306); -lean_ctor_set(x_1308, 5, x_1294); -lean_ctor_set(x_1308, 6, x_1307); -x_1309 = lean_st_ref_set(x_4, x_1308, x_1297); -x_1310 = lean_ctor_get(x_1309, 1); -lean_inc(x_1310); -lean_dec(x_1309); -x_10 = x_1293; -x_11 = x_1310; +lean_dec(x_1299); +x_1311 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1311, 0, x_1305); +lean_ctor_set(x_1311, 1, x_1306); +lean_ctor_set(x_1311, 2, x_1307); +lean_ctor_set(x_1311, 3, x_1308); +lean_ctor_set(x_1311, 4, x_1309); +lean_ctor_set(x_1311, 5, x_1297); +lean_ctor_set(x_1311, 6, x_1310); +x_1312 = lean_st_ref_set(x_4, x_1311, x_1300); +x_1313 = lean_ctor_get(x_1312, 1); +lean_inc(x_1313); +lean_dec(x_1312); +x_10 = x_1296; +x_11 = x_1313; goto block_36; } } else { -lean_object* x_1311; +lean_object* x_1314; lean_dec(x_2); lean_dec(x_1); -x_1311 = lean_ctor_get(x_1292, 0); -lean_inc(x_1311); -lean_dec(x_1292); -if (lean_obj_tag(x_1311) == 0) +x_1314 = lean_ctor_get(x_1295, 0); +lean_inc(x_1314); +lean_dec(x_1295); +if (lean_obj_tag(x_1314) == 0) { -lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; uint8_t x_1317; -x_1312 = lean_ctor_get(x_1311, 0); -lean_inc(x_1312); -x_1313 = lean_ctor_get(x_1311, 1); -lean_inc(x_1313); -lean_dec(x_1311); -x_1314 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1314, 0, x_1313); -x_1315 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1315, 0, x_1314); -x_1316 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1312, x_1315, x_3, x_4, x_5, x_6, x_7, x_8, x_1286); +lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; uint8_t x_1320; +x_1315 = lean_ctor_get(x_1314, 0); +lean_inc(x_1315); +x_1316 = lean_ctor_get(x_1314, 1); +lean_inc(x_1316); +lean_dec(x_1314); +x_1317 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1317, 0, x_1316); +x_1318 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1318, 0, x_1317); +x_1319 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1315, x_1318, x_3, x_4, x_5, x_6, x_7, x_8, x_1289); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_1312); -x_1317 = !lean_is_exclusive(x_1316); -if (x_1317 == 0) +lean_dec(x_1315); +x_1320 = !lean_is_exclusive(x_1319); +if (x_1320 == 0) { -return x_1316; +return x_1319; } else { -lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; -x_1318 = lean_ctor_get(x_1316, 0); -x_1319 = lean_ctor_get(x_1316, 1); -lean_inc(x_1319); -lean_inc(x_1318); -lean_dec(x_1316); -x_1320 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1320, 0, x_1318); -lean_ctor_set(x_1320, 1, x_1319); -return x_1320; +lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; +x_1321 = lean_ctor_get(x_1319, 0); +x_1322 = lean_ctor_get(x_1319, 1); +lean_inc(x_1322); +lean_inc(x_1321); +lean_dec(x_1319); +x_1323 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1323, 0, x_1321); +lean_ctor_set(x_1323, 1, x_1322); +return x_1323; } } else { -lean_object* x_1321; uint8_t x_1322; +lean_object* x_1324; uint8_t x_1325; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_1321 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1286); -x_1322 = !lean_is_exclusive(x_1321); -if (x_1322 == 0) +x_1324 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1289); +x_1325 = !lean_is_exclusive(x_1324); +if (x_1325 == 0) { -return x_1321; +return x_1324; } else { -lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; -x_1323 = lean_ctor_get(x_1321, 0); -x_1324 = lean_ctor_get(x_1321, 1); -lean_inc(x_1324); -lean_inc(x_1323); -lean_dec(x_1321); -x_1325 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1325, 0, x_1323); -lean_ctor_set(x_1325, 1, x_1324); -return x_1325; -} -} -} -} -else -{ -lean_object* x_1326; lean_object* x_1327; uint8_t x_1328; -x_1326 = l_Lean_Syntax_getArg(x_1275, x_139); -lean_dec(x_1275); -x_1327 = l_Lean_identKind___closed__2; +lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; +x_1326 = lean_ctor_get(x_1324, 0); +x_1327 = lean_ctor_get(x_1324, 1); +lean_inc(x_1327); lean_inc(x_1326); -x_1328 = l_Lean_Syntax_isOfKind(x_1326, x_1327); -if (x_1328 == 0) +lean_dec(x_1324); +x_1328 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1328, 0, x_1326); +lean_ctor_set(x_1328, 1, x_1327); +return x_1328; +} +} +} +} +else { -lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; -lean_dec(x_1326); -lean_dec(x_1224); -lean_dec(x_242); -x_1329 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_1330 = lean_ctor_get(x_1329, 0); -lean_inc(x_1330); -x_1331 = lean_ctor_get(x_1329, 1); -lean_inc(x_1331); +lean_object* x_1329; uint8_t x_1330; lean_object* x_1492; uint8_t x_1493; +x_1329 = l_Lean_Syntax_getArg(x_1278, x_139); +lean_dec(x_1278); +x_1492 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +lean_inc(x_1329); +x_1493 = l_Lean_Syntax_isOfKind(x_1329, x_1492); +if (x_1493 == 0) +{ +uint8_t x_1494; +x_1494 = 0; +x_1330 = x_1494; +goto block_1491; +} +else +{ +lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; uint8_t x_1498; +x_1495 = l_Lean_Syntax_getArgs(x_1329); +x_1496 = lean_array_get_size(x_1495); +lean_dec(x_1495); +x_1497 = lean_unsigned_to_nat(3u); +x_1498 = lean_nat_dec_eq(x_1496, x_1497); +lean_dec(x_1496); +x_1330 = x_1498; +goto block_1491; +} +block_1491: +{ +if (x_1330 == 0) +{ +lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_dec(x_1329); -x_1332 = lean_st_ref_get(x_8, x_1331); -x_1333 = lean_ctor_get(x_1332, 0); +lean_dec(x_242); +x_1331 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_1332 = lean_ctor_get(x_1331, 0); +lean_inc(x_1332); +x_1333 = lean_ctor_get(x_1331, 1); lean_inc(x_1333); -x_1334 = lean_ctor_get(x_1332, 1); -lean_inc(x_1334); -lean_dec(x_1332); -x_1335 = lean_ctor_get(x_1333, 0); +lean_dec(x_1331); +x_1334 = lean_st_ref_get(x_8, x_1333); +x_1335 = lean_ctor_get(x_1334, 0); lean_inc(x_1335); -lean_dec(x_1333); -x_1336 = lean_st_ref_get(x_4, x_1334); -x_1337 = lean_ctor_get(x_1336, 0); +x_1336 = lean_ctor_get(x_1334, 1); +lean_inc(x_1336); +lean_dec(x_1334); +x_1337 = lean_ctor_get(x_1335, 0); lean_inc(x_1337); -x_1338 = lean_ctor_get(x_1336, 1); -lean_inc(x_1338); -lean_dec(x_1336); -x_1339 = lean_ctor_get(x_1337, 5); +lean_dec(x_1335); +x_1338 = lean_st_ref_get(x_4, x_1336); +x_1339 = lean_ctor_get(x_1338, 0); lean_inc(x_1339); -lean_dec(x_1337); -x_1340 = lean_ctor_get(x_7, 1); +x_1340 = lean_ctor_get(x_1338, 1); lean_inc(x_1340); -x_1341 = lean_ctor_get(x_7, 2); +lean_dec(x_1338); +x_1341 = lean_ctor_get(x_1339, 5); lean_inc(x_1341); -x_1342 = lean_environment_main_module(x_1335); -x_1343 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_1343, 0, x_1342); -lean_ctor_set(x_1343, 1, x_1330); -lean_ctor_set(x_1343, 2, x_1340); -lean_ctor_set(x_1343, 3, x_1341); +lean_dec(x_1339); +x_1342 = lean_ctor_get(x_7, 1); +lean_inc(x_1342); +x_1343 = lean_ctor_get(x_7, 2); +lean_inc(x_1343); +x_1344 = lean_environment_main_module(x_1337); +x_1345 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1345, 0, x_1344); +lean_ctor_set(x_1345, 1, x_1332); +lean_ctor_set(x_1345, 2, x_1342); +lean_ctor_set(x_1345, 3, x_1343); lean_inc(x_1); -x_1344 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1343, x_1339); -if (lean_obj_tag(x_1344) == 0) +x_1346 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1345, x_1341); +if (lean_obj_tag(x_1346) == 0) { -lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; uint8_t x_1350; -x_1345 = lean_ctor_get(x_1344, 0); -lean_inc(x_1345); -x_1346 = lean_ctor_get(x_1344, 1); -lean_inc(x_1346); -lean_dec(x_1344); -x_1347 = lean_st_ref_take(x_4, x_1338); -x_1348 = lean_ctor_get(x_1347, 0); +lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; uint8_t x_1352; +x_1347 = lean_ctor_get(x_1346, 0); +lean_inc(x_1347); +x_1348 = lean_ctor_get(x_1346, 1); lean_inc(x_1348); -x_1349 = lean_ctor_get(x_1347, 1); -lean_inc(x_1349); -lean_dec(x_1347); -x_1350 = !lean_is_exclusive(x_1348); -if (x_1350 == 0) +lean_dec(x_1346); +x_1349 = lean_st_ref_take(x_4, x_1340); +x_1350 = lean_ctor_get(x_1349, 0); +lean_inc(x_1350); +x_1351 = lean_ctor_get(x_1349, 1); +lean_inc(x_1351); +lean_dec(x_1349); +x_1352 = !lean_is_exclusive(x_1350); +if (x_1352 == 0) { -lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; -x_1351 = lean_ctor_get(x_1348, 5); -lean_dec(x_1351); -lean_ctor_set(x_1348, 5, x_1346); -x_1352 = lean_st_ref_set(x_4, x_1348, x_1349); -x_1353 = lean_ctor_get(x_1352, 1); -lean_inc(x_1353); -lean_dec(x_1352); -x_10 = x_1345; -x_11 = x_1353; +lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; +x_1353 = lean_ctor_get(x_1350, 5); +lean_dec(x_1353); +lean_ctor_set(x_1350, 5, x_1348); +x_1354 = lean_st_ref_set(x_4, x_1350, x_1351); +x_1355 = lean_ctor_get(x_1354, 1); +lean_inc(x_1355); +lean_dec(x_1354); +x_10 = x_1347; +x_11 = x_1355; goto block_36; } else { -lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; -x_1354 = lean_ctor_get(x_1348, 0); -x_1355 = lean_ctor_get(x_1348, 1); -x_1356 = lean_ctor_get(x_1348, 2); -x_1357 = lean_ctor_get(x_1348, 3); -x_1358 = lean_ctor_get(x_1348, 4); -x_1359 = lean_ctor_get(x_1348, 6); +lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; +x_1356 = lean_ctor_get(x_1350, 0); +x_1357 = lean_ctor_get(x_1350, 1); +x_1358 = lean_ctor_get(x_1350, 2); +x_1359 = lean_ctor_get(x_1350, 3); +x_1360 = lean_ctor_get(x_1350, 4); +x_1361 = lean_ctor_get(x_1350, 6); +lean_inc(x_1361); +lean_inc(x_1360); lean_inc(x_1359); lean_inc(x_1358); lean_inc(x_1357); lean_inc(x_1356); -lean_inc(x_1355); -lean_inc(x_1354); -lean_dec(x_1348); -x_1360 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1360, 0, x_1354); -lean_ctor_set(x_1360, 1, x_1355); -lean_ctor_set(x_1360, 2, x_1356); -lean_ctor_set(x_1360, 3, x_1357); -lean_ctor_set(x_1360, 4, x_1358); -lean_ctor_set(x_1360, 5, x_1346); -lean_ctor_set(x_1360, 6, x_1359); -x_1361 = lean_st_ref_set(x_4, x_1360, x_1349); -x_1362 = lean_ctor_get(x_1361, 1); -lean_inc(x_1362); -lean_dec(x_1361); -x_10 = x_1345; -x_11 = x_1362; +lean_dec(x_1350); +x_1362 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1362, 0, x_1356); +lean_ctor_set(x_1362, 1, x_1357); +lean_ctor_set(x_1362, 2, x_1358); +lean_ctor_set(x_1362, 3, x_1359); +lean_ctor_set(x_1362, 4, x_1360); +lean_ctor_set(x_1362, 5, x_1348); +lean_ctor_set(x_1362, 6, x_1361); +x_1363 = lean_st_ref_set(x_4, x_1362, x_1351); +x_1364 = lean_ctor_get(x_1363, 1); +lean_inc(x_1364); +lean_dec(x_1363); +x_10 = x_1347; +x_11 = x_1364; goto block_36; } } else { -lean_object* x_1363; +lean_object* x_1365; lean_dec(x_2); lean_dec(x_1); -x_1363 = lean_ctor_get(x_1344, 0); -lean_inc(x_1363); -lean_dec(x_1344); -if (lean_obj_tag(x_1363) == 0) -{ -lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; uint8_t x_1369; -x_1364 = lean_ctor_get(x_1363, 0); -lean_inc(x_1364); -x_1365 = lean_ctor_get(x_1363, 1); +x_1365 = lean_ctor_get(x_1346, 0); lean_inc(x_1365); -lean_dec(x_1363); -x_1366 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1366, 0, x_1365); -x_1367 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1367, 0, x_1366); -x_1368 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1364, x_1367, x_3, x_4, x_5, x_6, x_7, x_8, x_1338); +lean_dec(x_1346); +if (lean_obj_tag(x_1365) == 0) +{ +lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; uint8_t x_1371; +x_1366 = lean_ctor_get(x_1365, 0); +lean_inc(x_1366); +x_1367 = lean_ctor_get(x_1365, 1); +lean_inc(x_1367); +lean_dec(x_1365); +x_1368 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1368, 0, x_1367); +x_1369 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1369, 0, x_1368); +x_1370 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1366, x_1369, x_3, x_4, x_5, x_6, x_7, x_8, x_1340); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_1364); -x_1369 = !lean_is_exclusive(x_1368); -if (x_1369 == 0) +lean_dec(x_1366); +x_1371 = !lean_is_exclusive(x_1370); +if (x_1371 == 0) { -return x_1368; +return x_1370; } else { -lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; -x_1370 = lean_ctor_get(x_1368, 0); -x_1371 = lean_ctor_get(x_1368, 1); -lean_inc(x_1371); -lean_inc(x_1370); -lean_dec(x_1368); -x_1372 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1372, 0, x_1370); -lean_ctor_set(x_1372, 1, x_1371); -return x_1372; +lean_object* x_1372; lean_object* x_1373; lean_object* x_1374; +x_1372 = lean_ctor_get(x_1370, 0); +x_1373 = lean_ctor_get(x_1370, 1); +lean_inc(x_1373); +lean_inc(x_1372); +lean_dec(x_1370); +x_1374 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1374, 0, x_1372); +lean_ctor_set(x_1374, 1, x_1373); +return x_1374; } } else { -lean_object* x_1373; uint8_t x_1374; +lean_object* x_1375; uint8_t x_1376; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_1373 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1338); -x_1374 = !lean_is_exclusive(x_1373); -if (x_1374 == 0) +x_1375 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1340); +x_1376 = !lean_is_exclusive(x_1375); +if (x_1376 == 0) { -return x_1373; +return x_1375; } else { -lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; -x_1375 = lean_ctor_get(x_1373, 0); -x_1376 = lean_ctor_get(x_1373, 1); -lean_inc(x_1376); -lean_inc(x_1375); -lean_dec(x_1373); -x_1377 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1377, 0, x_1375); -lean_ctor_set(x_1377, 1, x_1376); -return x_1377; -} -} -} -} -else -{ -lean_object* x_1378; lean_object* x_1379; -x_1378 = l_Lean_Syntax_getArg(x_1224, x_243); -lean_dec(x_1224); -x_1379 = l___private_Lean_Elab_Match_1__expandSimpleMatch(x_1, x_242, x_1326, x_1378, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; +x_1377 = lean_ctor_get(x_1375, 0); +x_1378 = lean_ctor_get(x_1375, 1); +lean_inc(x_1378); +lean_inc(x_1377); +lean_dec(x_1375); +x_1379 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1379, 0, x_1377); +lean_ctor_set(x_1379, 1, x_1378); return x_1379; } } } } +else +{ +lean_object* x_1380; uint8_t x_1381; uint8_t x_1486; +x_1380 = l_Lean_Syntax_getArg(x_1329, x_139); +lean_inc(x_1380); +x_1486 = l_Lean_Syntax_isOfKind(x_1380, x_934); +if (x_1486 == 0) +{ +uint8_t x_1487; +x_1487 = 0; +x_1381 = x_1487; +goto block_1485; +} +else +{ +lean_object* x_1488; lean_object* x_1489; uint8_t x_1490; +x_1488 = l_Lean_Syntax_getArgs(x_1380); +x_1489 = lean_array_get_size(x_1488); +lean_dec(x_1488); +x_1490 = lean_nat_dec_eq(x_1489, x_87); +lean_dec(x_1489); +x_1381 = x_1490; +goto block_1485; +} +block_1485: +{ +if (x_1381 == 0) +{ +lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; +lean_dec(x_1380); +lean_dec(x_1329); +lean_dec(x_242); +x_1382 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_1383 = lean_ctor_get(x_1382, 0); +lean_inc(x_1383); +x_1384 = lean_ctor_get(x_1382, 1); +lean_inc(x_1384); +lean_dec(x_1382); +x_1385 = lean_st_ref_get(x_8, x_1384); +x_1386 = lean_ctor_get(x_1385, 0); +lean_inc(x_1386); +x_1387 = lean_ctor_get(x_1385, 1); +lean_inc(x_1387); +lean_dec(x_1385); +x_1388 = lean_ctor_get(x_1386, 0); +lean_inc(x_1388); +lean_dec(x_1386); +x_1389 = lean_st_ref_get(x_4, x_1387); +x_1390 = lean_ctor_get(x_1389, 0); +lean_inc(x_1390); +x_1391 = lean_ctor_get(x_1389, 1); +lean_inc(x_1391); +lean_dec(x_1389); +x_1392 = lean_ctor_get(x_1390, 5); +lean_inc(x_1392); +lean_dec(x_1390); +x_1393 = lean_ctor_get(x_7, 1); +lean_inc(x_1393); +x_1394 = lean_ctor_get(x_7, 2); +lean_inc(x_1394); +x_1395 = lean_environment_main_module(x_1388); +x_1396 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1396, 0, x_1395); +lean_ctor_set(x_1396, 1, x_1383); +lean_ctor_set(x_1396, 2, x_1393); +lean_ctor_set(x_1396, 3, x_1394); +lean_inc(x_1); +x_1397 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1396, x_1392); +if (lean_obj_tag(x_1397) == 0) +{ +lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; uint8_t x_1403; +x_1398 = lean_ctor_get(x_1397, 0); +lean_inc(x_1398); +x_1399 = lean_ctor_get(x_1397, 1); +lean_inc(x_1399); +lean_dec(x_1397); +x_1400 = lean_st_ref_take(x_4, x_1391); +x_1401 = lean_ctor_get(x_1400, 0); +lean_inc(x_1401); +x_1402 = lean_ctor_get(x_1400, 1); +lean_inc(x_1402); +lean_dec(x_1400); +x_1403 = !lean_is_exclusive(x_1401); +if (x_1403 == 0) +{ +lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; +x_1404 = lean_ctor_get(x_1401, 5); +lean_dec(x_1404); +lean_ctor_set(x_1401, 5, x_1399); +x_1405 = lean_st_ref_set(x_4, x_1401, x_1402); +x_1406 = lean_ctor_get(x_1405, 1); +lean_inc(x_1406); +lean_dec(x_1405); +x_10 = x_1398; +x_11 = x_1406; +goto block_36; +} +else +{ +lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; +x_1407 = lean_ctor_get(x_1401, 0); +x_1408 = lean_ctor_get(x_1401, 1); +x_1409 = lean_ctor_get(x_1401, 2); +x_1410 = lean_ctor_get(x_1401, 3); +x_1411 = lean_ctor_get(x_1401, 4); +x_1412 = lean_ctor_get(x_1401, 6); +lean_inc(x_1412); +lean_inc(x_1411); +lean_inc(x_1410); +lean_inc(x_1409); +lean_inc(x_1408); +lean_inc(x_1407); +lean_dec(x_1401); +x_1413 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1413, 0, x_1407); +lean_ctor_set(x_1413, 1, x_1408); +lean_ctor_set(x_1413, 2, x_1409); +lean_ctor_set(x_1413, 3, x_1410); +lean_ctor_set(x_1413, 4, x_1411); +lean_ctor_set(x_1413, 5, x_1399); +lean_ctor_set(x_1413, 6, x_1412); +x_1414 = lean_st_ref_set(x_4, x_1413, x_1402); +x_1415 = lean_ctor_get(x_1414, 1); +lean_inc(x_1415); +lean_dec(x_1414); +x_10 = x_1398; +x_11 = x_1415; +goto block_36; +} +} +else +{ +lean_object* x_1416; +lean_dec(x_2); +lean_dec(x_1); +x_1416 = lean_ctor_get(x_1397, 0); +lean_inc(x_1416); +lean_dec(x_1397); +if (lean_obj_tag(x_1416) == 0) +{ +lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; uint8_t x_1422; +x_1417 = lean_ctor_get(x_1416, 0); +lean_inc(x_1417); +x_1418 = lean_ctor_get(x_1416, 1); +lean_inc(x_1418); +lean_dec(x_1416); +x_1419 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1419, 0, x_1418); +x_1420 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1420, 0, x_1419); +x_1421 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1417, x_1420, x_3, x_4, x_5, x_6, x_7, x_8, x_1391); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1417); +x_1422 = !lean_is_exclusive(x_1421); +if (x_1422 == 0) +{ +return x_1421; +} +else +{ +lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; +x_1423 = lean_ctor_get(x_1421, 0); +x_1424 = lean_ctor_get(x_1421, 1); +lean_inc(x_1424); +lean_inc(x_1423); +lean_dec(x_1421); +x_1425 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1425, 0, x_1423); +lean_ctor_set(x_1425, 1, x_1424); +return x_1425; +} +} +else +{ +lean_object* x_1426; uint8_t x_1427; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_1426 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1391); +x_1427 = !lean_is_exclusive(x_1426); +if (x_1427 == 0) +{ +return x_1426; +} +else +{ +lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; +x_1428 = lean_ctor_get(x_1426, 0); +x_1429 = lean_ctor_get(x_1426, 1); +lean_inc(x_1429); +lean_inc(x_1428); +lean_dec(x_1426); +x_1430 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1430, 0, x_1428); +lean_ctor_set(x_1430, 1, x_1429); +return x_1430; +} +} +} +} +else +{ +lean_object* x_1431; lean_object* x_1432; uint8_t x_1433; +x_1431 = l_Lean_Syntax_getArg(x_1380, x_139); +lean_dec(x_1380); +x_1432 = l_Lean_identKind___closed__2; +lean_inc(x_1431); +x_1433 = l_Lean_Syntax_isOfKind(x_1431, x_1432); +if (x_1433 == 0) +{ +lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; +lean_dec(x_1431); +lean_dec(x_1329); +lean_dec(x_242); +x_1434 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_1435 = lean_ctor_get(x_1434, 0); +lean_inc(x_1435); +x_1436 = lean_ctor_get(x_1434, 1); +lean_inc(x_1436); +lean_dec(x_1434); +x_1437 = lean_st_ref_get(x_8, x_1436); +x_1438 = lean_ctor_get(x_1437, 0); +lean_inc(x_1438); +x_1439 = lean_ctor_get(x_1437, 1); +lean_inc(x_1439); +lean_dec(x_1437); +x_1440 = lean_ctor_get(x_1438, 0); +lean_inc(x_1440); +lean_dec(x_1438); +x_1441 = lean_st_ref_get(x_4, x_1439); +x_1442 = lean_ctor_get(x_1441, 0); +lean_inc(x_1442); +x_1443 = lean_ctor_get(x_1441, 1); +lean_inc(x_1443); +lean_dec(x_1441); +x_1444 = lean_ctor_get(x_1442, 5); +lean_inc(x_1444); +lean_dec(x_1442); +x_1445 = lean_ctor_get(x_7, 1); +lean_inc(x_1445); +x_1446 = lean_ctor_get(x_7, 2); +lean_inc(x_1446); +x_1447 = lean_environment_main_module(x_1440); +x_1448 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1448, 0, x_1447); +lean_ctor_set(x_1448, 1, x_1435); +lean_ctor_set(x_1448, 2, x_1445); +lean_ctor_set(x_1448, 3, x_1446); +lean_inc(x_1); +x_1449 = l___private_Lean_Elab_Match_41__expandMatchDiscr_x3f(x_1, x_1448, x_1444); +if (lean_obj_tag(x_1449) == 0) +{ +lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; uint8_t x_1455; +x_1450 = lean_ctor_get(x_1449, 0); +lean_inc(x_1450); +x_1451 = lean_ctor_get(x_1449, 1); +lean_inc(x_1451); +lean_dec(x_1449); +x_1452 = lean_st_ref_take(x_4, x_1443); +x_1453 = lean_ctor_get(x_1452, 0); +lean_inc(x_1453); +x_1454 = lean_ctor_get(x_1452, 1); +lean_inc(x_1454); +lean_dec(x_1452); +x_1455 = !lean_is_exclusive(x_1453); +if (x_1455 == 0) +{ +lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; +x_1456 = lean_ctor_get(x_1453, 5); +lean_dec(x_1456); +lean_ctor_set(x_1453, 5, x_1451); +x_1457 = lean_st_ref_set(x_4, x_1453, x_1454); +x_1458 = lean_ctor_get(x_1457, 1); +lean_inc(x_1458); +lean_dec(x_1457); +x_10 = x_1450; +x_11 = x_1458; +goto block_36; +} +else +{ +lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; +x_1459 = lean_ctor_get(x_1453, 0); +x_1460 = lean_ctor_get(x_1453, 1); +x_1461 = lean_ctor_get(x_1453, 2); +x_1462 = lean_ctor_get(x_1453, 3); +x_1463 = lean_ctor_get(x_1453, 4); +x_1464 = lean_ctor_get(x_1453, 6); +lean_inc(x_1464); +lean_inc(x_1463); +lean_inc(x_1462); +lean_inc(x_1461); +lean_inc(x_1460); +lean_inc(x_1459); +lean_dec(x_1453); +x_1465 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1465, 0, x_1459); +lean_ctor_set(x_1465, 1, x_1460); +lean_ctor_set(x_1465, 2, x_1461); +lean_ctor_set(x_1465, 3, x_1462); +lean_ctor_set(x_1465, 4, x_1463); +lean_ctor_set(x_1465, 5, x_1451); +lean_ctor_set(x_1465, 6, x_1464); +x_1466 = lean_st_ref_set(x_4, x_1465, x_1454); +x_1467 = lean_ctor_get(x_1466, 1); +lean_inc(x_1467); +lean_dec(x_1466); +x_10 = x_1450; +x_11 = x_1467; +goto block_36; +} +} +else +{ +lean_object* x_1468; +lean_dec(x_2); +lean_dec(x_1); +x_1468 = lean_ctor_get(x_1449, 0); +lean_inc(x_1468); +lean_dec(x_1449); +if (lean_obj_tag(x_1468) == 0) +{ +lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; uint8_t x_1474; +x_1469 = lean_ctor_get(x_1468, 0); +lean_inc(x_1469); +x_1470 = lean_ctor_get(x_1468, 1); +lean_inc(x_1470); +lean_dec(x_1468); +x_1471 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1471, 0, x_1470); +x_1472 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1472, 0, x_1471); +x_1473 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabTermAux___main___spec__1___rarg(x_1469, x_1472, x_3, x_4, x_5, x_6, x_7, x_8, x_1443); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1469); +x_1474 = !lean_is_exclusive(x_1473); +if (x_1474 == 0) +{ +return x_1473; +} +else +{ +lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; +x_1475 = lean_ctor_get(x_1473, 0); +x_1476 = lean_ctor_get(x_1473, 1); +lean_inc(x_1476); +lean_inc(x_1475); +lean_dec(x_1473); +x_1477 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1477, 0, x_1475); +lean_ctor_set(x_1477, 1, x_1476); +return x_1477; +} +} +else +{ +lean_object* x_1478; uint8_t x_1479; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_1478 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_20__elabCDot___spec__1___rarg(x_1443); +x_1479 = !lean_is_exclusive(x_1478); +if (x_1479 == 0) +{ +return x_1478; +} +else +{ +lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; +x_1480 = lean_ctor_get(x_1478, 0); +x_1481 = lean_ctor_get(x_1478, 1); +lean_inc(x_1481); +lean_inc(x_1480); +lean_dec(x_1478); +x_1482 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1482, 0, x_1480); +lean_ctor_set(x_1482, 1, x_1481); +return x_1482; +} +} +} +} +else +{ +lean_object* x_1483; lean_object* x_1484; +x_1483 = l_Lean_Syntax_getArg(x_1329, x_243); +lean_dec(x_1329); +x_1484 = l___private_Lean_Elab_Match_1__expandSimpleMatch(x_1, x_242, x_1431, x_1483, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_1484; +} +} +} +} +} +} } } } diff --git a/stage0/stdlib/Lean/Elab/Quotation.c b/stage0/stdlib/Lean/Elab/Quotation.c index 16adcb2d6b..da616073ac 100644 --- a/stage0/stdlib/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Lean/Elab/Quotation.c @@ -13674,50 +13674,52 @@ return x_61; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand(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; 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_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; x_9 = lean_unsigned_to_nat(1u); x_10 = l_Lean_Syntax_getArg(x_1, x_9); -x_11 = lean_unsigned_to_nat(4u); +x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Syntax_getArg(x_1, x_11); -x_13 = l_Lean_Syntax_getArgs(x_12); +x_13 = l_Lean_Syntax_getArg(x_12, x_9); lean_dec(x_12); -x_14 = lean_unsigned_to_nat(2u); -x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_empty___closed__1; -x_17 = l_Array_foldlStepMAux___main___at_Lean_Elab_Term_elabParen___spec__1(x_14, x_13, x_15, x_16); +x_14 = l_Lean_Syntax_getArgs(x_13); lean_dec(x_13); -x_18 = x_17; -x_19 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___boxed), 9, 2); -lean_closure_set(x_19, 0, x_15); -lean_closure_set(x_19, 1, x_18); -x_20 = x_19; +x_15 = lean_unsigned_to_nat(2u); +x_16 = lean_unsigned_to_nat(0u); +x_17 = l_Array_empty___closed__1; +x_18 = l_Array_foldlStepMAux___main___at_Lean_Elab_Term_elabParen___spec__1(x_15, x_14, x_16, x_17); +lean_dec(x_14); +x_19 = x_18; +x_20 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___boxed), 9, 2); +lean_closure_set(x_20, 0, x_16); +lean_closure_set(x_20, 1, x_19); +x_21 = x_20; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_21 = lean_apply_7(x_20, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_21) == 0) +x_22 = lean_apply_7(x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_22) == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_22 = lean_ctor_get(x_21, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_21, 1); +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_23 = lean_ctor_get(x_22, 0); lean_inc(x_23); -lean_dec(x_21); -x_24 = lean_box(0); -x_25 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_25, 0, x_10); -lean_ctor_set(x_25, 1, x_24); -x_26 = l_Array_toList___rarg(x_22); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); lean_dec(x_22); -x_27 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_25, x_26, x_2, x_3, x_4, x_5, x_6, x_7, x_23); -return x_27; +x_25 = lean_box(0); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_10); +lean_ctor_set(x_26, 1, x_25); +x_27 = l_Array_toList___rarg(x_23); +lean_dec(x_23); +x_28 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_26, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_24); +return x_28; } else { -uint8_t x_28; +uint8_t x_29; lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); @@ -13725,23 +13727,23 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_28 = !lean_is_exclusive(x_21); -if (x_28 == 0) +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) { -return x_21; +return x_22; } else { -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_21, 0); -x_30 = lean_ctor_get(x_21, 1); +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_21); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; } } } diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index 0445c087b5..3aeac034a2 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -168,7 +168,6 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__73; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__98; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__25; lean_object* lean_string_utf8_byte_size(lean_object*); -lean_object* l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__10; extern lean_object* l_Lean_mkAppStx___closed__4; lean_object* l_Lean_Elab_Command_expandElab___closed__36; lean_object* l_Lean_mkAtom(lean_object*); @@ -198,6 +197,7 @@ lean_object* l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__4; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__5; +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; lean_object* l___private_Lean_Elab_Syntax_3__withNotFirst(lean_object*); lean_object* l_Lean_Elab_Command_elabDeclareSyntaxCat___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2; @@ -298,7 +298,6 @@ lean_object* l___private_Lean_Elab_Syntax_9__expandNotationAux(lean_object*, lea lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__83; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__2; extern lean_object* l_Lean_Elab_mkMacroAttribute___closed__10; -extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; lean_object* l_Lean_Macro_addMacroScope(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_regTermParserAttribute___closed__1; lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Syntax_8__antiquote___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); @@ -307,6 +306,7 @@ lean_object* l___private_Lean_Elab_Syntax_10__regTraceClasses(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__129; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; extern lean_object* l_Lean_numLitKind___closed__1; extern lean_object* l_Lean_strLitKind___closed__1; lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_1__mkParserSeq___spec__1___closed__3; @@ -335,7 +335,6 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__56; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__66; lean_object* l_Nat_repr(lean_object*); extern lean_object* l_Char_HasRepr___closed__1; -extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__10; lean_object* l_Lean_Elab_Command_withExpectedType___closed__1; lean_object* l_Lean_Elab_Command_expandElab___closed__42; lean_object* l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__33; @@ -397,6 +396,7 @@ extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__2; lean_object* l_Lean_Elab_Command_elabSyntax___closed__18; lean_object* l___regBuiltin_Lean_Elab_Command_elabMixfix(lean_object*); lean_object* l_Lean_Elab_Command_elabCommand___main(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__12; lean_object* l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__58; lean_object* l_Lean_Elab_Command_elabSyntax___closed__15; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__6; @@ -417,7 +417,6 @@ lean_object* l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__52; lean_object* l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__9; lean_object* l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__37; lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_1__mkParserSeq___spec__1___closed__6; extern lean_object* l_Lean_quotedSymbolKind; @@ -656,7 +655,6 @@ lean_object* lean_nat_mod(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabMixfix___closed__2; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__99; lean_object* l_Lean_Elab_Command_expandElab___closed__8; -lean_object* l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__9; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__11; lean_object* l_Lean_Elab_Command_expandNotationItemIntoSyntaxItem___closed__2; lean_object* l_Lean_Elab_Command_expandElab___closed__6; @@ -8339,7 +8337,7 @@ x_5 = l___private_Lean_Elab_Syntax_5__getCatSuffix(x_1); x_6 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__1; x_7 = lean_string_append(x_6, x_5); lean_dec(x_5); -x_8 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__10; +x_8 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__12; x_9 = lean_string_append(x_7, x_8); x_10 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__2; x_11 = l_Lean_Name_append___main(x_1, x_10); @@ -10848,7 +10846,7 @@ lean_dec(x_4); x_14 = !lean_is_exclusive(x_13); if (x_14 == 0) { -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; 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; 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; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; +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; 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; 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; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; x_15 = lean_ctor_get(x_13, 0); x_16 = l_Lean_Elab_mkMacroAttribute___closed__8; lean_inc(x_11); @@ -10971,311 +10969,319 @@ x_86 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; x_87 = lean_array_push(x_86, x_79); x_88 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_89 = lean_array_push(x_87, x_88); -x_90 = lean_array_push(x_89, x_43); -x_91 = lean_unsigned_to_nat(0u); -x_92 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_8, x_8, x_91, x_22); +x_90 = lean_unsigned_to_nat(0u); +x_91 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_8, x_8, x_90, x_22); lean_dec(x_8); -x_93 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; -x_94 = lean_array_push(x_92, x_93); -x_95 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_92 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_93 = lean_array_push(x_91, x_92); +x_94 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; lean_inc(x_11); lean_inc(x_15); -x_96 = l_Lean_addMacroScope(x_15, x_95, x_11); -x_97 = l_Lean_Elab_Command_elabMacroRulesAux___closed__24; -x_98 = l_Lean_Elab_Command_elabMacroRulesAux___closed__30; -x_99 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_99, 0, x_19); -lean_ctor_set(x_99, 1, x_97); -lean_ctor_set(x_99, 2, x_96); -lean_ctor_set(x_99, 3, x_98); -x_100 = lean_array_push(x_22, x_99); -x_101 = l_Lean_Elab_Command_elabMacroRulesAux___closed__36; -x_102 = l_Lean_addMacroScope(x_15, x_101, x_11); -x_103 = l_Lean_Elab_Command_elabMacroRulesAux___closed__33; -x_104 = l_Lean_Elab_Command_elabMacroRulesAux___closed__38; -x_105 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_105, 0, x_19); -lean_ctor_set(x_105, 1, x_103); -lean_ctor_set(x_105, 2, x_102); -lean_ctor_set(x_105, 3, x_104); -x_106 = lean_array_push(x_22, x_105); -x_107 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_107, 0, x_26); -lean_ctor_set(x_107, 1, x_106); -x_108 = lean_array_push(x_100, x_107); -x_109 = l_Lean_mkAppStx___closed__8; -x_110 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_110, 0, x_109); -lean_ctor_set(x_110, 1, x_108); -x_111 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; -x_112 = lean_array_push(x_111, x_110); -x_113 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_114 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_114, 0, x_113); -lean_ctor_set(x_114, 1, x_112); -x_115 = lean_array_push(x_94, x_114); -x_116 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_116, 0, x_26); -lean_ctor_set(x_116, 1, x_115); -x_117 = lean_array_push(x_90, x_116); -x_118 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_119 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_119, 0, x_118); -lean_ctor_set(x_119, 1, x_117); -x_120 = lean_array_push(x_85, x_119); -x_121 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; -x_122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_120); -x_123 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; -x_124 = lean_array_push(x_123, x_122); -x_125 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; -x_126 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_126, 0, x_125); -lean_ctor_set(x_126, 1, x_124); -x_127 = lean_array_push(x_75, x_126); -x_128 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; -x_129 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_129, 0, x_128); -lean_ctor_set(x_129, 1, x_127); -x_130 = lean_array_push(x_50, x_129); -x_131 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; -x_132 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_132, 0, x_131); -lean_ctor_set(x_132, 1, x_130); -lean_ctor_set(x_13, 0, x_132); +x_95 = l_Lean_addMacroScope(x_15, x_94, x_11); +x_96 = l_Lean_Elab_Command_elabMacroRulesAux___closed__24; +x_97 = l_Lean_Elab_Command_elabMacroRulesAux___closed__30; +x_98 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_98, 0, x_19); +lean_ctor_set(x_98, 1, x_96); +lean_ctor_set(x_98, 2, x_95); +lean_ctor_set(x_98, 3, x_97); +x_99 = lean_array_push(x_22, x_98); +x_100 = l_Lean_Elab_Command_elabMacroRulesAux___closed__36; +x_101 = l_Lean_addMacroScope(x_15, x_100, x_11); +x_102 = l_Lean_Elab_Command_elabMacroRulesAux___closed__33; +x_103 = l_Lean_Elab_Command_elabMacroRulesAux___closed__38; +x_104 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_104, 0, x_19); +lean_ctor_set(x_104, 1, x_102); +lean_ctor_set(x_104, 2, x_101); +lean_ctor_set(x_104, 3, x_103); +x_105 = lean_array_push(x_22, x_104); +x_106 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_106, 0, x_26); +lean_ctor_set(x_106, 1, x_105); +x_107 = lean_array_push(x_99, x_106); +x_108 = l_Lean_mkAppStx___closed__8; +x_109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_107); +x_110 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; +x_111 = lean_array_push(x_110, x_109); +x_112 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_112); +lean_ctor_set(x_113, 1, x_111); +x_114 = lean_array_push(x_93, x_113); +x_115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_115, 0, x_26); +lean_ctor_set(x_115, 1, x_114); +x_116 = lean_array_push(x_41, x_115); +x_117 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_118 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_118, 0, x_117); +lean_ctor_set(x_118, 1, x_116); +x_119 = lean_array_push(x_89, x_118); +x_120 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_121 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_121, 0, x_120); +lean_ctor_set(x_121, 1, x_119); +x_122 = lean_array_push(x_85, x_121); +x_123 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; +x_124 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_124, 0, x_123); +lean_ctor_set(x_124, 1, x_122); +x_125 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; +x_126 = lean_array_push(x_125, x_124); +x_127 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; +x_128 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_128, 0, x_127); +lean_ctor_set(x_128, 1, x_126); +x_129 = lean_array_push(x_75, x_128); +x_130 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_130); +lean_ctor_set(x_131, 1, x_129); +x_132 = lean_array_push(x_50, x_131); +x_133 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; +x_134 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_134, 0, x_133); +lean_ctor_set(x_134, 1, x_132); +lean_ctor_set(x_13, 0, x_134); return x_13; } 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; 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; 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_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_object* x_222; 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_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; -x_133 = lean_ctor_get(x_13, 0); -x_134 = lean_ctor_get(x_13, 1); -lean_inc(x_134); -lean_inc(x_133); +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; 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; 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_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_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_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; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; +x_135 = lean_ctor_get(x_13, 0); +x_136 = lean_ctor_get(x_13, 1); +lean_inc(x_136); +lean_inc(x_135); lean_dec(x_13); -x_135 = l_Lean_Elab_mkMacroAttribute___closed__8; +x_137 = l_Lean_Elab_mkMacroAttribute___closed__8; lean_inc(x_11); -lean_inc(x_133); -x_136 = l_Lean_addMacroScope(x_133, x_135, x_11); -x_137 = lean_box(0); -x_138 = l_Lean_SourceInfo_inhabited___closed__1; -x_139 = l_Lean_Elab_Command_elabMacroRulesAux___closed__2; -x_140 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_140, 0, x_138); -lean_ctor_set(x_140, 1, x_139); -lean_ctor_set(x_140, 2, x_136); -lean_ctor_set(x_140, 3, x_137); -x_141 = l_Array_empty___closed__1; -x_142 = lean_array_push(x_141, x_140); -x_143 = lean_mk_syntax_ident(x_1); -x_144 = lean_array_push(x_141, x_143); -x_145 = l_Lean_nullKind___closed__2; -x_146 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_146, 0, x_145); -lean_ctor_set(x_146, 1, x_144); -x_147 = lean_array_push(x_142, x_146); -x_148 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; -x_149 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_149, 0, x_148); -lean_ctor_set(x_149, 1, x_147); -x_150 = lean_array_push(x_141, x_149); +lean_inc(x_135); +x_138 = l_Lean_addMacroScope(x_135, x_137, x_11); +x_139 = lean_box(0); +x_140 = l_Lean_SourceInfo_inhabited___closed__1; +x_141 = l_Lean_Elab_Command_elabMacroRulesAux___closed__2; +x_142 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_142, 0, x_140); +lean_ctor_set(x_142, 1, x_141); +lean_ctor_set(x_142, 2, x_138); +lean_ctor_set(x_142, 3, x_139); +x_143 = l_Array_empty___closed__1; +x_144 = lean_array_push(x_143, x_142); +x_145 = lean_mk_syntax_ident(x_1); +x_146 = lean_array_push(x_143, x_145); +x_147 = l_Lean_nullKind___closed__2; +x_148 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_148, 0, x_147); +lean_ctor_set(x_148, 1, x_146); +x_149 = lean_array_push(x_144, x_148); +x_150 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; x_151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_151, 0, x_145); -lean_ctor_set(x_151, 1, x_150); -x_152 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; -x_153 = lean_array_push(x_152, x_151); -x_154 = l_Lean_Elab_Term_expandArrayLit___closed__9; -x_155 = lean_array_push(x_153, x_154); -x_156 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; -x_157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_157, 0, x_156); -lean_ctor_set(x_157, 1, x_155); -x_158 = lean_array_push(x_141, x_157); +lean_ctor_set(x_151, 0, x_150); +lean_ctor_set(x_151, 1, x_149); +x_152 = lean_array_push(x_143, x_151); +x_153 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_153, 0, x_147); +lean_ctor_set(x_153, 1, x_152); +x_154 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; +x_155 = lean_array_push(x_154, x_153); +x_156 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_157 = lean_array_push(x_155, x_156); +x_158 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; x_159 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_159, 0, x_145); -lean_ctor_set(x_159, 1, x_158); -x_160 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; -x_161 = lean_array_push(x_160, x_159); -x_162 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; -x_163 = lean_array_push(x_161, x_162); -x_164 = lean_array_push(x_163, x_162); -x_165 = lean_array_push(x_164, x_162); -x_166 = lean_array_push(x_165, x_162); -x_167 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; -x_168 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_168, 0, x_167); -lean_ctor_set(x_168, 1, x_166); -x_169 = lean_array_push(x_141, x_168); -x_170 = l_Lean_Elab_Command_elabMacroRulesAux___closed__8; +lean_ctor_set(x_159, 0, x_158); +lean_ctor_set(x_159, 1, x_157); +x_160 = lean_array_push(x_143, x_159); +x_161 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_161, 0, x_147); +lean_ctor_set(x_161, 1, x_160); +x_162 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_163 = lean_array_push(x_162, x_161); +x_164 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_165 = lean_array_push(x_163, x_164); +x_166 = lean_array_push(x_165, x_164); +x_167 = lean_array_push(x_166, x_164); +x_168 = lean_array_push(x_167, x_164); +x_169 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; +x_170 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_170, 0, x_169); +lean_ctor_set(x_170, 1, x_168); +x_171 = lean_array_push(x_143, x_170); +x_172 = l_Lean_Elab_Command_elabMacroRulesAux___closed__8; lean_inc(x_11); -lean_inc(x_133); -x_171 = l_Lean_addMacroScope(x_133, x_170, x_11); -x_172 = l_Lean_Elab_Command_elabMacroRulesAux___closed__7; -x_173 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_173, 0, x_138); -lean_ctor_set(x_173, 1, x_172); -lean_ctor_set(x_173, 2, x_171); -lean_ctor_set(x_173, 3, x_137); -x_174 = lean_array_push(x_141, x_173); -x_175 = lean_array_push(x_174, x_162); -x_176 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_177 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_177, 0, x_176); -lean_ctor_set(x_177, 1, x_175); -x_178 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; -x_179 = lean_array_push(x_178, x_177); -x_180 = l_Lean_Elab_Command_elabMacroRulesAux___closed__11; +lean_inc(x_135); +x_173 = l_Lean_addMacroScope(x_135, x_172, x_11); +x_174 = l_Lean_Elab_Command_elabMacroRulesAux___closed__7; +x_175 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_175, 0, x_140); +lean_ctor_set(x_175, 1, x_174); +lean_ctor_set(x_175, 2, x_173); +lean_ctor_set(x_175, 3, x_139); +x_176 = lean_array_push(x_143, x_175); +x_177 = lean_array_push(x_176, x_164); +x_178 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_179 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_177); +x_180 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; +x_181 = lean_array_push(x_180, x_179); +x_182 = l_Lean_Elab_Command_elabMacroRulesAux___closed__11; lean_inc(x_11); -lean_inc(x_133); -x_181 = l_Lean_addMacroScope(x_133, x_180, x_11); -x_182 = l_Lean_Elab_Command_elabMacroRulesAux___closed__10; -x_183 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_184 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_184, 0, x_138); -lean_ctor_set(x_184, 1, x_182); -lean_ctor_set(x_184, 2, x_181); -lean_ctor_set(x_184, 3, x_183); -x_185 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; -x_186 = lean_array_push(x_185, x_184); -x_187 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_188 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_188, 0, x_187); -lean_ctor_set(x_188, 1, x_186); -x_189 = lean_array_push(x_141, x_188); +lean_inc(x_135); +x_183 = l_Lean_addMacroScope(x_135, x_182, x_11); +x_184 = l_Lean_Elab_Command_elabMacroRulesAux___closed__10; +x_185 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_186 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_186, 0, x_140); +lean_ctor_set(x_186, 1, x_184); +lean_ctor_set(x_186, 2, x_183); +lean_ctor_set(x_186, 3, x_185); +x_187 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; +x_188 = lean_array_push(x_187, x_186); +x_189 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; x_190 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_190, 0, x_145); -lean_ctor_set(x_190, 1, x_189); -x_191 = lean_array_push(x_160, x_190); -x_192 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; -x_193 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_193, 0, x_192); -lean_ctor_set(x_193, 1, x_191); -x_194 = lean_array_push(x_179, x_193); -x_195 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_188); +x_191 = lean_array_push(x_143, x_190); +x_192 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_192, 0, x_147); +lean_ctor_set(x_192, 1, x_191); +x_193 = lean_array_push(x_162, x_192); +x_194 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; +x_195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_195, 0, x_194); +lean_ctor_set(x_195, 1, x_193); +x_196 = lean_array_push(x_181, x_195); +x_197 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; lean_inc(x_11); -lean_inc(x_133); -x_196 = l_Lean_addMacroScope(x_133, x_195, x_11); -x_197 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_198 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_198, 0, x_138); -lean_ctor_set(x_198, 1, x_197); -lean_ctor_set(x_198, 2, x_196); -lean_ctor_set(x_198, 3, x_137); -lean_inc(x_198); -x_199 = lean_array_push(x_141, x_198); -x_200 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_200, 0, x_145); +lean_inc(x_135); +x_198 = l_Lean_addMacroScope(x_135, x_197, x_11); +x_199 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_200 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_200, 0, x_140); lean_ctor_set(x_200, 1, x_199); -x_201 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; -x_202 = lean_array_push(x_201, x_200); -x_203 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_204 = lean_array_push(x_202, x_203); -x_205 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_206 = lean_array_push(x_205, x_198); -x_207 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_208 = lean_array_push(x_206, x_207); -x_209 = lean_array_push(x_208, x_162); -x_210 = lean_unsigned_to_nat(0u); -x_211 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_8, x_8, x_210, x_141); +lean_ctor_set(x_200, 2, x_198); +lean_ctor_set(x_200, 3, x_139); +lean_inc(x_200); +x_201 = lean_array_push(x_143, x_200); +x_202 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_202, 0, x_147); +lean_ctor_set(x_202, 1, x_201); +x_203 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; +x_204 = lean_array_push(x_203, x_202); +x_205 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_206 = lean_array_push(x_204, x_205); +x_207 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_208 = lean_array_push(x_207, x_200); +x_209 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_210 = lean_array_push(x_208, x_209); +x_211 = lean_unsigned_to_nat(0u); +x_212 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_8, x_8, x_211, x_143); lean_dec(x_8); -x_212 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; -x_213 = lean_array_push(x_211, x_212); -x_214 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_213 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_214 = lean_array_push(x_212, x_213); +x_215 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; lean_inc(x_11); -lean_inc(x_133); -x_215 = l_Lean_addMacroScope(x_133, x_214, x_11); -x_216 = l_Lean_Elab_Command_elabMacroRulesAux___closed__24; -x_217 = l_Lean_Elab_Command_elabMacroRulesAux___closed__30; -x_218 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_218, 0, x_138); -lean_ctor_set(x_218, 1, x_216); -lean_ctor_set(x_218, 2, x_215); -lean_ctor_set(x_218, 3, x_217); -x_219 = lean_array_push(x_141, x_218); -x_220 = l_Lean_Elab_Command_elabMacroRulesAux___closed__36; -x_221 = l_Lean_addMacroScope(x_133, x_220, x_11); -x_222 = l_Lean_Elab_Command_elabMacroRulesAux___closed__33; -x_223 = l_Lean_Elab_Command_elabMacroRulesAux___closed__38; -x_224 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_224, 0, x_138); -lean_ctor_set(x_224, 1, x_222); -lean_ctor_set(x_224, 2, x_221); -lean_ctor_set(x_224, 3, x_223); -x_225 = lean_array_push(x_141, x_224); -x_226 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_226, 0, x_145); -lean_ctor_set(x_226, 1, x_225); -x_227 = lean_array_push(x_219, x_226); -x_228 = l_Lean_mkAppStx___closed__8; -x_229 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_229, 0, x_228); -lean_ctor_set(x_229, 1, x_227); -x_230 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; -x_231 = lean_array_push(x_230, x_229); -x_232 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_232); -lean_ctor_set(x_233, 1, x_231); -x_234 = lean_array_push(x_213, x_233); -x_235 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_235, 0, x_145); -lean_ctor_set(x_235, 1, x_234); -x_236 = lean_array_push(x_209, x_235); -x_237 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_238 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_238, 0, x_237); -lean_ctor_set(x_238, 1, x_236); -x_239 = lean_array_push(x_204, x_238); -x_240 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; -x_241 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_241, 0, x_240); -lean_ctor_set(x_241, 1, x_239); -x_242 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; -x_243 = lean_array_push(x_242, x_241); -x_244 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; +lean_inc(x_135); +x_216 = l_Lean_addMacroScope(x_135, x_215, x_11); +x_217 = l_Lean_Elab_Command_elabMacroRulesAux___closed__24; +x_218 = l_Lean_Elab_Command_elabMacroRulesAux___closed__30; +x_219 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_219, 0, x_140); +lean_ctor_set(x_219, 1, x_217); +lean_ctor_set(x_219, 2, x_216); +lean_ctor_set(x_219, 3, x_218); +x_220 = lean_array_push(x_143, x_219); +x_221 = l_Lean_Elab_Command_elabMacroRulesAux___closed__36; +x_222 = l_Lean_addMacroScope(x_135, x_221, x_11); +x_223 = l_Lean_Elab_Command_elabMacroRulesAux___closed__33; +x_224 = l_Lean_Elab_Command_elabMacroRulesAux___closed__38; +x_225 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_225, 0, x_140); +lean_ctor_set(x_225, 1, x_223); +lean_ctor_set(x_225, 2, x_222); +lean_ctor_set(x_225, 3, x_224); +x_226 = lean_array_push(x_143, x_225); +x_227 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_227, 0, x_147); +lean_ctor_set(x_227, 1, x_226); +x_228 = lean_array_push(x_220, x_227); +x_229 = l_Lean_mkAppStx___closed__8; +x_230 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_230, 0, x_229); +lean_ctor_set(x_230, 1, x_228); +x_231 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; +x_232 = lean_array_push(x_231, x_230); +x_233 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_234 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_234, 0, x_233); +lean_ctor_set(x_234, 1, x_232); +x_235 = lean_array_push(x_214, x_234); +x_236 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_236, 0, x_147); +lean_ctor_set(x_236, 1, x_235); +x_237 = lean_array_push(x_162, x_236); +x_238 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_238); +lean_ctor_set(x_239, 1, x_237); +x_240 = lean_array_push(x_210, x_239); +x_241 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_242 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_242, 0, x_241); +lean_ctor_set(x_242, 1, x_240); +x_243 = lean_array_push(x_206, x_242); +x_244 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; x_245 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_245, 0, x_244); lean_ctor_set(x_245, 1, x_243); -x_246 = lean_array_push(x_194, x_245); -x_247 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; -x_248 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_248, 0, x_247); -lean_ctor_set(x_248, 1, x_246); -x_249 = lean_array_push(x_169, x_248); -x_250 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; -x_251 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_251, 0, x_250); -lean_ctor_set(x_251, 1, x_249); -x_252 = lean_alloc_ctor(0, 2, 0); +x_246 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; +x_247 = lean_array_push(x_246, x_245); +x_248 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; +x_249 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_249, 0, x_248); +lean_ctor_set(x_249, 1, x_247); +x_250 = lean_array_push(x_196, x_249); +x_251 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; +x_252 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_252, 0, x_251); -lean_ctor_set(x_252, 1, x_134); -return x_252; +lean_ctor_set(x_252, 1, x_250); +x_253 = lean_array_push(x_171, x_252); +x_254 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; +x_255 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_255, 0, x_254); +lean_ctor_set(x_255, 1, x_253); +x_256 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_256, 0, x_255); +lean_ctor_set(x_256, 1, x_136); +return x_256; } } else { -uint8_t x_253; +uint8_t x_257; lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_253 = !lean_is_exclusive(x_7); -if (x_253 == 0) +x_257 = !lean_is_exclusive(x_7); +if (x_257 == 0) { return x_7; } else { -lean_object* x_254; lean_object* x_255; lean_object* x_256; -x_254 = lean_ctor_get(x_7, 0); -x_255 = lean_ctor_get(x_7, 1); -lean_inc(x_255); -lean_inc(x_254); +lean_object* x_258; lean_object* x_259; lean_object* x_260; +x_258 = lean_ctor_get(x_7, 0); +x_259 = lean_ctor_get(x_7, 1); +lean_inc(x_259); +lean_inc(x_258); lean_dec(x_7); -x_256 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_256, 0, x_254); -lean_ctor_set(x_256, 1, x_255); -return x_256; +x_260 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_260, 0, x_258); +lean_ctor_set(x_260, 1, x_259); +return x_260; } } } @@ -11731,19 +11737,19 @@ return x_3; lean_object* _init_l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__6() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; -x_2 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; -x_3 = lean_array_push(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string("invalid macro_rules alternative, multiple interpretations for pattern (solution: specify node kind using `macro_rules [] ...`)"); +return x_1; } } lean_object* _init_l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__7() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("invalid macro_rules alternative, multiple interpretations for pattern (solution: specify node kind using `macro_rules [] ...`)"); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__6; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } lean_object* _init_l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__8() { @@ -11751,16 +11757,6 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__7; -x_2 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -lean_object* _init_l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__8; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -11844,7 +11840,7 @@ lean_dec(x_3); x_29 = !lean_is_exclusive(x_28); if (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_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; x_30 = lean_ctor_get(x_28, 0); lean_dec(x_30); x_31 = l_Array_empty___closed__1; @@ -11855,47 +11851,59 @@ x_34 = l_Lean_nullKind___closed__2; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__6; +x_36 = l_Lean_Elab_Tactic_evalIntro___closed__5; x_37 = lean_array_push(x_36, x_35); -x_38 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_38 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_37); -x_40 = lean_array_push(x_32, x_39); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_34); -lean_ctor_set(x_41, 1, x_40); -lean_ctor_set(x_28, 0, x_41); +x_40 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; +x_41 = lean_array_push(x_40, x_39); +x_42 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_41); +x_44 = lean_array_push(x_32, x_43); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_34); +lean_ctor_set(x_45, 1, x_44); +lean_ctor_set(x_28, 0, x_45); return x_28; } 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; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_42 = lean_ctor_get(x_28, 1); -lean_inc(x_42); +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; +x_46 = lean_ctor_get(x_28, 1); +lean_inc(x_46); lean_dec(x_28); -x_43 = l_Array_empty___closed__1; -x_44 = lean_array_push(x_43, x_23); -x_45 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_19, x_19, x_6, x_43); +x_47 = l_Array_empty___closed__1; +x_48 = lean_array_push(x_47, x_23); +x_49 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_19, x_19, x_6, x_47); lean_dec(x_19); -x_46 = l_Lean_nullKind___closed__2; -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set(x_47, 1, x_45); -x_48 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__6; -x_49 = lean_array_push(x_48, x_47); -x_50 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_50 = l_Lean_nullKind___closed__2; x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); -x_52 = lean_array_push(x_44, x_51); -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_46); -lean_ctor_set(x_53, 1, x_52); -x_54 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_54, 0, x_53); -lean_ctor_set(x_54, 1, x_42); -return x_54; +x_52 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_53 = lean_array_push(x_52, x_51); +x_54 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set(x_55, 1, x_53); +x_56 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; +x_57 = lean_array_push(x_56, x_55); +x_58 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_57); +x_60 = lean_array_push(x_48, x_59); +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_50); +lean_ctor_set(x_61, 1, x_60); +x_62 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_62, 0, x_61); +lean_ctor_set(x_62, 1, x_46); +return x_62; } } else @@ -11908,186 +11916,192 @@ return x_21; } else { -lean_object* x_55; lean_object* x_56; uint8_t x_57; -x_55 = lean_ctor_get(x_21, 0); -x_56 = lean_ctor_get(x_21, 1); -lean_inc(x_56); -lean_inc(x_55); +lean_object* x_63; lean_object* x_64; uint8_t x_65; +x_63 = lean_ctor_get(x_21, 0); +x_64 = lean_ctor_get(x_21, 1); +lean_inc(x_64); +lean_inc(x_63); lean_dec(x_21); -x_57 = l_Array_isEmpty___rarg(x_19); -if (x_57 == 0) +x_65 = l_Array_isEmpty___rarg(x_19); +if (x_65 == 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; 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_58 = l_Lean_Elab_Command_getCurrMacroScope(x_2, x_3, x_56); +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; lean_object* x_85; lean_object* x_86; +x_66 = l_Lean_Elab_Command_getCurrMacroScope(x_2, x_3, x_64); lean_dec(x_2); -x_59 = lean_ctor_get(x_58, 1); -lean_inc(x_59); -lean_dec(x_58); -x_60 = l_Lean_Elab_Command_getMainModule___rarg(x_3, x_59); +x_67 = lean_ctor_get(x_66, 1); +lean_inc(x_67); +lean_dec(x_66); +x_68 = l_Lean_Elab_Command_getMainModule___rarg(x_3, x_67); lean_dec(x_3); -x_61 = lean_ctor_get(x_60, 1); -lean_inc(x_61); -if (lean_is_exclusive(x_60)) { - lean_ctor_release(x_60, 0); - lean_ctor_release(x_60, 1); - x_62 = x_60; +x_69 = lean_ctor_get(x_68, 1); +lean_inc(x_69); +if (lean_is_exclusive(x_68)) { + lean_ctor_release(x_68, 0); + lean_ctor_release(x_68, 1); + x_70 = x_68; } else { - lean_dec_ref(x_60); - x_62 = lean_box(0); + lean_dec_ref(x_68); + x_70 = lean_box(0); } -x_63 = l_Array_empty___closed__1; -x_64 = lean_array_push(x_63, x_55); -x_65 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_19, x_19, x_6, x_63); +x_71 = l_Array_empty___closed__1; +x_72 = lean_array_push(x_71, x_63); +x_73 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_19, x_19, x_6, x_71); lean_dec(x_19); -x_66 = l_Lean_nullKind___closed__2; -x_67 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_67, 0, x_66); -lean_ctor_set(x_67, 1, x_65); -x_68 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__6; -x_69 = lean_array_push(x_68, x_67); -x_70 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_69); -x_72 = lean_array_push(x_64, x_71); -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_66); -lean_ctor_set(x_73, 1, x_72); -if (lean_is_scalar(x_62)) { - x_74 = lean_alloc_ctor(0, 2, 0); -} else { - x_74 = x_62; -} -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set(x_74, 1, x_61); -return x_74; -} -else -{ -lean_object* x_75; -lean_dec(x_19); -lean_dec(x_3); -lean_dec(x_2); -x_75 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_75, 0, x_55); -lean_ctor_set(x_75, 1, x_56); -return x_75; -} -} -} -else -{ -uint8_t x_76; -lean_dec(x_19); -lean_dec(x_3); -lean_dec(x_2); -x_76 = !lean_is_exclusive(x_21); -if (x_76 == 0) -{ -return x_21; -} -else -{ -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_21, 0); -x_78 = lean_ctor_get(x_21, 1); -lean_inc(x_78); -lean_inc(x_77); -lean_dec(x_21); +x_74 = l_Lean_nullKind___closed__2; +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_73); +x_76 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_77 = lean_array_push(x_76, x_75); +x_78 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_79 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_79, 0, x_77); -lean_ctor_set(x_79, 1, x_78); -return x_79; -} -} -} -else -{ -uint8_t x_80; -lean_dec(x_15); -lean_dec(x_9); -lean_dec(x_3); -lean_dec(x_2); -x_80 = !lean_is_exclusive(x_18); -if (x_80 == 0) -{ -return x_18; -} -else -{ -lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_81 = lean_ctor_get(x_18, 0); -x_82 = lean_ctor_get(x_18, 1); -lean_inc(x_82); -lean_inc(x_81); -lean_dec(x_18); +lean_ctor_set(x_79, 0, x_78); +lean_ctor_set(x_79, 1, x_77); +x_80 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; +x_81 = lean_array_push(x_80, x_79); +x_82 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_81); -lean_ctor_set(x_83, 1, x_82); -return x_83; -} +lean_ctor_set(x_83, 0, x_82); +lean_ctor_set(x_83, 1, x_81); +x_84 = lean_array_push(x_72, x_83); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_74); +lean_ctor_set(x_85, 1, x_84); +if (lean_is_scalar(x_70)) { + x_86 = lean_alloc_ctor(0, 2, 0); +} else { + x_86 = x_70; } +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_69); +return x_86; } else { -uint8_t x_84; -lean_dec(x_9); +lean_object* x_87; +lean_dec(x_19); lean_dec(x_3); lean_dec(x_2); -x_84 = !lean_is_exclusive(x_14); -if (x_84 == 0) -{ -return x_14; -} -else -{ -lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_85 = lean_ctor_get(x_14, 0); -x_86 = lean_ctor_get(x_14, 1); -lean_inc(x_86); -lean_inc(x_85); -lean_dec(x_14); -x_87 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_87, 0, x_85); -lean_ctor_set(x_87, 1, x_86); +x_87 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_87, 0, x_63); +lean_ctor_set(x_87, 1, x_64); return x_87; } } } else { -lean_object* x_88; lean_object* x_89; -lean_dec(x_9); -x_88 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__9; -x_89 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___main___spec__7___rarg(x_7, x_88, x_2, x_3, x_10); +uint8_t x_88; +lean_dec(x_19); lean_dec(x_3); -lean_dec(x_7); -return x_89; +lean_dec(x_2); +x_88 = !lean_is_exclusive(x_21); +if (x_88 == 0) +{ +return x_21; +} +else +{ +lean_object* x_89; lean_object* x_90; lean_object* x_91; +x_89 = lean_ctor_get(x_21, 0); +x_90 = lean_ctor_get(x_21, 1); +lean_inc(x_90); +lean_inc(x_89); +lean_dec(x_21); +x_91 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_91, 0, x_89); +lean_ctor_set(x_91, 1, x_90); +return x_91; +} } } else { -uint8_t x_90; +uint8_t x_92; +lean_dec(x_15); +lean_dec(x_9); +lean_dec(x_3); +lean_dec(x_2); +x_92 = !lean_is_exclusive(x_18); +if (x_92 == 0) +{ +return x_18; +} +else +{ +lean_object* x_93; lean_object* x_94; lean_object* x_95; +x_93 = lean_ctor_get(x_18, 0); +x_94 = lean_ctor_get(x_18, 1); +lean_inc(x_94); +lean_inc(x_93); +lean_dec(x_18); +x_95 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_95, 0, x_93); +lean_ctor_set(x_95, 1, x_94); +return x_95; +} +} +} +else +{ +uint8_t x_96; +lean_dec(x_9); +lean_dec(x_3); +lean_dec(x_2); +x_96 = !lean_is_exclusive(x_14); +if (x_96 == 0) +{ +return x_14; +} +else +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_97 = lean_ctor_get(x_14, 0); +x_98 = lean_ctor_get(x_14, 1); +lean_inc(x_98); +lean_inc(x_97); +lean_dec(x_14); +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_97); +lean_ctor_set(x_99, 1, x_98); +return x_99; +} +} +} +else +{ +lean_object* x_100; lean_object* x_101; +lean_dec(x_9); +x_100 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__8; +x_101 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___main___spec__7___rarg(x_7, x_100, x_2, x_3, x_10); +lean_dec(x_3); +lean_dec(x_7); +return x_101; +} +} +else +{ +uint8_t x_102; lean_dec(x_7); lean_dec(x_3); lean_dec(x_2); -x_90 = !lean_is_exclusive(x_8); -if (x_90 == 0) +x_102 = !lean_is_exclusive(x_8); +if (x_102 == 0) { return x_8; } else { -lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_91 = lean_ctor_get(x_8, 0); -x_92 = lean_ctor_get(x_8, 1); -lean_inc(x_92); -lean_inc(x_91); +lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_103 = lean_ctor_get(x_8, 0); +x_104 = lean_ctor_get(x_8, 1); +lean_inc(x_104); +lean_inc(x_103); lean_dec(x_8); -x_93 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_93, 0, x_91); -lean_ctor_set(x_93, 1, x_92); -return x_93; +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_103); +lean_ctor_set(x_105, 1, x_104); +return x_105; } } } @@ -12146,30 +12160,30 @@ return x_5; lean_object* l_Lean_Elab_Command_elabMacroRules___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -uint8_t x_5; lean_object* x_77; uint8_t x_78; -x_77 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +uint8_t x_5; lean_object* x_93; uint8_t x_94; +x_93 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; lean_inc(x_1); -x_78 = l_Lean_Syntax_isOfKind(x_1, x_77); -if (x_78 == 0) +x_94 = l_Lean_Syntax_isOfKind(x_1, x_93); +if (x_94 == 0) { -uint8_t x_79; -x_79 = 0; -x_5 = x_79; -goto block_76; +uint8_t x_95; +x_95 = 0; +x_5 = x_95; +goto block_92; } else { -lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; -x_80 = l_Lean_Syntax_getArgs(x_1); -x_81 = lean_array_get_size(x_80); -lean_dec(x_80); -x_82 = lean_unsigned_to_nat(4u); -x_83 = lean_nat_dec_eq(x_81, x_82); -lean_dec(x_81); -x_5 = x_83; -goto block_76; +lean_object* x_96; lean_object* x_97; lean_object* x_98; uint8_t x_99; +x_96 = l_Lean_Syntax_getArgs(x_1); +x_97 = lean_array_get_size(x_96); +lean_dec(x_96); +x_98 = lean_unsigned_to_nat(3u); +x_99 = lean_nat_dec_eq(x_97, x_98); +lean_dec(x_97); +x_5 = x_99; +goto block_92; } -block_76: +block_92: { if (x_5 == 0) { @@ -12182,32 +12196,32 @@ return x_6; } else { -lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_39; uint8_t x_40; uint8_t x_41; +lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_47; uint8_t x_48; uint8_t x_49; x_7 = lean_unsigned_to_nat(1u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_39 = l_Lean_nullKind___closed__2; +x_47 = l_Lean_nullKind___closed__2; lean_inc(x_8); -x_40 = l_Lean_Syntax_isOfKind(x_8, x_39); -if (x_40 == 0) +x_48 = l_Lean_Syntax_isOfKind(x_8, x_47); +if (x_48 == 0) { -uint8_t x_71; -x_71 = 0; -x_41 = x_71; -goto block_70; +uint8_t x_87; +x_87 = 0; +x_49 = x_87; +goto block_86; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; -x_72 = l_Lean_Syntax_getArgs(x_8); -x_73 = lean_array_get_size(x_72); -lean_dec(x_72); -x_74 = lean_unsigned_to_nat(0u); -x_75 = lean_nat_dec_eq(x_73, x_74); -lean_dec(x_73); -x_41 = x_75; -goto block_70; +lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; +x_88 = l_Lean_Syntax_getArgs(x_8); +x_89 = lean_array_get_size(x_88); +lean_dec(x_88); +x_90 = lean_unsigned_to_nat(0u); +x_91 = lean_nat_dec_eq(x_89, x_90); +lean_dec(x_89); +x_49 = x_91; +goto block_86; } -block_38: +block_46: { if (x_9 == 0) { @@ -12221,211 +12235,286 @@ return x_10; } else { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; uint8_t x_16; +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_40; uint8_t x_41; x_11 = l_Lean_Syntax_getArg(x_8, x_7); lean_dec(x_8); x_12 = lean_unsigned_to_nat(2u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); -x_14 = l_Lean_nullKind___closed__2; +lean_dec(x_1); +x_40 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; lean_inc(x_13); -x_15 = l_Lean_Syntax_isOfKind(x_13, x_14); -if (x_15 == 0) +x_41 = l_Lean_Syntax_isOfKind(x_13, x_40); +if (x_41 == 0) { -uint8_t x_33; -x_33 = 0; -x_16 = x_33; -goto block_32; +uint8_t x_42; +x_42 = 0; +x_14 = x_42; +goto block_39; } else { -lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; -x_34 = l_Lean_Syntax_getArgs(x_13); -x_35 = lean_array_get_size(x_34); -lean_dec(x_34); -x_36 = lean_unsigned_to_nat(0u); -x_37 = lean_nat_dec_eq(x_35, x_36); -lean_dec(x_35); -x_16 = x_37; -goto block_32; +lean_object* x_43; lean_object* x_44; uint8_t x_45; +x_43 = l_Lean_Syntax_getArgs(x_13); +x_44 = lean_array_get_size(x_43); +lean_dec(x_43); +x_45 = lean_nat_dec_eq(x_44, x_12); +lean_dec(x_44); +x_14 = x_45; +goto block_39; } -block_32: +block_39: { -if (x_16 == 0) +if (x_14 == 0) { -if (x_15 == 0) -{ -lean_object* x_17; +lean_object* x_15; lean_dec(x_13); lean_dec(x_11); lean_dec(x_3); lean_dec(x_2); -lean_dec(x_1); -x_17 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___main___spec__8___rarg(x_4); -return x_17; +x_15 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___main___spec__8___rarg(x_4); +return x_15; } else { -lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_18 = l_Lean_Syntax_getArgs(x_13); -lean_dec(x_13); -x_19 = lean_array_get_size(x_18); -lean_dec(x_18); -x_20 = lean_nat_dec_eq(x_19, x_7); -lean_dec(x_19); +lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; uint8_t x_20; +x_16 = lean_unsigned_to_nat(0u); +x_17 = l_Lean_Syntax_getArg(x_13, x_16); +x_18 = l_Lean_nullKind___closed__2; +lean_inc(x_17); +x_19 = l_Lean_Syntax_isOfKind(x_17, x_18); +if (x_19 == 0) +{ +uint8_t x_35; +x_35 = 0; +x_20 = x_35; +goto block_34; +} +else +{ +lean_object* x_36; lean_object* x_37; uint8_t x_38; +x_36 = l_Lean_Syntax_getArgs(x_17); +x_37 = lean_array_get_size(x_36); +lean_dec(x_36); +x_38 = lean_nat_dec_eq(x_37, x_16); +lean_dec(x_37); +x_20 = x_38; +goto block_34; +} +block_34: +{ if (x_20 == 0) { +if (x_19 == 0) +{ lean_object* x_21; +lean_dec(x_17); +lean_dec(x_13); lean_dec(x_11); lean_dec(x_3); lean_dec(x_2); -lean_dec(x_1); x_21 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___main___spec__8___rarg(x_4); return x_21; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_22 = lean_unsigned_to_nat(3u); -x_23 = l_Lean_Syntax_getArg(x_1, x_22); -lean_dec(x_1); -x_24 = l_Lean_Syntax_getArgs(x_23); +lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_22 = l_Lean_Syntax_getArgs(x_17); +lean_dec(x_17); +x_23 = lean_array_get_size(x_22); +lean_dec(x_22); +x_24 = lean_nat_dec_eq(x_23, x_7); lean_dec(x_23); -x_25 = l_Lean_Syntax_getId(x_11); -lean_dec(x_11); -x_26 = l_Lean_Elab_Command_elabMacroRulesAux(x_25, x_24, x_2, x_3, x_4); -lean_dec(x_24); -return x_26; -} -} -} -else +if (x_24 == 0) { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_object* x_25; lean_dec(x_13); -x_27 = lean_unsigned_to_nat(3u); -x_28 = l_Lean_Syntax_getArg(x_1, x_27); -lean_dec(x_1); -x_29 = l_Lean_Syntax_getArgs(x_28); -lean_dec(x_28); -x_30 = l_Lean_Syntax_getId(x_11); lean_dec(x_11); -x_31 = l_Lean_Elab_Command_elabMacroRulesAux(x_30, x_29, x_2, x_3, x_4); -lean_dec(x_29); -return x_31; -} -} -} -} -block_70: -{ -if (x_41 == 0) -{ -if (x_40 == 0) -{ -uint8_t x_42; -x_42 = 0; -x_9 = x_42; -goto block_38; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_43 = l_Lean_Syntax_getArgs(x_8); -x_44 = lean_array_get_size(x_43); -lean_dec(x_43); -x_45 = lean_unsigned_to_nat(3u); -x_46 = lean_nat_dec_eq(x_44, x_45); -lean_dec(x_44); -x_9 = x_46; -goto block_38; -} -} -else -{ -lean_object* x_47; lean_object* x_48; uint8_t x_49; uint8_t x_50; -lean_dec(x_8); -x_47 = lean_unsigned_to_nat(2u); -x_48 = l_Lean_Syntax_getArg(x_1, x_47); -lean_inc(x_48); -x_49 = l_Lean_Syntax_isOfKind(x_48, x_39); -if (x_49 == 0) -{ -uint8_t x_65; -x_65 = 0; -x_50 = x_65; -goto block_64; -} -else -{ -lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; -x_66 = l_Lean_Syntax_getArgs(x_48); -x_67 = lean_array_get_size(x_66); -lean_dec(x_66); -x_68 = lean_unsigned_to_nat(0u); -x_69 = lean_nat_dec_eq(x_67, x_68); -lean_dec(x_67); -x_50 = x_69; -goto block_64; -} -block_64: -{ -if (x_50 == 0) -{ -if (x_49 == 0) -{ -lean_object* x_51; -lean_dec(x_48); lean_dec(x_3); lean_dec(x_2); -lean_dec(x_1); -x_51 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___main___spec__8___rarg(x_4); -return x_51; +x_25 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___main___spec__8___rarg(x_4); +return x_25; } else { -lean_object* x_52; lean_object* x_53; uint8_t x_54; -x_52 = l_Lean_Syntax_getArgs(x_48); -lean_dec(x_48); -x_53 = lean_array_get_size(x_52); +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_26 = l_Lean_Syntax_getArg(x_13, x_7); +lean_dec(x_13); +x_27 = l_Lean_Syntax_getArgs(x_26); +lean_dec(x_26); +x_28 = l_Lean_Syntax_getId(x_11); +lean_dec(x_11); +x_29 = l_Lean_Elab_Command_elabMacroRulesAux(x_28, x_27, x_2, x_3, x_4); +lean_dec(x_27); +return x_29; +} +} +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +lean_dec(x_17); +x_30 = l_Lean_Syntax_getArg(x_13, x_7); +lean_dec(x_13); +x_31 = l_Lean_Syntax_getArgs(x_30); +lean_dec(x_30); +x_32 = l_Lean_Syntax_getId(x_11); +lean_dec(x_11); +x_33 = l_Lean_Elab_Command_elabMacroRulesAux(x_32, x_31, x_2, x_3, x_4); +lean_dec(x_31); +return x_33; +} +} +} +} +} +} +block_86: +{ +if (x_49 == 0) +{ +if (x_48 == 0) +{ +uint8_t x_50; +x_50 = 0; +x_9 = x_50; +goto block_46; +} +else +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; +x_51 = l_Lean_Syntax_getArgs(x_8); +x_52 = lean_array_get_size(x_51); +lean_dec(x_51); +x_53 = lean_unsigned_to_nat(3u); +x_54 = lean_nat_dec_eq(x_52, x_53); lean_dec(x_52); -x_54 = lean_nat_dec_eq(x_53, x_7); -lean_dec(x_53); -if (x_54 == 0) +x_9 = x_54; +goto block_46; +} +} +else { -lean_object* x_55; +lean_object* x_55; lean_object* x_56; uint8_t x_57; lean_object* x_80; uint8_t x_81; +lean_dec(x_8); +x_55 = lean_unsigned_to_nat(2u); +x_56 = l_Lean_Syntax_getArg(x_1, x_55); +lean_dec(x_1); +x_80 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +lean_inc(x_56); +x_81 = l_Lean_Syntax_isOfKind(x_56, x_80); +if (x_81 == 0) +{ +uint8_t x_82; +x_82 = 0; +x_57 = x_82; +goto block_79; +} +else +{ +lean_object* x_83; lean_object* x_84; uint8_t x_85; +x_83 = l_Lean_Syntax_getArgs(x_56); +x_84 = lean_array_get_size(x_83); +lean_dec(x_83); +x_85 = lean_nat_dec_eq(x_84, x_55); +lean_dec(x_84); +x_57 = x_85; +goto block_79; +} +block_79: +{ +if (x_57 == 0) +{ +lean_object* x_58; +lean_dec(x_56); lean_dec(x_3); lean_dec(x_2); -lean_dec(x_1); -x_55 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___main___spec__8___rarg(x_4); -return x_55; +x_58 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___main___spec__8___rarg(x_4); +return x_58; } else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_56 = lean_unsigned_to_nat(3u); -x_57 = l_Lean_Syntax_getArg(x_1, x_56); -lean_dec(x_1); -x_58 = l_Lean_Syntax_getArgs(x_57); -lean_dec(x_57); -x_59 = l_Lean_Elab_Command_elabNoKindMacroRulesAux(x_58, x_2, x_3, x_4); -lean_dec(x_58); -return x_59; -} -} +lean_object* x_59; lean_object* x_60; uint8_t x_61; uint8_t x_62; +x_59 = lean_unsigned_to_nat(0u); +x_60 = l_Lean_Syntax_getArg(x_56, x_59); +lean_inc(x_60); +x_61 = l_Lean_Syntax_isOfKind(x_60, x_47); +if (x_61 == 0) +{ +uint8_t x_75; +x_75 = 0; +x_62 = x_75; +goto block_74; } else { -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -lean_dec(x_48); -x_60 = lean_unsigned_to_nat(3u); -x_61 = l_Lean_Syntax_getArg(x_1, x_60); -lean_dec(x_1); -x_62 = l_Lean_Syntax_getArgs(x_61); -lean_dec(x_61); -x_63 = l_Lean_Elab_Command_elabNoKindMacroRulesAux(x_62, x_2, x_3, x_4); -lean_dec(x_62); +lean_object* x_76; lean_object* x_77; uint8_t x_78; +x_76 = l_Lean_Syntax_getArgs(x_60); +x_77 = lean_array_get_size(x_76); +lean_dec(x_76); +x_78 = lean_nat_dec_eq(x_77, x_59); +lean_dec(x_77); +x_62 = x_78; +goto block_74; +} +block_74: +{ +if (x_62 == 0) +{ +if (x_61 == 0) +{ +lean_object* x_63; +lean_dec(x_60); +lean_dec(x_56); +lean_dec(x_3); +lean_dec(x_2); +x_63 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___main___spec__8___rarg(x_4); return x_63; } +else +{ +lean_object* x_64; lean_object* x_65; uint8_t x_66; +x_64 = l_Lean_Syntax_getArgs(x_60); +lean_dec(x_60); +x_65 = lean_array_get_size(x_64); +lean_dec(x_64); +x_66 = lean_nat_dec_eq(x_65, x_7); +lean_dec(x_65); +if (x_66 == 0) +{ +lean_object* x_67; +lean_dec(x_56); +lean_dec(x_3); +lean_dec(x_2); +x_67 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___main___spec__8___rarg(x_4); +return x_67; +} +else +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = l_Lean_Syntax_getArg(x_56, x_7); +lean_dec(x_56); +x_69 = l_Lean_Syntax_getArgs(x_68); +lean_dec(x_68); +x_70 = l_Lean_Elab_Command_elabNoKindMacroRulesAux(x_69, x_2, x_3, x_4); +lean_dec(x_69); +return x_70; +} +} +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; +lean_dec(x_60); +x_71 = l_Lean_Syntax_getArg(x_56, x_7); +lean_dec(x_56); +x_72 = l_Lean_Syntax_getArgs(x_71); +lean_dec(x_71); +x_73 = l_Lean_Elab_Command_elabNoKindMacroRulesAux(x_72, x_2, x_3, x_4); +lean_dec(x_72); +return x_73; +} +} +} } } } @@ -13388,16 +13477,6 @@ lean_object* _init_l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__5 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__4; -x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -lean_object* _init_l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_SourceInfo_inhabited___closed__1; x_2 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__1; x_3 = lean_alloc_ctor(2, 2, 0); @@ -13406,17 +13485,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7() { +lean_object* _init_l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; +x_2 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__8() { +lean_object* _init_l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7() { _start: { lean_object* x_1; @@ -13424,26 +13503,16 @@ x_1 = lean_mk_string("precedence"); return x_1; } } -lean_object* _init_l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__9() { +lean_object* _init_l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkAppStx___closed__4; -x_2 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__8; +x_2 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; -x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} lean_object* l___private_Lean_Elab_Syntax_9__expandNotationAux(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: { @@ -13500,7 +13569,7 @@ lean_ctor_set(x_29, 0, x_9); lean_ctor_set(x_29, 1, x_28); if (lean_obj_tag(x_2) == 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; 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_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; lean_object* x_75; lean_object* x_76; lean_object* x_77; x_30 = l_Lean_mkIdentFrom(x_1, x_9); x_31 = l_Lean_Elab_Term_expandArrayLit___closed__8; x_32 = lean_array_push(x_31, x_30); @@ -13527,7 +13596,7 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); x_48 = lean_array_push(x_39, x_47); -x_49 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; +x_49 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; x_50 = lean_array_push(x_49, x_29); x_51 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; x_52 = lean_array_push(x_50, x_51); @@ -13548,7 +13617,7 @@ x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_53); lean_ctor_set(x_62, 1, x_61); x_63 = lean_array_push(x_59, x_62); -x_64 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +x_64 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); @@ -13556,333 +13625,357 @@ x_66 = lean_array_push(x_39, x_65); x_67 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_67, 0, x_35); lean_ctor_set(x_67, 1, x_66); -x_68 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__5; +x_68 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; x_69 = lean_array_push(x_68, x_67); -x_70 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_70 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); -x_72 = lean_array_push(x_48, x_71); -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_35); -lean_ctor_set(x_73, 1, x_72); -lean_ctor_set(x_26, 0, x_73); +x_72 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__4; +x_73 = lean_array_push(x_72, x_71); +x_74 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_73); +x_76 = lean_array_push(x_48, x_75); +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_35); +lean_ctor_set(x_77, 1, x_76); +lean_ctor_set(x_26, 0, x_77); return x_26; } 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_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; 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; -x_74 = lean_ctor_get(x_2, 0); -lean_inc(x_74); +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; 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; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +x_78 = lean_ctor_get(x_2, 0); +lean_inc(x_78); lean_dec(x_2); -x_75 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; -x_76 = lean_array_push(x_75, x_74); -x_77 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__9; -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_77); -lean_ctor_set(x_78, 1, x_76); -x_79 = l_Array_empty___closed__1; +x_79 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; x_80 = lean_array_push(x_79, x_78); -x_81 = l_Lean_nullKind___closed__2; +x_81 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__8; x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_80); -x_83 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; +x_83 = l_Array_empty___closed__1; x_84 = lean_array_push(x_83, x_82); -x_85 = l_Lean_mkIdentFrom(x_1, x_9); -x_86 = l_Lean_Elab_Term_expandArrayLit___closed__8; -x_87 = lean_array_push(x_86, x_85); -x_88 = l_Lean_Elab_Term_expandArrayLit___closed__9; -x_89 = lean_array_push(x_87, x_88); -x_90 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_90, 0, x_81); -lean_ctor_set(x_90, 1, x_89); -x_91 = lean_array_push(x_84, x_90); -x_92 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_16, x_16, x_12, x_79); +x_85 = l_Lean_nullKind___closed__2; +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_84); +x_87 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; +x_88 = lean_array_push(x_87, x_86); +x_89 = l_Lean_mkIdentFrom(x_1, x_9); +x_90 = l_Lean_Elab_Term_expandArrayLit___closed__8; +x_91 = lean_array_push(x_90, x_89); +x_92 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_93 = lean_array_push(x_91, x_92); +x_94 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_94, 0, x_85); +lean_ctor_set(x_94, 1, x_93); +x_95 = lean_array_push(x_88, x_94); +x_96 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_16, x_16, x_12, x_83); lean_dec(x_16); -x_93 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_93, 0, x_81); -lean_ctor_set(x_93, 1, x_92); -x_94 = lean_array_push(x_91, x_93); -x_95 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; -x_96 = lean_array_push(x_94, x_95); -x_97 = lean_array_push(x_96, x_18); -x_98 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; -x_99 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_99, 0, x_98); -lean_ctor_set(x_99, 1, x_97); -x_100 = lean_array_push(x_79, x_99); -x_101 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; -x_102 = lean_array_push(x_101, x_29); -x_103 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; -x_104 = lean_array_push(x_102, x_103); -x_105 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_106 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_106, 0, x_105); -lean_ctor_set(x_106, 1, x_104); -x_107 = lean_array_push(x_79, x_106); -x_108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_108, 0, x_81); -lean_ctor_set(x_108, 1, x_107); -x_109 = lean_array_push(x_79, x_108); -x_110 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_111 = lean_array_push(x_109, x_110); -x_112 = lean_array_push(x_101, x_23); -x_113 = lean_array_push(x_112, x_103); -x_114 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_114, 0, x_105); -lean_ctor_set(x_114, 1, x_113); -x_115 = lean_array_push(x_111, x_114); -x_116 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_117 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_117, 0, x_116); -lean_ctor_set(x_117, 1, x_115); -x_118 = lean_array_push(x_79, x_117); -x_119 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_119, 0, x_81); -lean_ctor_set(x_119, 1, x_118); -x_120 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__10; -x_121 = lean_array_push(x_120, x_119); -x_122 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_97 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_97, 0, x_85); +lean_ctor_set(x_97, 1, x_96); +x_98 = lean_array_push(x_95, x_97); +x_99 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; +x_100 = lean_array_push(x_98, x_99); +x_101 = lean_array_push(x_100, x_18); +x_102 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; +x_103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_101); +x_104 = lean_array_push(x_83, x_103); +x_105 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; +x_106 = lean_array_push(x_105, x_29); +x_107 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_108 = lean_array_push(x_106, x_107); +x_109 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_110 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_110, 0, x_109); +lean_ctor_set(x_110, 1, x_108); +x_111 = lean_array_push(x_83, x_110); +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_85); +lean_ctor_set(x_112, 1, x_111); +x_113 = lean_array_push(x_83, x_112); +x_114 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_115 = lean_array_push(x_113, x_114); +x_116 = lean_array_push(x_105, x_23); +x_117 = lean_array_push(x_116, x_107); +x_118 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_118, 0, x_109); +lean_ctor_set(x_118, 1, x_117); +x_119 = lean_array_push(x_115, x_118); +x_120 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_121 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_121, 0, x_120); +lean_ctor_set(x_121, 1, x_119); +x_122 = lean_array_push(x_83, x_121); x_123 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_123, 0, x_122); -lean_ctor_set(x_123, 1, x_121); -x_124 = lean_array_push(x_100, x_123); -x_125 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_125, 0, x_81); -lean_ctor_set(x_125, 1, x_124); -lean_ctor_set(x_26, 0, x_125); +lean_ctor_set(x_123, 0, x_85); +lean_ctor_set(x_123, 1, x_122); +x_124 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_125 = lean_array_push(x_124, x_123); +x_126 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_125); +x_128 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; +x_129 = lean_array_push(x_128, x_127); +x_130 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_130); +lean_ctor_set(x_131, 1, x_129); +x_132 = lean_array_push(x_104, x_131); +x_133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_133, 0, x_85); +lean_ctor_set(x_133, 1, x_132); +lean_ctor_set(x_26, 0, x_133); return x_26; } } else { -lean_object* x_126; lean_object* x_127; lean_object* x_128; -x_126 = lean_ctor_get(x_26, 0); -x_127 = lean_ctor_get(x_26, 1); -lean_inc(x_127); -lean_inc(x_126); +lean_object* x_134; lean_object* x_135; lean_object* x_136; +x_134 = lean_ctor_get(x_26, 0); +x_135 = lean_ctor_get(x_26, 1); +lean_inc(x_135); +lean_inc(x_134); lean_dec(x_26); lean_inc(x_9); -x_128 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_128, 0, x_9); -lean_ctor_set(x_128, 1, x_126); +x_136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_136, 0, x_9); +lean_ctor_set(x_136, 1, x_134); if (lean_obj_tag(x_2) == 0) { -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; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; -x_129 = l_Lean_mkIdentFrom(x_1, x_9); -x_130 = l_Lean_Elab_Term_expandArrayLit___closed__8; -x_131 = lean_array_push(x_130, x_129); -x_132 = l_Lean_Elab_Term_expandArrayLit___closed__9; -x_133 = lean_array_push(x_131, x_132); -x_134 = l_Lean_nullKind___closed__2; -x_135 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_135, 0, x_134); -lean_ctor_set(x_135, 1, x_133); -x_136 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__3; -x_137 = lean_array_push(x_136, x_135); -x_138 = l_Array_empty___closed__1; -x_139 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_16, x_16, x_12, x_138); +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; 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; +x_137 = l_Lean_mkIdentFrom(x_1, x_9); +x_138 = l_Lean_Elab_Term_expandArrayLit___closed__8; +x_139 = lean_array_push(x_138, x_137); +x_140 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_141 = lean_array_push(x_139, x_140); +x_142 = l_Lean_nullKind___closed__2; +x_143 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_143, 0, x_142); +lean_ctor_set(x_143, 1, x_141); +x_144 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__3; +x_145 = lean_array_push(x_144, x_143); +x_146 = l_Array_empty___closed__1; +x_147 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_16, x_16, x_12, x_146); lean_dec(x_16); -x_140 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_140, 0, x_134); -lean_ctor_set(x_140, 1, x_139); -x_141 = lean_array_push(x_137, x_140); -x_142 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; -x_143 = lean_array_push(x_141, x_142); -x_144 = lean_array_push(x_143, x_18); -x_145 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; -x_146 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_146, 0, x_145); -lean_ctor_set(x_146, 1, x_144); -x_147 = lean_array_push(x_138, x_146); -x_148 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; -x_149 = lean_array_push(x_148, x_128); -x_150 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_148 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_148, 0, x_142); +lean_ctor_set(x_148, 1, x_147); +x_149 = lean_array_push(x_145, x_148); +x_150 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; x_151 = lean_array_push(x_149, x_150); -x_152 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_153 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_153, 0, x_152); -lean_ctor_set(x_153, 1, x_151); -x_154 = lean_array_push(x_138, x_153); -x_155 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_155, 0, x_134); -lean_ctor_set(x_155, 1, x_154); -x_156 = lean_array_push(x_138, x_155); -x_157 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_158 = lean_array_push(x_156, x_157); -x_159 = lean_array_push(x_148, x_23); -x_160 = lean_array_push(x_159, x_150); +x_152 = lean_array_push(x_151, x_18); +x_153 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; +x_154 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_154, 0, x_153); +lean_ctor_set(x_154, 1, x_152); +x_155 = lean_array_push(x_146, x_154); +x_156 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; +x_157 = lean_array_push(x_156, x_136); +x_158 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_159 = lean_array_push(x_157, x_158); +x_160 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; x_161 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_161, 0, x_152); -lean_ctor_set(x_161, 1, x_160); -x_162 = lean_array_push(x_158, x_161); -x_163 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_164 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_164, 0, x_163); -lean_ctor_set(x_164, 1, x_162); -x_165 = lean_array_push(x_138, x_164); -x_166 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_166, 0, x_134); -lean_ctor_set(x_166, 1, x_165); -x_167 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__5; -x_168 = lean_array_push(x_167, x_166); -x_169 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; -x_170 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_170, 0, x_169); -lean_ctor_set(x_170, 1, x_168); -x_171 = lean_array_push(x_147, x_170); +lean_ctor_set(x_161, 0, x_160); +lean_ctor_set(x_161, 1, x_159); +x_162 = lean_array_push(x_146, x_161); +x_163 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_163, 0, x_142); +lean_ctor_set(x_163, 1, x_162); +x_164 = lean_array_push(x_146, x_163); +x_165 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_166 = lean_array_push(x_164, x_165); +x_167 = lean_array_push(x_156, x_23); +x_168 = lean_array_push(x_167, x_158); +x_169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_169, 0, x_160); +lean_ctor_set(x_169, 1, x_168); +x_170 = lean_array_push(x_166, x_169); +x_171 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_172 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_172, 0, x_134); -lean_ctor_set(x_172, 1, x_171); -x_173 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_173, 0, x_172); -lean_ctor_set(x_173, 1, x_127); -return x_173; -} -else -{ -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; 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_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; -x_174 = lean_ctor_get(x_2, 0); -lean_inc(x_174); -lean_dec(x_2); -x_175 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; +lean_ctor_set(x_172, 0, x_171); +lean_ctor_set(x_172, 1, x_170); +x_173 = lean_array_push(x_146, x_172); +x_174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_174, 0, x_142); +lean_ctor_set(x_174, 1, x_173); +x_175 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; x_176 = lean_array_push(x_175, x_174); -x_177 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__9; +x_177 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_178 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_178, 0, x_177); lean_ctor_set(x_178, 1, x_176); -x_179 = l_Array_empty___closed__1; +x_179 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__4; x_180 = lean_array_push(x_179, x_178); -x_181 = l_Lean_nullKind___closed__2; +x_181 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; x_182 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_182, 0, x_181); lean_ctor_set(x_182, 1, x_180); -x_183 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; -x_184 = lean_array_push(x_183, x_182); -x_185 = l_Lean_mkIdentFrom(x_1, x_9); -x_186 = l_Lean_Elab_Term_expandArrayLit___closed__8; -x_187 = lean_array_push(x_186, x_185); -x_188 = l_Lean_Elab_Term_expandArrayLit___closed__9; -x_189 = lean_array_push(x_187, x_188); +x_183 = lean_array_push(x_155, x_182); +x_184 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_184, 0, x_142); +lean_ctor_set(x_184, 1, x_183); +x_185 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_185, 0, x_184); +lean_ctor_set(x_185, 1, x_135); +return x_185; +} +else +{ +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; 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_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_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_object* x_241; lean_object* x_242; +x_186 = lean_ctor_get(x_2, 0); +lean_inc(x_186); +lean_dec(x_2); +x_187 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; +x_188 = lean_array_push(x_187, x_186); +x_189 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__8; x_190 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_190, 0, x_181); -lean_ctor_set(x_190, 1, x_189); -x_191 = lean_array_push(x_184, x_190); -x_192 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_16, x_16, x_12, x_179); +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_188); +x_191 = l_Array_empty___closed__1; +x_192 = lean_array_push(x_191, x_190); +x_193 = l_Lean_nullKind___closed__2; +x_194 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_194, 0, x_193); +lean_ctor_set(x_194, 1, x_192); +x_195 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; +x_196 = lean_array_push(x_195, x_194); +x_197 = l_Lean_mkIdentFrom(x_1, x_9); +x_198 = l_Lean_Elab_Term_expandArrayLit___closed__8; +x_199 = lean_array_push(x_198, x_197); +x_200 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_201 = lean_array_push(x_199, x_200); +x_202 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_202, 0, x_193); +lean_ctor_set(x_202, 1, x_201); +x_203 = lean_array_push(x_196, x_202); +x_204 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_16, x_16, x_12, x_191); lean_dec(x_16); -x_193 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_193, 0, x_181); -lean_ctor_set(x_193, 1, x_192); -x_194 = lean_array_push(x_191, x_193); -x_195 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; -x_196 = lean_array_push(x_194, x_195); -x_197 = lean_array_push(x_196, x_18); -x_198 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; -x_199 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_199, 0, x_198); -lean_ctor_set(x_199, 1, x_197); -x_200 = lean_array_push(x_179, x_199); -x_201 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; -x_202 = lean_array_push(x_201, x_128); -x_203 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; -x_204 = lean_array_push(x_202, x_203); -x_205 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_206 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_206, 0, x_205); -lean_ctor_set(x_206, 1, x_204); -x_207 = lean_array_push(x_179, x_206); -x_208 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_208, 0, x_181); -lean_ctor_set(x_208, 1, x_207); -x_209 = lean_array_push(x_179, x_208); -x_210 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_211 = lean_array_push(x_209, x_210); -x_212 = lean_array_push(x_201, x_23); -x_213 = lean_array_push(x_212, x_203); -x_214 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_214, 0, x_205); -lean_ctor_set(x_214, 1, x_213); -x_215 = lean_array_push(x_211, x_214); -x_216 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_217 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_217, 0, x_216); -lean_ctor_set(x_217, 1, x_215); -x_218 = lean_array_push(x_179, x_217); -x_219 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_219, 0, x_181); -lean_ctor_set(x_219, 1, x_218); -x_220 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__10; -x_221 = lean_array_push(x_220, x_219); -x_222 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; -x_223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_223, 0, x_222); -lean_ctor_set(x_223, 1, x_221); -x_224 = lean_array_push(x_200, x_223); -x_225 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_225, 0, x_181); -lean_ctor_set(x_225, 1, x_224); -x_226 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_226, 0, x_225); -lean_ctor_set(x_226, 1, x_127); -return x_226; +x_205 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_205, 0, x_193); +lean_ctor_set(x_205, 1, x_204); +x_206 = lean_array_push(x_203, x_205); +x_207 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; +x_208 = lean_array_push(x_206, x_207); +x_209 = lean_array_push(x_208, x_18); +x_210 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; +x_211 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_211, 0, x_210); +lean_ctor_set(x_211, 1, x_209); +x_212 = lean_array_push(x_191, x_211); +x_213 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; +x_214 = lean_array_push(x_213, x_136); +x_215 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_216 = lean_array_push(x_214, x_215); +x_217 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_218 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_218, 0, x_217); +lean_ctor_set(x_218, 1, x_216); +x_219 = lean_array_push(x_191, x_218); +x_220 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_220, 0, x_193); +lean_ctor_set(x_220, 1, x_219); +x_221 = lean_array_push(x_191, x_220); +x_222 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_223 = lean_array_push(x_221, x_222); +x_224 = lean_array_push(x_213, x_23); +x_225 = lean_array_push(x_224, x_215); +x_226 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_226, 0, x_217); +lean_ctor_set(x_226, 1, x_225); +x_227 = lean_array_push(x_223, x_226); +x_228 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_229 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_229, 0, x_228); +lean_ctor_set(x_229, 1, x_227); +x_230 = lean_array_push(x_191, x_229); +x_231 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_231, 0, x_193); +lean_ctor_set(x_231, 1, x_230); +x_232 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_233 = lean_array_push(x_232, x_231); +x_234 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_235 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_235, 0, x_234); +lean_ctor_set(x_235, 1, x_233); +x_236 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; +x_237 = lean_array_push(x_236, x_235); +x_238 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_238); +lean_ctor_set(x_239, 1, x_237); +x_240 = lean_array_push(x_212, x_239); +x_241 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_241, 0, x_193); +lean_ctor_set(x_241, 1, x_240); +x_242 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_242, 0, x_241); +lean_ctor_set(x_242, 1, x_135); +return x_242; } } } else { -uint8_t x_227; +uint8_t x_243; lean_dec(x_23); lean_dec(x_18); lean_dec(x_16); lean_dec(x_9); lean_dec(x_2); -x_227 = !lean_is_exclusive(x_26); -if (x_227 == 0) +x_243 = !lean_is_exclusive(x_26); +if (x_243 == 0) { return x_26; } else { -lean_object* x_228; lean_object* x_229; lean_object* x_230; -x_228 = lean_ctor_get(x_26, 0); -x_229 = lean_ctor_get(x_26, 1); -lean_inc(x_229); -lean_inc(x_228); +lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_244 = lean_ctor_get(x_26, 0); +x_245 = lean_ctor_get(x_26, 1); +lean_inc(x_245); +lean_inc(x_244); lean_dec(x_26); -x_230 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_230, 0, x_228); -lean_ctor_set(x_230, 1, x_229); -return x_230; +x_246 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_246, 0, x_244); +lean_ctor_set(x_246, 1, x_245); +return x_246; } } } else { -uint8_t x_231; +uint8_t x_247; lean_dec(x_11); lean_dec(x_9); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_231 = !lean_is_exclusive(x_15); -if (x_231 == 0) +x_247 = !lean_is_exclusive(x_15); +if (x_247 == 0) { return x_15; } else { -lean_object* x_232; lean_object* x_233; lean_object* x_234; -x_232 = lean_ctor_get(x_15, 0); -x_233 = lean_ctor_get(x_15, 1); -lean_inc(x_233); -lean_inc(x_232); +lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_248 = lean_ctor_get(x_15, 0); +x_249 = lean_ctor_get(x_15, 1); +lean_inc(x_249); +lean_inc(x_248); lean_dec(x_15); -x_234 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_234, 0, x_232); -lean_ctor_set(x_234, 1, x_233); -return x_234; +x_250 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_250, 0, x_248); +lean_ctor_set(x_250, 1, x_249); +return x_250; } } } @@ -14056,7 +14149,7 @@ lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; x_27 = lean_unsigned_to_nat(0u); x_28 = l_Lean_Syntax_getArg(x_8, x_27); lean_dec(x_8); -x_29 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__9; +x_29 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__8; lean_inc(x_28); x_30 = l_Lean_Syntax_isOfKind(x_28, x_29); if (x_30 == 0) @@ -14612,7 +14705,7 @@ x_46 = lean_nat_dec_eq(x_44, x_45); lean_dec(x_44); if (x_46 == 0) { -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; 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; lean_object* x_92; lean_object* x_93; lean_object* x_94; +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; 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; 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; x_47 = l_Lean_Syntax_getArg(x_1, x_45); x_48 = l_Array_empty___closed__1; x_49 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_23, x_48); @@ -14646,7 +14739,7 @@ x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_66); x_69 = lean_array_push(x_48, x_68); -x_70 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; +x_70 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; x_71 = lean_array_push(x_70, x_42); x_72 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; x_73 = lean_array_push(x_71, x_72); @@ -14667,7 +14760,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_74); lean_ctor_set(x_83, 1, x_82); x_84 = lean_array_push(x_80, x_83); -x_85 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +x_85 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); @@ -14675,333 +14768,357 @@ x_87 = lean_array_push(x_48, x_86); x_88 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_88, 0, x_50); lean_ctor_set(x_88, 1, x_87); -x_89 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__10; +x_89 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; x_90 = lean_array_push(x_89, x_88); -x_91 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_91 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_90); -x_93 = lean_array_push(x_69, x_92); -x_94 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_94, 0, x_50); -lean_ctor_set(x_94, 1, x_93); -lean_ctor_set(x_37, 0, x_94); +x_93 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; +x_94 = lean_array_push(x_93, x_92); +x_95 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_94); +x_97 = lean_array_push(x_69, x_96); +x_98 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_98, 0, x_50); +lean_ctor_set(x_98, 1, x_97); +lean_ctor_set(x_37, 0, x_98); return x_37; } else { -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; 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; -x_95 = lean_unsigned_to_nat(7u); -x_96 = l_Lean_Syntax_getArg(x_1, x_95); -x_97 = l_Array_empty___closed__1; -x_98 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_23, x_97); +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; 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; +x_99 = lean_unsigned_to_nat(7u); +x_100 = l_Lean_Syntax_getArg(x_1, x_99); +x_101 = l_Array_empty___closed__1; +x_102 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_23, x_101); lean_dec(x_6); -x_99 = l_Lean_nullKind___closed__2; -x_100 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_100, 0, x_99); -lean_ctor_set(x_100, 1, x_98); -x_101 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; -x_102 = lean_array_push(x_101, x_100); -x_103 = l_Lean_mkIdentFrom(x_1, x_17); -x_104 = l_Lean_Elab_Term_expandArrayLit___closed__8; -x_105 = lean_array_push(x_104, x_103); -x_106 = l_Lean_Elab_Term_expandArrayLit___closed__9; -x_107 = lean_array_push(x_105, x_106); -x_108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_108, 0, x_99); -lean_ctor_set(x_108, 1, x_107); -x_109 = lean_array_push(x_102, x_108); -x_110 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_31, x_31, x_23, x_97); +x_103 = l_Lean_nullKind___closed__2; +x_104 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_104, 0, x_103); +lean_ctor_set(x_104, 1, x_102); +x_105 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; +x_106 = lean_array_push(x_105, x_104); +x_107 = l_Lean_mkIdentFrom(x_1, x_17); +x_108 = l_Lean_Elab_Term_expandArrayLit___closed__8; +x_109 = lean_array_push(x_108, x_107); +x_110 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_111 = lean_array_push(x_109, x_110); +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_103); +lean_ctor_set(x_112, 1, x_111); +x_113 = lean_array_push(x_106, x_112); +x_114 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_31, x_31, x_23, x_101); lean_dec(x_31); -x_111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_111, 0, x_99); -lean_ctor_set(x_111, 1, x_110); -x_112 = lean_array_push(x_109, x_111); -x_113 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; -x_114 = lean_array_push(x_112, x_113); -x_115 = lean_array_push(x_114, x_13); -x_116 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; -x_117 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_117, 0, x_116); -lean_ctor_set(x_117, 1, x_115); -x_118 = lean_array_push(x_97, x_117); -x_119 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; -x_120 = lean_array_push(x_119, x_42); -x_121 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; -x_122 = lean_array_push(x_120, x_121); -x_123 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_124 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_124, 0, x_123); -lean_ctor_set(x_124, 1, x_122); -x_125 = lean_array_push(x_97, x_124); -x_126 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_126, 0, x_99); -lean_ctor_set(x_126, 1, x_125); -x_127 = lean_array_push(x_97, x_126); -x_128 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_129 = lean_array_push(x_127, x_128); -x_130 = lean_array_push(x_129, x_96); -x_131 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_132 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_132, 0, x_131); -lean_ctor_set(x_132, 1, x_130); -x_133 = lean_array_push(x_97, x_132); -x_134 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_134, 0, x_99); -lean_ctor_set(x_134, 1, x_133); -x_135 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__10; -x_136 = lean_array_push(x_135, x_134); -x_137 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_115, 0, x_103); +lean_ctor_set(x_115, 1, x_114); +x_116 = lean_array_push(x_113, x_115); +x_117 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; +x_118 = lean_array_push(x_116, x_117); +x_119 = lean_array_push(x_118, x_13); +x_120 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; +x_121 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_121, 0, x_120); +lean_ctor_set(x_121, 1, x_119); +x_122 = lean_array_push(x_101, x_121); +x_123 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; +x_124 = lean_array_push(x_123, x_42); +x_125 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_126 = lean_array_push(x_124, x_125); +x_127 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_128 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_128, 0, x_127); +lean_ctor_set(x_128, 1, x_126); +x_129 = lean_array_push(x_101, x_128); +x_130 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_130, 0, x_103); +lean_ctor_set(x_130, 1, x_129); +x_131 = lean_array_push(x_101, x_130); +x_132 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_133 = lean_array_push(x_131, x_132); +x_134 = lean_array_push(x_133, x_100); +x_135 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_136, 0, x_135); +lean_ctor_set(x_136, 1, x_134); +x_137 = lean_array_push(x_101, x_136); x_138 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_138, 0, x_137); -lean_ctor_set(x_138, 1, x_136); -x_139 = lean_array_push(x_118, x_138); -x_140 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_140, 0, x_99); -lean_ctor_set(x_140, 1, x_139); -lean_ctor_set(x_37, 0, x_140); +lean_ctor_set(x_138, 0, x_103); +lean_ctor_set(x_138, 1, x_137); +x_139 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_140 = lean_array_push(x_139, x_138); +x_141 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_142 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_142, 0, x_141); +lean_ctor_set(x_142, 1, x_140); +x_143 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; +x_144 = lean_array_push(x_143, x_142); +x_145 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_145); +lean_ctor_set(x_146, 1, x_144); +x_147 = lean_array_push(x_122, x_146); +x_148 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_148, 0, x_103); +lean_ctor_set(x_148, 1, x_147); +lean_ctor_set(x_37, 0, x_148); return x_37; } } 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; uint8_t x_149; -x_141 = lean_ctor_get(x_37, 0); -x_142 = lean_ctor_get(x_37, 1); -lean_inc(x_142); -lean_inc(x_141); +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; uint8_t x_157; +x_149 = lean_ctor_get(x_37, 0); +x_150 = lean_ctor_get(x_37, 1); +lean_inc(x_150); +lean_inc(x_149); lean_dec(x_37); -x_143 = lean_array_push(x_29, x_33); -x_144 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_141, x_141, x_23, x_143); -lean_dec(x_141); +x_151 = lean_array_push(x_29, x_33); +x_152 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_149, x_149, x_23, x_151); +lean_dec(x_149); lean_inc(x_17); -x_145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_145, 0, x_17); -lean_ctor_set(x_145, 1, x_144); -x_146 = l_Lean_Syntax_getArgs(x_1); -x_147 = lean_array_get_size(x_146); -lean_dec(x_146); -x_148 = lean_unsigned_to_nat(8u); -x_149 = lean_nat_dec_eq(x_147, x_148); -lean_dec(x_147); -if (x_149 == 0) +x_153 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_153, 0, x_17); +lean_ctor_set(x_153, 1, x_152); +x_154 = l_Lean_Syntax_getArgs(x_1); +x_155 = lean_array_get_size(x_154); +lean_dec(x_154); +x_156 = lean_unsigned_to_nat(8u); +x_157 = lean_nat_dec_eq(x_155, x_156); +lean_dec(x_155); +if (x_157 == 0) { -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; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; -x_150 = l_Lean_Syntax_getArg(x_1, x_148); -x_151 = l_Array_empty___closed__1; -x_152 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_23, x_151); +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; 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; +x_158 = l_Lean_Syntax_getArg(x_1, x_156); +x_159 = l_Array_empty___closed__1; +x_160 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_23, x_159); lean_dec(x_6); -x_153 = l_Lean_nullKind___closed__2; -x_154 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_154, 0, x_153); -lean_ctor_set(x_154, 1, x_152); -x_155 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; -x_156 = lean_array_push(x_155, x_154); -x_157 = l_Lean_mkIdentFrom(x_1, x_17); -x_158 = l_Lean_Elab_Term_expandArrayLit___closed__8; -x_159 = lean_array_push(x_158, x_157); -x_160 = l_Lean_Elab_Term_expandArrayLit___closed__9; -x_161 = lean_array_push(x_159, x_160); +x_161 = l_Lean_nullKind___closed__2; x_162 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_162, 0, x_153); -lean_ctor_set(x_162, 1, x_161); -x_163 = lean_array_push(x_156, x_162); -x_164 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_31, x_31, x_23, x_151); +lean_ctor_set(x_162, 0, x_161); +lean_ctor_set(x_162, 1, x_160); +x_163 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; +x_164 = lean_array_push(x_163, x_162); +x_165 = l_Lean_mkIdentFrom(x_1, x_17); +x_166 = l_Lean_Elab_Term_expandArrayLit___closed__8; +x_167 = lean_array_push(x_166, x_165); +x_168 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_169 = lean_array_push(x_167, x_168); +x_170 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_170, 0, x_161); +lean_ctor_set(x_170, 1, x_169); +x_171 = lean_array_push(x_164, x_170); +x_172 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_31, x_31, x_23, x_159); lean_dec(x_31); -x_165 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_165, 0, x_153); -lean_ctor_set(x_165, 1, x_164); -x_166 = lean_array_push(x_163, x_165); -x_167 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; -x_168 = lean_array_push(x_166, x_167); -x_169 = lean_array_push(x_168, x_13); -x_170 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; -x_171 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_171, 0, x_170); -lean_ctor_set(x_171, 1, x_169); -x_172 = lean_array_push(x_151, x_171); -x_173 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; -x_174 = lean_array_push(x_173, x_145); -x_175 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_173 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_173, 0, x_161); +lean_ctor_set(x_173, 1, x_172); +x_174 = lean_array_push(x_171, x_173); +x_175 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; x_176 = lean_array_push(x_174, x_175); -x_177 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_178 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_178, 0, x_177); -lean_ctor_set(x_178, 1, x_176); -x_179 = lean_array_push(x_151, x_178); -x_180 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_180, 0, x_153); -lean_ctor_set(x_180, 1, x_179); -x_181 = lean_array_push(x_151, x_180); -x_182 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_183 = lean_array_push(x_181, x_182); -x_184 = lean_array_push(x_173, x_150); -x_185 = lean_array_push(x_184, x_175); +x_177 = lean_array_push(x_176, x_13); +x_178 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; +x_179 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_177); +x_180 = lean_array_push(x_159, x_179); +x_181 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; +x_182 = lean_array_push(x_181, x_153); +x_183 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_184 = lean_array_push(x_182, x_183); +x_185 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; x_186 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_186, 0, x_177); -lean_ctor_set(x_186, 1, x_185); -x_187 = lean_array_push(x_183, x_186); -x_188 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_189 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_189, 0, x_188); -lean_ctor_set(x_189, 1, x_187); -x_190 = lean_array_push(x_151, x_189); -x_191 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_191, 0, x_153); -lean_ctor_set(x_191, 1, x_190); -x_192 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__10; -x_193 = lean_array_push(x_192, x_191); -x_194 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; -x_195 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_195, 0, x_194); -lean_ctor_set(x_195, 1, x_193); -x_196 = lean_array_push(x_172, x_195); +lean_ctor_set(x_186, 0, x_185); +lean_ctor_set(x_186, 1, x_184); +x_187 = lean_array_push(x_159, x_186); +x_188 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_188, 0, x_161); +lean_ctor_set(x_188, 1, x_187); +x_189 = lean_array_push(x_159, x_188); +x_190 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_191 = lean_array_push(x_189, x_190); +x_192 = lean_array_push(x_181, x_158); +x_193 = lean_array_push(x_192, x_183); +x_194 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_194, 0, x_185); +lean_ctor_set(x_194, 1, x_193); +x_195 = lean_array_push(x_191, x_194); +x_196 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_197 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_197, 0, x_153); -lean_ctor_set(x_197, 1, x_196); -x_198 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_198, 0, x_197); -lean_ctor_set(x_198, 1, x_142); -return x_198; +lean_ctor_set(x_197, 0, x_196); +lean_ctor_set(x_197, 1, x_195); +x_198 = lean_array_push(x_159, x_197); +x_199 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_199, 0, x_161); +lean_ctor_set(x_199, 1, x_198); +x_200 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_201 = lean_array_push(x_200, x_199); +x_202 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_203 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_203, 0, x_202); +lean_ctor_set(x_203, 1, x_201); +x_204 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; +x_205 = lean_array_push(x_204, x_203); +x_206 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_207, 0, x_206); +lean_ctor_set(x_207, 1, x_205); +x_208 = lean_array_push(x_180, x_207); +x_209 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_209, 0, x_161); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_209); +lean_ctor_set(x_210, 1, x_150); +return x_210; } else { -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_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_object* x_222; 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_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; -x_199 = lean_unsigned_to_nat(7u); -x_200 = l_Lean_Syntax_getArg(x_1, x_199); -x_201 = l_Array_empty___closed__1; -x_202 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_23, x_201); +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; 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_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; lean_object* x_253; 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; +x_211 = lean_unsigned_to_nat(7u); +x_212 = l_Lean_Syntax_getArg(x_1, x_211); +x_213 = l_Array_empty___closed__1; +x_214 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_23, x_213); lean_dec(x_6); -x_203 = l_Lean_nullKind___closed__2; -x_204 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_204, 0, x_203); -lean_ctor_set(x_204, 1, x_202); -x_205 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; -x_206 = lean_array_push(x_205, x_204); -x_207 = l_Lean_mkIdentFrom(x_1, x_17); -x_208 = l_Lean_Elab_Term_expandArrayLit___closed__8; -x_209 = lean_array_push(x_208, x_207); -x_210 = l_Lean_Elab_Term_expandArrayLit___closed__9; -x_211 = lean_array_push(x_209, x_210); -x_212 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_212, 0, x_203); -lean_ctor_set(x_212, 1, x_211); -x_213 = lean_array_push(x_206, x_212); -x_214 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_31, x_31, x_23, x_201); +x_215 = l_Lean_nullKind___closed__2; +x_216 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_216, 0, x_215); +lean_ctor_set(x_216, 1, x_214); +x_217 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; +x_218 = lean_array_push(x_217, x_216); +x_219 = l_Lean_mkIdentFrom(x_1, x_17); +x_220 = l_Lean_Elab_Term_expandArrayLit___closed__8; +x_221 = lean_array_push(x_220, x_219); +x_222 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_223 = lean_array_push(x_221, x_222); +x_224 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_224, 0, x_215); +lean_ctor_set(x_224, 1, x_223); +x_225 = lean_array_push(x_218, x_224); +x_226 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_31, x_31, x_23, x_213); lean_dec(x_31); -x_215 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_215, 0, x_203); -lean_ctor_set(x_215, 1, x_214); -x_216 = lean_array_push(x_213, x_215); -x_217 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; -x_218 = lean_array_push(x_216, x_217); -x_219 = lean_array_push(x_218, x_13); -x_220 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; -x_221 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_221, 0, x_220); -lean_ctor_set(x_221, 1, x_219); -x_222 = lean_array_push(x_201, x_221); -x_223 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; -x_224 = lean_array_push(x_223, x_145); -x_225 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; -x_226 = lean_array_push(x_224, x_225); -x_227 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_228 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_228, 0, x_227); -lean_ctor_set(x_228, 1, x_226); -x_229 = lean_array_push(x_201, x_228); -x_230 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_230, 0, x_203); -lean_ctor_set(x_230, 1, x_229); -x_231 = lean_array_push(x_201, x_230); -x_232 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_233 = lean_array_push(x_231, x_232); -x_234 = lean_array_push(x_233, x_200); -x_235 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_236 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_236, 0, x_235); -lean_ctor_set(x_236, 1, x_234); -x_237 = lean_array_push(x_201, x_236); -x_238 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_238, 0, x_203); -lean_ctor_set(x_238, 1, x_237); -x_239 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__10; -x_240 = lean_array_push(x_239, x_238); -x_241 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_227 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_227, 0, x_215); +lean_ctor_set(x_227, 1, x_226); +x_228 = lean_array_push(x_225, x_227); +x_229 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; +x_230 = lean_array_push(x_228, x_229); +x_231 = lean_array_push(x_230, x_13); +x_232 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; +x_233 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_233, 0, x_232); +lean_ctor_set(x_233, 1, x_231); +x_234 = lean_array_push(x_213, x_233); +x_235 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; +x_236 = lean_array_push(x_235, x_153); +x_237 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_238 = lean_array_push(x_236, x_237); +x_239 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_240 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_240, 0, x_239); +lean_ctor_set(x_240, 1, x_238); +x_241 = lean_array_push(x_213, x_240); x_242 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_242, 0, x_241); -lean_ctor_set(x_242, 1, x_240); -x_243 = lean_array_push(x_222, x_242); -x_244 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_244, 0, x_203); -lean_ctor_set(x_244, 1, x_243); -x_245 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_245, 0, x_244); -lean_ctor_set(x_245, 1, x_142); -return x_245; +lean_ctor_set(x_242, 0, x_215); +lean_ctor_set(x_242, 1, x_241); +x_243 = lean_array_push(x_213, x_242); +x_244 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_245 = lean_array_push(x_243, x_244); +x_246 = lean_array_push(x_245, x_212); +x_247 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_248 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_248, 0, x_247); +lean_ctor_set(x_248, 1, x_246); +x_249 = lean_array_push(x_213, x_248); +x_250 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_250, 0, x_215); +lean_ctor_set(x_250, 1, x_249); +x_251 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_252 = lean_array_push(x_251, x_250); +x_253 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_254 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_254, 0, x_253); +lean_ctor_set(x_254, 1, x_252); +x_255 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; +x_256 = lean_array_push(x_255, x_254); +x_257 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_258 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_258, 0, x_257); +lean_ctor_set(x_258, 1, x_256); +x_259 = lean_array_push(x_234, x_258); +x_260 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_260, 0, x_215); +lean_ctor_set(x_260, 1, x_259); +x_261 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_261, 0, x_260); +lean_ctor_set(x_261, 1, x_150); +return x_261; } } } else { -uint8_t x_246; +uint8_t x_262; lean_dec(x_33); lean_dec(x_31); lean_dec(x_17); lean_dec(x_13); lean_dec(x_6); -x_246 = !lean_is_exclusive(x_37); -if (x_246 == 0) +x_262 = !lean_is_exclusive(x_37); +if (x_262 == 0) { return x_37; } else { -lean_object* x_247; lean_object* x_248; lean_object* x_249; -x_247 = lean_ctor_get(x_37, 0); -x_248 = lean_ctor_get(x_37, 1); -lean_inc(x_248); -lean_inc(x_247); +lean_object* x_263; lean_object* x_264; lean_object* x_265; +x_263 = lean_ctor_get(x_37, 0); +x_264 = lean_ctor_get(x_37, 1); +lean_inc(x_264); +lean_inc(x_263); lean_dec(x_37); -x_249 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_249, 0, x_247); -lean_ctor_set(x_249, 1, x_248); -return x_249; +x_265 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_265, 0, x_263); +lean_ctor_set(x_265, 1, x_264); +return x_265; } } } else { -uint8_t x_250; +uint8_t x_266; lean_dec(x_31); lean_dec(x_22); lean_dec(x_17); lean_dec(x_13); lean_dec(x_6); lean_dec(x_2); -x_250 = !lean_is_exclusive(x_32); -if (x_250 == 0) +x_266 = !lean_is_exclusive(x_32); +if (x_266 == 0) { return x_32; } else { -lean_object* x_251; lean_object* x_252; lean_object* x_253; -x_251 = lean_ctor_get(x_32, 0); -x_252 = lean_ctor_get(x_32, 1); -lean_inc(x_252); -lean_inc(x_251); +lean_object* x_267; lean_object* x_268; lean_object* x_269; +x_267 = lean_ctor_get(x_32, 0); +x_268 = lean_ctor_get(x_32, 1); +lean_inc(x_268); +lean_inc(x_267); lean_dec(x_32); -x_253 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_253, 0, x_251); -lean_ctor_set(x_253, 1, x_252); -return x_253; +x_269 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_269, 0, x_267); +lean_ctor_set(x_269, 1, x_268); +return x_269; } } } else { -uint8_t x_254; +uint8_t x_270; lean_dec(x_22); lean_dec(x_20); lean_dec(x_17); @@ -15009,52 +15126,52 @@ lean_dec(x_13); lean_dec(x_8); lean_dec(x_6); lean_dec(x_2); -x_254 = !lean_is_exclusive(x_26); -if (x_254 == 0) +x_270 = !lean_is_exclusive(x_26); +if (x_270 == 0) { return x_26; } else { -lean_object* x_255; lean_object* x_256; lean_object* x_257; -x_255 = lean_ctor_get(x_26, 0); -x_256 = lean_ctor_get(x_26, 1); -lean_inc(x_256); -lean_inc(x_255); +lean_object* x_271; lean_object* x_272; lean_object* x_273; +x_271 = lean_ctor_get(x_26, 0); +x_272 = lean_ctor_get(x_26, 1); +lean_inc(x_272); +lean_inc(x_271); lean_dec(x_26); -x_257 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_257, 0, x_255); -lean_ctor_set(x_257, 1, x_256); -return x_257; +x_273 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_273, 0, x_271); +lean_ctor_set(x_273, 1, x_272); +return x_273; } } } else { -uint8_t x_258; +uint8_t x_274; lean_dec(x_17); lean_dec(x_13); lean_dec(x_11); lean_dec(x_8); lean_dec(x_6); lean_dec(x_2); -x_258 = !lean_is_exclusive(x_19); -if (x_258 == 0) +x_274 = !lean_is_exclusive(x_19); +if (x_274 == 0) { return x_19; } else { -lean_object* x_259; lean_object* x_260; lean_object* x_261; -x_259 = lean_ctor_get(x_19, 0); -x_260 = lean_ctor_get(x_19, 1); -lean_inc(x_260); -lean_inc(x_259); +lean_object* x_275; lean_object* x_276; lean_object* x_277; +x_275 = lean_ctor_get(x_19, 0); +x_276 = lean_ctor_get(x_19, 1); +lean_inc(x_276); +lean_inc(x_275); lean_dec(x_19); -x_261 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_261, 0, x_259); -lean_ctor_set(x_261, 1, x_260); -return x_261; +x_277 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_277, 0, x_275); +lean_ctor_set(x_277, 1, x_276); +return x_277; } } } @@ -15939,7 +16056,7 @@ return x_62; } else { -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; 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; 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; 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_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; 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; 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; 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_dec(x_18); lean_dec(x_1); x_63 = lean_ctor_get(x_2, 1); @@ -16095,244 +16212,246 @@ x_151 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; x_152 = lean_array_push(x_151, x_144); x_153 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_154 = lean_array_push(x_152, x_153); -x_155 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_156 = lean_array_push(x_154, x_155); -x_157 = l_Lean_Elab_Command_expandElab___closed__16; -x_158 = lean_array_push(x_157, x_47); -x_159 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; -x_160 = lean_array_push(x_158, x_159); -x_161 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2; +x_155 = l_Lean_Elab_Command_expandElab___closed__16; +x_156 = lean_array_push(x_155, x_47); +x_157 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_158 = lean_array_push(x_156, x_157); +x_159 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2; +x_160 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_160, 0, x_159); +lean_ctor_set(x_160, 1, x_158); +x_161 = lean_array_push(x_65, x_160); x_162 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_162, 0, x_161); -lean_ctor_set(x_162, 1, x_160); +lean_ctor_set(x_162, 0, x_67); +lean_ctor_set(x_162, 1, x_161); x_163 = lean_array_push(x_65, x_162); -x_164 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_164, 0, x_67); -lean_ctor_set(x_164, 1, x_163); -x_165 = lean_array_push(x_65, x_164); -x_166 = lean_array_push(x_165, x_149); -x_167 = lean_array_push(x_166, x_17); -x_168 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_169 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_169, 0, x_168); -lean_ctor_set(x_169, 1, x_167); -x_170 = lean_array_push(x_65, x_169); -x_171 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; -x_172 = lean_array_push(x_170, x_171); -x_173 = l_Lean_Elab_Command_expandElab___closed__20; -x_174 = l_Lean_addMacroScope(x_64, x_173, x_63); -x_175 = l_Lean_Elab_Command_expandElab___closed__19; -x_176 = l_Lean_Elab_Command_expandElab___closed__23; -x_177 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_177, 0, x_88); -lean_ctor_set(x_177, 1, x_175); -lean_ctor_set(x_177, 2, x_174); -lean_ctor_set(x_177, 3, x_176); -x_178 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; -x_179 = lean_array_push(x_178, x_177); +x_164 = lean_array_push(x_163, x_149); +x_165 = lean_array_push(x_164, x_17); +x_166 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_167 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_167, 0, x_166); +lean_ctor_set(x_167, 1, x_165); +x_168 = lean_array_push(x_65, x_167); +x_169 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_170 = lean_array_push(x_168, x_169); +x_171 = l_Lean_Elab_Command_expandElab___closed__20; +x_172 = l_Lean_addMacroScope(x_64, x_171, x_63); +x_173 = l_Lean_Elab_Command_expandElab___closed__19; +x_174 = l_Lean_Elab_Command_expandElab___closed__23; +x_175 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_175, 0, x_88); +lean_ctor_set(x_175, 1, x_173); +lean_ctor_set(x_175, 2, x_172); +lean_ctor_set(x_175, 3, x_174); +x_176 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; +x_177 = lean_array_push(x_176, x_175); +x_178 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_178, 0, x_166); +lean_ctor_set(x_178, 1, x_177); +x_179 = lean_array_push(x_170, x_178); x_180 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_180, 0, x_168); +lean_ctor_set(x_180, 0, x_67); lean_ctor_set(x_180, 1, x_179); -x_181 = lean_array_push(x_172, x_180); -x_182 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_182, 0, x_67); -lean_ctor_set(x_182, 1, x_181); -x_183 = lean_array_push(x_156, x_182); -x_184 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_185 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_185, 0, x_184); -lean_ctor_set(x_185, 1, x_183); -x_186 = lean_array_push(x_150, x_185); -x_187 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; -x_188 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_188, 0, x_187); -lean_ctor_set(x_188, 1, x_186); -x_189 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; -x_190 = lean_array_push(x_189, x_188); -x_191 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; -x_192 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_192, 0, x_191); -lean_ctor_set(x_192, 1, x_190); -x_193 = lean_array_push(x_140, x_192); -x_194 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; -x_195 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_195, 0, x_194); -lean_ctor_set(x_195, 1, x_193); -x_196 = lean_array_push(x_115, x_195); -x_197 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; -x_198 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_198, 0, x_197); -lean_ctor_set(x_198, 1, x_196); -x_199 = lean_array_push(x_85, x_198); +x_181 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_182 = lean_array_push(x_181, x_180); +x_183 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_184 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_184, 0, x_183); +lean_ctor_set(x_184, 1, x_182); +x_185 = lean_array_push(x_154, x_184); +x_186 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_187 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_187, 0, x_186); +lean_ctor_set(x_187, 1, x_185); +x_188 = lean_array_push(x_150, x_187); +x_189 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; +x_190 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_188); +x_191 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; +x_192 = lean_array_push(x_191, x_190); +x_193 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; +x_194 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_194, 0, x_193); +lean_ctor_set(x_194, 1, x_192); +x_195 = lean_array_push(x_140, x_194); +x_196 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; +x_197 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_197, 0, x_196); +lean_ctor_set(x_197, 1, x_195); +x_198 = lean_array_push(x_115, x_197); +x_199 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; x_200 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_200, 0, x_67); -lean_ctor_set(x_200, 1, x_199); -lean_ctor_set(x_41, 0, x_200); +lean_ctor_set(x_200, 0, x_199); +lean_ctor_set(x_200, 1, x_198); +x_201 = lean_array_push(x_85, x_200); +x_202 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_202, 0, x_67); +lean_ctor_set(x_202, 1, x_201); +lean_ctor_set(x_41, 0, x_202); return x_41; } } 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; 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_object* x_222; 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_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; lean_object* x_253; 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; 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; 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_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_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; lean_object* x_311; 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; lean_object* x_319; 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; 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_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_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_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_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; lean_object* x_253; 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; 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; 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_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_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; lean_object* x_311; 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; lean_object* x_319; 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; 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_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_dec(x_18); lean_dec(x_1); -x_201 = lean_ctor_get(x_2, 1); -lean_inc(x_201); -x_202 = lean_ctor_get(x_2, 0); -lean_inc(x_202); +x_203 = lean_ctor_get(x_2, 1); +lean_inc(x_203); +x_204 = lean_ctor_get(x_2, 0); +lean_inc(x_204); lean_dec(x_2); -x_203 = l_Array_empty___closed__1; -x_204 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_27, x_203); +x_205 = l_Array_empty___closed__1; +x_206 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_27, x_205); lean_dec(x_6); -x_205 = l_Lean_nullKind___closed__2; -x_206 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_206, 0, x_205); -lean_ctor_set(x_206, 1, x_204); -x_207 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; -x_208 = lean_array_push(x_207, x_206); -x_209 = l_Lean_Elab_Term_expandArrayLit___closed__8; +x_207 = l_Lean_nullKind___closed__2; +x_208 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_208, 0, x_207); +lean_ctor_set(x_208, 1, x_206); +x_209 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; +x_210 = lean_array_push(x_209, x_208); +x_211 = l_Lean_Elab_Term_expandArrayLit___closed__8; lean_inc(x_48); -x_210 = lean_array_push(x_209, x_48); -x_211 = l_Lean_Elab_Term_expandArrayLit___closed__9; -x_212 = lean_array_push(x_210, x_211); -x_213 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_213, 0, x_205); -lean_ctor_set(x_213, 1, x_212); -x_214 = lean_array_push(x_208, x_213); -x_215 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_35, x_35, x_27, x_203); +x_212 = lean_array_push(x_211, x_48); +x_213 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_214 = lean_array_push(x_212, x_213); +x_215 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_215, 0, x_207); +lean_ctor_set(x_215, 1, x_214); +x_216 = lean_array_push(x_210, x_215); +x_217 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_35, x_35, x_27, x_205); lean_dec(x_35); -x_216 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_216, 0, x_205); -lean_ctor_set(x_216, 1, x_215); -x_217 = lean_array_push(x_214, x_216); -x_218 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; -x_219 = lean_array_push(x_217, x_218); -x_220 = lean_array_push(x_219, x_13); -x_221 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; -x_222 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_222, 0, x_221); -lean_ctor_set(x_222, 1, x_220); -x_223 = lean_array_push(x_203, x_222); -x_224 = l_Lean_Elab_Command_mkCommandElabAttribute___closed__7; -lean_inc(x_201); -lean_inc(x_202); -x_225 = l_Lean_addMacroScope(x_202, x_224, x_201); -x_226 = lean_box(0); -x_227 = l_Lean_SourceInfo_inhabited___closed__1; -x_228 = l_Lean_Elab_Command_expandElab___closed__25; -x_229 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -lean_ctor_set(x_229, 2, x_225); -lean_ctor_set(x_229, 3, x_226); -x_230 = lean_array_push(x_203, x_229); -x_231 = lean_array_push(x_203, x_48); -x_232 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_232, 0, x_205); -lean_ctor_set(x_232, 1, x_231); -x_233 = lean_array_push(x_230, x_232); -x_234 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; -x_235 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_235, 0, x_234); -lean_ctor_set(x_235, 1, x_233); -x_236 = lean_array_push(x_203, x_235); +x_218 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_218, 0, x_207); +lean_ctor_set(x_218, 1, x_217); +x_219 = lean_array_push(x_216, x_218); +x_220 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; +x_221 = lean_array_push(x_219, x_220); +x_222 = lean_array_push(x_221, x_13); +x_223 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; +x_224 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_224, 0, x_223); +lean_ctor_set(x_224, 1, x_222); +x_225 = lean_array_push(x_205, x_224); +x_226 = l_Lean_Elab_Command_mkCommandElabAttribute___closed__7; +lean_inc(x_203); +lean_inc(x_204); +x_227 = l_Lean_addMacroScope(x_204, x_226, x_203); +x_228 = lean_box(0); +x_229 = l_Lean_SourceInfo_inhabited___closed__1; +x_230 = l_Lean_Elab_Command_expandElab___closed__25; +x_231 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_231, 0, x_229); +lean_ctor_set(x_231, 1, x_230); +lean_ctor_set(x_231, 2, x_227); +lean_ctor_set(x_231, 3, x_228); +x_232 = lean_array_push(x_205, x_231); +x_233 = lean_array_push(x_205, x_48); +x_234 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_234, 0, x_207); +lean_ctor_set(x_234, 1, x_233); +x_235 = lean_array_push(x_232, x_234); +x_236 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; x_237 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_237, 0, x_205); -lean_ctor_set(x_237, 1, x_236); -x_238 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; -x_239 = lean_array_push(x_238, x_237); -x_240 = lean_array_push(x_239, x_211); -x_241 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; -x_242 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_242, 0, x_241); -lean_ctor_set(x_242, 1, x_240); -x_243 = lean_array_push(x_203, x_242); +lean_ctor_set(x_237, 0, x_236); +lean_ctor_set(x_237, 1, x_235); +x_238 = lean_array_push(x_205, x_237); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_207); +lean_ctor_set(x_239, 1, x_238); +x_240 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; +x_241 = lean_array_push(x_240, x_239); +x_242 = lean_array_push(x_241, x_213); +x_243 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; x_244 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_244, 0, x_205); -lean_ctor_set(x_244, 1, x_243); -x_245 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_246 = lean_array_push(x_245, x_244); -x_247 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; -x_248 = lean_array_push(x_246, x_247); -x_249 = lean_array_push(x_248, x_247); -x_250 = lean_array_push(x_249, x_247); -x_251 = lean_array_push(x_250, x_247); -x_252 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; -x_253 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_253, 0, x_252); -lean_ctor_set(x_253, 1, x_251); -x_254 = lean_array_push(x_203, x_253); -x_255 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_201); -lean_inc(x_202); -x_256 = l_Lean_addMacroScope(x_202, x_255, x_201); -x_257 = l_Lean_Elab_Command_expandElab___closed__7; -x_258 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_258, 0, x_227); -lean_ctor_set(x_258, 1, x_257); -lean_ctor_set(x_258, 2, x_256); -lean_ctor_set(x_258, 3, x_226); -x_259 = lean_array_push(x_203, x_258); -x_260 = lean_array_push(x_259, x_247); -x_261 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_262 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_262, 0, x_261); -lean_ctor_set(x_262, 1, x_260); -x_263 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; -x_264 = lean_array_push(x_263, x_262); -x_265 = l_Lean_Elab_Command_mkCommandElabAttribute___closed__9; -lean_inc(x_201); -lean_inc(x_202); -x_266 = l_Lean_addMacroScope(x_202, x_265, x_201); -x_267 = l_Lean_Elab_Command_expandElab___closed__28; -x_268 = l_Lean_Elab_Command_expandElab___closed__30; -x_269 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_269, 0, x_227); -lean_ctor_set(x_269, 1, x_267); -lean_ctor_set(x_269, 2, x_266); -lean_ctor_set(x_269, 3, x_268); -x_270 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; -x_271 = lean_array_push(x_270, x_269); -x_272 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_273 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_273, 0, x_272); -lean_ctor_set(x_273, 1, x_271); -x_274 = lean_array_push(x_203, x_273); +lean_ctor_set(x_244, 0, x_243); +lean_ctor_set(x_244, 1, x_242); +x_245 = lean_array_push(x_205, x_244); +x_246 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_246, 0, x_207); +lean_ctor_set(x_246, 1, x_245); +x_247 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_248 = lean_array_push(x_247, x_246); +x_249 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_250 = lean_array_push(x_248, x_249); +x_251 = lean_array_push(x_250, x_249); +x_252 = lean_array_push(x_251, x_249); +x_253 = lean_array_push(x_252, x_249); +x_254 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; +x_255 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_255, 0, x_254); +lean_ctor_set(x_255, 1, x_253); +x_256 = lean_array_push(x_205, x_255); +x_257 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_203); +lean_inc(x_204); +x_258 = l_Lean_addMacroScope(x_204, x_257, x_203); +x_259 = l_Lean_Elab_Command_expandElab___closed__7; +x_260 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_260, 0, x_229); +lean_ctor_set(x_260, 1, x_259); +lean_ctor_set(x_260, 2, x_258); +lean_ctor_set(x_260, 3, x_228); +x_261 = lean_array_push(x_205, x_260); +x_262 = lean_array_push(x_261, x_249); +x_263 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_264 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set(x_264, 1, x_262); +x_265 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; +x_266 = lean_array_push(x_265, x_264); +x_267 = l_Lean_Elab_Command_mkCommandElabAttribute___closed__9; +lean_inc(x_203); +lean_inc(x_204); +x_268 = l_Lean_addMacroScope(x_204, x_267, x_203); +x_269 = l_Lean_Elab_Command_expandElab___closed__28; +x_270 = l_Lean_Elab_Command_expandElab___closed__30; +x_271 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_271, 0, x_229); +lean_ctor_set(x_271, 1, x_269); +lean_ctor_set(x_271, 2, x_268); +lean_ctor_set(x_271, 3, x_270); +x_272 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; +x_273 = lean_array_push(x_272, x_271); +x_274 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; x_275 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_275, 0, x_205); -lean_ctor_set(x_275, 1, x_274); -x_276 = lean_array_push(x_245, x_275); -x_277 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; -x_278 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_278, 0, x_277); -lean_ctor_set(x_278, 1, x_276); -x_279 = lean_array_push(x_264, x_278); -x_280 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -lean_inc(x_201); -lean_inc(x_202); -x_281 = l_Lean_addMacroScope(x_202, x_280, x_201); -x_282 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_283 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_283, 0, x_227); -lean_ctor_set(x_283, 1, x_282); -lean_ctor_set(x_283, 2, x_281); -lean_ctor_set(x_283, 3, x_226); -lean_inc(x_283); -x_284 = lean_array_push(x_203, x_283); -x_285 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_285, 0, x_205); +lean_ctor_set(x_275, 0, x_274); +lean_ctor_set(x_275, 1, x_273); +x_276 = lean_array_push(x_205, x_275); +x_277 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_277, 0, x_207); +lean_ctor_set(x_277, 1, x_276); +x_278 = lean_array_push(x_247, x_277); +x_279 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; +x_280 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_280, 0, x_279); +lean_ctor_set(x_280, 1, x_278); +x_281 = lean_array_push(x_266, x_280); +x_282 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +lean_inc(x_203); +lean_inc(x_204); +x_283 = l_Lean_addMacroScope(x_204, x_282, x_203); +x_284 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_285 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_285, 0, x_229); lean_ctor_set(x_285, 1, x_284); -x_286 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; -x_287 = lean_array_push(x_286, x_285); -x_288 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_289 = lean_array_push(x_287, x_288); -x_290 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_291 = lean_array_push(x_290, x_283); -x_292 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_293 = lean_array_push(x_291, x_292); -x_294 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +lean_ctor_set(x_285, 2, x_283); +lean_ctor_set(x_285, 3, x_228); +lean_inc(x_285); +x_286 = lean_array_push(x_205, x_285); +x_287 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_287, 0, x_207); +lean_ctor_set(x_287, 1, x_286); +x_288 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; +x_289 = lean_array_push(x_288, x_287); +x_290 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_291 = lean_array_push(x_289, x_290); +x_292 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_293 = lean_array_push(x_292, x_285); +x_294 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_295 = lean_array_push(x_293, x_294); -x_296 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; +x_296 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; x_297 = lean_array_push(x_296, x_47); x_298 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; x_299 = lean_array_push(x_297, x_298); @@ -16340,26 +16459,26 @@ x_300 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; x_301 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_301, 0, x_300); lean_ctor_set(x_301, 1, x_299); -x_302 = lean_array_push(x_203, x_301); +x_302 = lean_array_push(x_205, x_301); x_303 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_303, 0, x_205); +lean_ctor_set(x_303, 0, x_207); lean_ctor_set(x_303, 1, x_302); -x_304 = lean_array_push(x_203, x_303); -x_305 = lean_array_push(x_304, x_288); +x_304 = lean_array_push(x_205, x_303); +x_305 = lean_array_push(x_304, x_290); x_306 = lean_array_push(x_305, x_17); -x_307 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +x_307 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_308 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_308, 0, x_307); lean_ctor_set(x_308, 1, x_306); -x_309 = lean_array_push(x_203, x_308); -x_310 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_309 = lean_array_push(x_205, x_308); +x_310 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; x_311 = lean_array_push(x_309, x_310); x_312 = l_Lean_Elab_Command_expandElab___closed__20; -x_313 = l_Lean_addMacroScope(x_202, x_312, x_201); +x_313 = l_Lean_addMacroScope(x_204, x_312, x_203); x_314 = l_Lean_Elab_Command_expandElab___closed__19; x_315 = l_Lean_Elab_Command_expandElab___closed__23; x_316 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_316, 0, x_227); +lean_ctor_set(x_316, 0, x_229); lean_ctor_set(x_316, 1, x_314); lean_ctor_set(x_316, 2, x_313); lean_ctor_set(x_316, 3, x_315); @@ -16370,288 +16489,298 @@ lean_ctor_set(x_319, 0, x_307); lean_ctor_set(x_319, 1, x_318); x_320 = lean_array_push(x_311, x_319); x_321 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_321, 0, x_205); +lean_ctor_set(x_321, 0, x_207); lean_ctor_set(x_321, 1, x_320); -x_322 = lean_array_push(x_295, x_321); -x_323 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_324 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_324, 0, x_323); -lean_ctor_set(x_324, 1, x_322); -x_325 = lean_array_push(x_289, x_324); -x_326 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; -x_327 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_327, 0, x_326); -lean_ctor_set(x_327, 1, x_325); -x_328 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; -x_329 = lean_array_push(x_328, x_327); -x_330 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; +x_322 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_323 = lean_array_push(x_322, x_321); +x_324 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_325 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_325, 0, x_324); +lean_ctor_set(x_325, 1, x_323); +x_326 = lean_array_push(x_295, x_325); +x_327 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_328 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_328, 0, x_327); +lean_ctor_set(x_328, 1, x_326); +x_329 = lean_array_push(x_291, x_328); +x_330 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; x_331 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_331, 0, x_330); lean_ctor_set(x_331, 1, x_329); -x_332 = lean_array_push(x_279, x_331); -x_333 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; -x_334 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_334, 0, x_333); -lean_ctor_set(x_334, 1, x_332); -x_335 = lean_array_push(x_254, x_334); -x_336 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; -x_337 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_337, 0, x_336); -lean_ctor_set(x_337, 1, x_335); -x_338 = lean_array_push(x_223, x_337); -x_339 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_339, 0, x_205); -lean_ctor_set(x_339, 1, x_338); -lean_ctor_set(x_41, 0, x_339); +x_332 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; +x_333 = lean_array_push(x_332, x_331); +x_334 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; +x_335 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_335, 0, x_334); +lean_ctor_set(x_335, 1, x_333); +x_336 = lean_array_push(x_281, x_335); +x_337 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; +x_338 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_338, 0, x_337); +lean_ctor_set(x_338, 1, x_336); +x_339 = lean_array_push(x_256, x_338); +x_340 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; +x_341 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_341, 0, x_340); +lean_ctor_set(x_341, 1, x_339); +x_342 = lean_array_push(x_225, x_341); +x_343 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_343, 0, x_207); +lean_ctor_set(x_343, 1, x_342); +lean_ctor_set(x_41, 0, x_343); return x_41; } } 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; 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_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_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_object* x_375; 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; 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; lean_object* x_393; lean_object* x_394; 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_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; 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_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; 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_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_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; 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; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; 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_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; +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; 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_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_object* x_375; 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; 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; lean_object* x_393; lean_object* x_394; 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_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; 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_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; 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_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_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; 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; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; 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_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; 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_object* x_486; lean_dec(x_18); lean_dec(x_1); -x_340 = lean_ctor_get(x_2, 1); -lean_inc(x_340); -x_341 = lean_ctor_get(x_2, 0); -lean_inc(x_341); +x_344 = lean_ctor_get(x_2, 1); +lean_inc(x_344); +x_345 = lean_ctor_get(x_2, 0); +lean_inc(x_345); lean_dec(x_2); -x_342 = l_Array_empty___closed__1; -x_343 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_27, x_342); +x_346 = l_Array_empty___closed__1; +x_347 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_27, x_346); lean_dec(x_6); -x_344 = l_Lean_nullKind___closed__2; -x_345 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_345, 0, x_344); -lean_ctor_set(x_345, 1, x_343); -x_346 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; -x_347 = lean_array_push(x_346, x_345); -x_348 = l_Lean_Elab_Term_expandArrayLit___closed__8; +x_348 = l_Lean_nullKind___closed__2; +x_349 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_349, 0, x_348); +lean_ctor_set(x_349, 1, x_347); +x_350 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; +x_351 = lean_array_push(x_350, x_349); +x_352 = l_Lean_Elab_Term_expandArrayLit___closed__8; lean_inc(x_48); -x_349 = lean_array_push(x_348, x_48); -x_350 = l_Lean_Elab_Term_expandArrayLit___closed__9; -x_351 = lean_array_push(x_349, x_350); -x_352 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_352, 0, x_344); -lean_ctor_set(x_352, 1, x_351); -x_353 = lean_array_push(x_347, x_352); -x_354 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_35, x_35, x_27, x_342); +x_353 = lean_array_push(x_352, x_48); +x_354 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_355 = lean_array_push(x_353, x_354); +x_356 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_356, 0, x_348); +lean_ctor_set(x_356, 1, x_355); +x_357 = lean_array_push(x_351, x_356); +x_358 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_35, x_35, x_27, x_346); lean_dec(x_35); -x_355 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_355, 0, x_344); -lean_ctor_set(x_355, 1, x_354); -x_356 = lean_array_push(x_353, x_355); -x_357 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; -x_358 = lean_array_push(x_356, x_357); -x_359 = lean_array_push(x_358, x_13); -x_360 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; -x_361 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_361, 0, x_360); -lean_ctor_set(x_361, 1, x_359); -x_362 = lean_array_push(x_342, x_361); -x_363 = l_Lean_Elab_Term_mkTermElabAttribute___closed__7; -lean_inc(x_340); -lean_inc(x_341); -x_364 = l_Lean_addMacroScope(x_341, x_363, x_340); -x_365 = lean_box(0); -x_366 = l_Lean_SourceInfo_inhabited___closed__1; -x_367 = l_Lean_Elab_Command_expandElab___closed__32; -x_368 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_368, 0, x_366); -lean_ctor_set(x_368, 1, x_367); -lean_ctor_set(x_368, 2, x_364); -lean_ctor_set(x_368, 3, x_365); -x_369 = lean_array_push(x_342, x_368); -x_370 = lean_array_push(x_342, x_48); -x_371 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_371, 0, x_344); -lean_ctor_set(x_371, 1, x_370); -x_372 = lean_array_push(x_369, x_371); -x_373 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; -x_374 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_374, 0, x_373); -lean_ctor_set(x_374, 1, x_372); -x_375 = lean_array_push(x_342, x_374); -x_376 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_376, 0, x_344); -lean_ctor_set(x_376, 1, x_375); -x_377 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; -x_378 = lean_array_push(x_377, x_376); -x_379 = lean_array_push(x_378, x_350); -x_380 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; -x_381 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_381, 0, x_380); -lean_ctor_set(x_381, 1, x_379); -x_382 = lean_array_push(x_342, x_381); -x_383 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_383, 0, x_344); -lean_ctor_set(x_383, 1, x_382); -x_384 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_385 = lean_array_push(x_384, x_383); -x_386 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; -x_387 = lean_array_push(x_385, x_386); -x_388 = lean_array_push(x_387, x_386); -x_389 = lean_array_push(x_388, x_386); -x_390 = lean_array_push(x_389, x_386); -x_391 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; -x_392 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_392, 0, x_391); -lean_ctor_set(x_392, 1, x_390); -x_393 = lean_array_push(x_342, x_392); -x_394 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_340); -lean_inc(x_341); -x_395 = l_Lean_addMacroScope(x_341, x_394, x_340); -x_396 = l_Lean_Elab_Command_expandElab___closed__7; -x_397 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_397, 0, x_366); -lean_ctor_set(x_397, 1, x_396); -lean_ctor_set(x_397, 2, x_395); -lean_ctor_set(x_397, 3, x_365); -x_398 = lean_array_push(x_342, x_397); -x_399 = lean_array_push(x_398, x_386); -x_400 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_401 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_401, 0, x_400); -lean_ctor_set(x_401, 1, x_399); -x_402 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; -x_403 = lean_array_push(x_402, x_401); -x_404 = l_Lean_Elab_Term_mkTermElabAttribute___closed__9; -lean_inc(x_340); -lean_inc(x_341); -x_405 = l_Lean_addMacroScope(x_341, x_404, x_340); -x_406 = l_Lean_Elab_Command_expandElab___closed__35; -x_407 = l_Lean_Elab_Command_expandElab___closed__37; -x_408 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_408, 0, x_366); -lean_ctor_set(x_408, 1, x_406); -lean_ctor_set(x_408, 2, x_405); -lean_ctor_set(x_408, 3, x_407); -x_409 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; -x_410 = lean_array_push(x_409, x_408); -x_411 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_412 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_412, 0, x_411); +x_359 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_359, 0, x_348); +lean_ctor_set(x_359, 1, x_358); +x_360 = lean_array_push(x_357, x_359); +x_361 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; +x_362 = lean_array_push(x_360, x_361); +x_363 = lean_array_push(x_362, x_13); +x_364 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; +x_365 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_365, 0, x_364); +lean_ctor_set(x_365, 1, x_363); +x_366 = lean_array_push(x_346, x_365); +x_367 = l_Lean_Elab_Term_mkTermElabAttribute___closed__7; +lean_inc(x_344); +lean_inc(x_345); +x_368 = l_Lean_addMacroScope(x_345, x_367, x_344); +x_369 = lean_box(0); +x_370 = l_Lean_SourceInfo_inhabited___closed__1; +x_371 = l_Lean_Elab_Command_expandElab___closed__32; +x_372 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_372, 0, x_370); +lean_ctor_set(x_372, 1, x_371); +lean_ctor_set(x_372, 2, x_368); +lean_ctor_set(x_372, 3, x_369); +x_373 = lean_array_push(x_346, x_372); +x_374 = lean_array_push(x_346, x_48); +x_375 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_375, 0, x_348); +lean_ctor_set(x_375, 1, x_374); +x_376 = lean_array_push(x_373, x_375); +x_377 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; +x_378 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_378, 0, x_377); +lean_ctor_set(x_378, 1, x_376); +x_379 = lean_array_push(x_346, x_378); +x_380 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_380, 0, x_348); +lean_ctor_set(x_380, 1, x_379); +x_381 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; +x_382 = lean_array_push(x_381, x_380); +x_383 = lean_array_push(x_382, x_354); +x_384 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; +x_385 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_385, 0, x_384); +lean_ctor_set(x_385, 1, x_383); +x_386 = lean_array_push(x_346, x_385); +x_387 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_387, 0, x_348); +lean_ctor_set(x_387, 1, x_386); +x_388 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_389 = lean_array_push(x_388, x_387); +x_390 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_391 = lean_array_push(x_389, x_390); +x_392 = lean_array_push(x_391, x_390); +x_393 = lean_array_push(x_392, x_390); +x_394 = lean_array_push(x_393, x_390); +x_395 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; +x_396 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_396, 0, x_395); +lean_ctor_set(x_396, 1, x_394); +x_397 = lean_array_push(x_346, x_396); +x_398 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_344); +lean_inc(x_345); +x_399 = l_Lean_addMacroScope(x_345, x_398, x_344); +x_400 = l_Lean_Elab_Command_expandElab___closed__7; +x_401 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_401, 0, x_370); +lean_ctor_set(x_401, 1, x_400); +lean_ctor_set(x_401, 2, x_399); +lean_ctor_set(x_401, 3, x_369); +x_402 = lean_array_push(x_346, x_401); +x_403 = lean_array_push(x_402, x_390); +x_404 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_405 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_405, 0, x_404); +lean_ctor_set(x_405, 1, x_403); +x_406 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; +x_407 = lean_array_push(x_406, x_405); +x_408 = l_Lean_Elab_Term_mkTermElabAttribute___closed__9; +lean_inc(x_344); +lean_inc(x_345); +x_409 = l_Lean_addMacroScope(x_345, x_408, x_344); +x_410 = l_Lean_Elab_Command_expandElab___closed__35; +x_411 = l_Lean_Elab_Command_expandElab___closed__37; +x_412 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_412, 0, x_370); lean_ctor_set(x_412, 1, x_410); -x_413 = lean_array_push(x_342, x_412); -x_414 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_414, 0, x_344); -lean_ctor_set(x_414, 1, x_413); -x_415 = lean_array_push(x_384, x_414); -x_416 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; -x_417 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_417, 0, x_416); -lean_ctor_set(x_417, 1, x_415); -x_418 = lean_array_push(x_403, x_417); -x_419 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -lean_inc(x_340); -lean_inc(x_341); -x_420 = l_Lean_addMacroScope(x_341, x_419, x_340); -x_421 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_422 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_422, 0, x_366); -lean_ctor_set(x_422, 1, x_421); -lean_ctor_set(x_422, 2, x_420); -lean_ctor_set(x_422, 3, x_365); -lean_inc(x_422); -x_423 = lean_array_push(x_342, x_422); -x_424 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; -x_425 = lean_array_push(x_423, x_424); -x_426 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_426, 0, x_344); +lean_ctor_set(x_412, 2, x_409); +lean_ctor_set(x_412, 3, x_411); +x_413 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; +x_414 = lean_array_push(x_413, x_412); +x_415 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; +x_416 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_416, 0, x_415); +lean_ctor_set(x_416, 1, x_414); +x_417 = lean_array_push(x_346, x_416); +x_418 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_418, 0, x_348); +lean_ctor_set(x_418, 1, x_417); +x_419 = lean_array_push(x_388, x_418); +x_420 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; +x_421 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_421, 0, x_420); +lean_ctor_set(x_421, 1, x_419); +x_422 = lean_array_push(x_407, x_421); +x_423 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +lean_inc(x_344); +lean_inc(x_345); +x_424 = l_Lean_addMacroScope(x_345, x_423, x_344); +x_425 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_426 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_426, 0, x_370); lean_ctor_set(x_426, 1, x_425); -x_427 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; -x_428 = lean_array_push(x_427, x_426); -x_429 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_430 = lean_array_push(x_428, x_429); -x_431 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_432 = lean_array_push(x_431, x_422); -x_433 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +lean_ctor_set(x_426, 2, x_424); +lean_ctor_set(x_426, 3, x_369); +lean_inc(x_426); +x_427 = lean_array_push(x_346, x_426); +x_428 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; +x_429 = lean_array_push(x_427, x_428); +x_430 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_430, 0, x_348); +lean_ctor_set(x_430, 1, x_429); +x_431 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; +x_432 = lean_array_push(x_431, x_430); +x_433 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; x_434 = lean_array_push(x_432, x_433); -x_435 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_436 = lean_array_push(x_434, x_435); -x_437 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; -x_438 = lean_array_push(x_437, x_47); -x_439 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; -x_440 = lean_array_push(x_438, x_439); -x_441 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_442 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_442, 0, x_441); -lean_ctor_set(x_442, 1, x_440); -x_443 = lean_array_push(x_342, x_442); +x_435 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_436 = lean_array_push(x_435, x_426); +x_437 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_438 = lean_array_push(x_436, x_437); +x_439 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; +x_440 = lean_array_push(x_439, x_47); +x_441 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_442 = lean_array_push(x_440, x_441); +x_443 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; x_444 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_444, 0, x_344); -lean_ctor_set(x_444, 1, x_443); -x_445 = lean_array_push(x_342, x_444); -x_446 = lean_array_push(x_445, x_429); -x_447 = lean_array_push(x_446, x_17); -x_448 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_449 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_449, 0, x_448); -lean_ctor_set(x_449, 1, x_447); -x_450 = lean_array_push(x_342, x_449); -x_451 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; -x_452 = lean_array_push(x_450, x_451); -x_453 = l_Lean_Elab_Command_expandElab___closed__20; -x_454 = l_Lean_addMacroScope(x_341, x_453, x_340); -x_455 = l_Lean_Elab_Command_expandElab___closed__19; -x_456 = l_Lean_Elab_Command_expandElab___closed__23; -x_457 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_457, 0, x_366); -lean_ctor_set(x_457, 1, x_455); -lean_ctor_set(x_457, 2, x_454); -lean_ctor_set(x_457, 3, x_456); -x_458 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; -x_459 = lean_array_push(x_458, x_457); -x_460 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_460, 0, x_448); -lean_ctor_set(x_460, 1, x_459); -x_461 = lean_array_push(x_452, x_460); +lean_ctor_set(x_444, 0, x_443); +lean_ctor_set(x_444, 1, x_442); +x_445 = lean_array_push(x_346, x_444); +x_446 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_446, 0, x_348); +lean_ctor_set(x_446, 1, x_445); +x_447 = lean_array_push(x_346, x_446); +x_448 = lean_array_push(x_447, x_433); +x_449 = lean_array_push(x_448, x_17); +x_450 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_451 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_451, 0, x_450); +lean_ctor_set(x_451, 1, x_449); +x_452 = lean_array_push(x_346, x_451); +x_453 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_454 = lean_array_push(x_452, x_453); +x_455 = l_Lean_Elab_Command_expandElab___closed__20; +x_456 = l_Lean_addMacroScope(x_345, x_455, x_344); +x_457 = l_Lean_Elab_Command_expandElab___closed__19; +x_458 = l_Lean_Elab_Command_expandElab___closed__23; +x_459 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_459, 0, x_370); +lean_ctor_set(x_459, 1, x_457); +lean_ctor_set(x_459, 2, x_456); +lean_ctor_set(x_459, 3, x_458); +x_460 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; +x_461 = lean_array_push(x_460, x_459); x_462 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_462, 0, x_344); +lean_ctor_set(x_462, 0, x_450); lean_ctor_set(x_462, 1, x_461); -x_463 = lean_array_push(x_436, x_462); -x_464 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_465 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_465, 0, x_464); -lean_ctor_set(x_465, 1, x_463); -x_466 = lean_array_push(x_430, x_465); -x_467 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; +x_463 = lean_array_push(x_454, x_462); +x_464 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_464, 0, x_348); +lean_ctor_set(x_464, 1, x_463); +x_465 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_466 = lean_array_push(x_465, x_464); +x_467 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_468 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_468, 0, x_467); lean_ctor_set(x_468, 1, x_466); -x_469 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; -x_470 = lean_array_push(x_469, x_468); -x_471 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; -x_472 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_472, 0, x_471); -lean_ctor_set(x_472, 1, x_470); -x_473 = lean_array_push(x_418, x_472); -x_474 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; -x_475 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_475, 0, x_474); -lean_ctor_set(x_475, 1, x_473); -x_476 = lean_array_push(x_393, x_475); -x_477 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; +x_469 = lean_array_push(x_438, x_468); +x_470 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_471 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_471, 0, x_470); +lean_ctor_set(x_471, 1, x_469); +x_472 = lean_array_push(x_434, x_471); +x_473 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; +x_474 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_474, 0, x_473); +lean_ctor_set(x_474, 1, x_472); +x_475 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; +x_476 = lean_array_push(x_475, x_474); +x_477 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; x_478 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_478, 0, x_477); lean_ctor_set(x_478, 1, x_476); -x_479 = lean_array_push(x_362, x_478); -x_480 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_480, 0, x_344); -lean_ctor_set(x_480, 1, x_479); -lean_ctor_set(x_41, 0, x_480); +x_479 = lean_array_push(x_422, x_478); +x_480 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; +x_481 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_481, 0, x_480); +lean_ctor_set(x_481, 1, x_479); +x_482 = lean_array_push(x_397, x_481); +x_483 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; +x_484 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_484, 0, x_483); +lean_ctor_set(x_484, 1, x_482); +x_485 = lean_array_push(x_366, x_484); +x_486 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_486, 0, x_348); +lean_ctor_set(x_486, 1, x_485); +lean_ctor_set(x_41, 0, x_486); return x_41; } } else { -lean_object* x_481; uint8_t x_482; +lean_object* x_487; uint8_t x_488; lean_dec(x_1); -x_481 = l_Lean_Parser_termParser___closed__2; -x_482 = lean_name_eq(x_18, x_481); -if (x_482 == 0) +x_487 = l_Lean_Parser_termParser___closed__2; +x_488 = lean_name_eq(x_18, x_487); +if (x_488 == 0) { -lean_object* 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; +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_dec(x_48); lean_dec(x_47); lean_free_object(x_41); @@ -16659,1376 +16788,1396 @@ lean_dec(x_35); lean_dec(x_17); lean_dec(x_13); lean_dec(x_6); -x_483 = l_System_FilePath_dirName___closed__1; -x_484 = l_Lean_Name_toStringWithSep___main(x_483, x_18); -x_485 = l_Lean_Elab_Command_expandElab___closed__38; -x_486 = lean_string_append(x_485, x_484); -lean_dec(x_484); -x_487 = l_Lean_Elab_Command_expandElab___closed__39; -x_488 = lean_string_append(x_486, x_487); -x_489 = l_Lean_Macro_throwError___rarg(x_15, x_488, x_2, x_44); +x_489 = l_System_FilePath_dirName___closed__1; +x_490 = l_Lean_Name_toStringWithSep___main(x_489, x_18); +x_491 = l_Lean_Elab_Command_expandElab___closed__38; +x_492 = lean_string_append(x_491, x_490); +lean_dec(x_490); +x_493 = l_Lean_Elab_Command_expandElab___closed__39; +x_494 = lean_string_append(x_492, x_493); +x_495 = l_Lean_Macro_throwError___rarg(x_15, x_494, x_2, x_44); lean_dec(x_2); -return x_489; +return x_495; } else { -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_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; 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_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_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; lean_object* x_541; 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_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; lean_object* x_556; 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_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; 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_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; 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_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; 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; 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_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; lean_object* x_635; 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_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; lean_object* x_651; lean_object* x_652; +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; 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_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_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; lean_object* x_541; 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_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; lean_object* x_556; 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_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; 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_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; 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_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; 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; 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_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; lean_object* x_635; 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_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; lean_object* x_651; 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_object* x_660; lean_dec(x_18); -x_490 = l_Lean_Syntax_getArg(x_15, x_4); +x_496 = l_Lean_Syntax_getArg(x_15, x_4); lean_dec(x_15); -x_491 = lean_ctor_get(x_2, 1); -lean_inc(x_491); -x_492 = lean_ctor_get(x_2, 0); -lean_inc(x_492); +x_497 = lean_ctor_get(x_2, 1); +lean_inc(x_497); +x_498 = lean_ctor_get(x_2, 0); +lean_inc(x_498); lean_dec(x_2); -x_493 = l_Array_empty___closed__1; -x_494 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_27, x_493); +x_499 = l_Array_empty___closed__1; +x_500 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_27, x_499); lean_dec(x_6); -x_495 = l_Lean_nullKind___closed__2; -x_496 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_496, 0, x_495); -lean_ctor_set(x_496, 1, x_494); -x_497 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; -x_498 = lean_array_push(x_497, x_496); -x_499 = l_Lean_Elab_Term_expandArrayLit___closed__8; +x_501 = l_Lean_nullKind___closed__2; +x_502 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_502, 0, x_501); +lean_ctor_set(x_502, 1, x_500); +x_503 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; +x_504 = lean_array_push(x_503, x_502); +x_505 = l_Lean_Elab_Term_expandArrayLit___closed__8; lean_inc(x_48); -x_500 = lean_array_push(x_499, x_48); -x_501 = l_Lean_Elab_Term_expandArrayLit___closed__9; -x_502 = lean_array_push(x_500, x_501); -x_503 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_503, 0, x_495); -lean_ctor_set(x_503, 1, x_502); -x_504 = lean_array_push(x_498, x_503); -x_505 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_35, x_35, x_27, x_493); +x_506 = lean_array_push(x_505, x_48); +x_507 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_508 = lean_array_push(x_506, x_507); +x_509 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_509, 0, x_501); +lean_ctor_set(x_509, 1, x_508); +x_510 = lean_array_push(x_504, x_509); +x_511 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_35, x_35, x_27, x_499); lean_dec(x_35); -x_506 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_506, 0, x_495); -lean_ctor_set(x_506, 1, x_505); -x_507 = lean_array_push(x_504, x_506); -x_508 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; -x_509 = lean_array_push(x_507, x_508); -x_510 = lean_array_push(x_509, x_13); -x_511 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; x_512 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_512, 0, x_511); -lean_ctor_set(x_512, 1, x_510); -x_513 = lean_array_push(x_493, x_512); -x_514 = l_Lean_Elab_Term_mkTermElabAttribute___closed__7; -lean_inc(x_491); -lean_inc(x_492); -x_515 = l_Lean_addMacroScope(x_492, x_514, x_491); -x_516 = lean_box(0); -x_517 = l_Lean_SourceInfo_inhabited___closed__1; -x_518 = l_Lean_Elab_Command_expandElab___closed__32; -x_519 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_519, 0, x_517); -lean_ctor_set(x_519, 1, x_518); -lean_ctor_set(x_519, 2, x_515); -lean_ctor_set(x_519, 3, x_516); -x_520 = lean_array_push(x_493, x_519); -x_521 = lean_array_push(x_493, x_48); -x_522 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_522, 0, x_495); -lean_ctor_set(x_522, 1, x_521); -x_523 = lean_array_push(x_520, x_522); -x_524 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; -x_525 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_525, 0, x_524); -lean_ctor_set(x_525, 1, x_523); -x_526 = lean_array_push(x_493, x_525); -x_527 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_527, 0, x_495); -lean_ctor_set(x_527, 1, x_526); -x_528 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; -x_529 = lean_array_push(x_528, x_527); -x_530 = lean_array_push(x_529, x_501); -x_531 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; -x_532 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_532, 0, x_531); -lean_ctor_set(x_532, 1, x_530); -x_533 = lean_array_push(x_493, x_532); -x_534 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_534, 0, x_495); -lean_ctor_set(x_534, 1, x_533); -x_535 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_536 = lean_array_push(x_535, x_534); -x_537 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; -x_538 = lean_array_push(x_536, x_537); -x_539 = lean_array_push(x_538, x_537); -x_540 = lean_array_push(x_539, x_537); -x_541 = lean_array_push(x_540, x_537); -x_542 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; -x_543 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_543, 0, x_542); -lean_ctor_set(x_543, 1, x_541); -x_544 = lean_array_push(x_493, x_543); -x_545 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_491); -lean_inc(x_492); -x_546 = l_Lean_addMacroScope(x_492, x_545, x_491); -x_547 = l_Lean_Elab_Command_expandElab___closed__7; -x_548 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_548, 0, x_517); -lean_ctor_set(x_548, 1, x_547); -lean_ctor_set(x_548, 2, x_546); -lean_ctor_set(x_548, 3, x_516); -x_549 = lean_array_push(x_493, x_548); -x_550 = lean_array_push(x_549, x_537); -x_551 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_552 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_552, 0, x_551); -lean_ctor_set(x_552, 1, x_550); -x_553 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; -x_554 = lean_array_push(x_553, x_552); -x_555 = l_Lean_Elab_Term_mkTermElabAttribute___closed__9; -lean_inc(x_491); -lean_inc(x_492); -x_556 = l_Lean_addMacroScope(x_492, x_555, x_491); -x_557 = l_Lean_Elab_Command_expandElab___closed__35; -x_558 = l_Lean_Elab_Command_expandElab___closed__37; -x_559 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_559, 0, x_517); -lean_ctor_set(x_559, 1, x_557); -lean_ctor_set(x_559, 2, x_556); -lean_ctor_set(x_559, 3, x_558); -x_560 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; -x_561 = lean_array_push(x_560, x_559); -x_562 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_563 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_563, 0, x_562); -lean_ctor_set(x_563, 1, x_561); -x_564 = lean_array_push(x_493, x_563); -x_565 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_565, 0, x_495); -lean_ctor_set(x_565, 1, x_564); -x_566 = lean_array_push(x_535, x_565); -x_567 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; -x_568 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_568, 0, x_567); -lean_ctor_set(x_568, 1, x_566); -x_569 = lean_array_push(x_554, x_568); -x_570 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -lean_inc(x_491); -lean_inc(x_492); -x_571 = l_Lean_addMacroScope(x_492, x_570, x_491); -x_572 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_573 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_573, 0, x_517); -lean_ctor_set(x_573, 1, x_572); -lean_ctor_set(x_573, 2, x_571); -lean_ctor_set(x_573, 3, x_516); -lean_inc(x_573); -x_574 = lean_array_push(x_493, x_573); -x_575 = l_Lean_Elab_Command_expandElab___closed__43; -lean_inc(x_491); -lean_inc(x_492); -x_576 = l_Lean_addMacroScope(x_492, x_575, x_491); -x_577 = l_Lean_Elab_Command_expandElab___closed__42; -x_578 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_578, 0, x_517); -lean_ctor_set(x_578, 1, x_577); -lean_ctor_set(x_578, 2, x_576); -lean_ctor_set(x_578, 3, x_516); -lean_inc(x_578); -x_579 = lean_array_push(x_574, x_578); -x_580 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_580, 0, x_495); -lean_ctor_set(x_580, 1, x_579); -x_581 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; -x_582 = lean_array_push(x_581, x_580); -x_583 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_584 = lean_array_push(x_582, x_583); -x_585 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_586 = lean_array_push(x_585, x_573); -x_587 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_588 = lean_array_push(x_586, x_587); -x_589 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +lean_ctor_set(x_512, 0, x_501); +lean_ctor_set(x_512, 1, x_511); +x_513 = lean_array_push(x_510, x_512); +x_514 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; +x_515 = lean_array_push(x_513, x_514); +x_516 = lean_array_push(x_515, x_13); +x_517 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; +x_518 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_518, 0, x_517); +lean_ctor_set(x_518, 1, x_516); +x_519 = lean_array_push(x_499, x_518); +x_520 = l_Lean_Elab_Term_mkTermElabAttribute___closed__7; +lean_inc(x_497); +lean_inc(x_498); +x_521 = l_Lean_addMacroScope(x_498, x_520, x_497); +x_522 = lean_box(0); +x_523 = l_Lean_SourceInfo_inhabited___closed__1; +x_524 = l_Lean_Elab_Command_expandElab___closed__32; +x_525 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_525, 0, x_523); +lean_ctor_set(x_525, 1, x_524); +lean_ctor_set(x_525, 2, x_521); +lean_ctor_set(x_525, 3, x_522); +x_526 = lean_array_push(x_499, x_525); +x_527 = lean_array_push(x_499, x_48); +x_528 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_528, 0, x_501); +lean_ctor_set(x_528, 1, x_527); +x_529 = lean_array_push(x_526, x_528); +x_530 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; +x_531 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_531, 0, x_530); +lean_ctor_set(x_531, 1, x_529); +x_532 = lean_array_push(x_499, x_531); +x_533 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_533, 0, x_501); +lean_ctor_set(x_533, 1, x_532); +x_534 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; +x_535 = lean_array_push(x_534, x_533); +x_536 = lean_array_push(x_535, x_507); +x_537 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; +x_538 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_538, 0, x_537); +lean_ctor_set(x_538, 1, x_536); +x_539 = lean_array_push(x_499, x_538); +x_540 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_540, 0, x_501); +lean_ctor_set(x_540, 1, x_539); +x_541 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_542 = lean_array_push(x_541, x_540); +x_543 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_544 = lean_array_push(x_542, x_543); +x_545 = lean_array_push(x_544, x_543); +x_546 = lean_array_push(x_545, x_543); +x_547 = lean_array_push(x_546, x_543); +x_548 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; +x_549 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_549, 0, x_548); +lean_ctor_set(x_549, 1, x_547); +x_550 = lean_array_push(x_499, x_549); +x_551 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_497); +lean_inc(x_498); +x_552 = l_Lean_addMacroScope(x_498, x_551, x_497); +x_553 = l_Lean_Elab_Command_expandElab___closed__7; +x_554 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_554, 0, x_523); +lean_ctor_set(x_554, 1, x_553); +lean_ctor_set(x_554, 2, x_552); +lean_ctor_set(x_554, 3, x_522); +x_555 = lean_array_push(x_499, x_554); +x_556 = lean_array_push(x_555, x_543); +x_557 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_558 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_558, 0, x_557); +lean_ctor_set(x_558, 1, x_556); +x_559 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; +x_560 = lean_array_push(x_559, x_558); +x_561 = l_Lean_Elab_Term_mkTermElabAttribute___closed__9; +lean_inc(x_497); +lean_inc(x_498); +x_562 = l_Lean_addMacroScope(x_498, x_561, x_497); +x_563 = l_Lean_Elab_Command_expandElab___closed__35; +x_564 = l_Lean_Elab_Command_expandElab___closed__37; +x_565 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_565, 0, x_523); +lean_ctor_set(x_565, 1, x_563); +lean_ctor_set(x_565, 2, x_562); +lean_ctor_set(x_565, 3, x_564); +x_566 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; +x_567 = lean_array_push(x_566, x_565); +x_568 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; +x_569 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_569, 0, x_568); +lean_ctor_set(x_569, 1, x_567); +x_570 = lean_array_push(x_499, x_569); +x_571 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_571, 0, x_501); +lean_ctor_set(x_571, 1, x_570); +x_572 = lean_array_push(x_541, x_571); +x_573 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; +x_574 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_574, 0, x_573); +lean_ctor_set(x_574, 1, x_572); +x_575 = lean_array_push(x_560, x_574); +x_576 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +lean_inc(x_497); +lean_inc(x_498); +x_577 = l_Lean_addMacroScope(x_498, x_576, x_497); +x_578 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_579 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_579, 0, x_523); +lean_ctor_set(x_579, 1, x_578); +lean_ctor_set(x_579, 2, x_577); +lean_ctor_set(x_579, 3, x_522); +lean_inc(x_579); +x_580 = lean_array_push(x_499, x_579); +x_581 = l_Lean_Elab_Command_expandElab___closed__43; +lean_inc(x_497); +lean_inc(x_498); +x_582 = l_Lean_addMacroScope(x_498, x_581, x_497); +x_583 = l_Lean_Elab_Command_expandElab___closed__42; +x_584 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_584, 0, x_523); +lean_ctor_set(x_584, 1, x_583); +lean_ctor_set(x_584, 2, x_582); +lean_ctor_set(x_584, 3, x_522); +lean_inc(x_584); +x_585 = lean_array_push(x_580, x_584); +x_586 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_586, 0, x_501); +lean_ctor_set(x_586, 1, x_585); +x_587 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; +x_588 = lean_array_push(x_587, x_586); +x_589 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; x_590 = lean_array_push(x_588, x_589); -x_591 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; -x_592 = lean_array_push(x_591, x_47); -x_593 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_591 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_592 = lean_array_push(x_591, x_579); +x_593 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_594 = lean_array_push(x_592, x_593); -x_595 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_596 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_596, 0, x_595); -lean_ctor_set(x_596, 1, x_594); -x_597 = lean_array_push(x_493, x_596); -x_598 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_598, 0, x_495); -lean_ctor_set(x_598, 1, x_597); -x_599 = lean_array_push(x_493, x_598); -x_600 = lean_array_push(x_599, x_583); -x_601 = l_Lean_Elab_Command_expandElab___closed__48; -lean_inc(x_491); -lean_inc(x_492); -x_602 = l_Lean_addMacroScope(x_492, x_601, x_491); -x_603 = l_Lean_Elab_Command_expandElab___closed__46; -x_604 = l_Lean_Elab_Command_expandElab___closed__50; -x_605 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_605, 0, x_517); -lean_ctor_set(x_605, 1, x_603); -lean_ctor_set(x_605, 2, x_602); -lean_ctor_set(x_605, 3, x_604); -x_606 = lean_array_push(x_493, x_605); -x_607 = lean_array_push(x_493, x_578); -x_608 = lean_array_push(x_493, x_490); -x_609 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_609, 0, x_495); -lean_ctor_set(x_609, 1, x_608); -x_610 = lean_array_push(x_581, x_609); -x_611 = lean_array_push(x_610, x_583); -x_612 = lean_array_push(x_611, x_17); -x_613 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; -x_614 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_614, 0, x_613); -lean_ctor_set(x_614, 1, x_612); -x_615 = lean_array_push(x_607, x_614); -x_616 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_616, 0, x_495); -lean_ctor_set(x_616, 1, x_615); -x_617 = lean_array_push(x_606, x_616); -x_618 = l_Lean_mkAppStx___closed__8; -x_619 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_619, 0, x_618); -lean_ctor_set(x_619, 1, x_617); -x_620 = lean_array_push(x_600, x_619); -x_621 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_622 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_622, 0, x_621); -lean_ctor_set(x_622, 1, x_620); -x_623 = lean_array_push(x_493, x_622); -x_624 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; -x_625 = lean_array_push(x_623, x_624); -x_626 = l_Lean_Elab_Command_expandElab___closed__20; -x_627 = l_Lean_addMacroScope(x_492, x_626, x_491); -x_628 = l_Lean_Elab_Command_expandElab___closed__19; -x_629 = l_Lean_Elab_Command_expandElab___closed__23; -x_630 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_630, 0, x_517); -lean_ctor_set(x_630, 1, x_628); -lean_ctor_set(x_630, 2, x_627); -lean_ctor_set(x_630, 3, x_629); -x_631 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; -x_632 = lean_array_push(x_631, x_630); -x_633 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_633, 0, x_621); -lean_ctor_set(x_633, 1, x_632); -x_634 = lean_array_push(x_625, x_633); -x_635 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_635, 0, x_495); -lean_ctor_set(x_635, 1, x_634); -x_636 = lean_array_push(x_590, x_635); -x_637 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_638 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_638, 0, x_637); -lean_ctor_set(x_638, 1, x_636); -x_639 = lean_array_push(x_584, x_638); -x_640 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_640, 0, x_613); -lean_ctor_set(x_640, 1, x_639); -x_641 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; -x_642 = lean_array_push(x_641, x_640); -x_643 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; -x_644 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_644, 0, x_643); -lean_ctor_set(x_644, 1, x_642); -x_645 = lean_array_push(x_569, x_644); -x_646 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; -x_647 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_647, 0, x_646); -lean_ctor_set(x_647, 1, x_645); -x_648 = lean_array_push(x_544, x_647); -x_649 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; -x_650 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_650, 0, x_649); -lean_ctor_set(x_650, 1, x_648); -x_651 = lean_array_push(x_513, x_650); +x_595 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; +x_596 = lean_array_push(x_595, x_47); +x_597 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_598 = lean_array_push(x_596, x_597); +x_599 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_600 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_600, 0, x_599); +lean_ctor_set(x_600, 1, x_598); +x_601 = lean_array_push(x_499, x_600); +x_602 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_602, 0, x_501); +lean_ctor_set(x_602, 1, x_601); +x_603 = lean_array_push(x_499, x_602); +x_604 = lean_array_push(x_603, x_589); +x_605 = l_Lean_Elab_Command_expandElab___closed__48; +lean_inc(x_497); +lean_inc(x_498); +x_606 = l_Lean_addMacroScope(x_498, x_605, x_497); +x_607 = l_Lean_Elab_Command_expandElab___closed__46; +x_608 = l_Lean_Elab_Command_expandElab___closed__50; +x_609 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_609, 0, x_523); +lean_ctor_set(x_609, 1, x_607); +lean_ctor_set(x_609, 2, x_606); +lean_ctor_set(x_609, 3, x_608); +x_610 = lean_array_push(x_499, x_609); +x_611 = lean_array_push(x_499, x_584); +x_612 = lean_array_push(x_499, x_496); +x_613 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_613, 0, x_501); +lean_ctor_set(x_613, 1, x_612); +x_614 = lean_array_push(x_587, x_613); +x_615 = lean_array_push(x_614, x_589); +x_616 = lean_array_push(x_615, x_17); +x_617 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; +x_618 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_618, 0, x_617); +lean_ctor_set(x_618, 1, x_616); +x_619 = lean_array_push(x_611, x_618); +x_620 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_620, 0, x_501); +lean_ctor_set(x_620, 1, x_619); +x_621 = lean_array_push(x_610, x_620); +x_622 = l_Lean_mkAppStx___closed__8; +x_623 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_623, 0, x_622); +lean_ctor_set(x_623, 1, x_621); +x_624 = lean_array_push(x_604, x_623); +x_625 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_626 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_626, 0, x_625); +lean_ctor_set(x_626, 1, x_624); +x_627 = lean_array_push(x_499, x_626); +x_628 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_629 = lean_array_push(x_627, x_628); +x_630 = l_Lean_Elab_Command_expandElab___closed__20; +x_631 = l_Lean_addMacroScope(x_498, x_630, x_497); +x_632 = l_Lean_Elab_Command_expandElab___closed__19; +x_633 = l_Lean_Elab_Command_expandElab___closed__23; +x_634 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_634, 0, x_523); +lean_ctor_set(x_634, 1, x_632); +lean_ctor_set(x_634, 2, x_631); +lean_ctor_set(x_634, 3, x_633); +x_635 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; +x_636 = lean_array_push(x_635, x_634); +x_637 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_637, 0, x_625); +lean_ctor_set(x_637, 1, x_636); +x_638 = lean_array_push(x_629, x_637); +x_639 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_639, 0, x_501); +lean_ctor_set(x_639, 1, x_638); +x_640 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_641 = lean_array_push(x_640, x_639); +x_642 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_643 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_643, 0, x_642); +lean_ctor_set(x_643, 1, x_641); +x_644 = lean_array_push(x_594, x_643); +x_645 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_646 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_646, 0, x_645); +lean_ctor_set(x_646, 1, x_644); +x_647 = lean_array_push(x_590, x_646); +x_648 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_648, 0, x_617); +lean_ctor_set(x_648, 1, x_647); +x_649 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; +x_650 = lean_array_push(x_649, x_648); +x_651 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; x_652 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_652, 0, x_495); -lean_ctor_set(x_652, 1, x_651); -lean_ctor_set(x_41, 0, x_652); +lean_ctor_set(x_652, 0, x_651); +lean_ctor_set(x_652, 1, x_650); +x_653 = lean_array_push(x_575, x_652); +x_654 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; +x_655 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_655, 0, x_654); +lean_ctor_set(x_655, 1, x_653); +x_656 = lean_array_push(x_550, x_655); +x_657 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; +x_658 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_658, 0, x_657); +lean_ctor_set(x_658, 1, x_656); +x_659 = lean_array_push(x_519, x_658); +x_660 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_660, 0, x_501); +lean_ctor_set(x_660, 1, x_659); +lean_ctor_set(x_41, 0, x_660); return x_41; } } } else { -lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; uint8_t x_659; -x_653 = lean_ctor_get(x_41, 0); -x_654 = lean_ctor_get(x_41, 1); -lean_inc(x_654); -lean_inc(x_653); +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; +x_661 = lean_ctor_get(x_41, 0); +x_662 = lean_ctor_get(x_41, 1); +lean_inc(x_662); +lean_inc(x_661); lean_dec(x_41); -x_655 = lean_array_push(x_33, x_37); -x_656 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_653, x_653, x_27, x_655); -lean_dec(x_653); +x_663 = lean_array_push(x_33, x_37); +x_664 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_661, x_661, x_27, x_663); +lean_dec(x_661); lean_inc(x_21); -x_657 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_657, 0, x_21); -lean_ctor_set(x_657, 1, x_656); -x_658 = l_Lean_mkIdentFrom(x_1, x_21); -x_659 = l_Lean_Syntax_hasArgs(x_15); -if (x_659 == 0) +x_665 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_665, 0, x_21); +lean_ctor_set(x_665, 1, x_664); +x_666 = l_Lean_mkIdentFrom(x_1, x_21); +x_667 = l_Lean_Syntax_hasArgs(x_15); +if (x_667 == 0) { -lean_object* x_660; uint8_t x_661; +lean_object* x_668; uint8_t x_669; lean_dec(x_15); -x_660 = l_Lean_Parser_termParser___closed__2; -x_661 = lean_name_eq(x_18, x_660); -if (x_661 == 0) +x_668 = l_Lean_Parser_termParser___closed__2; +x_669 = lean_name_eq(x_18, x_668); +if (x_669 == 0) { -lean_object* x_662; uint8_t x_663; -x_662 = l_Lean_Elab_Command_expandElab___closed__1; -x_663 = lean_name_eq(x_18, x_662); -if (x_663 == 0) +lean_object* x_670; uint8_t x_671; +x_670 = l_Lean_Elab_Command_expandElab___closed__1; +x_671 = lean_name_eq(x_18, x_670); +if (x_671 == 0) { -lean_object* x_664; uint8_t x_665; -x_664 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__7; -x_665 = lean_name_eq(x_18, x_664); -if (x_665 == 0) +lean_object* x_672; uint8_t x_673; +x_672 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__7; +x_673 = lean_name_eq(x_18, x_672); +if (x_673 == 0) { -lean_object* x_666; 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_dec(x_658); -lean_dec(x_657); +lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; +lean_dec(x_666); +lean_dec(x_665); lean_dec(x_35); lean_dec(x_17); lean_dec(x_13); lean_dec(x_6); -x_666 = l_System_FilePath_dirName___closed__1; -x_667 = l_Lean_Name_toStringWithSep___main(x_666, x_18); -x_668 = l_Lean_Elab_Command_expandElab___closed__2; -x_669 = lean_string_append(x_668, x_667); -lean_dec(x_667); -x_670 = l_Char_HasRepr___closed__1; -x_671 = lean_string_append(x_669, x_670); -x_672 = l_Lean_Macro_throwError___rarg(x_1, x_671, x_2, x_654); +x_674 = l_System_FilePath_dirName___closed__1; +x_675 = l_Lean_Name_toStringWithSep___main(x_674, x_18); +x_676 = l_Lean_Elab_Command_expandElab___closed__2; +x_677 = lean_string_append(x_676, x_675); +lean_dec(x_675); +x_678 = l_Char_HasRepr___closed__1; +x_679 = lean_string_append(x_677, x_678); +x_680 = l_Lean_Macro_throwError___rarg(x_1, x_679, x_2, x_662); lean_dec(x_2); -return x_672; +return x_680; } else { -lean_object* x_673; lean_object* x_674; lean_object* x_675; 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_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_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; 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; 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; 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_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; 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_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; 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_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; 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_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; 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_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; 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; lean_object* x_810; lean_object* x_811; +lean_object* x_681; 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_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; 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; 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; 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_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; 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_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; 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_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; 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_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; 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_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; 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; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_dec(x_18); lean_dec(x_1); -x_673 = lean_ctor_get(x_2, 1); -lean_inc(x_673); -x_674 = lean_ctor_get(x_2, 0); -lean_inc(x_674); +x_681 = lean_ctor_get(x_2, 1); +lean_inc(x_681); +x_682 = lean_ctor_get(x_2, 0); +lean_inc(x_682); lean_dec(x_2); -x_675 = l_Array_empty___closed__1; -x_676 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_27, x_675); +x_683 = l_Array_empty___closed__1; +x_684 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_27, x_683); lean_dec(x_6); -x_677 = l_Lean_nullKind___closed__2; -x_678 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_678, 0, x_677); -lean_ctor_set(x_678, 1, x_676); -x_679 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; -x_680 = lean_array_push(x_679, x_678); -x_681 = l_Lean_Elab_Term_expandArrayLit___closed__8; -lean_inc(x_658); -x_682 = lean_array_push(x_681, x_658); -x_683 = l_Lean_Elab_Term_expandArrayLit___closed__9; -x_684 = lean_array_push(x_682, x_683); -x_685 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_685, 0, x_677); -lean_ctor_set(x_685, 1, x_684); -x_686 = lean_array_push(x_680, x_685); -x_687 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_35, x_35, x_27, x_675); +x_685 = l_Lean_nullKind___closed__2; +x_686 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_686, 0, x_685); +lean_ctor_set(x_686, 1, x_684); +x_687 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; +x_688 = lean_array_push(x_687, x_686); +x_689 = l_Lean_Elab_Term_expandArrayLit___closed__8; +lean_inc(x_666); +x_690 = lean_array_push(x_689, x_666); +x_691 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_692 = lean_array_push(x_690, x_691); +x_693 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_693, 0, x_685); +lean_ctor_set(x_693, 1, x_692); +x_694 = lean_array_push(x_688, x_693); +x_695 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_35, x_35, x_27, x_683); lean_dec(x_35); -x_688 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_688, 0, x_677); -lean_ctor_set(x_688, 1, x_687); -x_689 = lean_array_push(x_686, x_688); -x_690 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; -x_691 = lean_array_push(x_689, x_690); -x_692 = lean_array_push(x_691, x_13); -x_693 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; -x_694 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_694, 0, x_693); -lean_ctor_set(x_694, 1, x_692); -x_695 = lean_array_push(x_675, x_694); -lean_inc(x_673); -lean_inc(x_674); -x_696 = l_Lean_addMacroScope(x_674, x_664, x_673); -x_697 = lean_box(0); -x_698 = l_Lean_SourceInfo_inhabited___closed__1; -x_699 = l_Lean_Elab_Command_expandElab___closed__4; -x_700 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_700, 0, x_698); -lean_ctor_set(x_700, 1, x_699); -lean_ctor_set(x_700, 2, x_696); -lean_ctor_set(x_700, 3, x_697); -x_701 = lean_array_push(x_675, x_700); -x_702 = lean_array_push(x_675, x_658); -x_703 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_703, 0, x_677); -lean_ctor_set(x_703, 1, x_702); -x_704 = lean_array_push(x_701, x_703); -x_705 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; -x_706 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_706, 0, x_705); -lean_ctor_set(x_706, 1, x_704); -x_707 = lean_array_push(x_675, x_706); -x_708 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_708, 0, x_677); +x_696 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_696, 0, x_685); +lean_ctor_set(x_696, 1, x_695); +x_697 = lean_array_push(x_694, x_696); +x_698 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; +x_699 = lean_array_push(x_697, x_698); +x_700 = lean_array_push(x_699, x_13); +x_701 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; +x_702 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_702, 0, x_701); +lean_ctor_set(x_702, 1, x_700); +x_703 = lean_array_push(x_683, x_702); +lean_inc(x_681); +lean_inc(x_682); +x_704 = l_Lean_addMacroScope(x_682, x_672, x_681); +x_705 = lean_box(0); +x_706 = l_Lean_SourceInfo_inhabited___closed__1; +x_707 = l_Lean_Elab_Command_expandElab___closed__4; +x_708 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_708, 0, x_706); lean_ctor_set(x_708, 1, x_707); -x_709 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; -x_710 = lean_array_push(x_709, x_708); -x_711 = lean_array_push(x_710, x_683); -x_712 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; -x_713 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_713, 0, x_712); -lean_ctor_set(x_713, 1, x_711); -x_714 = lean_array_push(x_675, x_713); -x_715 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_715, 0, x_677); -lean_ctor_set(x_715, 1, x_714); -x_716 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_717 = lean_array_push(x_716, x_715); -x_718 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; -x_719 = lean_array_push(x_717, x_718); -x_720 = lean_array_push(x_719, x_718); -x_721 = lean_array_push(x_720, x_718); -x_722 = lean_array_push(x_721, x_718); -x_723 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; -x_724 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_724, 0, x_723); -lean_ctor_set(x_724, 1, x_722); -x_725 = lean_array_push(x_675, x_724); -x_726 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_673); -lean_inc(x_674); -x_727 = l_Lean_addMacroScope(x_674, x_726, x_673); -x_728 = l_Lean_Elab_Command_expandElab___closed__7; -x_729 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_729, 0, x_698); -lean_ctor_set(x_729, 1, x_728); -lean_ctor_set(x_729, 2, x_727); -lean_ctor_set(x_729, 3, x_697); -x_730 = lean_array_push(x_675, x_729); -x_731 = lean_array_push(x_730, x_718); -x_732 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_733 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_733, 0, x_732); -lean_ctor_set(x_733, 1, x_731); -x_734 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; -x_735 = lean_array_push(x_734, x_733); -x_736 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__8; -lean_inc(x_673); -lean_inc(x_674); -x_737 = l_Lean_addMacroScope(x_674, x_736, x_673); -x_738 = l_Lean_Elab_Command_expandElab___closed__11; -x_739 = l_Lean_Elab_Command_expandElab___closed__13; -x_740 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_740, 0, x_698); -lean_ctor_set(x_740, 1, x_738); -lean_ctor_set(x_740, 2, x_737); -lean_ctor_set(x_740, 3, x_739); -x_741 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; -x_742 = lean_array_push(x_741, x_740); -x_743 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_744 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_744, 0, x_743); -lean_ctor_set(x_744, 1, x_742); -x_745 = lean_array_push(x_675, x_744); -x_746 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_746, 0, x_677); -lean_ctor_set(x_746, 1, x_745); -x_747 = lean_array_push(x_716, x_746); -x_748 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; -x_749 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_749, 0, x_748); -lean_ctor_set(x_749, 1, x_747); -x_750 = lean_array_push(x_735, x_749); -x_751 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -lean_inc(x_673); -lean_inc(x_674); -x_752 = l_Lean_addMacroScope(x_674, x_751, x_673); -x_753 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_754 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_754, 0, x_698); +lean_ctor_set(x_708, 2, x_704); +lean_ctor_set(x_708, 3, x_705); +x_709 = lean_array_push(x_683, x_708); +x_710 = lean_array_push(x_683, x_666); +x_711 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_711, 0, x_685); +lean_ctor_set(x_711, 1, x_710); +x_712 = lean_array_push(x_709, x_711); +x_713 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; +x_714 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_714, 0, x_713); +lean_ctor_set(x_714, 1, x_712); +x_715 = lean_array_push(x_683, x_714); +x_716 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_716, 0, x_685); +lean_ctor_set(x_716, 1, x_715); +x_717 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; +x_718 = lean_array_push(x_717, x_716); +x_719 = lean_array_push(x_718, x_691); +x_720 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; +x_721 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_721, 0, x_720); +lean_ctor_set(x_721, 1, x_719); +x_722 = lean_array_push(x_683, x_721); +x_723 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_723, 0, x_685); +lean_ctor_set(x_723, 1, x_722); +x_724 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_725 = lean_array_push(x_724, x_723); +x_726 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_727 = lean_array_push(x_725, x_726); +x_728 = lean_array_push(x_727, x_726); +x_729 = lean_array_push(x_728, x_726); +x_730 = lean_array_push(x_729, x_726); +x_731 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; +x_732 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_732, 0, x_731); +lean_ctor_set(x_732, 1, x_730); +x_733 = lean_array_push(x_683, x_732); +x_734 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_681); +lean_inc(x_682); +x_735 = l_Lean_addMacroScope(x_682, x_734, x_681); +x_736 = l_Lean_Elab_Command_expandElab___closed__7; +x_737 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_737, 0, x_706); +lean_ctor_set(x_737, 1, x_736); +lean_ctor_set(x_737, 2, x_735); +lean_ctor_set(x_737, 3, x_705); +x_738 = lean_array_push(x_683, x_737); +x_739 = lean_array_push(x_738, x_726); +x_740 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_741 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_741, 0, x_740); +lean_ctor_set(x_741, 1, x_739); +x_742 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; +x_743 = lean_array_push(x_742, x_741); +x_744 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__8; +lean_inc(x_681); +lean_inc(x_682); +x_745 = l_Lean_addMacroScope(x_682, x_744, x_681); +x_746 = l_Lean_Elab_Command_expandElab___closed__11; +x_747 = l_Lean_Elab_Command_expandElab___closed__13; +x_748 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_748, 0, x_706); +lean_ctor_set(x_748, 1, x_746); +lean_ctor_set(x_748, 2, x_745); +lean_ctor_set(x_748, 3, x_747); +x_749 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; +x_750 = lean_array_push(x_749, x_748); +x_751 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; +x_752 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_752, 0, x_751); +lean_ctor_set(x_752, 1, x_750); +x_753 = lean_array_push(x_683, x_752); +x_754 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_754, 0, x_685); lean_ctor_set(x_754, 1, x_753); -lean_ctor_set(x_754, 2, x_752); -lean_ctor_set(x_754, 3, x_697); -lean_inc(x_754); -x_755 = lean_array_push(x_675, x_754); -x_756 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_756, 0, x_677); -lean_ctor_set(x_756, 1, x_755); -x_757 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; -x_758 = lean_array_push(x_757, x_756); -x_759 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_760 = lean_array_push(x_758, x_759); -x_761 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_762 = lean_array_push(x_761, x_754); -x_763 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_764 = lean_array_push(x_762, x_763); -x_765 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_766 = lean_array_push(x_764, x_765); -x_767 = l_Lean_Elab_Command_expandElab___closed__16; -x_768 = lean_array_push(x_767, x_657); -x_769 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; -x_770 = lean_array_push(x_768, x_769); -x_771 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2; -x_772 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_772, 0, x_771); -lean_ctor_set(x_772, 1, x_770); -x_773 = lean_array_push(x_675, x_772); -x_774 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_774, 0, x_677); -lean_ctor_set(x_774, 1, x_773); -x_775 = lean_array_push(x_675, x_774); -x_776 = lean_array_push(x_775, x_759); -x_777 = lean_array_push(x_776, x_17); -x_778 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_779 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_779, 0, x_778); -lean_ctor_set(x_779, 1, x_777); -x_780 = lean_array_push(x_675, x_779); -x_781 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; -x_782 = lean_array_push(x_780, x_781); -x_783 = l_Lean_Elab_Command_expandElab___closed__20; -x_784 = l_Lean_addMacroScope(x_674, x_783, x_673); -x_785 = l_Lean_Elab_Command_expandElab___closed__19; -x_786 = l_Lean_Elab_Command_expandElab___closed__23; -x_787 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_787, 0, x_698); -lean_ctor_set(x_787, 1, x_785); -lean_ctor_set(x_787, 2, x_784); -lean_ctor_set(x_787, 3, x_786); -x_788 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; -x_789 = lean_array_push(x_788, x_787); -x_790 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_790, 0, x_778); -lean_ctor_set(x_790, 1, x_789); -x_791 = lean_array_push(x_782, x_790); -x_792 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_792, 0, x_677); -lean_ctor_set(x_792, 1, x_791); -x_793 = lean_array_push(x_766, x_792); -x_794 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_795 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_795, 0, x_794); -lean_ctor_set(x_795, 1, x_793); -x_796 = lean_array_push(x_760, x_795); -x_797 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; +x_755 = lean_array_push(x_724, x_754); +x_756 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; +x_757 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_757, 0, x_756); +lean_ctor_set(x_757, 1, x_755); +x_758 = lean_array_push(x_743, x_757); +x_759 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +lean_inc(x_681); +lean_inc(x_682); +x_760 = l_Lean_addMacroScope(x_682, x_759, x_681); +x_761 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_762 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_762, 0, x_706); +lean_ctor_set(x_762, 1, x_761); +lean_ctor_set(x_762, 2, x_760); +lean_ctor_set(x_762, 3, x_705); +lean_inc(x_762); +x_763 = lean_array_push(x_683, x_762); +x_764 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_764, 0, x_685); +lean_ctor_set(x_764, 1, x_763); +x_765 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; +x_766 = lean_array_push(x_765, x_764); +x_767 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_768 = lean_array_push(x_766, x_767); +x_769 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_770 = lean_array_push(x_769, x_762); +x_771 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_772 = lean_array_push(x_770, x_771); +x_773 = l_Lean_Elab_Command_expandElab___closed__16; +x_774 = lean_array_push(x_773, x_665); +x_775 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_776 = lean_array_push(x_774, x_775); +x_777 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2; +x_778 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_778, 0, x_777); +lean_ctor_set(x_778, 1, x_776); +x_779 = lean_array_push(x_683, x_778); +x_780 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_780, 0, x_685); +lean_ctor_set(x_780, 1, x_779); +x_781 = lean_array_push(x_683, x_780); +x_782 = lean_array_push(x_781, x_767); +x_783 = lean_array_push(x_782, x_17); +x_784 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_785 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_785, 0, x_784); +lean_ctor_set(x_785, 1, x_783); +x_786 = lean_array_push(x_683, x_785); +x_787 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_788 = lean_array_push(x_786, x_787); +x_789 = l_Lean_Elab_Command_expandElab___closed__20; +x_790 = l_Lean_addMacroScope(x_682, x_789, x_681); +x_791 = l_Lean_Elab_Command_expandElab___closed__19; +x_792 = l_Lean_Elab_Command_expandElab___closed__23; +x_793 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_793, 0, x_706); +lean_ctor_set(x_793, 1, x_791); +lean_ctor_set(x_793, 2, x_790); +lean_ctor_set(x_793, 3, x_792); +x_794 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; +x_795 = lean_array_push(x_794, x_793); +x_796 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_796, 0, x_784); +lean_ctor_set(x_796, 1, x_795); +x_797 = lean_array_push(x_788, x_796); x_798 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_798, 0, x_797); -lean_ctor_set(x_798, 1, x_796); -x_799 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; +lean_ctor_set(x_798, 0, x_685); +lean_ctor_set(x_798, 1, x_797); +x_799 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; x_800 = lean_array_push(x_799, x_798); -x_801 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; +x_801 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; x_802 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_802, 0, x_801); lean_ctor_set(x_802, 1, x_800); -x_803 = lean_array_push(x_750, x_802); -x_804 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; +x_803 = lean_array_push(x_772, x_802); +x_804 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; x_805 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_805, 0, x_804); lean_ctor_set(x_805, 1, x_803); -x_806 = lean_array_push(x_725, x_805); -x_807 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; +x_806 = lean_array_push(x_768, x_805); +x_807 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; x_808 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_808, 0, x_807); lean_ctor_set(x_808, 1, x_806); -x_809 = lean_array_push(x_695, x_808); -x_810 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_810, 0, x_677); -lean_ctor_set(x_810, 1, x_809); -x_811 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_811, 0, x_810); -lean_ctor_set(x_811, 1, x_654); -return x_811; +x_809 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; +x_810 = lean_array_push(x_809, x_808); +x_811 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; +x_812 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_812, 0, x_811); +lean_ctor_set(x_812, 1, x_810); +x_813 = lean_array_push(x_758, x_812); +x_814 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; +x_815 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_815, 0, x_814); +lean_ctor_set(x_815, 1, x_813); +x_816 = lean_array_push(x_733, x_815); +x_817 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; +x_818 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_818, 0, x_817); +lean_ctor_set(x_818, 1, x_816); +x_819 = lean_array_push(x_703, x_818); +x_820 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_820, 0, x_685); +lean_ctor_set(x_820, 1, x_819); +x_821 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_821, 0, x_820); +lean_ctor_set(x_821, 1, x_662); +return x_821; } } else { -lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; +lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_dec(x_18); lean_dec(x_1); -x_812 = lean_ctor_get(x_2, 1); -lean_inc(x_812); -x_813 = lean_ctor_get(x_2, 0); -lean_inc(x_813); +x_822 = lean_ctor_get(x_2, 1); +lean_inc(x_822); +x_823 = lean_ctor_get(x_2, 0); +lean_inc(x_823); lean_dec(x_2); -x_814 = l_Array_empty___closed__1; -x_815 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_27, x_814); +x_824 = l_Array_empty___closed__1; +x_825 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_27, x_824); lean_dec(x_6); -x_816 = l_Lean_nullKind___closed__2; -x_817 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_817, 0, x_816); -lean_ctor_set(x_817, 1, x_815); -x_818 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; -x_819 = lean_array_push(x_818, x_817); -x_820 = l_Lean_Elab_Term_expandArrayLit___closed__8; -lean_inc(x_658); -x_821 = lean_array_push(x_820, x_658); -x_822 = l_Lean_Elab_Term_expandArrayLit___closed__9; -x_823 = lean_array_push(x_821, x_822); -x_824 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_824, 0, x_816); -lean_ctor_set(x_824, 1, x_823); -x_825 = lean_array_push(x_819, x_824); -x_826 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_35, x_35, x_27, x_814); -lean_dec(x_35); +x_826 = l_Lean_nullKind___closed__2; x_827 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_827, 0, x_816); -lean_ctor_set(x_827, 1, x_826); -x_828 = lean_array_push(x_825, x_827); -x_829 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; -x_830 = lean_array_push(x_828, x_829); -x_831 = lean_array_push(x_830, x_13); -x_832 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; -x_833 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_833, 0, x_832); -lean_ctor_set(x_833, 1, x_831); -x_834 = lean_array_push(x_814, x_833); -x_835 = l_Lean_Elab_Command_mkCommandElabAttribute___closed__7; -lean_inc(x_812); -lean_inc(x_813); -x_836 = l_Lean_addMacroScope(x_813, x_835, x_812); -x_837 = lean_box(0); -x_838 = l_Lean_SourceInfo_inhabited___closed__1; -x_839 = l_Lean_Elab_Command_expandElab___closed__25; -x_840 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_840, 0, x_838); -lean_ctor_set(x_840, 1, x_839); -lean_ctor_set(x_840, 2, x_836); -lean_ctor_set(x_840, 3, x_837); -x_841 = lean_array_push(x_814, x_840); -x_842 = lean_array_push(x_814, x_658); +lean_ctor_set(x_827, 0, x_826); +lean_ctor_set(x_827, 1, x_825); +x_828 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; +x_829 = lean_array_push(x_828, x_827); +x_830 = l_Lean_Elab_Term_expandArrayLit___closed__8; +lean_inc(x_666); +x_831 = lean_array_push(x_830, x_666); +x_832 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_833 = lean_array_push(x_831, x_832); +x_834 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_834, 0, x_826); +lean_ctor_set(x_834, 1, x_833); +x_835 = lean_array_push(x_829, x_834); +x_836 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_35, x_35, x_27, x_824); +lean_dec(x_35); +x_837 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_837, 0, x_826); +lean_ctor_set(x_837, 1, x_836); +x_838 = lean_array_push(x_835, x_837); +x_839 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; +x_840 = lean_array_push(x_838, x_839); +x_841 = lean_array_push(x_840, x_13); +x_842 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; x_843 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_843, 0, x_816); -lean_ctor_set(x_843, 1, x_842); -x_844 = lean_array_push(x_841, x_843); -x_845 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; -x_846 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_846, 0, x_845); -lean_ctor_set(x_846, 1, x_844); -x_847 = lean_array_push(x_814, x_846); -x_848 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_848, 0, x_816); -lean_ctor_set(x_848, 1, x_847); -x_849 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; -x_850 = lean_array_push(x_849, x_848); -x_851 = lean_array_push(x_850, x_822); -x_852 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; +lean_ctor_set(x_843, 0, x_842); +lean_ctor_set(x_843, 1, x_841); +x_844 = lean_array_push(x_824, x_843); +x_845 = l_Lean_Elab_Command_mkCommandElabAttribute___closed__7; +lean_inc(x_822); +lean_inc(x_823); +x_846 = l_Lean_addMacroScope(x_823, x_845, x_822); +x_847 = lean_box(0); +x_848 = l_Lean_SourceInfo_inhabited___closed__1; +x_849 = l_Lean_Elab_Command_expandElab___closed__25; +x_850 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_850, 0, x_848); +lean_ctor_set(x_850, 1, x_849); +lean_ctor_set(x_850, 2, x_846); +lean_ctor_set(x_850, 3, x_847); +x_851 = lean_array_push(x_824, x_850); +x_852 = lean_array_push(x_824, x_666); x_853 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_853, 0, x_852); -lean_ctor_set(x_853, 1, x_851); -x_854 = lean_array_push(x_814, x_853); -x_855 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_855, 0, x_816); -lean_ctor_set(x_855, 1, x_854); -x_856 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_857 = lean_array_push(x_856, x_855); -x_858 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; -x_859 = lean_array_push(x_857, x_858); +lean_ctor_set(x_853, 0, x_826); +lean_ctor_set(x_853, 1, x_852); +x_854 = lean_array_push(x_851, x_853); +x_855 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; +x_856 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_856, 0, x_855); +lean_ctor_set(x_856, 1, x_854); +x_857 = lean_array_push(x_824, x_856); +x_858 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_858, 0, x_826); +lean_ctor_set(x_858, 1, x_857); +x_859 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; x_860 = lean_array_push(x_859, x_858); -x_861 = lean_array_push(x_860, x_858); -x_862 = lean_array_push(x_861, x_858); -x_863 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; -x_864 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_864, 0, x_863); -lean_ctor_set(x_864, 1, x_862); -x_865 = lean_array_push(x_814, x_864); -x_866 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_812); -lean_inc(x_813); -x_867 = l_Lean_addMacroScope(x_813, x_866, x_812); -x_868 = l_Lean_Elab_Command_expandElab___closed__7; -x_869 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_869, 0, x_838); -lean_ctor_set(x_869, 1, x_868); -lean_ctor_set(x_869, 2, x_867); -lean_ctor_set(x_869, 3, x_837); -x_870 = lean_array_push(x_814, x_869); -x_871 = lean_array_push(x_870, x_858); -x_872 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_873 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_873, 0, x_872); -lean_ctor_set(x_873, 1, x_871); -x_874 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; -x_875 = lean_array_push(x_874, x_873); -x_876 = l_Lean_Elab_Command_mkCommandElabAttribute___closed__9; -lean_inc(x_812); -lean_inc(x_813); -x_877 = l_Lean_addMacroScope(x_813, x_876, x_812); -x_878 = l_Lean_Elab_Command_expandElab___closed__28; -x_879 = l_Lean_Elab_Command_expandElab___closed__30; -x_880 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_880, 0, x_838); -lean_ctor_set(x_880, 1, x_878); -lean_ctor_set(x_880, 2, x_877); -lean_ctor_set(x_880, 3, x_879); -x_881 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; -x_882 = lean_array_push(x_881, x_880); -x_883 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_884 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_884, 0, x_883); -lean_ctor_set(x_884, 1, x_882); -x_885 = lean_array_push(x_814, x_884); -x_886 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_886, 0, x_816); -lean_ctor_set(x_886, 1, x_885); -x_887 = lean_array_push(x_856, x_886); -x_888 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; -x_889 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_889, 0, x_888); -lean_ctor_set(x_889, 1, x_887); -x_890 = lean_array_push(x_875, x_889); -x_891 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -lean_inc(x_812); -lean_inc(x_813); -x_892 = l_Lean_addMacroScope(x_813, x_891, x_812); -x_893 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_894 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_894, 0, x_838); -lean_ctor_set(x_894, 1, x_893); -lean_ctor_set(x_894, 2, x_892); -lean_ctor_set(x_894, 3, x_837); -lean_inc(x_894); -x_895 = lean_array_push(x_814, x_894); +x_861 = lean_array_push(x_860, x_832); +x_862 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; +x_863 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_863, 0, x_862); +lean_ctor_set(x_863, 1, x_861); +x_864 = lean_array_push(x_824, x_863); +x_865 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_865, 0, x_826); +lean_ctor_set(x_865, 1, x_864); +x_866 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_867 = lean_array_push(x_866, x_865); +x_868 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_869 = lean_array_push(x_867, x_868); +x_870 = lean_array_push(x_869, x_868); +x_871 = lean_array_push(x_870, x_868); +x_872 = lean_array_push(x_871, x_868); +x_873 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; +x_874 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_874, 0, x_873); +lean_ctor_set(x_874, 1, x_872); +x_875 = lean_array_push(x_824, x_874); +x_876 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_822); +lean_inc(x_823); +x_877 = l_Lean_addMacroScope(x_823, x_876, x_822); +x_878 = l_Lean_Elab_Command_expandElab___closed__7; +x_879 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_879, 0, x_848); +lean_ctor_set(x_879, 1, x_878); +lean_ctor_set(x_879, 2, x_877); +lean_ctor_set(x_879, 3, x_847); +x_880 = lean_array_push(x_824, x_879); +x_881 = lean_array_push(x_880, x_868); +x_882 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_883 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_883, 0, x_882); +lean_ctor_set(x_883, 1, x_881); +x_884 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; +x_885 = lean_array_push(x_884, x_883); +x_886 = l_Lean_Elab_Command_mkCommandElabAttribute___closed__9; +lean_inc(x_822); +lean_inc(x_823); +x_887 = l_Lean_addMacroScope(x_823, x_886, x_822); +x_888 = l_Lean_Elab_Command_expandElab___closed__28; +x_889 = l_Lean_Elab_Command_expandElab___closed__30; +x_890 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_890, 0, x_848); +lean_ctor_set(x_890, 1, x_888); +lean_ctor_set(x_890, 2, x_887); +lean_ctor_set(x_890, 3, x_889); +x_891 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; +x_892 = lean_array_push(x_891, x_890); +x_893 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; +x_894 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_894, 0, x_893); +lean_ctor_set(x_894, 1, x_892); +x_895 = lean_array_push(x_824, x_894); x_896 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_896, 0, x_816); +lean_ctor_set(x_896, 0, x_826); lean_ctor_set(x_896, 1, x_895); -x_897 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; -x_898 = lean_array_push(x_897, x_896); -x_899 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_900 = lean_array_push(x_898, x_899); -x_901 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_902 = lean_array_push(x_901, x_894); -x_903 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_904 = lean_array_push(x_902, x_903); -x_905 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_906 = lean_array_push(x_904, x_905); -x_907 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; -x_908 = lean_array_push(x_907, x_657); -x_909 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_897 = lean_array_push(x_866, x_896); +x_898 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; +x_899 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_899, 0, x_898); +lean_ctor_set(x_899, 1, x_897); +x_900 = lean_array_push(x_885, x_899); +x_901 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +lean_inc(x_822); +lean_inc(x_823); +x_902 = l_Lean_addMacroScope(x_823, x_901, x_822); +x_903 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_904 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_904, 0, x_848); +lean_ctor_set(x_904, 1, x_903); +lean_ctor_set(x_904, 2, x_902); +lean_ctor_set(x_904, 3, x_847); +lean_inc(x_904); +x_905 = lean_array_push(x_824, x_904); +x_906 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_906, 0, x_826); +lean_ctor_set(x_906, 1, x_905); +x_907 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; +x_908 = lean_array_push(x_907, x_906); +x_909 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; x_910 = lean_array_push(x_908, x_909); -x_911 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_912 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_912, 0, x_911); -lean_ctor_set(x_912, 1, x_910); -x_913 = lean_array_push(x_814, x_912); -x_914 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_914, 0, x_816); -lean_ctor_set(x_914, 1, x_913); -x_915 = lean_array_push(x_814, x_914); -x_916 = lean_array_push(x_915, x_899); -x_917 = lean_array_push(x_916, x_17); -x_918 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_919 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_919, 0, x_918); -lean_ctor_set(x_919, 1, x_917); -x_920 = lean_array_push(x_814, x_919); -x_921 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; -x_922 = lean_array_push(x_920, x_921); -x_923 = l_Lean_Elab_Command_expandElab___closed__20; -x_924 = l_Lean_addMacroScope(x_813, x_923, x_812); -x_925 = l_Lean_Elab_Command_expandElab___closed__19; -x_926 = l_Lean_Elab_Command_expandElab___closed__23; -x_927 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_927, 0, x_838); +x_911 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_912 = lean_array_push(x_911, x_904); +x_913 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_914 = lean_array_push(x_912, x_913); +x_915 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; +x_916 = lean_array_push(x_915, x_665); +x_917 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_918 = lean_array_push(x_916, x_917); +x_919 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_920 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_920, 0, x_919); +lean_ctor_set(x_920, 1, x_918); +x_921 = lean_array_push(x_824, x_920); +x_922 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_922, 0, x_826); +lean_ctor_set(x_922, 1, x_921); +x_923 = lean_array_push(x_824, x_922); +x_924 = lean_array_push(x_923, x_909); +x_925 = lean_array_push(x_924, x_17); +x_926 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_927 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_927, 0, x_926); lean_ctor_set(x_927, 1, x_925); -lean_ctor_set(x_927, 2, x_924); -lean_ctor_set(x_927, 3, x_926); -x_928 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; -x_929 = lean_array_push(x_928, x_927); -x_930 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_930, 0, x_918); -lean_ctor_set(x_930, 1, x_929); -x_931 = lean_array_push(x_922, x_930); -x_932 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_932, 0, x_816); -lean_ctor_set(x_932, 1, x_931); -x_933 = lean_array_push(x_906, x_932); -x_934 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_935 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_935, 0, x_934); +x_928 = lean_array_push(x_824, x_927); +x_929 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_930 = lean_array_push(x_928, x_929); +x_931 = l_Lean_Elab_Command_expandElab___closed__20; +x_932 = l_Lean_addMacroScope(x_823, x_931, x_822); +x_933 = l_Lean_Elab_Command_expandElab___closed__19; +x_934 = l_Lean_Elab_Command_expandElab___closed__23; +x_935 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_935, 0, x_848); lean_ctor_set(x_935, 1, x_933); -x_936 = lean_array_push(x_900, x_935); -x_937 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; +lean_ctor_set(x_935, 2, x_932); +lean_ctor_set(x_935, 3, x_934); +x_936 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; +x_937 = lean_array_push(x_936, x_935); x_938 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_938, 0, x_937); -lean_ctor_set(x_938, 1, x_936); -x_939 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; -x_940 = lean_array_push(x_939, x_938); -x_941 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; -x_942 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_942, 0, x_941); -lean_ctor_set(x_942, 1, x_940); -x_943 = lean_array_push(x_890, x_942); -x_944 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; -x_945 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_945, 0, x_944); -lean_ctor_set(x_945, 1, x_943); -x_946 = lean_array_push(x_865, x_945); -x_947 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; -x_948 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_948, 0, x_947); -lean_ctor_set(x_948, 1, x_946); -x_949 = lean_array_push(x_834, x_948); +lean_ctor_set(x_938, 0, x_926); +lean_ctor_set(x_938, 1, x_937); +x_939 = lean_array_push(x_930, x_938); +x_940 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_940, 0, x_826); +lean_ctor_set(x_940, 1, x_939); +x_941 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_942 = lean_array_push(x_941, x_940); +x_943 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_944 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_944, 0, x_943); +lean_ctor_set(x_944, 1, x_942); +x_945 = lean_array_push(x_914, x_944); +x_946 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_947 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_947, 0, x_946); +lean_ctor_set(x_947, 1, x_945); +x_948 = lean_array_push(x_910, x_947); +x_949 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; x_950 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_950, 0, x_816); -lean_ctor_set(x_950, 1, x_949); -x_951 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_951, 0, x_950); -lean_ctor_set(x_951, 1, x_654); -return x_951; -} -} -else -{ -lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; -lean_dec(x_18); -lean_dec(x_1); -x_952 = lean_ctor_get(x_2, 1); -lean_inc(x_952); -x_953 = lean_ctor_get(x_2, 0); -lean_inc(x_953); -lean_dec(x_2); -x_954 = l_Array_empty___closed__1; -x_955 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_27, x_954); -lean_dec(x_6); -x_956 = l_Lean_nullKind___closed__2; +lean_ctor_set(x_950, 0, x_949); +lean_ctor_set(x_950, 1, x_948); +x_951 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; +x_952 = lean_array_push(x_951, x_950); +x_953 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; +x_954 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_954, 0, x_953); +lean_ctor_set(x_954, 1, x_952); +x_955 = lean_array_push(x_900, x_954); +x_956 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; x_957 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_957, 0, x_956); lean_ctor_set(x_957, 1, x_955); -x_958 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; -x_959 = lean_array_push(x_958, x_957); -x_960 = l_Lean_Elab_Term_expandArrayLit___closed__8; -lean_inc(x_658); -x_961 = lean_array_push(x_960, x_658); -x_962 = l_Lean_Elab_Term_expandArrayLit___closed__9; -x_963 = lean_array_push(x_961, x_962); -x_964 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_964, 0, x_956); -lean_ctor_set(x_964, 1, x_963); -x_965 = lean_array_push(x_959, x_964); -x_966 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_35, x_35, x_27, x_954); -lean_dec(x_35); -x_967 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_967, 0, x_956); -lean_ctor_set(x_967, 1, x_966); -x_968 = lean_array_push(x_965, x_967); -x_969 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; -x_970 = lean_array_push(x_968, x_969); -x_971 = lean_array_push(x_970, x_13); -x_972 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; -x_973 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_973, 0, x_972); -lean_ctor_set(x_973, 1, x_971); -x_974 = lean_array_push(x_954, x_973); -x_975 = l_Lean_Elab_Term_mkTermElabAttribute___closed__7; -lean_inc(x_952); -lean_inc(x_953); -x_976 = l_Lean_addMacroScope(x_953, x_975, x_952); -x_977 = lean_box(0); -x_978 = l_Lean_SourceInfo_inhabited___closed__1; -x_979 = l_Lean_Elab_Command_expandElab___closed__32; -x_980 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_980, 0, x_978); -lean_ctor_set(x_980, 1, x_979); -lean_ctor_set(x_980, 2, x_976); -lean_ctor_set(x_980, 3, x_977); -x_981 = lean_array_push(x_954, x_980); -x_982 = lean_array_push(x_954, x_658); -x_983 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_983, 0, x_956); -lean_ctor_set(x_983, 1, x_982); -x_984 = lean_array_push(x_981, x_983); -x_985 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; -x_986 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_986, 0, x_985); -lean_ctor_set(x_986, 1, x_984); -x_987 = lean_array_push(x_954, x_986); -x_988 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_988, 0, x_956); -lean_ctor_set(x_988, 1, x_987); -x_989 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; -x_990 = lean_array_push(x_989, x_988); -x_991 = lean_array_push(x_990, x_962); -x_992 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; -x_993 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_993, 0, x_992); -lean_ctor_set(x_993, 1, x_991); -x_994 = lean_array_push(x_954, x_993); -x_995 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_995, 0, x_956); -lean_ctor_set(x_995, 1, x_994); -x_996 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_997 = lean_array_push(x_996, x_995); -x_998 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; -x_999 = lean_array_push(x_997, x_998); -x_1000 = lean_array_push(x_999, x_998); -x_1001 = lean_array_push(x_1000, x_998); -x_1002 = lean_array_push(x_1001, x_998); -x_1003 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; -x_1004 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1004, 0, x_1003); -lean_ctor_set(x_1004, 1, x_1002); -x_1005 = lean_array_push(x_954, x_1004); -x_1006 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_952); -lean_inc(x_953); -x_1007 = l_Lean_addMacroScope(x_953, x_1006, x_952); -x_1008 = l_Lean_Elab_Command_expandElab___closed__7; -x_1009 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1009, 0, x_978); -lean_ctor_set(x_1009, 1, x_1008); -lean_ctor_set(x_1009, 2, x_1007); -lean_ctor_set(x_1009, 3, x_977); -x_1010 = lean_array_push(x_954, x_1009); -x_1011 = lean_array_push(x_1010, x_998); -x_1012 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_1013 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1013, 0, x_1012); -lean_ctor_set(x_1013, 1, x_1011); -x_1014 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; -x_1015 = lean_array_push(x_1014, x_1013); -x_1016 = l_Lean_Elab_Term_mkTermElabAttribute___closed__9; -lean_inc(x_952); -lean_inc(x_953); -x_1017 = l_Lean_addMacroScope(x_953, x_1016, x_952); -x_1018 = l_Lean_Elab_Command_expandElab___closed__35; -x_1019 = l_Lean_Elab_Command_expandElab___closed__37; -x_1020 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1020, 0, x_978); -lean_ctor_set(x_1020, 1, x_1018); -lean_ctor_set(x_1020, 2, x_1017); -lean_ctor_set(x_1020, 3, x_1019); -x_1021 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; -x_1022 = lean_array_push(x_1021, x_1020); -x_1023 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_1024 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1024, 0, x_1023); -lean_ctor_set(x_1024, 1, x_1022); -x_1025 = lean_array_push(x_954, x_1024); -x_1026 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1026, 0, x_956); -lean_ctor_set(x_1026, 1, x_1025); -x_1027 = lean_array_push(x_996, x_1026); -x_1028 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; -x_1029 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1029, 0, x_1028); -lean_ctor_set(x_1029, 1, x_1027); -x_1030 = lean_array_push(x_1015, x_1029); -x_1031 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -lean_inc(x_952); -lean_inc(x_953); -x_1032 = l_Lean_addMacroScope(x_953, x_1031, x_952); -x_1033 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_1034 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1034, 0, x_978); -lean_ctor_set(x_1034, 1, x_1033); -lean_ctor_set(x_1034, 2, x_1032); -lean_ctor_set(x_1034, 3, x_977); -lean_inc(x_1034); -x_1035 = lean_array_push(x_954, x_1034); -x_1036 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; -x_1037 = lean_array_push(x_1035, x_1036); -x_1038 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1038, 0, x_956); -lean_ctor_set(x_1038, 1, x_1037); -x_1039 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; -x_1040 = lean_array_push(x_1039, x_1038); -x_1041 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1042 = lean_array_push(x_1040, x_1041); -x_1043 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_1044 = lean_array_push(x_1043, x_1034); -x_1045 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1046 = lean_array_push(x_1044, x_1045); -x_1047 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1048 = lean_array_push(x_1046, x_1047); -x_1049 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; -x_1050 = lean_array_push(x_1049, x_657); -x_1051 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; -x_1052 = lean_array_push(x_1050, x_1051); -x_1053 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_1054 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1054, 0, x_1053); -lean_ctor_set(x_1054, 1, x_1052); -x_1055 = lean_array_push(x_954, x_1054); -x_1056 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1056, 0, x_956); -lean_ctor_set(x_1056, 1, x_1055); -x_1057 = lean_array_push(x_954, x_1056); -x_1058 = lean_array_push(x_1057, x_1041); -x_1059 = lean_array_push(x_1058, x_17); -x_1060 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1061 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1061, 0, x_1060); -lean_ctor_set(x_1061, 1, x_1059); -x_1062 = lean_array_push(x_954, x_1061); -x_1063 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; -x_1064 = lean_array_push(x_1062, x_1063); -x_1065 = l_Lean_Elab_Command_expandElab___closed__20; -x_1066 = l_Lean_addMacroScope(x_953, x_1065, x_952); -x_1067 = l_Lean_Elab_Command_expandElab___closed__19; -x_1068 = l_Lean_Elab_Command_expandElab___closed__23; -x_1069 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1069, 0, x_978); -lean_ctor_set(x_1069, 1, x_1067); -lean_ctor_set(x_1069, 2, x_1066); -lean_ctor_set(x_1069, 3, x_1068); -x_1070 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; -x_1071 = lean_array_push(x_1070, x_1069); -x_1072 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1072, 0, x_1060); -lean_ctor_set(x_1072, 1, x_1071); -x_1073 = lean_array_push(x_1064, x_1072); -x_1074 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1074, 0, x_956); -lean_ctor_set(x_1074, 1, x_1073); -x_1075 = lean_array_push(x_1048, x_1074); -x_1076 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_1077 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1077, 0, x_1076); -lean_ctor_set(x_1077, 1, x_1075); -x_1078 = lean_array_push(x_1042, x_1077); -x_1079 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; -x_1080 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1080, 0, x_1079); -lean_ctor_set(x_1080, 1, x_1078); -x_1081 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; -x_1082 = lean_array_push(x_1081, x_1080); -x_1083 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; -x_1084 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1084, 0, x_1083); -lean_ctor_set(x_1084, 1, x_1082); -x_1085 = lean_array_push(x_1030, x_1084); -x_1086 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; -x_1087 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1087, 0, x_1086); -lean_ctor_set(x_1087, 1, x_1085); -x_1088 = lean_array_push(x_1005, x_1087); -x_1089 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; -x_1090 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1090, 0, x_1089); -lean_ctor_set(x_1090, 1, x_1088); -x_1091 = lean_array_push(x_974, x_1090); -x_1092 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1092, 0, x_956); -lean_ctor_set(x_1092, 1, x_1091); -x_1093 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1093, 0, x_1092); -lean_ctor_set(x_1093, 1, x_654); -return x_1093; +x_958 = lean_array_push(x_875, x_957); +x_959 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; +x_960 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_960, 0, x_959); +lean_ctor_set(x_960, 1, x_958); +x_961 = lean_array_push(x_844, x_960); +x_962 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_962, 0, x_826); +lean_ctor_set(x_962, 1, x_961); +x_963 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_963, 0, x_962); +lean_ctor_set(x_963, 1, x_662); +return x_963; } } else { -lean_object* x_1094; uint8_t x_1095; +lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; +lean_dec(x_18); lean_dec(x_1); -x_1094 = l_Lean_Parser_termParser___closed__2; -x_1095 = lean_name_eq(x_18, x_1094); -if (x_1095 == 0) +x_964 = lean_ctor_get(x_2, 1); +lean_inc(x_964); +x_965 = lean_ctor_get(x_2, 0); +lean_inc(x_965); +lean_dec(x_2); +x_966 = l_Array_empty___closed__1; +x_967 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_27, x_966); +lean_dec(x_6); +x_968 = l_Lean_nullKind___closed__2; +x_969 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_969, 0, x_968); +lean_ctor_set(x_969, 1, x_967); +x_970 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; +x_971 = lean_array_push(x_970, x_969); +x_972 = l_Lean_Elab_Term_expandArrayLit___closed__8; +lean_inc(x_666); +x_973 = lean_array_push(x_972, x_666); +x_974 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_975 = lean_array_push(x_973, x_974); +x_976 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_976, 0, x_968); +lean_ctor_set(x_976, 1, x_975); +x_977 = lean_array_push(x_971, x_976); +x_978 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_35, x_35, x_27, x_966); +lean_dec(x_35); +x_979 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_979, 0, x_968); +lean_ctor_set(x_979, 1, x_978); +x_980 = lean_array_push(x_977, x_979); +x_981 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; +x_982 = lean_array_push(x_980, x_981); +x_983 = lean_array_push(x_982, x_13); +x_984 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; +x_985 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_985, 0, x_984); +lean_ctor_set(x_985, 1, x_983); +x_986 = lean_array_push(x_966, x_985); +x_987 = l_Lean_Elab_Term_mkTermElabAttribute___closed__7; +lean_inc(x_964); +lean_inc(x_965); +x_988 = l_Lean_addMacroScope(x_965, x_987, x_964); +x_989 = lean_box(0); +x_990 = l_Lean_SourceInfo_inhabited___closed__1; +x_991 = l_Lean_Elab_Command_expandElab___closed__32; +x_992 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_992, 0, x_990); +lean_ctor_set(x_992, 1, x_991); +lean_ctor_set(x_992, 2, x_988); +lean_ctor_set(x_992, 3, x_989); +x_993 = lean_array_push(x_966, x_992); +x_994 = lean_array_push(x_966, x_666); +x_995 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_995, 0, x_968); +lean_ctor_set(x_995, 1, x_994); +x_996 = lean_array_push(x_993, x_995); +x_997 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; +x_998 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_998, 0, x_997); +lean_ctor_set(x_998, 1, x_996); +x_999 = lean_array_push(x_966, x_998); +x_1000 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1000, 0, x_968); +lean_ctor_set(x_1000, 1, x_999); +x_1001 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; +x_1002 = lean_array_push(x_1001, x_1000); +x_1003 = lean_array_push(x_1002, x_974); +x_1004 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; +x_1005 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1005, 0, x_1004); +lean_ctor_set(x_1005, 1, x_1003); +x_1006 = lean_array_push(x_966, x_1005); +x_1007 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1007, 0, x_968); +lean_ctor_set(x_1007, 1, x_1006); +x_1008 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_1009 = lean_array_push(x_1008, x_1007); +x_1010 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_1011 = lean_array_push(x_1009, x_1010); +x_1012 = lean_array_push(x_1011, x_1010); +x_1013 = lean_array_push(x_1012, x_1010); +x_1014 = lean_array_push(x_1013, x_1010); +x_1015 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; +x_1016 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1016, 0, x_1015); +lean_ctor_set(x_1016, 1, x_1014); +x_1017 = lean_array_push(x_966, x_1016); +x_1018 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_964); +lean_inc(x_965); +x_1019 = l_Lean_addMacroScope(x_965, x_1018, x_964); +x_1020 = l_Lean_Elab_Command_expandElab___closed__7; +x_1021 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1021, 0, x_990); +lean_ctor_set(x_1021, 1, x_1020); +lean_ctor_set(x_1021, 2, x_1019); +lean_ctor_set(x_1021, 3, x_989); +x_1022 = lean_array_push(x_966, x_1021); +x_1023 = lean_array_push(x_1022, x_1010); +x_1024 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_1025 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1025, 0, x_1024); +lean_ctor_set(x_1025, 1, x_1023); +x_1026 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; +x_1027 = lean_array_push(x_1026, x_1025); +x_1028 = l_Lean_Elab_Term_mkTermElabAttribute___closed__9; +lean_inc(x_964); +lean_inc(x_965); +x_1029 = l_Lean_addMacroScope(x_965, x_1028, x_964); +x_1030 = l_Lean_Elab_Command_expandElab___closed__35; +x_1031 = l_Lean_Elab_Command_expandElab___closed__37; +x_1032 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1032, 0, x_990); +lean_ctor_set(x_1032, 1, x_1030); +lean_ctor_set(x_1032, 2, x_1029); +lean_ctor_set(x_1032, 3, x_1031); +x_1033 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; +x_1034 = lean_array_push(x_1033, x_1032); +x_1035 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; +x_1036 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1036, 0, x_1035); +lean_ctor_set(x_1036, 1, x_1034); +x_1037 = lean_array_push(x_966, x_1036); +x_1038 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1038, 0, x_968); +lean_ctor_set(x_1038, 1, x_1037); +x_1039 = lean_array_push(x_1008, x_1038); +x_1040 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; +x_1041 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1041, 0, x_1040); +lean_ctor_set(x_1041, 1, x_1039); +x_1042 = lean_array_push(x_1027, x_1041); +x_1043 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +lean_inc(x_964); +lean_inc(x_965); +x_1044 = l_Lean_addMacroScope(x_965, x_1043, x_964); +x_1045 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1046 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1046, 0, x_990); +lean_ctor_set(x_1046, 1, x_1045); +lean_ctor_set(x_1046, 2, x_1044); +lean_ctor_set(x_1046, 3, x_989); +lean_inc(x_1046); +x_1047 = lean_array_push(x_966, x_1046); +x_1048 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; +x_1049 = lean_array_push(x_1047, x_1048); +x_1050 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1050, 0, x_968); +lean_ctor_set(x_1050, 1, x_1049); +x_1051 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; +x_1052 = lean_array_push(x_1051, x_1050); +x_1053 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1054 = lean_array_push(x_1052, x_1053); +x_1055 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_1056 = lean_array_push(x_1055, x_1046); +x_1057 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1058 = lean_array_push(x_1056, x_1057); +x_1059 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; +x_1060 = lean_array_push(x_1059, x_665); +x_1061 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_1062 = lean_array_push(x_1060, x_1061); +x_1063 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_1064 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1064, 0, x_1063); +lean_ctor_set(x_1064, 1, x_1062); +x_1065 = lean_array_push(x_966, x_1064); +x_1066 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1066, 0, x_968); +lean_ctor_set(x_1066, 1, x_1065); +x_1067 = lean_array_push(x_966, x_1066); +x_1068 = lean_array_push(x_1067, x_1053); +x_1069 = lean_array_push(x_1068, x_17); +x_1070 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1071 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1071, 0, x_1070); +lean_ctor_set(x_1071, 1, x_1069); +x_1072 = lean_array_push(x_966, x_1071); +x_1073 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_1074 = lean_array_push(x_1072, x_1073); +x_1075 = l_Lean_Elab_Command_expandElab___closed__20; +x_1076 = l_Lean_addMacroScope(x_965, x_1075, x_964); +x_1077 = l_Lean_Elab_Command_expandElab___closed__19; +x_1078 = l_Lean_Elab_Command_expandElab___closed__23; +x_1079 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1079, 0, x_990); +lean_ctor_set(x_1079, 1, x_1077); +lean_ctor_set(x_1079, 2, x_1076); +lean_ctor_set(x_1079, 3, x_1078); +x_1080 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; +x_1081 = lean_array_push(x_1080, x_1079); +x_1082 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1082, 0, x_1070); +lean_ctor_set(x_1082, 1, x_1081); +x_1083 = lean_array_push(x_1074, x_1082); +x_1084 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1084, 0, x_968); +lean_ctor_set(x_1084, 1, x_1083); +x_1085 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1086 = lean_array_push(x_1085, x_1084); +x_1087 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1088 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1088, 0, x_1087); +lean_ctor_set(x_1088, 1, x_1086); +x_1089 = lean_array_push(x_1058, x_1088); +x_1090 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1091 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1091, 0, x_1090); +lean_ctor_set(x_1091, 1, x_1089); +x_1092 = lean_array_push(x_1054, x_1091); +x_1093 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; +x_1094 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1094, 0, x_1093); +lean_ctor_set(x_1094, 1, x_1092); +x_1095 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; +x_1096 = lean_array_push(x_1095, x_1094); +x_1097 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; +x_1098 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1098, 0, x_1097); +lean_ctor_set(x_1098, 1, x_1096); +x_1099 = lean_array_push(x_1042, x_1098); +x_1100 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; +x_1101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1101, 0, x_1100); +lean_ctor_set(x_1101, 1, x_1099); +x_1102 = lean_array_push(x_1017, x_1101); +x_1103 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; +x_1104 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1104, 0, x_1103); +lean_ctor_set(x_1104, 1, x_1102); +x_1105 = lean_array_push(x_986, x_1104); +x_1106 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1106, 0, x_968); +lean_ctor_set(x_1106, 1, x_1105); +x_1107 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1107, 0, x_1106); +lean_ctor_set(x_1107, 1, x_662); +return x_1107; +} +} +else { -lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; -lean_dec(x_658); -lean_dec(x_657); +lean_object* x_1108; uint8_t x_1109; +lean_dec(x_1); +x_1108 = l_Lean_Parser_termParser___closed__2; +x_1109 = lean_name_eq(x_18, x_1108); +if (x_1109 == 0) +{ +lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; +lean_dec(x_666); +lean_dec(x_665); lean_dec(x_35); lean_dec(x_17); lean_dec(x_13); lean_dec(x_6); -x_1096 = l_System_FilePath_dirName___closed__1; -x_1097 = l_Lean_Name_toStringWithSep___main(x_1096, x_18); -x_1098 = l_Lean_Elab_Command_expandElab___closed__38; -x_1099 = lean_string_append(x_1098, x_1097); -lean_dec(x_1097); -x_1100 = l_Lean_Elab_Command_expandElab___closed__39; -x_1101 = lean_string_append(x_1099, x_1100); -x_1102 = l_Lean_Macro_throwError___rarg(x_15, x_1101, x_2, x_654); +x_1110 = l_System_FilePath_dirName___closed__1; +x_1111 = l_Lean_Name_toStringWithSep___main(x_1110, x_18); +x_1112 = l_Lean_Elab_Command_expandElab___closed__38; +x_1113 = lean_string_append(x_1112, x_1111); +lean_dec(x_1111); +x_1114 = l_Lean_Elab_Command_expandElab___closed__39; +x_1115 = lean_string_append(x_1113, x_1114); +x_1116 = l_Lean_Macro_throwError___rarg(x_15, x_1115, x_2, x_662); lean_dec(x_2); -return x_1102; +return x_1116; } else { -lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; +lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_dec(x_18); -x_1103 = l_Lean_Syntax_getArg(x_15, x_4); +x_1117 = l_Lean_Syntax_getArg(x_15, x_4); lean_dec(x_15); -x_1104 = lean_ctor_get(x_2, 1); -lean_inc(x_1104); -x_1105 = lean_ctor_get(x_2, 0); -lean_inc(x_1105); +x_1118 = lean_ctor_get(x_2, 1); +lean_inc(x_1118); +x_1119 = lean_ctor_get(x_2, 0); +lean_inc(x_1119); lean_dec(x_2); -x_1106 = l_Array_empty___closed__1; -x_1107 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_27, x_1106); +x_1120 = l_Array_empty___closed__1; +x_1121 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_6, x_6, x_27, x_1120); lean_dec(x_6); -x_1108 = l_Lean_nullKind___closed__2; -x_1109 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1109, 0, x_1108); -lean_ctor_set(x_1109, 1, x_1107); -x_1110 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; -x_1111 = lean_array_push(x_1110, x_1109); -x_1112 = l_Lean_Elab_Term_expandArrayLit___closed__8; -lean_inc(x_658); -x_1113 = lean_array_push(x_1112, x_658); -x_1114 = l_Lean_Elab_Term_expandArrayLit___closed__9; -x_1115 = lean_array_push(x_1113, x_1114); -x_1116 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1116, 0, x_1108); -lean_ctor_set(x_1116, 1, x_1115); -x_1117 = lean_array_push(x_1111, x_1116); -x_1118 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_35, x_35, x_27, x_1106); +x_1122 = l_Lean_nullKind___closed__2; +x_1123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1123, 0, x_1122); +lean_ctor_set(x_1123, 1, x_1121); +x_1124 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; +x_1125 = lean_array_push(x_1124, x_1123); +x_1126 = l_Lean_Elab_Term_expandArrayLit___closed__8; +lean_inc(x_666); +x_1127 = lean_array_push(x_1126, x_666); +x_1128 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_1129 = lean_array_push(x_1127, x_1128); +x_1130 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1130, 0, x_1122); +lean_ctor_set(x_1130, 1, x_1129); +x_1131 = lean_array_push(x_1125, x_1130); +x_1132 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_35, x_35, x_27, x_1120); lean_dec(x_35); -x_1119 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1119, 0, x_1108); -lean_ctor_set(x_1119, 1, x_1118); -x_1120 = lean_array_push(x_1117, x_1119); -x_1121 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; -x_1122 = lean_array_push(x_1120, x_1121); -x_1123 = lean_array_push(x_1122, x_13); -x_1124 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; -x_1125 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1125, 0, x_1124); -lean_ctor_set(x_1125, 1, x_1123); -x_1126 = lean_array_push(x_1106, x_1125); -x_1127 = l_Lean_Elab_Term_mkTermElabAttribute___closed__7; -lean_inc(x_1104); -lean_inc(x_1105); -x_1128 = l_Lean_addMacroScope(x_1105, x_1127, x_1104); -x_1129 = lean_box(0); -x_1130 = l_Lean_SourceInfo_inhabited___closed__1; -x_1131 = l_Lean_Elab_Command_expandElab___closed__32; -x_1132 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1132, 0, x_1130); -lean_ctor_set(x_1132, 1, x_1131); -lean_ctor_set(x_1132, 2, x_1128); -lean_ctor_set(x_1132, 3, x_1129); -x_1133 = lean_array_push(x_1106, x_1132); -x_1134 = lean_array_push(x_1106, x_658); -x_1135 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1135, 0, x_1108); -lean_ctor_set(x_1135, 1, x_1134); -x_1136 = lean_array_push(x_1133, x_1135); -x_1137 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; -x_1138 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1138, 0, x_1137); -lean_ctor_set(x_1138, 1, x_1136); -x_1139 = lean_array_push(x_1106, x_1138); -x_1140 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1140, 0, x_1108); -lean_ctor_set(x_1140, 1, x_1139); -x_1141 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; -x_1142 = lean_array_push(x_1141, x_1140); -x_1143 = lean_array_push(x_1142, x_1114); -x_1144 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; -x_1145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1145, 0, x_1144); -lean_ctor_set(x_1145, 1, x_1143); -x_1146 = lean_array_push(x_1106, x_1145); -x_1147 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1147, 0, x_1108); -lean_ctor_set(x_1147, 1, x_1146); -x_1148 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_1149 = lean_array_push(x_1148, x_1147); -x_1150 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; -x_1151 = lean_array_push(x_1149, x_1150); -x_1152 = lean_array_push(x_1151, x_1150); -x_1153 = lean_array_push(x_1152, x_1150); -x_1154 = lean_array_push(x_1153, x_1150); -x_1155 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; -x_1156 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1156, 0, x_1155); -lean_ctor_set(x_1156, 1, x_1154); -x_1157 = lean_array_push(x_1106, x_1156); -x_1158 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_1104); -lean_inc(x_1105); -x_1159 = l_Lean_addMacroScope(x_1105, x_1158, x_1104); -x_1160 = l_Lean_Elab_Command_expandElab___closed__7; -x_1161 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1161, 0, x_1130); +x_1133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1133, 0, x_1122); +lean_ctor_set(x_1133, 1, x_1132); +x_1134 = lean_array_push(x_1131, x_1133); +x_1135 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; +x_1136 = lean_array_push(x_1134, x_1135); +x_1137 = lean_array_push(x_1136, x_13); +x_1138 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; +x_1139 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1139, 0, x_1138); +lean_ctor_set(x_1139, 1, x_1137); +x_1140 = lean_array_push(x_1120, x_1139); +x_1141 = l_Lean_Elab_Term_mkTermElabAttribute___closed__7; +lean_inc(x_1118); +lean_inc(x_1119); +x_1142 = l_Lean_addMacroScope(x_1119, x_1141, x_1118); +x_1143 = lean_box(0); +x_1144 = l_Lean_SourceInfo_inhabited___closed__1; +x_1145 = l_Lean_Elab_Command_expandElab___closed__32; +x_1146 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1146, 0, x_1144); +lean_ctor_set(x_1146, 1, x_1145); +lean_ctor_set(x_1146, 2, x_1142); +lean_ctor_set(x_1146, 3, x_1143); +x_1147 = lean_array_push(x_1120, x_1146); +x_1148 = lean_array_push(x_1120, x_666); +x_1149 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1149, 0, x_1122); +lean_ctor_set(x_1149, 1, x_1148); +x_1150 = lean_array_push(x_1147, x_1149); +x_1151 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; +x_1152 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1152, 0, x_1151); +lean_ctor_set(x_1152, 1, x_1150); +x_1153 = lean_array_push(x_1120, x_1152); +x_1154 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1154, 0, x_1122); +lean_ctor_set(x_1154, 1, x_1153); +x_1155 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__10; +x_1156 = lean_array_push(x_1155, x_1154); +x_1157 = lean_array_push(x_1156, x_1128); +x_1158 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__8; +x_1159 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1159, 0, x_1158); +lean_ctor_set(x_1159, 1, x_1157); +x_1160 = lean_array_push(x_1120, x_1159); +x_1161 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1161, 0, x_1122); lean_ctor_set(x_1161, 1, x_1160); -lean_ctor_set(x_1161, 2, x_1159); -lean_ctor_set(x_1161, 3, x_1129); -x_1162 = lean_array_push(x_1106, x_1161); -x_1163 = lean_array_push(x_1162, x_1150); -x_1164 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_1165 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1165, 0, x_1164); -lean_ctor_set(x_1165, 1, x_1163); -x_1166 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; -x_1167 = lean_array_push(x_1166, x_1165); -x_1168 = l_Lean_Elab_Term_mkTermElabAttribute___closed__9; -lean_inc(x_1104); -lean_inc(x_1105); -x_1169 = l_Lean_addMacroScope(x_1105, x_1168, x_1104); -x_1170 = l_Lean_Elab_Command_expandElab___closed__35; -x_1171 = l_Lean_Elab_Command_expandElab___closed__37; -x_1172 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1172, 0, x_1130); -lean_ctor_set(x_1172, 1, x_1170); -lean_ctor_set(x_1172, 2, x_1169); -lean_ctor_set(x_1172, 3, x_1171); -x_1173 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; -x_1174 = lean_array_push(x_1173, x_1172); -x_1175 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_1176 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1176, 0, x_1175); -lean_ctor_set(x_1176, 1, x_1174); -x_1177 = lean_array_push(x_1106, x_1176); -x_1178 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1178, 0, x_1108); -lean_ctor_set(x_1178, 1, x_1177); -x_1179 = lean_array_push(x_1148, x_1178); -x_1180 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; -x_1181 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1181, 0, x_1180); -lean_ctor_set(x_1181, 1, x_1179); -x_1182 = lean_array_push(x_1167, x_1181); -x_1183 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -lean_inc(x_1104); -lean_inc(x_1105); -x_1184 = l_Lean_addMacroScope(x_1105, x_1183, x_1104); -x_1185 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1162 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_1163 = lean_array_push(x_1162, x_1161); +x_1164 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_1165 = lean_array_push(x_1163, x_1164); +x_1166 = lean_array_push(x_1165, x_1164); +x_1167 = lean_array_push(x_1166, x_1164); +x_1168 = lean_array_push(x_1167, x_1164); +x_1169 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__6; +x_1170 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1170, 0, x_1169); +lean_ctor_set(x_1170, 1, x_1168); +x_1171 = lean_array_push(x_1120, x_1170); +x_1172 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_1118); +lean_inc(x_1119); +x_1173 = l_Lean_addMacroScope(x_1119, x_1172, x_1118); +x_1174 = l_Lean_Elab_Command_expandElab___closed__7; +x_1175 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1175, 0, x_1144); +lean_ctor_set(x_1175, 1, x_1174); +lean_ctor_set(x_1175, 2, x_1173); +lean_ctor_set(x_1175, 3, x_1143); +x_1176 = lean_array_push(x_1120, x_1175); +x_1177 = lean_array_push(x_1176, x_1164); +x_1178 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_1179 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1179, 0, x_1178); +lean_ctor_set(x_1179, 1, x_1177); +x_1180 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__18; +x_1181 = lean_array_push(x_1180, x_1179); +x_1182 = l_Lean_Elab_Term_mkTermElabAttribute___closed__9; +lean_inc(x_1118); +lean_inc(x_1119); +x_1183 = l_Lean_addMacroScope(x_1119, x_1182, x_1118); +x_1184 = l_Lean_Elab_Command_expandElab___closed__35; +x_1185 = l_Lean_Elab_Command_expandElab___closed__37; x_1186 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1186, 0, x_1130); -lean_ctor_set(x_1186, 1, x_1185); -lean_ctor_set(x_1186, 2, x_1184); -lean_ctor_set(x_1186, 3, x_1129); -lean_inc(x_1186); -x_1187 = lean_array_push(x_1106, x_1186); -x_1188 = l_Lean_Elab_Command_expandElab___closed__43; -lean_inc(x_1104); -lean_inc(x_1105); -x_1189 = l_Lean_addMacroScope(x_1105, x_1188, x_1104); -x_1190 = l_Lean_Elab_Command_expandElab___closed__42; -x_1191 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1191, 0, x_1130); -lean_ctor_set(x_1191, 1, x_1190); -lean_ctor_set(x_1191, 2, x_1189); -lean_ctor_set(x_1191, 3, x_1129); -lean_inc(x_1191); -x_1192 = lean_array_push(x_1187, x_1191); -x_1193 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1193, 0, x_1108); -lean_ctor_set(x_1193, 1, x_1192); -x_1194 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; -x_1195 = lean_array_push(x_1194, x_1193); -x_1196 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; -x_1197 = lean_array_push(x_1195, x_1196); -x_1198 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_1199 = lean_array_push(x_1198, x_1186); -x_1200 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -x_1201 = lean_array_push(x_1199, x_1200); -x_1202 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_1203 = lean_array_push(x_1201, x_1202); -x_1204 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7; -x_1205 = lean_array_push(x_1204, x_657); -x_1206 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; -x_1207 = lean_array_push(x_1205, x_1206); -x_1208 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_1209 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1209, 0, x_1208); -lean_ctor_set(x_1209, 1, x_1207); -x_1210 = lean_array_push(x_1106, x_1209); -x_1211 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1211, 0, x_1108); -lean_ctor_set(x_1211, 1, x_1210); -x_1212 = lean_array_push(x_1106, x_1211); -x_1213 = lean_array_push(x_1212, x_1196); -x_1214 = l_Lean_Elab_Command_expandElab___closed__48; -lean_inc(x_1104); -lean_inc(x_1105); -x_1215 = l_Lean_addMacroScope(x_1105, x_1214, x_1104); -x_1216 = l_Lean_Elab_Command_expandElab___closed__46; -x_1217 = l_Lean_Elab_Command_expandElab___closed__50; -x_1218 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1218, 0, x_1130); -lean_ctor_set(x_1218, 1, x_1216); -lean_ctor_set(x_1218, 2, x_1215); -lean_ctor_set(x_1218, 3, x_1217); -x_1219 = lean_array_push(x_1106, x_1218); -x_1220 = lean_array_push(x_1106, x_1191); -x_1221 = lean_array_push(x_1106, x_1103); -x_1222 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1222, 0, x_1108); -lean_ctor_set(x_1222, 1, x_1221); -x_1223 = lean_array_push(x_1194, x_1222); -x_1224 = lean_array_push(x_1223, x_1196); -x_1225 = lean_array_push(x_1224, x_17); -x_1226 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; -x_1227 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1227, 0, x_1226); -lean_ctor_set(x_1227, 1, x_1225); -x_1228 = lean_array_push(x_1220, x_1227); -x_1229 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1229, 0, x_1108); -lean_ctor_set(x_1229, 1, x_1228); -x_1230 = lean_array_push(x_1219, x_1229); -x_1231 = l_Lean_mkAppStx___closed__8; -x_1232 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1232, 0, x_1231); -lean_ctor_set(x_1232, 1, x_1230); -x_1233 = lean_array_push(x_1213, x_1232); -x_1234 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; -x_1235 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1235, 0, x_1234); -lean_ctor_set(x_1235, 1, x_1233); -x_1236 = lean_array_push(x_1106, x_1235); -x_1237 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; -x_1238 = lean_array_push(x_1236, x_1237); -x_1239 = l_Lean_Elab_Command_expandElab___closed__20; -x_1240 = l_Lean_addMacroScope(x_1105, x_1239, x_1104); -x_1241 = l_Lean_Elab_Command_expandElab___closed__19; -x_1242 = l_Lean_Elab_Command_expandElab___closed__23; -x_1243 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1243, 0, x_1130); -lean_ctor_set(x_1243, 1, x_1241); -lean_ctor_set(x_1243, 2, x_1240); -lean_ctor_set(x_1243, 3, x_1242); -x_1244 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; -x_1245 = lean_array_push(x_1244, x_1243); -x_1246 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1246, 0, x_1234); -lean_ctor_set(x_1246, 1, x_1245); -x_1247 = lean_array_push(x_1238, x_1246); -x_1248 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1248, 0, x_1108); -lean_ctor_set(x_1248, 1, x_1247); -x_1249 = lean_array_push(x_1203, x_1248); -x_1250 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_1251 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1251, 0, x_1250); -lean_ctor_set(x_1251, 1, x_1249); -x_1252 = lean_array_push(x_1197, x_1251); -x_1253 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1253, 0, x_1226); -lean_ctor_set(x_1253, 1, x_1252); -x_1254 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; -x_1255 = lean_array_push(x_1254, x_1253); -x_1256 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; -x_1257 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1257, 0, x_1256); -lean_ctor_set(x_1257, 1, x_1255); -x_1258 = lean_array_push(x_1182, x_1257); -x_1259 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; +lean_ctor_set(x_1186, 0, x_1144); +lean_ctor_set(x_1186, 1, x_1184); +lean_ctor_set(x_1186, 2, x_1183); +lean_ctor_set(x_1186, 3, x_1185); +x_1187 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; +x_1188 = lean_array_push(x_1187, x_1186); +x_1189 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; +x_1190 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1190, 0, x_1189); +lean_ctor_set(x_1190, 1, x_1188); +x_1191 = lean_array_push(x_1120, x_1190); +x_1192 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1192, 0, x_1122); +lean_ctor_set(x_1192, 1, x_1191); +x_1193 = lean_array_push(x_1162, x_1192); +x_1194 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__20; +x_1195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1195, 0, x_1194); +lean_ctor_set(x_1195, 1, x_1193); +x_1196 = lean_array_push(x_1181, x_1195); +x_1197 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +lean_inc(x_1118); +lean_inc(x_1119); +x_1198 = l_Lean_addMacroScope(x_1119, x_1197, x_1118); +x_1199 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1200 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1200, 0, x_1144); +lean_ctor_set(x_1200, 1, x_1199); +lean_ctor_set(x_1200, 2, x_1198); +lean_ctor_set(x_1200, 3, x_1143); +lean_inc(x_1200); +x_1201 = lean_array_push(x_1120, x_1200); +x_1202 = l_Lean_Elab_Command_expandElab___closed__43; +lean_inc(x_1118); +lean_inc(x_1119); +x_1203 = l_Lean_addMacroScope(x_1119, x_1202, x_1118); +x_1204 = l_Lean_Elab_Command_expandElab___closed__42; +x_1205 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1205, 0, x_1144); +lean_ctor_set(x_1205, 1, x_1204); +lean_ctor_set(x_1205, 2, x_1203); +lean_ctor_set(x_1205, 3, x_1143); +lean_inc(x_1205); +x_1206 = lean_array_push(x_1201, x_1205); +x_1207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1207, 0, x_1122); +lean_ctor_set(x_1207, 1, x_1206); +x_1208 = l_Lean_Elab_Term_expandCDot_x3f___closed__4; +x_1209 = lean_array_push(x_1208, x_1207); +x_1210 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_1211 = lean_array_push(x_1209, x_1210); +x_1212 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_1213 = lean_array_push(x_1212, x_1200); +x_1214 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1215 = lean_array_push(x_1213, x_1214); +x_1216 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__6; +x_1217 = lean_array_push(x_1216, x_665); +x_1218 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_1219 = lean_array_push(x_1217, x_1218); +x_1220 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_1221 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1221, 0, x_1220); +lean_ctor_set(x_1221, 1, x_1219); +x_1222 = lean_array_push(x_1120, x_1221); +x_1223 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1223, 0, x_1122); +lean_ctor_set(x_1223, 1, x_1222); +x_1224 = lean_array_push(x_1120, x_1223); +x_1225 = lean_array_push(x_1224, x_1210); +x_1226 = l_Lean_Elab_Command_expandElab___closed__48; +lean_inc(x_1118); +lean_inc(x_1119); +x_1227 = l_Lean_addMacroScope(x_1119, x_1226, x_1118); +x_1228 = l_Lean_Elab_Command_expandElab___closed__46; +x_1229 = l_Lean_Elab_Command_expandElab___closed__50; +x_1230 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1230, 0, x_1144); +lean_ctor_set(x_1230, 1, x_1228); +lean_ctor_set(x_1230, 2, x_1227); +lean_ctor_set(x_1230, 3, x_1229); +x_1231 = lean_array_push(x_1120, x_1230); +x_1232 = lean_array_push(x_1120, x_1205); +x_1233 = lean_array_push(x_1120, x_1117); +x_1234 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1234, 0, x_1122); +lean_ctor_set(x_1234, 1, x_1233); +x_1235 = lean_array_push(x_1208, x_1234); +x_1236 = lean_array_push(x_1235, x_1210); +x_1237 = lean_array_push(x_1236, x_17); +x_1238 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; +x_1239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1239, 0, x_1238); +lean_ctor_set(x_1239, 1, x_1237); +x_1240 = lean_array_push(x_1232, x_1239); +x_1241 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1241, 0, x_1122); +lean_ctor_set(x_1241, 1, x_1240); +x_1242 = lean_array_push(x_1231, x_1241); +x_1243 = l_Lean_mkAppStx___closed__8; +x_1244 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1244, 0, x_1243); +lean_ctor_set(x_1244, 1, x_1242); +x_1245 = lean_array_push(x_1225, x_1244); +x_1246 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; +x_1247 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1247, 0, x_1246); +lean_ctor_set(x_1247, 1, x_1245); +x_1248 = lean_array_push(x_1120, x_1247); +x_1249 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; +x_1250 = lean_array_push(x_1248, x_1249); +x_1251 = l_Lean_Elab_Command_expandElab___closed__20; +x_1252 = l_Lean_addMacroScope(x_1119, x_1251, x_1118); +x_1253 = l_Lean_Elab_Command_expandElab___closed__19; +x_1254 = l_Lean_Elab_Command_expandElab___closed__23; +x_1255 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1255, 0, x_1144); +lean_ctor_set(x_1255, 1, x_1253); +lean_ctor_set(x_1255, 2, x_1252); +lean_ctor_set(x_1255, 3, x_1254); +x_1256 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; +x_1257 = lean_array_push(x_1256, x_1255); +x_1258 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1258, 0, x_1246); +lean_ctor_set(x_1258, 1, x_1257); +x_1259 = lean_array_push(x_1250, x_1258); x_1260 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1260, 0, x_1259); -lean_ctor_set(x_1260, 1, x_1258); -x_1261 = lean_array_push(x_1157, x_1260); -x_1262 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; -x_1263 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1263, 0, x_1262); -lean_ctor_set(x_1263, 1, x_1261); -x_1264 = lean_array_push(x_1126, x_1263); -x_1265 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1265, 0, x_1108); -lean_ctor_set(x_1265, 1, x_1264); -x_1266 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1266, 0, x_1265); -lean_ctor_set(x_1266, 1, x_654); -return x_1266; +lean_ctor_set(x_1260, 0, x_1122); +lean_ctor_set(x_1260, 1, x_1259); +x_1261 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_1262 = lean_array_push(x_1261, x_1260); +x_1263 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__11; +x_1264 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1264, 0, x_1263); +lean_ctor_set(x_1264, 1, x_1262); +x_1265 = lean_array_push(x_1215, x_1264); +x_1266 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1267 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1267, 0, x_1266); +lean_ctor_set(x_1267, 1, x_1265); +x_1268 = lean_array_push(x_1211, x_1267); +x_1269 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1269, 0, x_1238); +lean_ctor_set(x_1269, 1, x_1268); +x_1270 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__28; +x_1271 = lean_array_push(x_1270, x_1269); +x_1272 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__27; +x_1273 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1273, 0, x_1272); +lean_ctor_set(x_1273, 1, x_1271); +x_1274 = lean_array_push(x_1196, x_1273); +x_1275 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__16; +x_1276 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1276, 0, x_1275); +lean_ctor_set(x_1276, 1, x_1274); +x_1277 = lean_array_push(x_1171, x_1276); +x_1278 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__4; +x_1279 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1279, 0, x_1278); +lean_ctor_set(x_1279, 1, x_1277); +x_1280 = lean_array_push(x_1140, x_1279); +x_1281 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1281, 0, x_1122); +lean_ctor_set(x_1281, 1, x_1280); +x_1282 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1282, 0, x_1281); +lean_ctor_set(x_1282, 1, x_662); +return x_1282; } } } } else { -uint8_t x_1267; +uint8_t x_1283; lean_dec(x_37); lean_dec(x_35); lean_dec(x_21); @@ -18039,29 +18188,29 @@ lean_dec(x_13); lean_dec(x_6); lean_dec(x_2); lean_dec(x_1); -x_1267 = !lean_is_exclusive(x_41); -if (x_1267 == 0) +x_1283 = !lean_is_exclusive(x_41); +if (x_1283 == 0) { return x_41; } else { -lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; -x_1268 = lean_ctor_get(x_41, 0); -x_1269 = lean_ctor_get(x_41, 1); -lean_inc(x_1269); -lean_inc(x_1268); +lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; +x_1284 = lean_ctor_get(x_41, 0); +x_1285 = lean_ctor_get(x_41, 1); +lean_inc(x_1285); +lean_inc(x_1284); lean_dec(x_41); -x_1270 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1270, 0, x_1268); -lean_ctor_set(x_1270, 1, x_1269); -return x_1270; +x_1286 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1286, 0, x_1284); +lean_ctor_set(x_1286, 1, x_1285); +return x_1286; } } } else { -uint8_t x_1271; +uint8_t x_1287; lean_dec(x_35); lean_dec(x_26); lean_dec(x_21); @@ -18072,29 +18221,29 @@ lean_dec(x_13); lean_dec(x_6); lean_dec(x_2); lean_dec(x_1); -x_1271 = !lean_is_exclusive(x_36); -if (x_1271 == 0) +x_1287 = !lean_is_exclusive(x_36); +if (x_1287 == 0) { return x_36; } else { -lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; -x_1272 = lean_ctor_get(x_36, 0); -x_1273 = lean_ctor_get(x_36, 1); -lean_inc(x_1273); -lean_inc(x_1272); +lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; +x_1288 = lean_ctor_get(x_36, 0); +x_1289 = lean_ctor_get(x_36, 1); +lean_inc(x_1289); +lean_inc(x_1288); lean_dec(x_36); -x_1274 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1274, 0, x_1272); -lean_ctor_set(x_1274, 1, x_1273); -return x_1274; +x_1290 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1290, 0, x_1288); +lean_ctor_set(x_1290, 1, x_1289); +return x_1290; } } } else { -uint8_t x_1275; +uint8_t x_1291; lean_dec(x_26); lean_dec(x_24); lean_dec(x_21); @@ -18106,29 +18255,29 @@ lean_dec(x_8); lean_dec(x_6); lean_dec(x_2); lean_dec(x_1); -x_1275 = !lean_is_exclusive(x_30); -if (x_1275 == 0) +x_1291 = !lean_is_exclusive(x_30); +if (x_1291 == 0) { return x_30; } else { -lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; -x_1276 = lean_ctor_get(x_30, 0); -x_1277 = lean_ctor_get(x_30, 1); -lean_inc(x_1277); -lean_inc(x_1276); +lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; +x_1292 = lean_ctor_get(x_30, 0); +x_1293 = lean_ctor_get(x_30, 1); +lean_inc(x_1293); +lean_inc(x_1292); lean_dec(x_30); -x_1278 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1278, 0, x_1276); -lean_ctor_set(x_1278, 1, x_1277); -return x_1278; +x_1294 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1294, 0, x_1292); +lean_ctor_set(x_1294, 1, x_1293); +return x_1294; } } } else { -uint8_t x_1279; +uint8_t x_1295; lean_dec(x_21); lean_dec(x_18); lean_dec(x_17); @@ -18139,23 +18288,23 @@ lean_dec(x_8); lean_dec(x_6); lean_dec(x_2); lean_dec(x_1); -x_1279 = !lean_is_exclusive(x_23); -if (x_1279 == 0) +x_1295 = !lean_is_exclusive(x_23); +if (x_1295 == 0) { return x_23; } else { -lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; -x_1280 = lean_ctor_get(x_23, 0); -x_1281 = lean_ctor_get(x_23, 1); -lean_inc(x_1281); -lean_inc(x_1280); +lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; +x_1296 = lean_ctor_get(x_23, 0); +x_1297 = lean_ctor_get(x_23, 1); +lean_inc(x_1297); +lean_inc(x_1296); lean_dec(x_23); -x_1282 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1282, 0, x_1280); -lean_ctor_set(x_1282, 1, x_1281); -return x_1282; +x_1298 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1298, 0, x_1296); +lean_ctor_set(x_1298, 1, x_1297); +return x_1298; } } } @@ -18895,8 +19044,6 @@ l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__7 = _init_l_Lean_Elab_Comm lean_mark_persistent(l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__7); l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__8 = _init_l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__8(); lean_mark_persistent(l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__8); -l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__9 = _init_l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__9(); -lean_mark_persistent(l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__9); l_Lean_Elab_Command_elabMacroRules___closed__1 = _init_l_Lean_Elab_Command_elabMacroRules___closed__1(); lean_mark_persistent(l_Lean_Elab_Command_elabMacroRules___closed__1); l___regBuiltin_Lean_Elab_Command_elabMacroRules___closed__1 = _init_l___regBuiltin_Lean_Elab_Command_elabMacroRules___closed__1(); @@ -18948,10 +19095,6 @@ l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7 = _init_l___privat lean_mark_persistent(l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__7); l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__8 = _init_l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__8(); lean_mark_persistent(l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__8); -l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__9 = _init_l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__9(); -lean_mark_persistent(l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__9); -l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__10 = _init_l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__10(); -lean_mark_persistent(l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__10); l_Lean_Elab_Command_expandNotation___closed__1 = _init_l_Lean_Elab_Command_expandNotation___closed__1(); lean_mark_persistent(l_Lean_Elab_Command_expandNotation___closed__1); l_Lean_Elab_Command_expandNotation___closed__2 = _init_l_Lean_Elab_Command_expandNotation___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Basic.c b/stage0/stdlib/Lean/Elab/Tactic/Basic.c index f516d4fb3b..cce5672493 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Basic.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Basic.c @@ -27,7 +27,6 @@ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalNestedTacticBlock___closed__3; lean_object* l_Lean_Elab_Tactic_mkTacticAttribute___closed__5; lean_object* l___private_Lean_Elab_Tactic_Basic_3__introStep___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalTactic___main___closed__3; -extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__14; lean_object* l___private_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(lean_object*, 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_withMainMVarContext___rarg(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_mkTacticAttribute___closed__3; @@ -132,7 +131,6 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalTactic extern lean_object* l_Lean_Meta_throwTacticEx___rarg___closed__3; lean_object* l_Lean_Elab_Tactic_getGoals___boxed(lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Lean_Elab_Tactic_Basic_5__sortFVarIds___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; extern lean_object* l_Lean_Name_inhabited; lean_object* l___private_Lean_Elab_Tactic_Basic_7__regTraceClasses___closed__1; lean_object* l_ReaderT_bind___at_Lean_Elab_Tactic_focus___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -166,6 +164,7 @@ extern lean_object* l_Lean_Meta_substCore___lambda__5___closed__1; lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux___rarg(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_liftMetaTacticAux___rarg___lambda__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_nat_add(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; lean_object* l_Lean_Elab_Term_ensureHasType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarDecl___at_Lean_Elab_Tactic_getMainTag___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* l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -496,6 +495,7 @@ lean_object* l_List_findM_x3f___main___at___private_Lean_Elab_Tactic_Basic_6__fi lean_object* l_Lean_Meta_instantiateMVars___at_Lean_Elab_Tactic_ensureHasNoMVars___spec__1(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_evalSubst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Elab_Tactic_focus___spec__1(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__17; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFailIfSuccess___closed__3; lean_object* l_Std_PersistentHashMap_findAux___main___at_Lean_Elab_Tactic_evalTactic___main___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalChoiceAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -10186,7 +10186,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; -x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__14; +x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__17; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -10226,30 +10226,30 @@ return x_3; lean_object* l_Lean_Elab_Tactic_evalIntro(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: { -uint8_t x_11; lean_object* x_206; uint8_t x_207; -x_206 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__5; +uint8_t x_11; lean_object* x_207; uint8_t x_208; +x_207 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__5; lean_inc(x_1); -x_207 = l_Lean_Syntax_isOfKind(x_1, x_206); -if (x_207 == 0) +x_208 = l_Lean_Syntax_isOfKind(x_1, x_207); +if (x_208 == 0) { -uint8_t x_208; -x_208 = 0; -x_11 = x_208; -goto block_205; +uint8_t x_209; +x_209 = 0; +x_11 = x_209; +goto block_206; } else { -lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; -x_209 = l_Lean_Syntax_getArgs(x_1); -x_210 = lean_array_get_size(x_209); -lean_dec(x_209); -x_211 = lean_unsigned_to_nat(2u); -x_212 = lean_nat_dec_eq(x_210, x_211); +lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; +x_210 = l_Lean_Syntax_getArgs(x_1); +x_211 = lean_array_get_size(x_210); lean_dec(x_210); -x_11 = x_212; -goto block_205; +x_212 = lean_unsigned_to_nat(2u); +x_213 = lean_nat_dec_eq(x_211, x_212); +lean_dec(x_211); +x_11 = x_213; +goto block_206; } -block_205: +block_206: { if (x_11 == 0) { @@ -10268,32 +10268,32 @@ return x_12; } else { -lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_159; uint8_t x_160; uint8_t x_161; +lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_160; uint8_t x_161; uint8_t x_162; x_13 = lean_unsigned_to_nat(1u); x_14 = l_Lean_Syntax_getArg(x_1, x_13); -x_159 = l_Lean_nullKind___closed__2; +x_160 = l_Lean_nullKind___closed__2; lean_inc(x_14); -x_160 = l_Lean_Syntax_isOfKind(x_14, x_159); -if (x_160 == 0) +x_161 = l_Lean_Syntax_isOfKind(x_14, x_160); +if (x_161 == 0) { -uint8_t x_200; -x_200 = 0; -x_161 = x_200; -goto block_199; +uint8_t x_201; +x_201 = 0; +x_162 = x_201; +goto block_200; } else { -lean_object* x_201; lean_object* x_202; lean_object* x_203; uint8_t x_204; -x_201 = l_Lean_Syntax_getArgs(x_14); -x_202 = lean_array_get_size(x_201); -lean_dec(x_201); -x_203 = lean_unsigned_to_nat(0u); -x_204 = lean_nat_dec_eq(x_202, x_203); +lean_object* x_202; lean_object* x_203; lean_object* x_204; uint8_t x_205; +x_202 = l_Lean_Syntax_getArgs(x_14); +x_203 = lean_array_get_size(x_202); lean_dec(x_202); -x_161 = x_204; -goto block_199; +x_204 = lean_unsigned_to_nat(0u); +x_205 = lean_nat_dec_eq(x_203, x_204); +lean_dec(x_203); +x_162 = x_205; +goto block_200; } -block_158: +block_159: { if (x_15 == 0) { @@ -10416,33 +10416,33 @@ lean_inc(x_64); x_66 = l_Lean_Syntax_isOfKind(x_64, x_65); if (x_66 == 0) { -uint8_t x_67; lean_object* x_150; uint8_t x_151; -x_150 = l_Lean_mkHole___closed__2; +uint8_t x_67; lean_object* x_151; uint8_t x_152; +x_151 = l_Lean_mkHole___closed__2; lean_inc(x_64); -x_151 = l_Lean_Syntax_isOfKind(x_64, x_150); -if (x_151 == 0) +x_152 = l_Lean_Syntax_isOfKind(x_64, x_151); +if (x_152 == 0) { -uint8_t x_152; -x_152 = 0; -x_67 = x_152; -goto block_149; +uint8_t x_153; +x_153 = 0; +x_67 = x_153; +goto block_150; } else { -lean_object* x_153; lean_object* x_154; uint8_t x_155; -x_153 = l_Lean_Syntax_getArgs(x_64); -x_154 = lean_array_get_size(x_153); -lean_dec(x_153); -x_155 = lean_nat_dec_eq(x_154, x_13); +lean_object* x_154; lean_object* x_155; uint8_t x_156; +x_154 = l_Lean_Syntax_getArgs(x_64); +x_155 = lean_array_get_size(x_154); lean_dec(x_154); -x_67 = x_155; -goto block_149; +x_156 = lean_nat_dec_eq(x_155, x_13); +lean_dec(x_155); +x_67 = x_156; +goto block_150; } -block_149: +block_150: { 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; 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; 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; uint8_t x_127; +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; 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; 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; uint8_t x_128; x_68 = l_Lean_Elab_Tactic_getCurrMacroScope___rarg(x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_69 = lean_ctor_get(x_68, 0); lean_inc(x_69); @@ -10498,72 +10498,76 @@ x_99 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_100 = lean_array_push(x_98, x_99); x_101 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_102 = lean_array_push(x_100, x_101); -x_103 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__13; -x_104 = lean_array_push(x_102, x_103); -x_105 = lean_array_push(x_80, x_64); -x_106 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_106, 0, x_82); -lean_ctor_set(x_106, 1, x_105); -x_107 = lean_array_push(x_80, x_106); -x_108 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_103 = lean_array_push(x_80, x_64); +x_104 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_104, 0, x_82); +lean_ctor_set(x_104, 1, x_103); +x_105 = lean_array_push(x_80, x_104); +x_106 = l_Lean_Elab_Term_expandCDot_x3f___closed__6; +x_107 = lean_array_push(x_105, x_106); +x_108 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; x_109 = lean_array_push(x_107, x_108); -x_110 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; -x_111 = lean_array_push(x_109, x_110); -x_112 = l_Lean_Elab_Tactic_evalIntro___closed__6; +x_110 = l_Lean_Elab_Tactic_evalIntro___closed__6; +x_111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_111, 0, x_110); +lean_ctor_set(x_111, 1, x_109); +x_112 = lean_array_push(x_80, x_111); x_113 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_113, 0, x_112); -lean_ctor_set(x_113, 1, x_111); -x_114 = lean_array_push(x_80, x_113); -x_115 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_115, 0, x_82); -lean_ctor_set(x_115, 1, x_114); -x_116 = lean_array_push(x_104, x_115); -x_117 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__10; -x_118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_118, 0, x_117); -lean_ctor_set(x_118, 1, x_116); -x_119 = lean_array_push(x_90, x_118); -x_120 = lean_array_push(x_119, x_89); -x_121 = l_Lean_Elab_Tactic_evalIntro___closed__9; -x_122 = lean_array_push(x_121, x_83); -x_123 = l_Lean_Elab_Tactic_evalIntro___closed__7; -x_124 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_124, 0, x_123); -lean_ctor_set(x_124, 1, x_122); -x_125 = lean_array_push(x_120, x_124); -x_126 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_126, 0, x_82); -lean_ctor_set(x_126, 1, x_125); -x_127 = !lean_is_exclusive(x_4); -if (x_127 == 0) +lean_ctor_set(x_113, 0, x_82); +lean_ctor_set(x_113, 1, x_112); +x_114 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__16; +x_115 = lean_array_push(x_114, x_113); +x_116 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_116, 0, x_82); +lean_ctor_set(x_116, 1, x_115); +x_117 = lean_array_push(x_102, x_116); +x_118 = l___private_Lean_Elab_Binders_16__expandMatchAltsIntoMatchAux___main___closed__10; +x_119 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_119, 0, x_118); +lean_ctor_set(x_119, 1, x_117); +x_120 = lean_array_push(x_90, x_119); +x_121 = lean_array_push(x_120, x_89); +x_122 = l_Lean_Elab_Tactic_evalIntro___closed__9; +x_123 = lean_array_push(x_122, x_83); +x_124 = l_Lean_Elab_Tactic_evalIntro___closed__7; +x_125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_125, 0, x_124); +lean_ctor_set(x_125, 1, x_123); +x_126 = lean_array_push(x_121, x_125); +x_127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_127, 0, x_82); +lean_ctor_set(x_127, 1, x_126); +x_128 = !lean_is_exclusive(x_4); +if (x_128 == 0) { -lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; -x_128 = lean_ctor_get(x_4, 6); -lean_inc(x_126); -x_129 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_129, 0, x_1); -lean_ctor_set(x_129, 1, x_126); -x_130 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_130, 0, x_129); -lean_ctor_set(x_130, 1, x_128); -lean_ctor_set(x_4, 6, x_130); -x_131 = l_Lean_Elab_Tactic_evalTactic___main(x_126, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_73); -return x_131; +lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; +x_129 = lean_ctor_get(x_4, 6); +lean_inc(x_127); +x_130 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_130, 0, x_1); +lean_ctor_set(x_130, 1, x_127); +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_130); +lean_ctor_set(x_131, 1, x_129); +lean_ctor_set(x_4, 6, x_131); +x_132 = l_Lean_Elab_Tactic_evalTactic___main(x_127, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_73); +return x_132; } else { -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_140; uint8_t x_141; uint8_t x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; -x_132 = lean_ctor_get(x_4, 0); -x_133 = lean_ctor_get(x_4, 1); -x_134 = lean_ctor_get(x_4, 2); -x_135 = lean_ctor_get(x_4, 3); -x_136 = lean_ctor_get(x_4, 4); -x_137 = lean_ctor_get(x_4, 5); -x_138 = lean_ctor_get(x_4, 6); -x_139 = lean_ctor_get(x_4, 7); -x_140 = lean_ctor_get_uint8(x_4, sizeof(void*)*8); -x_141 = lean_ctor_get_uint8(x_4, sizeof(void*)*8 + 1); -x_142 = lean_ctor_get_uint8(x_4, sizeof(void*)*8 + 2); +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; uint8_t x_141; uint8_t x_142; uint8_t x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; +x_133 = lean_ctor_get(x_4, 0); +x_134 = lean_ctor_get(x_4, 1); +x_135 = lean_ctor_get(x_4, 2); +x_136 = lean_ctor_get(x_4, 3); +x_137 = lean_ctor_get(x_4, 4); +x_138 = lean_ctor_get(x_4, 5); +x_139 = lean_ctor_get(x_4, 6); +x_140 = lean_ctor_get(x_4, 7); +x_141 = lean_ctor_get_uint8(x_4, sizeof(void*)*8); +x_142 = lean_ctor_get_uint8(x_4, sizeof(void*)*8 + 1); +x_143 = lean_ctor_get_uint8(x_4, sizeof(void*)*8 + 2); +lean_inc(x_140); lean_inc(x_139); lean_inc(x_138); lean_inc(x_137); @@ -10571,213 +10575,212 @@ lean_inc(x_136); lean_inc(x_135); lean_inc(x_134); lean_inc(x_133); -lean_inc(x_132); lean_dec(x_4); -lean_inc(x_126); -x_143 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_143, 0, x_1); -lean_ctor_set(x_143, 1, x_126); -x_144 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_144, 0, x_143); -lean_ctor_set(x_144, 1, x_138); -x_145 = lean_alloc_ctor(0, 8, 3); -lean_ctor_set(x_145, 0, x_132); -lean_ctor_set(x_145, 1, x_133); -lean_ctor_set(x_145, 2, x_134); -lean_ctor_set(x_145, 3, x_135); -lean_ctor_set(x_145, 4, x_136); -lean_ctor_set(x_145, 5, x_137); -lean_ctor_set(x_145, 6, x_144); -lean_ctor_set(x_145, 7, x_139); -lean_ctor_set_uint8(x_145, sizeof(void*)*8, x_140); -lean_ctor_set_uint8(x_145, sizeof(void*)*8 + 1, x_141); -lean_ctor_set_uint8(x_145, sizeof(void*)*8 + 2, x_142); -x_146 = l_Lean_Elab_Tactic_evalTactic___main(x_126, x_2, x_3, x_145, x_5, x_6, x_7, x_8, x_9, x_73); -return x_146; +lean_inc(x_127); +x_144 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_144, 0, x_1); +lean_ctor_set(x_144, 1, x_127); +x_145 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_145, 0, x_144); +lean_ctor_set(x_145, 1, x_139); +x_146 = lean_alloc_ctor(0, 8, 3); +lean_ctor_set(x_146, 0, x_133); +lean_ctor_set(x_146, 1, x_134); +lean_ctor_set(x_146, 2, x_135); +lean_ctor_set(x_146, 3, x_136); +lean_ctor_set(x_146, 4, x_137); +lean_ctor_set(x_146, 5, x_138); +lean_ctor_set(x_146, 6, x_145); +lean_ctor_set(x_146, 7, x_140); +lean_ctor_set_uint8(x_146, sizeof(void*)*8, x_141); +lean_ctor_set_uint8(x_146, sizeof(void*)*8 + 1, x_142); +lean_ctor_set_uint8(x_146, sizeof(void*)*8 + 2, x_143); +x_147 = l_Lean_Elab_Tactic_evalTactic___main(x_127, x_2, x_3, x_146, x_5, x_6, x_7, x_8, x_9, x_73); +return x_147; } } else { -lean_object* x_147; lean_object* x_148; +lean_object* x_148; lean_object* x_149; lean_dec(x_64); lean_dec(x_1); -x_147 = l_Lean_mkThunk___closed__1; -x_148 = l___private_Lean_Elab_Tactic_Basic_3__introStep(x_147, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_148; +x_148 = l_Lean_mkThunk___closed__1; +x_149 = l___private_Lean_Elab_Tactic_Basic_3__introStep(x_148, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_149; } } } else { -lean_object* x_156; lean_object* x_157; +lean_object* x_157; lean_object* x_158; lean_dec(x_1); -x_156 = l_Lean_Syntax_getId(x_64); +x_157 = l_Lean_Syntax_getId(x_64); lean_dec(x_64); -x_157 = l___private_Lean_Elab_Tactic_Basic_3__introStep(x_156, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_157; +x_158 = l___private_Lean_Elab_Tactic_Basic_3__introStep(x_157, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_158; } } } -block_199: +block_200: +{ +if (x_162 == 0) { if (x_161 == 0) { -if (x_160 == 0) -{ -uint8_t x_162; -x_162 = 0; -x_15 = x_162; -goto block_158; +uint8_t x_163; +x_163 = 0; +x_15 = x_163; +goto block_159; } else { -lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_163 = l_Lean_Syntax_getArgs(x_14); -x_164 = lean_array_get_size(x_163); -lean_dec(x_163); -x_165 = lean_nat_dec_eq(x_164, x_13); +lean_object* x_164; lean_object* x_165; uint8_t x_166; +x_164 = l_Lean_Syntax_getArgs(x_14); +x_165 = lean_array_get_size(x_164); lean_dec(x_164); -x_15 = x_165; -goto block_158; +x_166 = lean_nat_dec_eq(x_165, x_13); +lean_dec(x_165); +x_15 = x_166; +goto block_159; } } else { -lean_object* x_166; +lean_object* x_167; lean_dec(x_14); lean_dec(x_1); lean_inc(x_4); -x_166 = l_Lean_Elab_Tactic_getMainGoal(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_166) == 0) +x_167 = l_Lean_Elab_Tactic_getMainGoal(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_167) == 0) { -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; -x_167 = lean_ctor_get(x_166, 0); -lean_inc(x_167); -x_168 = lean_ctor_get(x_166, 1); +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_168 = lean_ctor_get(x_167, 0); lean_inc(x_168); -lean_dec(x_166); -x_169 = lean_ctor_get(x_167, 0); +x_169 = lean_ctor_get(x_167, 1); lean_inc(x_169); -x_170 = lean_ctor_get(x_167, 1); -lean_inc(x_170); lean_dec(x_167); -lean_inc(x_169); -x_171 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalIntro___lambda__1), 6, 1); -lean_closure_set(x_171, 0, x_169); -x_172 = l_Lean_Elab_Tactic_liftMetaTactic___closed__1; -x_173 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Meta_Lean_MonadLCtx___spec__2___rarg), 7, 2); -lean_closure_set(x_173, 0, x_171); -lean_closure_set(x_173, 1, x_172); +x_170 = lean_ctor_get(x_168, 0); +lean_inc(x_170); +x_171 = lean_ctor_get(x_168, 1); +lean_inc(x_171); +lean_dec(x_168); +lean_inc(x_170); +x_172 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalIntro___lambda__1), 6, 1); +lean_closure_set(x_172, 0, x_170); +x_173 = l_Lean_Elab_Tactic_liftMetaTactic___closed__1; +x_174 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Meta_Lean_MonadLCtx___spec__2___rarg), 7, 2); +lean_closure_set(x_174, 0, x_172); +lean_closure_set(x_174, 1, x_173); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_174 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_liftMetaM___rarg___boxed), 10, 5); -lean_closure_set(x_174, 0, x_173); -lean_closure_set(x_174, 1, x_2); -lean_closure_set(x_174, 2, x_3); -lean_closure_set(x_174, 3, x_4); -lean_closure_set(x_174, 4, x_5); -x_175 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_liftMetaTacticAux___rarg___lambda__1___boxed), 11, 5); -lean_closure_set(x_175, 0, x_170); +x_175 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_liftMetaM___rarg___boxed), 10, 5); +lean_closure_set(x_175, 0, x_174); lean_closure_set(x_175, 1, x_2); lean_closure_set(x_175, 2, x_3); lean_closure_set(x_175, 3, x_4); lean_closure_set(x_175, 4, x_5); -x_176 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Meta_Lean_MonadLCtx___spec__2___rarg), 7, 2); -lean_closure_set(x_176, 0, x_174); -lean_closure_set(x_176, 1, x_175); -x_177 = l_Lean_Meta_getMVarDecl___at_Lean_Meta_isReadOnlyExprMVar___spec__1(x_169, x_6, x_7, x_8, x_9, x_168); -if (lean_obj_tag(x_177) == 0) +x_176 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_liftMetaTacticAux___rarg___lambda__1___boxed), 11, 5); +lean_closure_set(x_176, 0, x_171); +lean_closure_set(x_176, 1, x_2); +lean_closure_set(x_176, 2, x_3); +lean_closure_set(x_176, 3, x_4); +lean_closure_set(x_176, 4, x_5); +x_177 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Meta_Lean_MonadLCtx___spec__2___rarg), 7, 2); +lean_closure_set(x_177, 0, x_175); +lean_closure_set(x_177, 1, x_176); +x_178 = l_Lean_Meta_getMVarDecl___at_Lean_Meta_isReadOnlyExprMVar___spec__1(x_170, x_6, x_7, x_8, x_9, x_169); +if (lean_obj_tag(x_178) == 0) { -lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; -x_178 = lean_ctor_get(x_177, 0); -lean_inc(x_178); -x_179 = lean_ctor_get(x_177, 1); +lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; +x_179 = lean_ctor_get(x_178, 0); lean_inc(x_179); -lean_dec(x_177); x_180 = lean_ctor_get(x_178, 1); lean_inc(x_180); -x_181 = lean_ctor_get(x_178, 4); -lean_inc(x_181); lean_dec(x_178); -x_182 = l___private_Lean_Meta_Basic_27__withLocalContextImpl___rarg(x_180, x_181, x_176, x_6, x_7, x_8, x_9, x_179); -if (lean_obj_tag(x_182) == 0) +x_181 = lean_ctor_get(x_179, 1); +lean_inc(x_181); +x_182 = lean_ctor_get(x_179, 4); +lean_inc(x_182); +lean_dec(x_179); +x_183 = l___private_Lean_Meta_Basic_27__withLocalContextImpl___rarg(x_181, x_182, x_177, x_6, x_7, x_8, x_9, x_180); +if (lean_obj_tag(x_183) == 0) { -uint8_t x_183; -x_183 = !lean_is_exclusive(x_182); -if (x_183 == 0) +uint8_t x_184; +x_184 = !lean_is_exclusive(x_183); +if (x_184 == 0) { -return x_182; +return x_183; } else { -lean_object* x_184; lean_object* x_185; lean_object* x_186; -x_184 = lean_ctor_get(x_182, 0); -x_185 = lean_ctor_get(x_182, 1); +lean_object* x_185; lean_object* x_186; lean_object* x_187; +x_185 = lean_ctor_get(x_183, 0); +x_186 = lean_ctor_get(x_183, 1); +lean_inc(x_186); lean_inc(x_185); -lean_inc(x_184); -lean_dec(x_182); -x_186 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_186, 0, x_184); -lean_ctor_set(x_186, 1, x_185); -return x_186; +lean_dec(x_183); +x_187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_187, 0, x_185); +lean_ctor_set(x_187, 1, x_186); +return x_187; } } else { -uint8_t x_187; -x_187 = !lean_is_exclusive(x_182); -if (x_187 == 0) +uint8_t x_188; +x_188 = !lean_is_exclusive(x_183); +if (x_188 == 0) { -return x_182; +return x_183; } else { -lean_object* x_188; lean_object* x_189; lean_object* x_190; -x_188 = lean_ctor_get(x_182, 0); -x_189 = lean_ctor_get(x_182, 1); +lean_object* x_189; lean_object* x_190; lean_object* x_191; +x_189 = lean_ctor_get(x_183, 0); +x_190 = lean_ctor_get(x_183, 1); +lean_inc(x_190); lean_inc(x_189); -lean_inc(x_188); -lean_dec(x_182); -x_190 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_190, 0, x_188); -lean_ctor_set(x_190, 1, x_189); -return x_190; +lean_dec(x_183); +x_191 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_191, 0, x_189); +lean_ctor_set(x_191, 1, x_190); +return x_191; } } } else { -uint8_t x_191; -lean_dec(x_176); +uint8_t x_192; +lean_dec(x_177); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -x_191 = !lean_is_exclusive(x_177); -if (x_191 == 0) +x_192 = !lean_is_exclusive(x_178); +if (x_192 == 0) { -return x_177; +return x_178; } else { -lean_object* x_192; lean_object* x_193; lean_object* x_194; -x_192 = lean_ctor_get(x_177, 0); -x_193 = lean_ctor_get(x_177, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; +x_193 = lean_ctor_get(x_178, 0); +x_194 = lean_ctor_get(x_178, 1); +lean_inc(x_194); lean_inc(x_193); -lean_inc(x_192); -lean_dec(x_177); -x_194 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_194, 0, x_192); -lean_ctor_set(x_194, 1, x_193); -return x_194; +lean_dec(x_178); +x_195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_195, 0, x_193); +lean_ctor_set(x_195, 1, x_194); +return x_195; } } } else { -uint8_t x_195; +uint8_t x_196; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -10786,23 +10789,23 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_195 = !lean_is_exclusive(x_166); -if (x_195 == 0) +x_196 = !lean_is_exclusive(x_167); +if (x_196 == 0) { -return x_166; +return x_167; } else { -lean_object* x_196; lean_object* x_197; lean_object* x_198; -x_196 = lean_ctor_get(x_166, 0); -x_197 = lean_ctor_get(x_166, 1); +lean_object* x_197; lean_object* x_198; lean_object* x_199; +x_197 = lean_ctor_get(x_167, 0); +x_198 = lean_ctor_get(x_167, 1); +lean_inc(x_198); lean_inc(x_197); -lean_inc(x_196); -lean_dec(x_166); -x_198 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_198, 0, x_196); -lean_ctor_set(x_198, 1, x_197); -return x_198; +lean_dec(x_167); +x_199 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_199, 0, x_197); +lean_ctor_set(x_199, 1, x_198); +return x_199; } } } diff --git a/stage0/stdlib/Lean/Elab/Tactic/Match.c b/stage0/stdlib/Lean/Elab/Tactic/Match.c index b0238b34cf..f66b8267ef 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Match.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Match.c @@ -46,7 +46,7 @@ lean_object* lean_array_fget(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); -extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; lean_object* l_Lean_Name_appendIndexAfter(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Match_1__mkAuxiliaryMatchTermAux___lambda__1___closed__5; lean_object* l___private_Lean_Elab_Tactic_Match_1__mkAuxiliaryMatchTermAux___lambda__1___closed__3; @@ -256,7 +256,7 @@ lean_object* l___private_Lean_Elab_Tactic_Match_1__mkAuxiliaryMatchTermAux___lam _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; -x_6 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__15; +x_6 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__18; x_7 = l_Lean_Syntax_updateKind(x_2, x_6); x_8 = lean_unsigned_to_nat(2u); x_9 = l_Lean_Syntax_getArg(x_7, x_8);